|
|
|
@ -24,13 +24,13 @@ Flags.get = function (flagId, callback) {
|
|
|
|
|
async.apply(async.parallel, {
|
|
|
|
|
base: async.apply(db.getObject.bind(db), 'flag:' + flagId),
|
|
|
|
|
history: async.apply(Flags.getHistory, flagId),
|
|
|
|
|
notes: async.apply(Flags.getNotes, flagId)
|
|
|
|
|
notes: async.apply(Flags.getNotes, flagId),
|
|
|
|
|
}),
|
|
|
|
|
function (data, next) {
|
|
|
|
|
// Second stage
|
|
|
|
|
async.parallel({
|
|
|
|
|
userObj: async.apply(user.getUserFields, data.base.uid, ['username', 'userslug', 'picture']),
|
|
|
|
|
targetObj: async.apply(Flags.getTarget, data.base.type, data.base.targetId, data.base.uid)
|
|
|
|
|
targetObj: async.apply(Flags.getTarget, data.base.type, data.base.targetId, data.base.uid),
|
|
|
|
|
}, function (err, payload) {
|
|
|
|
|
// Final object return construction
|
|
|
|
|
next(err, Object.assign(data.base, {
|
|
|
|
@ -39,10 +39,10 @@ Flags.get = function (flagId, callback) {
|
|
|
|
|
target: payload.targetObj,
|
|
|
|
|
history: data.history,
|
|
|
|
|
notes: data.notes,
|
|
|
|
|
reporter: payload.userObj
|
|
|
|
|
reporter: payload.userObj,
|
|
|
|
|
}));
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@ -63,7 +63,7 @@ Flags.list = function (filters, uid, callback) {
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
// Empty array, do nothing
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@ -147,11 +147,11 @@ Flags.list = function (filters, uid, callback) {
|
|
|
|
|
username: userObj.username,
|
|
|
|
|
picture: userObj.picture,
|
|
|
|
|
'icon:bgColor': userObj['icon:bgColor'],
|
|
|
|
|
'icon:text': userObj['icon:text']
|
|
|
|
|
}
|
|
|
|
|
'icon:text': userObj['icon:text'],
|
|
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
], function (err, flagObj) {
|
|
|
|
|
if (err) {
|
|
|
|
|
return next(err);
|
|
|
|
@ -174,11 +174,11 @@ Flags.list = function (filters, uid, callback) {
|
|
|
|
|
|
|
|
|
|
next(null, Object.assign(flagObj, {
|
|
|
|
|
target_readable: flagObj.type.charAt(0).toUpperCase() + flagObj.type.slice(1) + ' ' + flagObj.targetId,
|
|
|
|
|
datetimeISO: new Date(parseInt(flagObj.datetime, 10)).toISOString()
|
|
|
|
|
datetimeISO: new Date(parseInt(flagObj.datetime, 10)).toISOString(),
|
|
|
|
|
}));
|
|
|
|
|
});
|
|
|
|
|
}, next);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@ -186,7 +186,7 @@ Flags.validate = function (payload, callback) {
|
|
|
|
|
async.parallel({
|
|
|
|
|
targetExists: async.apply(Flags.targetExists, payload.type, payload.id),
|
|
|
|
|
target: async.apply(Flags.getTarget, payload.type, payload.id, payload.uid),
|
|
|
|
|
reporter: async.apply(user.getUserData, payload.uid)
|
|
|
|
|
reporter: async.apply(user.getUserData, payload.uid),
|
|
|
|
|
}, function (err, data) {
|
|
|
|
|
if (err) {
|
|
|
|
|
return callback(err);
|
|
|
|
@ -252,7 +252,7 @@ Flags.getNotes = function (flagId, callback) {
|
|
|
|
|
uid: noteObj[0],
|
|
|
|
|
content: noteObj[1],
|
|
|
|
|
datetime: note.score,
|
|
|
|
|
datetimeISO: new Date(parseInt(note.score, 10)).toISOString()
|
|
|
|
|
datetimeISO: new Date(parseInt(note.score, 10)).toISOString(),
|
|
|
|
|
};
|
|
|
|
|
} catch (e) {
|
|
|
|
|
return next(e);
|
|
|
|
@ -271,7 +271,7 @@ Flags.getNotes = function (flagId, callback) {
|
|
|
|
|
return note;
|
|
|
|
|
}));
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@ -296,7 +296,7 @@ Flags.create = function (type, id, uid, reason, timestamp, callback) {
|
|
|
|
|
|
|
|
|
|
// Extra data for zset insertion
|
|
|
|
|
async.apply(Flags.getTargetUid, type, id),
|
|
|
|
|
async.apply(Flags.getTargetCid, type, id)
|
|
|
|
|
async.apply(Flags.getTargetCid, type, id),
|
|
|
|
|
], function (err, checks) {
|
|
|
|
|
if (err) {
|
|
|
|
|
return next(err);
|
|
|
|
@ -309,9 +309,8 @@ Flags.create = function (type, id, uid, reason, timestamp, callback) {
|
|
|
|
|
return next(new Error('[[error:already-flagged]]'));
|
|
|
|
|
} else if (!checks[1]) {
|
|
|
|
|
return next(new Error('[[error:invalid-data]]'));
|
|
|
|
|
} else {
|
|
|
|
|
next();
|
|
|
|
|
}
|
|
|
|
|
next();
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
async.apply(db.incrObjectField, 'global', 'nextFlagId'),
|
|
|
|
@ -323,13 +322,13 @@ Flags.create = function (type, id, uid, reason, timestamp, callback) {
|
|
|
|
|
targetId: id,
|
|
|
|
|
description: reason,
|
|
|
|
|
uid: uid,
|
|
|
|
|
datetime: timestamp
|
|
|
|
|
datetime: timestamp,
|
|
|
|
|
}),
|
|
|
|
|
async.apply(db.sortedSetAdd.bind(db), 'flags:datetime', timestamp, flagId), // by time, the default
|
|
|
|
|
async.apply(db.sortedSetAdd.bind(db), 'flags:byReporter:' + uid, timestamp, flagId), // by reporter
|
|
|
|
|
async.apply(db.sortedSetAdd.bind(db), 'flags:byType:' + type, timestamp, flagId), // by flag type
|
|
|
|
|
async.apply(db.sortedSetAdd.bind(db), 'flags:hash', flagId, [type, id, uid].join(':')), // save zset for duplicate checking
|
|
|
|
|
async.apply(analytics.increment, 'flags') // some fancy analytics
|
|
|
|
|
async.apply(analytics.increment, 'flags'), // some fancy analytics
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
if (targetUid) {
|
|
|
|
@ -348,13 +347,13 @@ Flags.create = function (type, id, uid, reason, timestamp, callback) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (doHistoryAppend) {
|
|
|
|
|
Flags.update(flagId, uid, { "state": "open" });
|
|
|
|
|
Flags.update(flagId, uid, { state: 'open' });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
next(null, flagId);
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
async.apply(Flags.get)
|
|
|
|
|
async.apply(Flags.get),
|
|
|
|
|
], callback);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@ -373,7 +372,7 @@ Flags.getTarget = function (type, id, uid, callback) {
|
|
|
|
|
async.apply(posts.getPostsByPids, [id], uid),
|
|
|
|
|
function (posts, next) {
|
|
|
|
|
topics.addPostData(posts, uid, next);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
], function (err, posts) {
|
|
|
|
|
next(err, posts[0]);
|
|
|
|
|
});
|
|
|
|
@ -393,7 +392,7 @@ Flags.getTarget = function (type, id, uid, callback) {
|
|
|
|
|
// Target used to exist (otherwise flag creation'd fail), but no longer
|
|
|
|
|
next(null, {});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@ -483,7 +482,7 @@ Flags.update = function (flagId, uid, changeset, callback) {
|
|
|
|
|
async.parallel(tasks, function (err, data) {
|
|
|
|
|
return next(err);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@ -512,12 +511,12 @@ Flags.getHistory = function (flagId, callback) {
|
|
|
|
|
uid: entry.value[0],
|
|
|
|
|
fields: changeset,
|
|
|
|
|
datetime: entry.score,
|
|
|
|
|
datetimeISO: new Date(parseInt(entry.score, 10)).toISOString()
|
|
|
|
|
datetimeISO: new Date(parseInt(entry.score, 10)).toISOString(),
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
user.getUsersFields(uids, ['username', 'userslug', 'picture'], next);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
], function (err, users) {
|
|
|
|
|
if (err) {
|
|
|
|
|
return callback(err);
|
|
|
|
@ -564,8 +563,8 @@ Flags.appendNote = function (flagId, uid, note, datetime, callback) {
|
|
|
|
|
async.apply(db.sortedSetAdd, 'flag:' + flagId + ':notes', datetime, payload),
|
|
|
|
|
async.apply(Flags.appendHistory, flagId, uid, {
|
|
|
|
|
notes: null,
|
|
|
|
|
datetime: datetime
|
|
|
|
|
})
|
|
|
|
|
datetime: datetime,
|
|
|
|
|
}),
|
|
|
|
|
], callback);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@ -581,7 +580,7 @@ Flags.notify = function (flagObj, uid, callback) {
|
|
|
|
|
post: function (next) {
|
|
|
|
|
async.waterfall([
|
|
|
|
|
async.apply(posts.getPostData, flagObj.targetId),
|
|
|
|
|
async.apply(posts.parsePost)
|
|
|
|
|
async.apply(posts.parsePost),
|
|
|
|
|
], next);
|
|
|
|
|
},
|
|
|
|
|
title: async.apply(topics.getTitleByPid, flagObj.targetId),
|
|
|
|
@ -592,9 +591,9 @@ Flags.notify = function (flagObj, uid, callback) {
|
|
|
|
|
async.apply(posts.getCidByPid, flagObj.targetId),
|
|
|
|
|
function (cid, next) {
|
|
|
|
|
groups.getMembers('cid:' + cid + ':privileges:mods', 0, -1, next);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
], next);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
}, function (err, results) {
|
|
|
|
|
if (err) {
|
|
|
|
|
return callback(err);
|
|
|
|
@ -611,14 +610,14 @@ Flags.notify = function (flagObj, uid, callback) {
|
|
|
|
|
nid: 'flag:post:' + flagObj.targetId + ':uid:' + uid,
|
|
|
|
|
from: uid,
|
|
|
|
|
mergeId: 'notifications:user_flagged_post_in|' + flagObj.targetId,
|
|
|
|
|
topicTitle: results.title
|
|
|
|
|
topicTitle: results.title,
|
|
|
|
|
}, function (err, notification) {
|
|
|
|
|
if (err || !notification) {
|
|
|
|
|
return callback(err);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
plugins.fireHook('action:flag.create', {
|
|
|
|
|
flag: flagObj
|
|
|
|
|
flag: flagObj,
|
|
|
|
|
});
|
|
|
|
|
notifications.push(notification, results.admins.concat(results.moderators).concat(results.globalMods), callback);
|
|
|
|
|
});
|
|
|
|
@ -640,14 +639,14 @@ Flags.notify = function (flagObj, uid, callback) {
|
|
|
|
|
path: '/uid/' + flagObj.targetId,
|
|
|
|
|
nid: 'flag:user:' + flagObj.targetId + ':uid:' + uid,
|
|
|
|
|
from: uid,
|
|
|
|
|
mergeId: 'notifications:user_flagged_user|' + flagObj.targetId
|
|
|
|
|
mergeId: 'notifications:user_flagged_user|' + flagObj.targetId,
|
|
|
|
|
}, function (err, notification) {
|
|
|
|
|
if (err || !notification) {
|
|
|
|
|
return callback(err);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
plugins.fireHook('action:flag.create', {
|
|
|
|
|
flag: flagObj
|
|
|
|
|
flag: flagObj,
|
|
|
|
|
});
|
|
|
|
|
notifications.push(notification, results.admins.concat(results.globalMods), callback);
|
|
|
|
|
});
|
|
|
|
|