wip
This commit is contained in:
parent
8985d55b1b
commit
d6af0bb78b
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* Module dependencies
|
||||
*/
|
||||
import * as mongo from 'mongodb';
|
||||
import it from '../../it';
|
||||
import Post from '../../models/post';
|
||||
import Like from '../../models/like';
|
||||
import serialize from '../../serializers/user';
|
||||
@ -19,33 +19,19 @@ module.exports = (params, user) =>
|
||||
new Promise(async (res, rej) =>
|
||||
{
|
||||
// Get 'post_id' parameter
|
||||
const postId = params.post_id;
|
||||
if (postId === undefined || postId === null) {
|
||||
return rej('post_id is required');
|
||||
}
|
||||
const [postId, postIdErr] = it(params.post_id, 'id', true);
|
||||
if (postIdErr) return rej('invalid post_id');
|
||||
|
||||
// Get 'limit' parameter
|
||||
let limit = params.limit;
|
||||
if (limit !== undefined && limit !== null) {
|
||||
limit = parseInt(limit, 10);
|
||||
|
||||
// From 1 to 100
|
||||
if (!(1 <= limit && limit <= 100)) {
|
||||
return rej('invalid limit range');
|
||||
}
|
||||
} else {
|
||||
limit = 10;
|
||||
}
|
||||
const [limit, limitErr] = it(params.limit).expect.number().range(1, 100).default(10).qed();
|
||||
if (limitErr) return rej('invalid limit');
|
||||
|
||||
// Get 'offset' parameter
|
||||
let offset = params.offset;
|
||||
if (offset !== undefined && offset !== null) {
|
||||
offset = parseInt(offset, 10);
|
||||
} else {
|
||||
offset = 0;
|
||||
}
|
||||
const [offset, offsetErr] = it(params.offset).expect.number().min(0).default(0).qed();
|
||||
if (offsetErr) return rej('invalid offset');
|
||||
|
||||
// Get 'sort' parameter
|
||||
const [sort] = it(params.sort).expect.string().or('desc asc').default('desc').qed();
|
||||
let sort = params.sort || 'desc';
|
||||
|
||||
// Lookup post
|
@ -266,6 +266,30 @@ class StringQuery extends QueryCore {
|
||||
validate(validator: Validator<string>) {
|
||||
return super.validate(validator);
|
||||
}
|
||||
|
||||
/**
|
||||
* このインスタンスの文字列が、与えられたパターン内の文字列のどれかと一致するか検証します
|
||||
* どれとも一致しない場合エラーにします
|
||||
* @param pattern 文字列の配列またはスペースで区切られた文字列
|
||||
*/
|
||||
or(pattern: string | string[]) {
|
||||
if (this.error || this.value === null) return this;
|
||||
if (typeof pattern == 'string') pattern = pattern.split(' ');
|
||||
const match = pattern.some(x => x === this.value);
|
||||
if (!match) this.error = new Error('not-match-pattern');
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* このインスタンスの文字列が、与えられた正規表現と一致するか検証します
|
||||
* 一致しない場合エラーにします
|
||||
* @param pattern 正規表現
|
||||
*/
|
||||
match(pattern: RegExp) {
|
||||
if (this.error || this.value === null) return this;
|
||||
if (!pattern.test(this.value)) this.error = new Error('not-match-pattern');
|
||||
return this;
|
||||
}
|
||||
}
|
||||
|
||||
class ArrayQuery extends QueryCore {
|
||||
|
Loading…
Reference in New Issue
Block a user