-
Notifications
You must be signed in to change notification settings - Fork 44
/
modelRoutes.js
427 lines (356 loc) · 10.3 KB
/
modelRoutes.js
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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
var fsPath = require('path')
var temp = require('temp').track();
var multer = require('multer');
var path = require('path');
var makeRandomString = require('./lib/stringUtil').makeRandomString
var tempDir;
temp.mkdir('uploads', function(err, dirPath) {
if (err)
throw err;
tempDir = dirPath;
});
function requireAdminUser(req, res, next) {
if (req.user && req.user.isAdmin)
return next()
res.sendStatus(401)
}
function setupDefaultRoutes(
app,
cloudStorage,
mongoConnection,
passportConf
){
// ----- MODEL ROUTES
// Asset controllers
var AssetController = require('./controllers/assetController');
var GraphController = require('./controllers/graphController');
var ImageController = require('./controllers/imageController');
var SceneController = require('./controllers/sceneController');
var PatchController = require('./controllers/patchController');
var AssetService = require('./services/assetService');
var GraphService = require('./services/graphService');
var EditLogController = require('./controllers/editLogController');
var editLogController = new EditLogController()
var DocumentationController = require('./controllers/documentationController');
var documentationController = new DocumentationController();
var graphController = new GraphController(
new GraphService(require('./models/graph'), cloudStorage),
cloudStorage,
mongoConnection
);
var imageController = new ImageController(
new AssetService(require('./models/image')),
cloudStorage
);
var sceneController = new SceneController(
new AssetService(require('./models/scene')),
cloudStorage
);
var AudioModel = require('./models/audio');
var audioController = new AssetController(
AudioModel,
new AssetService(AudioModel),
cloudStorage
);
var VideoModel = require('./models/video');
var videoController = new AssetController(
VideoModel,
new AssetService(VideoModel),
cloudStorage
);
var patchController = new PatchController(
new AssetService(require('./models/patch')),
cloudStorage
);
var JsonModel = require('./models/json');
var jsonController = new AssetController(
JsonModel,
new AssetService(JsonModel),
cloudStorage
);
var controllers = {
graph: graphController,
image: imageController,
scene: sceneController,
audio: audioController,
video: videoController,
json: jsonController,
patch: patchController
}
function getController(req, res, next) {
req.controller = controllers[req.params.model];
next();
}
function requireController(req, res, next) {
req.controller = controllers[req.params.model];
if (!req.controller) {
var e = new Error('Not found: '+req.path);
e.status = 404;
return next(e);
}
next();
}
function expectUploadedFile(req, res, next) {
var file = req.files.file
if (!file) {
var e = new Error('Please upload an image')
e.status = 400
return next(e)
}
next()
}
// upload user profile avatar picture
app.post('/account/profile/avatar',
passportConf.isAuthenticated,
multer({
dest: tempDir,
limits: {
fileSize: 1024 * 1024 * 8 // 8m
},
rename: function (fieldname, filename) {
return filename.replace(/\W+/g, '-');
}
}),
expectUploadedFile,
imageController.setUserAvatar.bind(imageController))
// upload user profile header picture
app.post('/account/profile/header',
passportConf.isAuthenticated,
multer({
dest: tempDir,
limits: {
fileSize: 1024 * 1024 * 8 // 8m
},
rename: function (fieldname, filename) {
return filename.replace(/\W+/g, '-');
}
}),
imageController.setUserHeader.bind(imageController))
// upload
app.post('/upload/:model',
requireController,
passportConf.isAuthenticated,
multer({
dest: tempDir,
limits: {
fileSize: 1024 * 1024 * 128 // 128m
},
rename: function (fieldname, filename) {
return filename.replace(/\W+/g, '-');
}
}),
expectUploadedFile,
function(req, res, next) {
// imageProcessor will checksum the file
if (req.params.model === 'image')
return next()
req.controller.checksumUpload(req, res, next)
},
function(req, res, next) {
req.controller.canWriteUpload(req, res, next)
},
function(req, res, next) {
req.controller.upload(req, res, next)
}
);
// anonymous upload, no auth required
app.post('/uploadAnonymous/:model',
requireController,
multer({
dest: tempDir,
limits: {
fileSize: 1024 * 1024 * 128 // 128m
},
rename: function (fieldname, filename) {
// Rename the file to a random string
var randomStr = makeRandomString(12);
var fileExt = path.extname(filename);
var newName = randomStr + fileExt;
return newName;
}
}),
expectUploadedFile,
function(req, res, next) {
// imageProcessor will checksum the file
if (req.params.model === 'image')
return next()
req.controller.checksumUpload(req, res, next)
},
function(req, res, next) {
req.controller.canWriteUploadAnonymous(req, res, next)
},
function(req, res, next) {
req.controller.uploadAnonymous(req, res, next)
}
);
// -----
// Admin
app.get('/admin/list',
requireAdminUser,
function(req, res, next) {
graphController.adminIndex(req, res, next)
}
)
// -----
// Edit Log routes
app.get('/editlog', function(req, res, next) {
return editLogController.userIndex(req, res, next)
})
app.get('/editlog/:channelName', function(req, res, next) {
return editLogController.show(req, res, next)
})
app.post('/editlog/:channelName', function(req, res, next) {
return editLogController.save(req, res, next)
})
app.post('/editlog/:channelName/join', function(req, res, next) {
return editLogController.join(req, res, next)
})
// -----
// User Patch routes
app.get('/:username/patches', function(req, res, next) {
patchController.findByCreatorName(req, res, next);
})
app.post('/:username/patches', function(req, res, next) {
patchController.save(req, res, next);
})
// -----
// Graph routes
// save, anonymous
app.post('/:model/v',
requireController,
function(req, res, next) {
req.user = {
username: 'v'
}
if (req.params.model === 'graph')
return req.controller.saveAnonymous(req, res, next)
req.controller.uploadAnonymous(req, res, next)
}
)
app.get(['/editor', '/edit'], graphController.edit.bind(graphController));
// GET /embed/fthr/dunes-world -- EMBED
app.get('/embed/:username/:graph', function(req, res, next) {
req.params.path = '/'+req.params.username+'/'+req.params.graph;
graphController.embed(req, res, next);
});
// GET /fthr/dunes-world/edit -- EDITOR
app.get('/:username/:graph/edit', function(req, res, next) {
req.params.path = '/'+req.params.username+'/'+req.params.graph;
graphController.edit(req, res, next);
});
// GET /fthr/dunes-world.json
app.get('/:username/:graph.json', function(req, res, next) {
req.params.path = '/'+req.params.username+'/'+req.params.graph.replace(/\.json$/g, '');
graphController.load(req, res, next);
});
// GET /fthr/dunes-world -- PLAYER
app.get('/:username/:graph', function(req, res, next) {
req.params.path = '/'+req.params.username+'/'+req.params.graph
graphController.graphLanding(req, res, next)
})
// POST /fthr/dunes-world -- USERPAGE
app.post('/:username/:graph',
passportConf.isAuthenticated,
function(req, res, next) {
req.params.path = '/'+req.params.username+'/'+req.params.graph
graphController.graphModify(req, res, next)
})
// DELETE /fthr/dunes-world
app.delete('/:username/:graph',
passportConf.isAuthenticated,
function(req, res, next) {
req.params.path = '/'+req.params.username+'/'+req.params.graph
graphController.delete(req, res, next)
})
// GET /fthr/dunes-world/graph.json
app.get('/:username/:graph/graph.json', function(req, res, next) {
req.params.path = '/'+req.params.username+'/'+req.params.graph.replace(/\.json$/g, '');
graphController.stream(req, res, next);
});
// ----
// Documentation
app.get('/docs/plugins/:pluginName', function(req, res, next) {
documentationController.getPluginDocumentation(req, res, next);
});
// ----
// Metadata on images
app.get(/^\/meta\/.*/, function(req, res, next) {
imageController.getMetadata(req, res, next);
})
// -----
// Generic model routes
// latest ("I'm feeling lucky")
app.get('/~latest-graph', function(req,res,next) {
graphController.latest(req, res, next)
})
// discovery
app.get([
'/browse',
'/browse/page/:page',
'/graphs',
'/graphs/page/:page'
], function(req, res, next) {
graphController.publicRankedIndex(req, res, next)
})
// list own assets
app.get(['/:model', '/:model/page/:page'], getController, function(req, res, next) {
if (!req.controller)
return graphController.userIndex(req, res, next)
requireController(req, res, function(err) {
if (err)
return next(err)
return req.controller.userIndex(req, res, next)
})
})
// list user assets
app.get(['/:username/assets/:model', '/:username/assets/:model.json'], getController, function(req, res, next) {
requireController(req, res, function(err) {
if (err)
return next(err)
return req.controller.userIndex(req, res, next)
})
})
// stream a file by asset path
// usually done by hash, but for audio, we need ogg and m4a on the same name
app.get('/:username/assets/:model/:filename', getController, function(req, res, next) {
requireController(req, res, function(err) {
if (err)
return next(err)
return req.controller.streamFile(req, res, next)
})
})
// list by tag for user
app.get('/:username/assets/:model/tag/:tag', requireController, function(req, res, next) {
req.controller.findByTagAndUsername(req, res, next)
})
// list by tag for current user
app.get('/:model/tag/:tag',
requireController,
function(req, res, next) {
if (!req.user || !req.user.username)
return res.json([])
req.params.username = req.user.username;
req.controller.findByTagAndUsername(req, res, next)
})
// get
app.get('/:model/:id', requireController, function(req, res, next) {
req.controller.load(req, res, next)
})
// save
app.post('/:model',
requireController,
passportConf.isAuthenticated,
function(req, res, next) {
req.controller.save(req, res, next)
}
)
// last resort Graph URLs
// GET /ju63
app.get('/:path', function(req, res, next) {
req.params.path = '/'+req.params.path
graphController.edit(req, res, next)
})
}
module.exports = {
setupDefaultRoutes: setupDefaultRoutes,
}