-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathindex.js
More file actions
362 lines (318 loc) · 10.4 KB
/
index.js
File metadata and controls
362 lines (318 loc) · 10.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
const express = require('express')
const {
default: ParseServer,
ParseGraphQLServer,
} = require('@nessi/parse-server')
const ParseDashboard = require('parse-dashboard')
const Parse = require('parse/node')
const muralAuthAdapter = require('parse-server-mural-auth-adapter')
const request = require('request')
const http = require('http')
const path = require('path')
const fs = require('fs')
const write = require('write')
require('dotenv').config()
const bodyParser = require('body-parser')
const packageJSON = require('./package.json')
const unzipper = require('unzipper')
const config = require('./config.json')
const Scheduler = require('parse-server-jobs-scheduler').default
let parseConfig = config.parseConfig
let StripeConfig = config.extraConfig.StripeConfig
let OpenAiAPIKey = process.env.OPENAI_API_KEY || config.extraConfig.OpenAiAPIKey
const PORT = process.env.PORT || parseConfig.port
const URL_SERVER = process.env.SERVER_URL || parseConfig.URLserver
const GRAPHQL_SERVER =
process.env.GRAPHQL_SERVER_URL || parseConfig.GraphQLURLserver
const URL_DB =
process.env.DATABASE_URI || process.env.MONGODB_URI || parseConfig.URLdb
const URL_SITE = process.env.SITE_URL || parseConfig.URLsite
const APP_ID = process.env.APP_ID || parseConfig.appId
const MAX_UPLOAD_SIZE = process.env.MAX_UPLOAD_SIZE || parseConfig.maxUploadSize
const MASTER_KEY = process.env.MASTER_KEY || parseConfig.masterKey
const DASHBOARD_ACTIVATED =
process.env.DASHBOARD_ACTIVATED || config.extraConfig.dashboardActivated
const DASH_USER_EMAIL = process.env.USER_EMAIL || config.extraConfig.userEmail
const DASH_USER_PASSWORD =
process.env.USER_PASS || config.extraConfig.userPassword
const SITE_TEMPLATES =
process.env.SITE_TEMPLATES || config.extraConfig.siteTemplates
const VERIFY_USER_EMAIL =
process.env.VERIFY_USER_EMAIL || parseConfig.verifyUserEmails
const PREVENT_LOGIN_WITH_UNVERIFIED_EMAIL =
process.env.PREVENT_LOGIN_WITH_UNVERIFIED_EMAIL ||
parseConfig.preventLoginWithUnverifiedEmail
let emailOptions = parseConfig.emailAdapter.options
emailOptions.fromAddress = process.env.FROM_ADDRESS || emailOptions.fromAddress
emailOptions.domain = process.env.MAILGUN_DOMAIN || emailOptions.domain
emailOptions.apiKey = process.env.MAILGUN_API_KEY || emailOptions.apiKey
Object.assign(parseConfig, {
appId: APP_ID,
masterKey: MASTER_KEY,
cloud: './cloud/main',
databaseURI: URL_DB,
maxUploadSize: MAX_UPLOAD_SIZE,
verifyUserEmails: JSON.parse(VERIFY_USER_EMAIL),
preventLoginWithUnverifiedEmail: JSON.parse(
PREVENT_LOGIN_WITH_UNVERIFIED_EMAIL
),
serverURL: URL_SERVER,
publicServerURL: URL_SERVER,
liveQuery: {
classNames: [
'Site',
'Model',
'ModelField',
'Collaboration',
'MediaItem',
'ct____.*',
],
},
auth: {
mural: {
module: muralAuthAdapter,
},
},
})
const cps = parseConfig.customPages
for (let p in cps) {
cps[p] = URL_SITE + cps[p]
}
module.exports.parseConfig = parseConfig
module.exports.URL_SITE = URL_SITE
module.exports.StripeConfig = StripeConfig
module.exports.OpenAiAPIKey = OpenAiAPIKey
const parseServer = new ParseServer(parseConfig)
const parseGraphQLServer = new ParseGraphQLServer(parseServer, {
graphQLPath: '/graphql',
})
const app = new express()
app.use('/parse', parseServer.app)
if (process.env.REQUEST_LIMIT) {
app.use(bodyParser.json({ limit: process.env.REQUEST_LIMIT }))
app.use(
bodyParser.urlencoded({ limit: process.env.REQUEST_LIMIT, extended: true })
)
}
const cloud_api_file = require('./cloud_api.js')
var cloudApiFile = fs.statSync('./cloud_api.js')
if (cloudApiFile.size > 0)
app.use('/cloud_api', cloud_api_file)
parseGraphQLServer.applyGraphQL(app)
app.post('/folder_code', bodyParser.json(), async (req, res, next) => {
if (
req.headers['x-parse-application-id'] == APP_ID &&
req.headers['x-parse-rest-api-key'] == MASTER_KEY
) {
try {
if (fs.existsSync('./cloud/Ignite')) {
fs.rmSync('./cloud/Ignite', { recursive: true, force: true })
}
if (req.body.remove) {
write.sync('./cloud/users_code.js', '')
return res.send({ status: 'Success' })
}
const directory = await unzipper.Open.url(
request,
req.body.folder_code_url
)
await directory.extract({ path: './cloud/Ignite' })
write.sync('./cloud/users_code.js', "require('./Ignite/index.js')")
res.send({ status: 'Success' })
} catch (e) {
console.log(e)
return res.status(403)
}
} else res.status(401).send({ message: 'Unauthorized' })
})
app.post('/users_code', bodyParser.json(), async (req, res, next) => {
if (
req.headers['x-parse-application-id'] == APP_ID &&
req.headers['x-parse-rest-api-key'] == MASTER_KEY
) {
if (fs.existsSync('./cloud/Ignite')) {
fs.rmSync('./cloud/Ignite', { recursive: true, force: true })
}
try {
write.sync('./cloud/users_code.js', req.body.custom_code)
} catch (e) {
console.log(e)
}
const path = './siteTemplates/default_templates.json'
if (fs.existsSync(path)) {
let defaultData = JSON.parse(fs.readFileSync(path))
let res_data = defaultData.concat(req.body.templates_json)
fs.writeFileSync(
'./siteTemplates/templates.json',
JSON.stringify(res_data)
)
} else customTemplatesSuccess = true
res.send({ status: 'Success' })
} else res.status(401).send({ message: 'Unauthorized' })
})
app.post('/express_code', bodyParser.json(), async (req, res, next) => {
if (
req.headers['x-parse-application-id'] == APP_ID &&
req.headers['x-parse-rest-api-key'] == MASTER_KEY
) {
try {
write.sync('./cloud_api.js', req.body.express_code)
} catch (e) {
console.log(e)
}
res.send({ status: 'Success' })
} else res.status(401).send({ message: 'Unauthorized' })
})
if (DASHBOARD_ACTIVATED) {
const options = {}
const dashboardConfig = {
apps: [
{
serverURL: URL_SERVER,
graphQLServerURL: GRAPHQL_SERVER,
appId: APP_ID,
masterKey: MASTER_KEY,
appName: parseConfig.appName,
},
],
cookieSessionSecret: APP_ID,
allowInsecureHTTP: 1,
trustProxy: 1,
}
if (DASH_USER_EMAIL && DASH_USER_PASSWORD)
dashboardConfig.users = [
{
user: DASH_USER_EMAIL,
pass: DASH_USER_PASSWORD,
},
]
module.exports.dashboardConfig = dashboardConfig
const dashboard = new ParseDashboard(dashboardConfig, {
allowInsecureHTTP: true,
})
app.use('/dashboard', dashboard)
}
const postStart = async () => {
Parse.initialize(APP_ID, null, MASTER_KEY)
Parse.serverURL = URL_SERVER
if (StripeConfig) {
try {
await request({
url: URL_SERVER + '/config',
method: 'PUT',
json: true,
headers: {
'X-Parse-Application-Id': parseConfig.appId,
'X-Parse-Master-Key': parseConfig.masterKey,
},
body: { params: { StripeKeyPublic: StripeConfig.keyPublic } },
})
} catch (e) {
console.error(e)
}
}
// set templates
if (SITE_TEMPLATES) {
const templates = require('./siteTemplates/templates.json')
const Template = Parse.Object.extend('Template')
const Model = Parse.Object.extend('Model')
const ModelField = Parse.Object.extend('ModelField')
const ACL = new Parse.ACL()
ACL.setPublicReadAccess(true)
ACL.setPublicWriteAccess(false)
for (let template of templates) {
try {
const res = await new Parse.Query('Template')
.equalTo('name', template.name)
.first({ useMasterKey: true })
if (res) continue
} catch (e) {
console.log(e)
}
const template_o = new Template()
template_o.set('name', template.name)
template_o.set('description', template.description)
template_o.setACL(ACL)
if (template.icon) {
const iconData = fs.readFileSync(
`./siteTemplates/icons/${template.icon}`
)
const iconFile = new Parse.File('icon.svg', [...iconData])
await iconFile.save({ useMasterKey: true })
template_o.set('icon', iconFile)
}
await template_o.save(null, { useMasterKey: true })
for (let model of template.models) {
const model_o = new Model()
model_o.set('name', model.name)
model_o.set('nameId', model.nameId)
model_o.set('description', model.description)
model_o.set('color', model.color)
model_o.set('template', template_o)
model_o.setACL(ACL)
await model_o.save(null, { useMasterKey: true })
for (let field of model.fields) {
const field_o = new ModelField()
field_o.set(field)
field_o.set('model', model_o)
field_o.setACL(ACL)
field_o.save(null, { useMasterKey: true })
}
}
}
}
}
const checkUsersCode = async () => {
try {
const SERVER_URL = process.env.SERVER_URL
const parse_id = SERVER_URL.match(/https:\/\/(\d*).*/)[1]
var file = fs.statSync('./cloud/users_code.js')
if (file.size == 0) {
const url =
process.env.CUSTOM_CODE_URL || 'https://getforge.com/cloud66-webhook'
request.post({
headers: { 'content-type': 'application/json' },
url: url,
body: `{"service": {"name": "parse-${parse_id}"}}`,
})
}
} catch (e) {
console.log(e)
}
}
// Clearing logs
const clearLogInterval = 1000 * 60 * 60 * 24
const logsDirectory = './logs'
function clearLogs() {
fs.readdir(logsDirectory, (err, files) => {
if (err) console.error(err)
for (const file of files) {
fs.unlink(path.join(logsDirectory, file), (err) => {
if (err) console.error(err)
})
}
console.info('Logs was cleaned')
})
}
clearLogs()
setInterval(clearLogs, clearLogInterval)
const scheduler = new Scheduler()
// Recreates all crons when the server is launched
scheduler.recreateScheduleForAllJobs()
// Recreates schedule when a job schedule has changed
Parse.Cloud.afterSave('_JobSchedule', async (request) => {
scheduler.recreateSchedule(request.object.id)
})
// Destroy schedule for removed job
Parse.Cloud.afterDelete('_JobSchedule', async (request) => {
scheduler.destroySchedule(request.object.id)
})
const httpServer = http.createServer(app)
httpServer.listen(PORT, async () => {
await postStart()
await checkUsersCode()
console.log(
`Chisel Parse server v${packageJSON.version} running on port ${PORT}.`
)
})
const lqServer = ParseServer.createLiveQueryServer(httpServer)