mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-03-16 09:30:49 +01:00
123 lines
3.0 KiB
JavaScript
123 lines
3.0 KiB
JavaScript
'use strict';
|
|
|
|
var async = require('async');
|
|
var winston = require('winston');
|
|
var path = require('path');
|
|
|
|
var user = require('../../user');
|
|
var plugins = require('../../plugins');
|
|
|
|
module.exports = function(SocketUser) {
|
|
|
|
SocketUser.changePicture = function(socket, data, callback) {
|
|
if (!socket.uid) {
|
|
return callback('[[error:invalid-uid]]');
|
|
}
|
|
|
|
if (!data) {
|
|
return callback(new Error('[[error:invalid-data]]'));
|
|
}
|
|
|
|
var type = data.type;
|
|
|
|
async.waterfall([
|
|
function (next) {
|
|
user.isAdminOrSelf(socket.uid, data.uid, next);
|
|
},
|
|
function (next) {
|
|
switch(type) {
|
|
case 'default':
|
|
next(null, '');
|
|
break;
|
|
case 'uploaded':
|
|
user.getUserField(data.uid, 'uploadedpicture', next);
|
|
break;
|
|
default:
|
|
plugins.fireHook('filter:user.getPicture', {
|
|
uid: socket.uid,
|
|
type: type,
|
|
picture: undefined
|
|
}, function(err, returnData) {
|
|
next(null, returnData.picture || '');
|
|
});
|
|
break;
|
|
}
|
|
},
|
|
function (picture, next) {
|
|
user.setUserField(data.uid, 'picture', picture, next);
|
|
}
|
|
], callback);
|
|
};
|
|
|
|
SocketUser.uploadProfileImageFromUrl = function(socket, data, callback) {
|
|
if (!socket.uid || !data.url || !data.uid) {
|
|
return callback(new Error('[[error:invalid-data]]'));
|
|
}
|
|
|
|
user.isAdminOrSelf(socket.uid, data.uid, function(err) {
|
|
if (err) {
|
|
return callback(err);
|
|
}
|
|
user.uploadFromUrl(data.uid, data.url, function(err, uploadedImage) {
|
|
callback(err, uploadedImage ? uploadedImage.url : null);
|
|
});
|
|
});
|
|
};
|
|
|
|
SocketUser.removeUploadedPicture = function(socket, data, callback) {
|
|
if (!socket.uid || !data.uid) {
|
|
return callback(new Error('[[error:invalid-data]]'));
|
|
}
|
|
|
|
async.waterfall([
|
|
function (next) {
|
|
user.isAdminOrSelf(socket.uid, data.uid, next);
|
|
},
|
|
function (next) {
|
|
user.getUserFields(data.uid, ['uploadedpicture', 'picture'], next);
|
|
},
|
|
function(userData, next) {
|
|
if (!userData.uploadedpicture.startsWith('http')) {
|
|
require('fs').unlink(path.join(__dirname, '../../../public', userData.uploadedpicture), function(err) {
|
|
if (err) {
|
|
winston.error(err);
|
|
}
|
|
});
|
|
}
|
|
|
|
user.setUserFields(data.uid, {
|
|
uploadedpicture: '',
|
|
picture: userData.uploadedpicture === userData.picture ? '' : userData.picture // if current picture is uploaded picture, reset to user icon
|
|
}, next);
|
|
}
|
|
], callback);
|
|
};
|
|
|
|
SocketUser.getProfilePictures = function(socket, data, callback) {
|
|
if (!data || !data.uid) {
|
|
return callback(new Error('[[error:invalid-data]]'));
|
|
}
|
|
|
|
async.parallel({
|
|
list: async.apply(plugins.fireHook, 'filter:user.listPictures', {
|
|
uid: data.uid,
|
|
pictures: []
|
|
}),
|
|
uploaded: async.apply(user.getUserField, data.uid, 'uploadedpicture')
|
|
}, function(err, data) {
|
|
if (err) {
|
|
return callback(err);
|
|
}
|
|
|
|
if (data.uploaded) {
|
|
data.list.pictures.push({
|
|
type: 'uploaded',
|
|
url: data.uploaded,
|
|
text: '[[user:uploaded_picture]]'
|
|
});
|
|
}
|
|
|
|
callback(null, data.list.pictures);
|
|
})
|
|
};
|
|
}; |