2018-09-18 07:08:27 +03:00
|
|
|
import config from '../../config';
|
|
|
|
import renderAdd from '../../remote/activitypub/renderer/add';
|
|
|
|
import renderRemove from '../../remote/activitypub/renderer/remove';
|
2019-01-30 19:29:36 +02:00
|
|
|
import { renderActivity } from '../../remote/activitypub/renderer';
|
2019-02-22 04:46:58 +02:00
|
|
|
import { IdentifiableError } from '../../misc/identifiable-error';
|
2019-11-09 11:51:54 +02:00
|
|
|
import { User } from '../../models/entities/user';
|
2019-04-07 15:50:36 +03:00
|
|
|
import { Note } from '../../models/entities/note';
|
2019-11-09 11:51:54 +02:00
|
|
|
import { Notes, UserNotePinings, Users } from '../../models';
|
2020-08-18 16:44:21 +03:00
|
|
|
import { UserNotePining } from '../../models/entities/user-note-pining';
|
2019-04-07 15:50:36 +03:00
|
|
|
import { genId } from '../../misc/gen-id';
|
2019-11-09 11:51:54 +02:00
|
|
|
import { deliverToFollowers } from '../../remote/activitypub/deliver-manager';
|
2020-05-10 12:42:31 +03:00
|
|
|
import { deliverToRelays } from '../relay';
|
2018-09-18 07:08:27 +03:00
|
|
|
|
2018-10-02 10:27:36 +03:00
|
|
|
/**
|
|
|
|
* 指定した投稿をピン留めします
|
|
|
|
* @param user
|
|
|
|
* @param noteId
|
|
|
|
*/
|
2019-04-07 15:50:36 +03:00
|
|
|
export async function addPinned(user: User, noteId: Note['id']) {
|
2018-10-02 10:27:36 +03:00
|
|
|
// Fetch pinee
|
2019-04-07 15:50:36 +03:00
|
|
|
const note = await Notes.findOne({
|
|
|
|
id: noteId,
|
|
|
|
userId: user.id
|
2018-10-02 10:27:36 +03:00
|
|
|
});
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
if (note == null) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new IdentifiableError('70c4e51f-5bea-449c-a030-53bee3cce202', 'No such note.');
|
2018-10-02 10:27:36 +03:00
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
const pinings = await UserNotePinings.find({ userId: user.id });
|
2018-10-07 13:58:00 +03:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
if (pinings.length >= 5) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new IdentifiableError('15a018eb-58e5-4da1-93be-330fcc5e4e1a', 'You can not pin notes any more.');
|
2018-10-02 10:27:36 +03:00
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
if (pinings.some(pining => pining.noteId === note.id)) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new IdentifiableError('23f0cf4e-59a3-4276-a91d-61a5891c1514', 'That note has already been pinned.');
|
2018-10-02 10:27:36 +03:00
|
|
|
}
|
|
|
|
|
2021-03-21 14:27:09 +02:00
|
|
|
await UserNotePinings.insert({
|
2019-04-07 15:50:36 +03:00
|
|
|
id: genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
userId: user.id,
|
|
|
|
noteId: note.id
|
|
|
|
} as UserNotePining);
|
2018-10-02 10:27:36 +03:00
|
|
|
|
|
|
|
// Deliver to remote followers
|
2019-04-07 15:50:36 +03:00
|
|
|
if (Users.isLocalUser(user)) {
|
|
|
|
deliverPinnedChange(user.id, note.id, true);
|
2018-10-02 10:27:36 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 指定した投稿のピン留めを解除します
|
|
|
|
* @param user
|
|
|
|
* @param noteId
|
|
|
|
*/
|
2019-04-07 15:50:36 +03:00
|
|
|
export async function removePinned(user: User, noteId: Note['id']) {
|
2018-10-02 10:27:36 +03:00
|
|
|
// Fetch unpinee
|
2019-04-07 15:50:36 +03:00
|
|
|
const note = await Notes.findOne({
|
|
|
|
id: noteId,
|
|
|
|
userId: user.id
|
2018-10-02 10:27:36 +03:00
|
|
|
});
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
if (note == null) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new IdentifiableError('b302d4cf-c050-400a-bbb3-be208681f40c', 'No such note.');
|
2018-10-02 10:27:36 +03:00
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
UserNotePinings.delete({
|
|
|
|
userId: user.id,
|
|
|
|
noteId: note.id
|
2018-10-02 10:27:36 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
// Deliver to remote followers
|
2019-04-07 15:50:36 +03:00
|
|
|
if (Users.isLocalUser(user)) {
|
|
|
|
deliverPinnedChange(user.id, noteId, false);
|
2018-10-02 10:27:36 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
export async function deliverPinnedChange(userId: User['id'], noteId: Note['id'], isAddition: boolean) {
|
2019-04-12 19:43:22 +03:00
|
|
|
const user = await Users.findOne(userId);
|
2019-04-13 22:17:24 +03:00
|
|
|
if (user == null) throw new Error('user not found');
|
2018-09-18 07:08:27 +03:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
if (!Users.isLocalUser(user)) return;
|
2018-09-18 07:08:27 +03:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
const target = `${config.url}/users/${user.id}/collections/featured`;
|
2018-09-24 10:26:12 +03:00
|
|
|
const item = `${config.url}/notes/${noteId}`;
|
2019-01-30 19:29:36 +02:00
|
|
|
const content = renderActivity(isAddition ? renderAdd(user, target, item) : renderRemove(user, target, item));
|
2018-09-18 07:08:27 +03:00
|
|
|
|
2019-11-09 11:51:54 +02:00
|
|
|
deliverToFollowers(user, content);
|
2020-05-10 12:42:31 +03:00
|
|
|
deliverToRelays(user, content);
|
2018-09-18 07:08:27 +03:00
|
|
|
}
|