summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/i/unpin.ts
blob: 82625ae5fb09f3ba7c90cacd6f76c72bf5150f87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
import User, { ILocalUser } from '../../../../models/user';
import Note from '../../../../models/note';
import { pack } from '../../../../models/user';
import { deliverPinnedChange } from '../../../../services/i/pin';
import getParams from '../../get-params';

export const meta = {
	desc: {
		'ja-JP': '指定した投稿のピン留めを解除します。'
	},

	requireCredential: true,

	kind: 'account-write',

	params: {
		noteId: $.type(ID).note({
			desc: {
				'ja-JP': '対象の投稿のID'
			}
		})
	}
};

export default async (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
	const [ps, psErr] = getParams(meta, params);
	if (psErr) return rej(psErr);

	// Fetch unpinee
	const note = await Note.findOne({
		_id: ps.noteId,
		userId: user._id
	});

	if (note === null) {
		return rej('note not found');
	}

	const pinnedNoteIds = (user.pinnedNoteIds || []).filter(id => !id.equals(note._id));

	await User.update(user._id, {
		$set: {
			pinnedNoteIds: pinnedNoteIds
		}
	});

	const iObj = await pack(user, user, {
		detail: true
	});

	// Send response
	res(iObj);

	// Send Remove to followers
	deliverPinnedChange(user._id, note._id, false);
});