spaces.js 16.1 KB
Newer Older
mntmn's avatar
mntmn committed
1
2
"use strict";
var config = require('config');
3
4
5
6
const db = require('../../models/db');
const Sequelize = require('sequelize');
const Op = Sequelize.Op;
const uuidv4 = require('uuid/v4');
mntmn's avatar
mntmn committed
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

var redis = require('../../helpers/redis');
var mailer = require('../../helpers/mailer');
var uploader = require('../../helpers/uploader');
var space_render = require('../../helpers/space-render');
var phantom = require('../../helpers/phantom');
var payloadConverter = require('../../helpers/artifact_converter');

var slug = require('slug');

var fs = require('fs');
var async = require('async');
var _ = require("underscore");
var request = require('request');
var url = require("url");
var path = require("path");
var crypto = require('crypto');
var glob = require('glob');
var gm = require('gm');
const exec = require('child_process');
var express = require('express');
var router = express.Router();

// JSON MAPPINGS
var userMapping = {
  _id: 1,
  nickname: 1,
  email: 1,
  avatar_thumb_uri: 1
};

var spaceMapping = {
  _id: 1,
  name: 1,
  thumbnail_url: 1
};

router.get('/', function(req, res, next) {
  if (!req.user) {
    res.status(403).json({
      error: "auth required"
    });
  } else {
    if (req.query.writablefolders) {
51
52
53
      db.Membership.find({where: {
        user_id: req.user._id
      }}, (memberships) => {
mntmn's avatar
mntmn committed
54
55
        
        var validMemberships = memberships.filter((m) => {
56
          if (!m.space_id || (m.space_id == "undefined"))
mntmn's avatar
mntmn committed
57
            return false;
58
          return true;
mntmn's avatar
mntmn committed
59
60
61
62
63
64
65
        });

        var editorMemberships = validMemberships.filter((m) => {
          return (m.role == "editor") || (m.role == "admin")
        });

        var spaceIds = editorMemberships.map(function(m) {
66
          return m.space_id;
mntmn's avatar
mntmn committed
67
68
        });

69
        // TODO port
mntmn's avatar
mntmn committed
70
71
72
73
74
75
76
77
78
79
80
81
82
83
        var q = {
          "space_type": "folder",
          "$or": [{
            "creator": req.user._id
          }, {
            "_id": {
              "$in": spaceIds
            },
            "creator": {
              "$ne": req.user._id
            }
          }]
        };

84
85
86
        db.Space
          .findAll({where: q})
          .then(function(spaces) {
mntmn's avatar
mntmn committed
87
            var updatedSpaces = spaces.map(function(s) {
88
              var spaceObj = s; //.toObject();
mntmn's avatar
mntmn committed
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
              return spaceObj;
            });

            async.map(spaces, (space, cb) => {
              Space.getRecursiveSubspacesForSpace(space, (err, spaces) => {
                var allSpaces = spaces;
                cb(err, allSpaces);
              })
            }, (err, spaces) => {

              var allSpaces = _.flatten(spaces);

              var onlyFolders = _.filter(allSpaces, (s) => {
                return s.space_type == "folder";
              })
              var uniqueFolders = _.unique(onlyFolders, (s) => {
105
                return s._id;
mntmn's avatar
mntmn committed
106
107
108
109
110
111
112
113
              })

              res.status(200).json(uniqueFolders);
            });
          });
      });
    } else if (req.query.search) {

114
115
116
      db.Membership.findAll({where:{
        user_id: req.user._id
      }}).then(memberships => {
mntmn's avatar
mntmn committed
117
118
        
        var validMemberships = memberships.filter(function(m) {
119
          if (!m.space_id || (m.space_id == "undefined"))
mntmn's avatar
mntmn committed
120
121
            return false;
          else
122
            return true;
mntmn's avatar
mntmn committed
123
124
125
        });

        var spaceIds = validMemberships.map(function(m) {
126
          return m.space_id;
mntmn's avatar
mntmn committed
127
128
        });

129
130
131
132
133
134
135
136
137
138
139
        // TODO FIXME port
        var q = { where: {
          [Op.or]: [{"creator_id": req.user._id},
                   {"_id": {[Op.in]: spaceIds}},
                   {"parent_space_id": {[Op.in]: spaceIds}}],
          name: {[Op.like]: "%"+req.query.search+"%"}
        }, include: ['creator']};

        db.Space
          .findAll(q)
          .then(function(spaces) {
mntmn's avatar
mntmn committed
140
141
142
143
144
145
            res.status(200).json(spaces);
          });
      });

    } else if (req.query.parent_space_id && req.query.parent_space_id != req.user.home_folder_id) {

146
147
      db.Space
        .findOne({where: {
mntmn's avatar
mntmn committed
148
          _id: req.query.parent_space_id
149
150
151
        }})
        //.populate('creator', userMapping)
        .then(function(space) {
mntmn's avatar
mntmn committed
152
          if (space) {
153
            db.getUserRoleInSpace(space, req.user, function(role) {
mntmn's avatar
mntmn committed
154
              if (role == "none") {
155
                if (space.access_mode == "public") {
mntmn's avatar
mntmn committed
156
157
158
159
160
                  role = "viewer";
                }
              }

              if (role != "none") {
161
162
                db.Space
                  .findAll({where:{
mntmn's avatar
mntmn committed
163
                    parent_space_id: req.query.parent_space_id
164
165
                  }, include:['creator']})
                  .then(function(spaces) {
mntmn's avatar
mntmn committed
166
167
168
169
170
171
172
173
174
175
176
177
                    res.status(200).json(spaces);
                  });
              } else {
                res.status(403).json({"error": "no authorized"});
              }
            });
          } else {
            res.status(404).json({"error": "space not found"});
          }
        });

    } else {
178
179
180
181
182
      db.Membership.findAll({ where: {
        user_id: req.user._id
      }}).then(memberships => {
        if (!memberships) memberships = [];
        
mntmn's avatar
mntmn committed
183
        var validMemberships = memberships.filter(function(m) {
184
          if (!m.space_id || (m.space_id == "undefined"))
mntmn's avatar
mntmn committed
185
186
187
188
            return false;
        });

        var spaceIds = validMemberships.map(function(m) {
189
          return m.space_id;
mntmn's avatar
mntmn committed
190
191
192
        });

        var q = {
193
194
          [Op.or]: [{
            "creator_id": req.user._id,
mntmn's avatar
mntmn committed
195
196
197
            "parent_space_id": req.user.home_folder_id
          }, {
            "_id": {
198
              [Op.in]: spaceIds
mntmn's avatar
mntmn committed
199
            },
200
201
            "creator_id": {
              [Op.ne]: req.user._id
mntmn's avatar
mntmn committed
202
203
204
205
            }
          }]
        };

206
207
208
        db.Space
          .findAll({where: q, include: ['creator']})
          .then(function(spaces) {
mntmn's avatar
mntmn committed
209
            var updatedSpaces = spaces.map(function(s) {
210
              var spaceObj = db.spaceToObject(s);
mntmn's avatar
mntmn committed
211
212
213
214
215
216
217
218
219
              return spaceObj;
            });
            res.status(200).json(spaces);
          });
      });
    }
  }
});

