summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/i/unpin.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-09-24 16:26:12 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-09-24 16:26:12 +0900
commit59d67d314069c19dcc5c2c7d82f260a9f8c661cd (patch)
tree06d7298ed62c6ae141c4a380e41792a38951a14b /src/server/api/endpoints/i/unpin.ts
parent:art: (diff)
downloadmisskey-59d67d314069c19dcc5c2c7d82f260a9f8c661cd.tar.gz
misskey-59d67d314069c19dcc5c2c7d82f260a9f8c661cd.tar.bz2
misskey-59d67d314069c19dcc5c2c7d82f260a9f8c661cd.zip
ピン留めを解除することができるようにしたり
Diffstat (limited to '')
-rw-r--r--src/server/api/endpoints/i/unpin.ts57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/server/api/endpoints/i/unpin.ts b/src/server/api/endpoints/i/unpin.ts
new file mode 100644
index 0000000000..82625ae5fb
--- /dev/null
+++ b/src/server/api/endpoints/i/unpin.ts
@@ -0,0 +1,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);
+});