refactor: topic mark read/unread routes

isekai-main
Julian Lam 2 years ago
parent 82b4984b9d
commit 36895421ba

@ -142,6 +142,10 @@ paths:
$ref: 'write/topics/tid/events.yaml'
/topics/{tid}/events/{eventId}:
$ref: 'write/topics/tid/events/eventId.yaml'
/topics/{tid}/read:
$ref: 'write/topics/tid/read.yaml'
/topics/{tid}/bump:
$ref: 'write/topics/tid/bump.yaml'
/posts/{pid}:
$ref: 'write/posts/pid.yaml'
/posts/{pid}/index:

@ -0,0 +1,29 @@
put:
tags:
- topics
summary: mark topic unread for all
description: |
This operation marks a topic as unread for all users.
**Note**: This is a privileged call and can only be executed by administrators, global moderators, or the moderator for the category of the passed-in topic.
parameters:
- in: path
name: tid
schema:
type: string
required: true
description: a valid topic id
example: 1
responses:
'200':
description: Topic successfully marked unread for all
content:
application/json:
schema:
type: object
properties:
status:
$ref: ../../../components/schemas/Status.yaml#/Status
response:
type: object
properties: {}

@ -0,0 +1,52 @@
delete:
tags:
- topics
summary: mark topic unread
description: This operation marks a topic as unread for the calling user.
parameters:
- in: path
name: tid
schema:
type: string
required: true
description: a valid topic id
example: 1
responses:
'200':
description: Topic successfully marked unread.
content:
application/json:
schema:
type: object
properties:
status:
$ref: ../../../components/schemas/Status.yaml#/Status
response:
type: object
properties: {}
put:
tags:
- topics
summary: mark topic read
description: This operation marks a topic as read for the calling user.
parameters:
- in: path
name: tid
schema:
type: string
required: true
description: a valid topic id
example: 1
responses:
'200':
description: Topic successfully marked read
content:
application/json:
schema:
type: object
properties:
status:
$ref: ../../../components/schemas/Status.yaml#/Status
response:
type: object
properties: {}