220
// create a space
mntmn's avatar
mntmn committed
221
222
223
224
225
router.post('/', function(req, res, next) {
  if (req.user) {
    var attrs = req.body;

    var createSpace = () => {
226
227
      attrs._id = uuidv4();
      attrs.creator_id = req.user._id;
mntmn's avatar
mntmn committed
228
229
230
      attrs.edit_hash = crypto.randomBytes(64).toString('hex').substring(0, 7);
      attrs.edit_slug = slug(attrs.name);
      
231
232
233
234
235
236
237
238
239
240
241
242
      db.Space.create(attrs).then(createdSpace => {
        //if (err) res.sendStatus(400);
        var membership = {
          _id: uuidv4(),
          user_id: req.user._id,
          space_id: attrs._id,
          role: "admin"
        };
        
        db.Membership.create(membership).then(() => {
          res.status(201).json(createdSpace);
        });
mntmn's avatar
mntmn committed
243
244
245
246
      });
    }

    if (attrs.parent_space_id) {
247
      db.Space.findOne({ where: {
mntmn's avatar
mntmn committed
248
        "_id": attrs.parent_space_id
249
      }}).then(parentSpace => {
mntmn's avatar
mntmn committed
250
        if (parentSpace) {
251
          db.getUserRoleInSpace(parentSpace, req.user, (role) => {
mntmn's avatar
mntmn committed
252
253
254
255
            if ((role == "editor") || (role == "admin")) {
              createSpace();
            } else {
              res.status(403).json({
256
                "error": "not editor in parent Space. role: "+role
mntmn's avatar
mntmn committed
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
              });
            }
          });
        } else {
          res.status(404).json({
            "error": "parent Space not found"
          });
        }
      });
    } else {
      createSpace();
    }

  } else {
    res.sendStatus(403);
  }
});

