diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-10-31 11:16:13 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-10-31 11:16:13 +0900 |
| commit | f7069dcd18d72b52408a6bd80ad8f14492163e19 (patch) | |
| tree | c259467122fa4d2add35aa413b4e9986ab6fd7ce /src/server/api/endpoints/blocking | |
| parent | blockings list (diff) | |
| download | sharkey-f7069dcd18d72b52408a6bd80ad8f14492163e19.tar.gz sharkey-f7069dcd18d72b52408a6bd80ad8f14492163e19.tar.bz2 sharkey-f7069dcd18d72b52408a6bd80ad8f14492163e19.zip | |
良い感じに
Diffstat (limited to 'src/server/api/endpoints/blocking')
| -rw-r--r-- | src/server/api/endpoints/blocking/list.ts | 67 |
1 files changed, 36 insertions, 31 deletions
diff --git a/src/server/api/endpoints/blocking/list.ts b/src/server/api/endpoints/blocking/list.ts index ba1c77d2c7..a0bef38b58 100644 --- a/src/server/api/endpoints/blocking/list.ts +++ b/src/server/api/endpoints/blocking/list.ts @@ -1,6 +1,7 @@ import $ from 'cafy'; import ID from '../../../../misc/cafy-id'; -import Blocking from '../../../../models/blocking'; -import { pack, ILocalUser } from '../../../../models/user'; +import Blocking, { packMany } from '../../../../models/blocking'; +import { ILocalUser } from '../../../../models/user'; +import getParams from '../../get-params'; export const meta = { desc: { @@ -10,50 +11,54 @@ export const meta = { requireCredential: true, - kind: 'following-read' + 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) => { - // Get 'limit' parameter - const [limit = 30, limitErr] = $.num.optional.range(1, 100).get(params.limit); - if (limitErr) return rej('invalid limit param'); + const [ps, psErr] = getParams(meta, params); + if (psErr) return rej(psErr); - // Get 'cursor' parameter - const [cursor = null, cursorErr] = $.type(ID).optional.get(params.cursor); - if (cursorErr) return rej('invalid cursor param'); + // Check if both of sinceId and untilId is specified + if (ps.sinceId && ps.untilId) { + return rej('cannot set sinceId and untilId'); + } - // Construct query const query = { blockerId: me._id } as any; - // カーソルが指定されている場合 - if (cursor) { + const sort = { + _id: -1 + }; + + if (ps.sinceId) { + sort._id = 1; query._id = { - $lt: cursor + $gt: ps.sinceId + }; + } else if (ps.untilId) { + query._id = { + $lt: ps.untilId }; } - // Get blockings const blockings = await Blocking .find(query, { - limit: limit + 1, - sort: { _id: -1 } + limit: ps.limit, + sort: sort }); - // 「次のページ」があるかどうか - const inStock = blockings.length === limit + 1; - if (inStock) { - blockings.pop(); - } - - // Serialize - const users = await Promise.all(blockings.map(async m => - await pack(m.blockeeId, me, { detail: true }))); - - // Response - res({ - users: users, - next: inStock ? blockings[blockings.length - 1]._id : null, - }); + res(await packMany(blockings, me)); }); |