2017-04-07 01:29:05 +02:00
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
var config = require('config');
|
2018-04-12 18:40:58 +02:00
|
|
|
|
|
|
|
|
|
const os = require('os');
|
|
|
|
|
const db = require('../../models/db');
|
|
|
|
|
const Sequelize = require('sequelize');
|
|
|
|
|
const Op = Sequelize.Op;
|
|
|
|
|
const uuidv4 = require('uuid/v4');
|
2017-04-07 01:29:05 +02:00
|
|
|
|
|
|
|
|
|
var payloadConverter = require('../../helpers/artifact_converter');
|
|
|
|
|
var redis = require('../../helpers/redis');
|
|
|
|
|
|
|
|
|
|
var async = require('async');
|
|
|
|
|
var fs = require('fs');
|
|
|
|
|
var _ = require("underscore");
|
|
|
|
|
var archiver = require('archiver');
|
|
|
|
|
var request = require('request');
|
|
|
|
|
var url = require("url");
|
|
|
|
|
var path = require("path");
|
|
|
|
|
var crypto = require('crypto');
|
|
|
|
|
var glob = require('glob');
|
|
|
|
|
var gm = require('gm');
|
|
|
|
|
|
|
|
|
|
var express = require('express');
|
|
|
|
|
var router = express.Router({mergeParams: true});
|
|
|
|
|
|
|
|
|
|
// JSON MAPPINGS
|
|
|
|
|
var userMapping = {
|
|
|
|
|
_id: 1,
|
|
|
|
|
nickname: 1,
|
|
|
|
|
email: 1,
|
|
|
|
|
avatar_thumb_uri: 1
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var spaceMapping = {
|
|
|
|
|
_id: 1,
|
|
|
|
|
name: 1,
|
|
|
|
|
thumbnail_url: 1
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var roleMapping = {
|
|
|
|
|
"none": 0,
|
|
|
|
|
"viewer": 1,
|
|
|
|
|
"editor": 2,
|
|
|
|
|
"admin": 3
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ARTIFACTS
|
|
|
|
|
|
|
|
|
|
router.get('/', (req, res) => {
|
2018-04-12 18:40:58 +02:00
|
|
|
|
db.Artifact.findAll({where: {
|
2017-04-07 01:29:05 +02:00
|
|
|
|
space_id: req.space._id
|
2018-04-12 18:40:58 +02:00
|
|
|
|
}}).then(artifacts => {
|
2017-04-07 01:29:05 +02:00
|
|
|
|
async.map(artifacts, (a, cb) => {
|
2018-04-15 00:23:52 +02:00
|
|
|
|
db.unpackArtifact(a);
|
2018-04-12 18:40:58 +02:00
|
|
|
|
|
2017-04-07 01:29:05 +02:00
|
|
|
|
if (a.user_id) {
|
2018-04-12 18:40:58 +02:00
|
|
|
|
// FIXME JOIN
|
|
|
|
|
/*User.findOne({where: {
|
2017-04-07 01:29:05 +02:00
|
|
|
|
"_id": a.user_id
|
2018-04-12 18:40:58 +02:00
|
|
|
|
}}).select({
|
2017-04-07 01:29:05 +02:00
|
|
|
|
"_id": 1,
|
|
|
|
|
"nickname": 1,
|
|
|
|
|
"email": 1
|
|
|
|
|
}).exec((err, user) => {
|
2018-01-08 15:57:59 +01:00
|
|
|
|
if (user) {
|
|
|
|
|
a['user'] = user.toObject();
|
|
|
|
|
}
|
2017-04-07 01:29:05 +02:00
|
|
|
|
cb(err, a);
|
2018-04-12 18:40:58 +02:00
|
|
|
|
});*/
|
|
|
|
|
cb(null, a);
|
2017-04-07 01:29:05 +02:00
|
|
|
|
} else {
|
|
|
|
|
cb(null, a);
|
|
|
|
|
}
|
|
|
|
|
}, (err, mappedArtifacts) => {
|
|
|
|
|
if (err) res.status(400).json(err);
|
|
|
|
|
else {
|
|
|
|
|
res.status(200).json(mappedArtifacts);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
router.post('/', function(req, res, next) {
|
|
|
|
|
var attrs = req.body;
|
|
|
|
|
|
|
|
|
|
attrs['space_id'] = req.space._id;
|
|
|
|
|
|
2018-04-12 18:40:58 +02:00
|
|
|
|
var artifact = attrs;
|
|
|
|
|
artifact._id = uuidv4();
|
2017-04-07 01:29:05 +02:00
|
|
|
|
|
|
|
|
|
if (req.user) {
|
|
|
|
|
artifact.user_id = req.user._id;
|
|
|
|
|
artifact.last_update_user_id = req.user._id;
|
|
|
|
|
} else {
|
|
|
|
|
artifact.last_update_editor_name = req.editor_name;
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-12 18:40:58 +02:00
|
|
|
|
db.packArtifact(artifact);
|
|
|
|
|
|
|
|
|
|
if (req.spaceRole == "editor" || req.spaceRole == "admin") {
|
|
|
|
|
db.Artifact.create(artifact).then(() => {
|
|
|
|
|
//if (err) res.status(400).json(err);
|
|
|
|
|
db.unpackArtifact(artifact);
|
|
|
|
|
db.Space.update({ updated_at: new Date() }, {where: {_id: req.space._id}});
|
|
|
|
|
res.distributeCreate("Artifact", artifact);
|
2017-04-07 01:29:05 +02:00
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
res.status(401).json({
|
2018-04-12 18:40:58 +02:00
|
|
|
|
"error": "Access denied"
|
2017-04-07 01:29:05 +02:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
router.post('/:artifact_id/payload', function(req, res, next) {
|
|
|
|
|
if (req.spaceRole == "editor"Â || Â req.spaceRole == "admin") {
|
|
|
|
|
var a = req.artifact;
|
|
|
|
|
|
|
|
|
|
var fileName = (req.query.filename || "upload.bin").replace(/[^a-zA-Z0-9_\-\.]/g, '');
|
2018-04-12 18:40:58 +02:00
|
|
|
|
|
|
|
|
|
var localFilePath = os.tmpdir() + "/" + fileName;
|
2017-04-07 01:29:05 +02:00
|
|
|
|
var writeStream = fs.createWriteStream(localFilePath);
|
|
|
|
|
var stream = req.pipe(writeStream);
|
|
|
|
|
|
2018-05-07 20:19:07 +02:00
|
|
|
|
var progressCallback = function(progressMsg) {
|
|
|
|
|
a.description = progressMsg.toString();
|
2018-04-15 00:23:52 +02:00
|
|
|
|
db.packArtifact(a);
|
2017-04-07 01:29:05 +02:00
|
|
|
|
a.save();
|
2018-05-07 20:19:07 +02:00
|
|
|
|
redis.sendMessage("update", "Artifact", a, req.channelId);
|
2017-04-07 01:29:05 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
stream.on('finish', function() {
|
|
|
|
|
payloadConverter.convert(a, fileName, localFilePath, function(error, artifact) {
|
|
|
|
|
if (error) res.status(400).json(error);
|
|
|
|
|
else {
|
2018-04-12 18:40:58 +02:00
|
|
|
|
db.Space.update({ updated_at: new Date() }, {where: {_id: req.space._id}});
|
2017-04-07 01:29:05 +02:00
|
|
|
|
res.distributeUpdate("Artifact", artifact);
|
|
|
|
|
}
|
2018-05-07 20:19:07 +02:00
|
|
|
|
}, progressCallback);
|
2017-04-07 01:29:05 +02:00
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
res.status(401).json({
|
|
|
|
|
"error": "no access"
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
router.put('/:artifact_id', function(req, res, next) {
|
|
|
|
|
var a = req.artifact;
|
|
|
|
|
var newAttr = req.body;
|
|
|
|
|
newAttr.updated_at = new Date();
|
|
|
|
|
delete newAttr['_id'];
|
|
|
|
|
|
|
|
|
|
if (req.user) {
|
|
|
|
|
newAttr.last_update_user_id = req.user._id;
|
|
|
|
|
} else {
|
|
|
|
|
newAttr.last_update_editor_name = req.editor_name;
|
|
|
|
|
}
|
2018-04-12 18:40:58 +02:00
|
|
|
|
|
|
|
|
|
db.packArtifact(newAttr);
|
2017-04-07 01:29:05 +02:00
|
|
|
|
|
2018-04-12 18:40:58 +02:00
|
|
|
|
db.Artifact.update(newAttr, { where: {
|
2017-04-07 01:29:05 +02:00
|
|
|
|
"_id": a._id
|
2018-04-12 18:40:58 +02:00
|
|
|
|
}}).then(rows => {
|
|
|
|
|
db.unpackArtifact(newAttr);
|
|
|
|
|
db.Space.update({ updated_at: new Date() }, {where: {_id: req.space._id} });
|
2018-05-01 17:04:08 +02:00
|
|
|
|
newAttr._id = a._id;
|
2018-04-12 18:40:58 +02:00
|
|
|
|
res.distributeUpdate("Artifact", newAttr);
|
2017-04-07 01:29:05 +02:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
router.delete('/:artifact_id', function(req, res, next) {
|
|
|
|
|
var artifact = req.artifact;
|
2018-04-12 18:40:58 +02:00
|
|
|
|
db.Artifact.destroy({where: { "_id": artifact._id}}).then(() => {
|
|
|
|
|
db.Space.update({ updated_at: new Date() }, {where: {_id: req.space._id} });
|
|
|
|
|
res.distributeDelete("Artifact", artifact);
|
2017-04-07 01:29:05 +02:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
module.exports = router;
|