@ -391,7 +391,7 @@ define('forum/topic', [
currentUrl = newUrl;
if (index >= elementCount && app.user.uid) {
socket.emit('topics.markAsRead', [ajaxify.data.tid]);
api.put(`/topics/${ajaxify.data.tid}/read`);
}
updateUserBookmark(index);

@ -60,27 +60,8 @@ define('forum/topic/threadTools', [
return false;
});
topicContainer.on('click', '[component="topic/event/delete"]', function () {
const eventId = $(this).attr('data-topic-event-id');
const eventEl = $(this).parents('[component="topic/event"]');
bootbox.confirm('[[topic:delete-event-confirm]]', (ok) => {
if (ok) {
api.del(`/topics/${tid}/events/${eventId}`, {})
.then(function () {
eventEl.remove();
})
.catch(alerts.error);
}
});
});
// todo: should also use topicCommand, but no write api call exists for this yet
topicContainer.on('click', '[component="topic/mark-unread"]', function () {
socket.emit('topics.markUnread', tid, function (err) {
if (err) {
return alerts.error(err);
}
topicCommand('del', '/read', undefined, () => {
if (app.previousUrl && !app.previousUrl.match('^/topic')) {
ajaxify.go(app.previousUrl, function () {
handleBack.onBackClicked(true);
@ -91,19 +72,28 @@ define('forum/topic/threadTools', [
alerts.success('[[topic:mark_unread.success]]');
});
return false;
});
topicContainer.on('click', '[component="topic/mark-unread-for-all"]', function () {
const btn = $(this);
socket.emit('topics.markAsUnreadForAll', [tid], function (err) {
if (err) {
return alerts.error(err);
}
topicCommand('put', '/bump', undefined, () => {
alerts.success('[[topic:markAsUnreadForAll.success]]');
btn.parents('.thread-tools.open').find('.dropdown-toggle').trigger('click');
});
return false;
});
topicContainer.on('click', '[component="topic/event/delete"]', function () {
const eventId = $(this).attr('data-topic-event-id');
const eventEl = $(this).parents('[component="topic/event"]');
bootbox.confirm('[[topic:delete-event-confirm]]', (ok) => {
if (ok) {
api.del(`/topics/${tid}/events/${eventId}`, {})
.then(function () {
eventEl.remove();
})
.catch(alerts.error);
}
});
});
topicContainer.on('click', '[component="topic/move"]', function () {

@ -2,8 +2,8 @@
define('forum/unread', [
'forum/header/unread', 'topicSelect', 'components', 'topicList', 'categorySelector', 'alerts',
], function (headerUnread, topicSelect, components, topicList, categorySelector, alerts) {
'forum/header/unread', 'topicSelect', 'components', 'topicList', 'categorySelector', 'alerts', 'api',
], function (headerUnread, topicSelect, components, topicList, categorySelector, alerts, api) {
const Unread = {};
Unread.init = function () {
@ -37,11 +37,8 @@ define('forum/unread', [
if (!tids.length) {
return;
}
socket.emit('topics.markAsRead', tids, function (err) {
if (err) {
return alerts.error(err);
}
Promise.all(tids.map(async tid => api.put(`/topics/${tid}/read`))).then(() => {
doneRemovingTids(tids);
});
}

@ -268,3 +268,27 @@ topicsAPI.deleteEvent = async (caller, { tid, eventId }) => {
await topics.events.purge(tid, [eventId]);
};
topicsAPI.markRead = async (caller, { tid }) => {
const hasMarked = await topics.markAsRead([tid], caller.uid);
const promises = [topics.markTopicNotificationsRead([tid], caller.uid)];
if (hasMarked) {
promises.push(topics.pushUnreadCount(caller.uid));
}
await Promise.all(promises);
};
topicsAPI.markUnread = async (caller, { tid }) => {
await topics.markUnread(tid, caller.uid);
topics.pushUnreadCount(caller.uid);
};
topicsAPI.bump = async (caller, { tid }) => {
const isAdminOrMod = await privileges.topics.isAdminOrMod(tid, caller.uid);
if (!isAdminOrMod) {
throw new Error('[[error:no-privileges]]');
}
await topics.markAsUnreadForAll(tid);
topics.pushUnreadCount(caller.uid);
};

@ -189,3 +189,21 @@ Topics.deleteEvent = async (req, res) => {
helpers.formatApiResponse(200, res);
};
Topics.markRead = async (req, res) => {
await api.topics.markRead(req, { ...req.params });
helpers.formatApiResponse(200, res);
};
Topics.markUnread = async (req, res) => {
await api.topics.markUnread(req, { ...req.params });
helpers.formatApiResponse(200, res);
};
Topics.bump = async (req, res) => {
await api.topics.bump(req, { ...req.params });
helpers.formatApiResponse(200, res);
};

@ -45,5 +45,9 @@ module.exports = function () {
setupApiRoute(router, 'get', '/:tid/events', [middleware.assert.topic], controllers.write.topics.getEvents);
setupApiRoute(router, 'delete', '/:tid/events/:eventId', [middleware.assert.topic], controllers.write.topics.deleteEvent);
setupApiRoute(router, 'put', '/:tid/read', [...middlewares, middleware.assert.topic], controllers.write.topics.markRead);
setupApiRoute(router, 'delete', '/:tid/read', [...middlewares, middleware.assert.topic], controllers.write.topics.markUnread);
setupApiRoute(router, 'put', '/:tid/bump', [...middlewares, middleware.assert.topic], controllers.write.topics.bump);
return router;
};

@ -1,19 +1,19 @@
'use strict';
const user = require('../../user');
const topics = require('../../topics');
const api = require('../../api');
const sockets = require('..');
module.exports = function (SocketTopics) {
SocketTopics.markAsRead = async function (socket, tids) {
sockets.warnDeprecated(socket, 'PUT /api/v3/topics/:tid/read');
if (!Array.isArray(tids) || socket.uid <= 0) {
throw new Error('[[error:invalid-data]]');
}
const hasMarked = await topics.markAsRead(tids, socket.uid);
const promises = [topics.markTopicNotificationsRead(tids, socket.uid)];
if (hasMarked) {
promises.push(topics.pushUnreadCount(socket.uid));
}
await Promise.all(promises);
await Promise.all(tids.map(async tid => api.topics.markRead(socket, { tid })));
};
SocketTopics.markTopicNotificationsRead = async function (socket, tids) {
@ -37,14 +37,18 @@ module.exports = function (SocketTopics) {
};
SocketTopics.markUnread = async function (socket, tid) {
sockets.warnDeprecated(socket, 'DELETE /api/v3/topics/:tid/read');
if (!tid || socket.uid <= 0) {
throw new Error('[[error:invalid-data]]');
}
await topics.markUnread(tid, socket.uid);
topics.pushUnreadCount(socket.uid);
await api.topics.markUnread(socket, { tid });
};
SocketTopics.markAsUnreadForAll = async function (socket, tids) {
sockets.warnDeprecated(socket, 'PUT /api/v3/topics/:tid/bump');
if (!Array.isArray(tids)) {
throw new Error('[[error:invalid-tid]]');
}
@ -52,18 +56,7 @@ module.exports = function (SocketTopics) {
if (socket.uid <= 0) {
throw new Error('[[error:no-privileges]]');
}
const isAdmin = await user.isAdministrator(socket.uid);
await Promise.all(tids.map(async (tid) => {
const topicData = await topics.getTopicFields(tid, ['tid', 'cid']);
if (!topicData.tid) {
throw new Error('[[error:no-topic]]');
}
const isMod = await user.isModerator(socket.uid, topicData.cid);
if (!isAdmin && !isMod) {
throw new Error('[[error:no-privileges]]');
}
await topics.markAsUnreadForAll(tid);
}));
topics.pushUnreadCount(socket.uid);
await Promise.all(tids.map(async tid => api.topics.bump(socket, { tid })));
};
};

@ -1470,29 +1470,18 @@ describe('Topic\'s', () => {
});
});
it('should fail with invalid data', (done) => {
socketTopics.markUnread({ uid: adminUid }, null, (err) => {
assert.equal(err.message, '[[error:invalid-data]]');
done();
});
it('should fail with invalid data', async () => {
assert.rejects(apiTopics.markUnread({ uid: adminUid }, null), '[[error:invalid-data]]');
});
it('should fail if topic does not exist', (done) => {
socketTopics.markUnread({ uid: adminUid }, 1231082, (err) => {
assert.equal(err.message, '[[error:no-topic]]');
done();
});
it('should fail if topic does not exist', async () => {
assert.rejects(apiTopics.markUnread({ uid: adminUid }, { tid: 1231082 }), '[[error:no-topic]]');
});
it('should mark topic unread', (done) => {
socketTopics.markUnread({ uid: adminUid }, tid, (err) => {
assert.ifError(err);
topics.hasReadTopic(tid, adminUid, (err, hasRead) => {
assert.ifError(err);
assert.equal(hasRead, false);
done();
});
});
it('should mark topic unread', async () => {
await apiTopics.markUnread({ uid: adminUid }, { tid });
const hasRead = await topics.hasReadTopic(tid, adminUid);
assert.equal(hasRead, false);
});
it('should fail with invalid data', (done) => {
@ -1566,51 +1555,25 @@ describe('Topic\'s', () => {
});
});
it('should fail with invalid data', (done) => {
socketTopics.markAsUnreadForAll({ uid: adminUid }, null, (err) => {
assert.equal(err.message, '[[error:invalid-tid]]');
done();
});
it('should fail with invalid data', async () => {
assert.rejects(apiTopics.bump({ uid: adminUid }, null, '[[error:invalid-tid]]'));
});
it('should fail with invalid data', (done) => {
socketTopics.markAsUnreadForAll({ uid: 0 }, [tid], (err) => {
assert.equal(err.message, '[[error:no-privileges]]');
done();
});
it('should fail with invalid data', async () => {
assert.rejects(apiTopics.bump({ uid: 0 }, { tid: [tid] }, '[[error:no-privileges]]'));
});
it('should fail if user is not admin', (done) => {
socketTopics.markAsUnreadForAll({ uid: uid }, [tid], (err) => {
assert.equal(err.message, '[[error:no-privileges]]');
done();
});
it('should fail if user is not admin', async () => {
assert.rejects(apiTopics.bump({ uid: uid }, { tid }, '[[error:no-privileges]]'));
});
it('should fail if topic does not exist', (done) => {
socketTopics.markAsUnreadForAll({ uid: uid }, [12312313], (err) => {
assert.equal(err.message, '[[error:no-topic]]');
done();
});
});
it('should mark topic unread for everyone', async () => {
await apiTopics.bump({ uid: adminUid }, { tid });
const adminRead = await topics.hasReadTopic(tid, adminUid);
const regularRead = await topics.hasReadTopic(tid, uid);
it('should mark topic unread for everyone', (done) => {
socketTopics.markAsUnreadForAll({ uid: adminUid }, [tid], (err) => {
assert.ifError(err);
async.parallel({
adminRead: function (next) {
topics.hasReadTopic(tid, adminUid, next);
},
regularRead: function (next) {
topics.hasReadTopic(tid, uid, next);
},
}, (err, results) => {
assert.ifError(err);
assert.equal(results.adminRead, false);
assert.equal(results.regularRead, false);
done();
});
});
assert.equal(adminRead, false);
assert.equal(regularRead, false);
});
it('should not do anything if tids is empty array', (done) => {

Loading…
Cancel
Save