mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-04 21:15:55 +01:00
only png jpg and gifs are allowed for image upload, increase profile image size to 256kb
This commit is contained in:
@@ -91,20 +91,29 @@ var user = require('./../user.js'),
|
||||
if(!req.user)
|
||||
return res.redirect('/403');
|
||||
|
||||
if(req.files.userPhoto.size > 131072) {
|
||||
if(req.files.userPhoto.size > 262144) {
|
||||
res.send({
|
||||
error: 'Images must be smaller than 128kb!'
|
||||
error: 'Images must be smaller than 256kb!'
|
||||
});
|
||||
return;
|
||||
}
|
||||
var allowedTypes = ['image/png', 'image/jpeg', 'image/jpg', 'image/gif'];
|
||||
var type = req.files.userPhoto.type;
|
||||
|
||||
if(allowedTypes.indexOf(type) === -1) {
|
||||
res.send({
|
||||
error: 'Allowed image types are png, jpg and gif!'
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
user.getUserField(req.user.uid, 'uploadedpicture', function(oldpicture) {
|
||||
|
||||
if(!oldpicture) {
|
||||
uploadUserPicture(req.user.uid, req.files.userPhoto.name, req.files.userPhoto.path, res);
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
var index = oldpicture.lastIndexOf('/');
|
||||
var filename = oldpicture.substr(index + 1);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user