router.get('/:id', function(req, res, next) {
  res.status(200).json(req.space);
});

279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
router.get('/:id/path', (req, res) => {
  // build up a breadcrumb trail (path)
  var path = [];
  var buildPath = (space) => {
    if (space.parent_space_id) {
      db.Space.findOne({ where: {
        "_id": space.parent_space_id
      }}).then(parentSpace => {
        if (space._id == parentSpace._id) {
          console.error("error: circular parent reference for space " + space._id);
          res.send("error: circular reference");
        } else {
          path.push(parentSpace);
          buildPath(parentSpace);
        }
      });
    } else {
      // reached the top
      res.json(path.reverse());
    }
  }
  buildPath(req.space);
});

mntmn's avatar
mntmn committed
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
router.put('/:id', function(req, res) {
  var space = req.space;
  var newAttr = req.body;

  if (req['spaceRole'] != "editor" && req['spaceRole'] != "admin") {
    res.sendStatus(403);
    return;
  }

  newAttr.updated_at = new Date();
  newAttr.edit_slug = slug(newAttr['name']);

  delete newAttr['_id'];
  delete newAttr['editor_name'];
  delete newAttr['creator'];

319
  db.Space.update(newAttr, {where: {
mntmn's avatar
mntmn committed
320
    "_id": space._id
321
322
  }}).then(space => {
    res.distributeUpdate("Space", space);
mntmn's avatar
mntmn committed
323
324
325
326
327
328
  });
});

router.post('/:id/background', function(req, res, next) {
  var space = req.space;
  var newDate = new Date();
329
  var fileName = (req.query.filename || "upload.jpg").replace(/[^a-zA-Z0-9\.]/g, '');
mntmn's avatar
mntmn committed
330
331
332
333
334
335
336
337
  var localFilePath = "/tmp/" + fileName;
  var writeStream = fs.createWriteStream(localFilePath);
  var stream = req.pipe(writeStream);

  req.on('end', function() {
    uploader.uploadFile("s" + req.space._id + "/bg_" + newDate.getTime() + "_" + fileName, "image/jpeg", localFilePath, function(err, backgroundUrl) {
      if (err) res.status(400).json(err);
      else {
338
339
        if (space.background_uri) {
          var oldPath = url.parse(req.space.background_uri).pathname;
mntmn's avatar
mntmn committed
340
          uploader.removeFile(oldPath, function(err) {
341
            console.error("removed old bg error:", err);
mntmn's avatar
mntmn committed
342
343
344
          });
        }

345
346
        db.Space.update({
          background_uri: backgroundUrl
mntmn's avatar
mntmn committed
347
        }, {
348
349
350
351
352
353
354
355
356
357
          where: { "_id": space._id }
        }, function(rows) {
          fs.unlink(localFilePath, function(err) {
            if (err) {
              console.error(err);
              res.status(400).json(err);
            } else {
              res.status(200).json(space);
            }
          });
mntmn's avatar
mntmn committed
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
        });
      }
    });
  });
});

var handleDuplicateSpaceRequest = function(req, res, parentSpace) {
  Space.duplicateSpace(req.space, req.user, 0, (err, newSpace) => {
    if (err) {
      console.error(err);
      res.status(400).json(err);
    } else {
      res.status(201).json(newSpace);
    }
  }, parentSpace);
}

router.post('/:id/duplicate', (req, res, next) => {
  if (req.query.parent_space_id) {
    Space.findOne({
      _id: req.query.parent_space_id
    }).populate('creator', userMapping).exec((err, parentSpace) => {
      if (!parentSpace) {
        res.status(404).json({
382
          "error": "parent space not found for duplicate"
mntmn's avatar
mntmn committed
383
384
        });
      } else {
385
        db.getUserRoleInSpace(parentSpace, req.user, (role) => {
mntmn's avatar
mntmn committed
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
          if (role == "admin" ||  role == "editor") {
            handleDuplicateSpaceRequest(req, res, parentSpace);
          } else {
            res.status(403).json({
              "error": "not authed for parent_space_id"
            });
          }
        });
      }
    });
  } else {
    handleDuplicateSpaceRequest(req, res);
  }
});

router.delete('/:id', function(req, res, next) {
  if (req.user) {
    const space = req.space;

    if (req.spaceRole == "admin") {
      const attrs = req.body;
407
408
      space.destroy().then(function() {
        res.distributeDelete("Space", space);
mntmn's avatar
mntmn committed
409
410
411
      });
    } else {
      res.status(403).json({
412
        "error": "requires admin role"
mntmn's avatar
mntmn committed
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
      });
    }
  } else {
    res.sendStatus(403);
  }
});

