You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.5 KiB
64 lines
2.5 KiB
5 years ago
|
"use strict";
|
||
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||
|
return new (P || (P = Promise))(function (resolve, reject) {
|
||
|
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||
|
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||
|
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||
|
});
|
||
|
};
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
const models_1 = require("../models");
|
||
|
const env = process.env.NODE_ENV || 'development';
|
||
|
const config = require(__dirname + '/../../config/app.json')[env];
|
||
|
// setup disk storage
|
||
|
var multer = require('multer');
|
||
|
var avatarStorage = multer.diskStorage({
|
||
|
destination: (req, file, cb) => {
|
||
|
let dir = __dirname.includes('/dist/') ? __dirname + '/..' : __dirname;
|
||
|
cb(null, dir + '/../../public/uploads');
|
||
|
},
|
||
|
filename: (req, file, cb) => {
|
||
|
const mime = file.mimetype;
|
||
|
const extA = mime.split("/");
|
||
|
const ext = extA[extA.length - 1];
|
||
|
if (req.body.chat_id) {
|
||
|
cb(null, `chat_${req.body.chat_id}_picture.${ext}`);
|
||
|
}
|
||
|
else {
|
||
|
cb(null, `${req.body.contact_id}_profile_picture.${ext}`);
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
var avatarUpload = multer({ storage: avatarStorage });
|
||
|
exports.avatarUpload = avatarUpload;
|
||
|
const uploadFile = (req, res) => __awaiter(void 0, void 0, void 0, function* () {
|
||
|
const { contact_id, chat_id } = req.body;
|
||
|
const { file } = req;
|
||
|
const photo_url = config.node_http_protocol +
|
||
|
'://' +
|
||
|
process.env.NODE_IP +
|
||
|
'/static/uploads/' +
|
||
|
file.filename;
|
||
|
if (contact_id) {
|
||
|
const contact = yield models_1.models.Contact.findOne({ where: { id: contact_id } });
|
||
|
if (contact)
|
||
|
contact.update({ photoUrl: photo_url });
|
||
|
}
|
||
|
if (chat_id) {
|
||
|
const chat = yield models_1.models.Chat.findOne({ where: { id: chat_id } });
|
||
|
if (chat)
|
||
|
chat.update({ photoUrl: photo_url });
|
||
|
}
|
||
|
res.status(200);
|
||
|
res.json({
|
||
|
success: true,
|
||
|
contact_id: parseInt(contact_id || 0),
|
||
|
chat_id: parseInt(chat_id || 0),
|
||
|
photo_url
|
||
|
});
|
||
|
res.end();
|
||
|
});
|
||
|
exports.uploadFile = uploadFile;
|
||
|
//# sourceMappingURL=uploads.js.map
|