summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/blocking
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2018-10-31 11:17:24 +0900
committerGitHub <noreply@github.com>2018-10-31 11:17:24 +0900
commit5e3372e9329883aefa19fa572715077d79eac5be (patch)
treec259467122fa4d2add35aa413b4e9986ab6fd7ce /src/server/api/endpoints/blocking
parentImplement /api/v1/instance (#3045) (diff)
parent良い感じに (diff)
downloadsharkey-5e3372e9329883aefa19fa572715077d79eac5be.tar.gz
sharkey-5e3372e9329883aefa19fa572715077d79eac5be.tar.bz2
sharkey-5e3372e9329883aefa19fa572715077d79eac5be.zip
Merge pull request #3047 from mei23/mei-1031-blokings-list
blockings list
Diffstat (limited to 'src/server/api/endpoints/blocking')
-rw-r--r--src/server/api/endpoints/blocking/list.ts64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/server/api/endpoints/blocking/list.ts b/src/server/api/endpoints/blocking/list.ts
new file mode 100644
index 0000000000..a0bef38b58
--- /dev/null
+++ b/src/server/api/endpoints/blocking/list.ts
@@ -0,0 +1,64 @@
+import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
+import Blocking, { packMany } from '../../../../models/blocking';
+import { ILocalUser } from '../../../../models/user';
+import getParams from '../../get-params';
+
+export const meta = {
+ desc: {
+ 'ja-JP': 'ブロックしているユーザー一覧を取得します。',
+ 'en-US': 'Get blocking users.'
+ },
+
+ requireCredential: true,
+
+ kind: 'following-read',
+
+ params: {
+ limit: $.num.optional.range(1, 100).note({
+ default: 30
+ }),
+
+ sinceId: $.type(ID).optional.note({
+ }),
+
+ untilId: $.type(ID).optional.note({
+ }),
+ }
+};
+
+export default (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
+ const [ps, psErr] = getParams(meta, params);
+ if (psErr) return rej(psErr);
+
+ // Check if both of sinceId and untilId is specified
+ if (ps.sinceId && ps.untilId) {
+ return rej('cannot set sinceId and untilId');
+ }
+
+ const query = {
+ blockerId: me._id
+ } as any;
+
+ const sort = {
+ _id: -1
+ };
+
+ if (ps.sinceId) {
+ sort._id = 1;
+ query._id = {
+ $gt: ps.sinceId
+ };
+ } else if (ps.untilId) {
+ query._id = {
+ $lt: ps.untilId
+ };
+ }
+
+ const blockings = await Blocking
+ .find(query, {
+ limit: ps.limit,
+ sort: sort
+ });
+
+ res(await packMany(blockings, me));
+});