forked from xgrommx/vizor-create
-
Notifications
You must be signed in to change notification settings - Fork 0
/
modelRoutes.js
325 lines (271 loc) · 7.94 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
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;
});
module.exports =
function modelRoutes(
app,
gfs,
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 PresetController = require('./controllers/presetController');
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'), gfs),
gfs,
mongoConnection
);
var imageController = new ImageController(
new AssetService(require('./models/image')),
gfs
);
var sceneController = new SceneController(
new AssetService(require('./models/scene')),
gfs
);
var AudioModel = require('./models/audio');
var audioController = new AssetController(
AudioModel,
new AssetService(AudioModel),
gfs
);
var VideoModel = require('./models/video');
var videoController = new AssetController(
VideoModel,
new AssetService(VideoModel),
gfs
);
var presetController = new PresetController(
new AssetService(require('./models/preset')),
gfs
);
var JsonModel = require('./models/json');
var jsonController = new AssetController(
JsonModel,
new AssetService(JsonModel),
gfs
);
var controllers = {
graph: graphController,
image: imageController,
scene: sceneController,
audio: audioController,
video: videoController,
json: jsonController,
preset: presetController
}
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();
}
// 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, '-');
}
}),
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;
}
}),
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)
}
);
// -----
// 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)
})
// -----
// Preset routes
app.get('/:username/presets', function(req, res, next) {
presetController.findByCreatorName(req, res, next);
})
app.post('/:username/presets', function(req, res, next) {
presetController.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 -- PLAYER
app.get('/:username/:graph', function(req, res, next) {
req.params.path = '/'+req.params.username+'/'+req.params.graph;
graphController.graphLanding(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/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);
});
// -----
// Generic model routes
// latest ("I'm feeling lucky")
app.get('/graph/latest', function(req,res,next) {
graphController.latest(req, res, next)
})
// list
app.get(['/graph', '/graphs', '/graphs.json', '/graph.json'], function(req,res,next){
graphController.index(req, res, next)
})
// list own assets
app.get('/:model', 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)
})
})
// 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)
})
}