router.post('/:id/artifacts-pdf', function(req, res, next) {
  if (req.spaceRole == "editor" || req.spaceRole == "admin") {

    var withZones = (req.query.zones) ? req.query.zones == "true" : false;
    var fileName = (req.query.filename || "upload.bin").replace(/[^a-zA-Z0-9\.]/g, '');
    var localFilePath = "/tmp/" + fileName;
    var writeStream = fs.createWriteStream(localFilePath);
    var stream = req.pipe(writeStream);

    req.on('end', function() {

      var rawName = fileName.slice(0, fileName.length - 4);
      var outputFolder = "/tmp/" + rawName;
      var rights = 777;

      fs.mkdir(outputFolder, function(db) {
        var images = outputFolder + "/" + rawName + "-page-%03d.jpeg";
        
438
        // FIXME not portable
mntmn's avatar
mntmn committed
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
        exec.execFile("gs", ["-sDEVICE=jpeg", "-dDownScaleFactor=4", "-dDOINTERPOLATE", "-dNOPAUSE", "-dJPEGQ=80", "-dBATCH", "-sOutputFile=" + images, "-r250", "-f", localFilePath], {}, function(error, stdout, stderr) {
          if (error === null) {

            glob(outputFolder + "/*.jpeg", function(er, files) {
              var count = files.length;
              var delta = 10;

              var limitPerRow = Math.ceil(Math.sqrt(count));

              var startX = parseInt(req.query.x, delta);
              var startY = parseInt(req.query.y, delta);

              async.mapLimit(files, 20, function(localfilePath, cb) {

                var fileName = path.basename(localfilePath);
                var baseName = path.basename(localfilePath, ".jpeg");

                var number = parseInt(baseName.slice(baseName.length - 3, baseName.length), 10);

                gm(localFilePath).size(function(err, size) {
                  var w = 350;
                  var h = w;

                  var x = startX + (((number - 1) % limitPerRow) * w);
                  var y = startY + ((parseInt(((number - 1) / limitPerRow), 10) + 1) * w);

                  var userId;
                  if (req.user)
                    userId = req.user._id;

                  var a = new Artifact({
                    mime: "image/jpg",
                    space_id: req.space._id,
                    user_id: userId,
                    editor_name: req.guest_name,
                    board: {
                      w: w,
                      h: h,
                      x: x,
                      y: y,
                      z: (number + (count + 100))
                    }
                  });

                  payloadConverter.convert(a, fileName, localfilePath, (error, artifact) => {
                    if (error) res.status(400).json(error);
                    else {
                      if (withZones) {
                        var zone = new Artifact({
                          mime: "x-spacedeck/zone",
                          description: "Zone " + (number),
                          space_id: req.space._id,
                          user_id: userId,
                          editor_name: req.guest_name,
                          board: {
                            w: artifact.board.w + 20,
                            h: artifact.board.h + 40,
                            x: x - 10,
                            y: y - 30,
                            z: number
                          },
                          style: {
                            order: number,
                            valign: "middle",
                            align: "center"
                          }
                        });

                        zone.save((err) => {
                          redis.sendMessage("create", "Artifact", zone.toJSON(), req.channelId);
                          cb(null, [artifact, zone]);
                        });

                      } else {
                        cb(null, [artifact]);
                      }
                    }
                  });

                });

              }, function(err, artifacts) {

522
                // FIXME not portable
mntmn's avatar
mntmn committed
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
                exec.execFile("rm", ["-r", outputFolder], function(err) {
                  res.status(201).json(_.flatten(artifacts));
                  
                  async.eachLimit(artifacts, 10, (artifact_or_artifacts, cb) => {

                    if (artifact_or_artifacts instanceof Array) {
                      _.each(artifact_or_artifacts, (a) => {
                        redis.sendMessage("create", "Artifact", a.toJSON(), req.channelId);
                      });
                    } else  {
                      redis.sendMessage("create", "Artifact", artifact_or_artifacts.toJSON(), req.channelId);
                    }
                    cb(null);
                  });
                });
              });
            });
          } else {
            console.error("error:", error);
542
            // FIXME not portable
mntmn's avatar
mntmn committed
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
            exec.execFile("rm", ["-r", outputFolder], function(err) {
              fs.unlink(localFilePath);
              res.status(400).json({});
            });
          }
        });
      });
    });
  } else {
    res.status(401).json({
      "error": "no access"
    });
  }
});

module.exports = router;