wip
This commit is contained in:
@ -7,7 +7,7 @@ import { getFriendIds } from '../../common/get-friends';
|
||||
/**
|
||||
* Get followers of a user
|
||||
*/
|
||||
module.exports = (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
export default (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
// Get 'userId' parameter
|
||||
const [userId, userIdErr] = $.type(ID).get(params.userId);
|
||||
if (userIdErr) return rej('invalid userId param');
|
||||
|
@ -7,7 +7,7 @@ import { getFriendIds } from '../../common/get-friends';
|
||||
/**
|
||||
* Get following users of a user
|
||||
*/
|
||||
module.exports = (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
export default (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
// Get 'userId' parameter
|
||||
const [userId, userIdErr] = $.type(ID).get(params.userId);
|
||||
if (userIdErr) return rej('invalid userId param');
|
||||
|
@ -2,7 +2,7 @@ import $ from 'cafy'; import ID from '../../../../cafy-id';
|
||||
import Note from '../../../../models/note';
|
||||
import User, { pack, ILocalUser } from '../../../../models/user';
|
||||
|
||||
module.exports = (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
export default (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
// Get 'userId' parameter
|
||||
const [userId, userIdErr] = $.type(ID).get(params.userId);
|
||||
if (userIdErr) return rej('invalid userId param');
|
||||
|
@ -5,7 +5,7 @@ import { ILocalUser } from '../../../../../models/user';
|
||||
/**
|
||||
* Create a user list
|
||||
*/
|
||||
module.exports = async (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
||||
export default async (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
||||
// Get 'title' parameter
|
||||
const [title, titleErr] = $.str.range(1, 100).get(params.title);
|
||||
if (titleErr) return rej('invalid title param');
|
||||
|
@ -4,7 +4,7 @@ import { ILocalUser } from '../../../../../models/user';
|
||||
/**
|
||||
* Add a user to a user list
|
||||
*/
|
||||
module.exports = async (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
export default async (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
// Fetch lists
|
||||
const userLists = await UserList.find({
|
||||
userId: me._id,
|
||||
|
@ -9,7 +9,7 @@ import { deliver } from '../../../../../queue';
|
||||
/**
|
||||
* Add a user to a user list
|
||||
*/
|
||||
module.exports = async (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
export default async (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
// Get 'listId' parameter
|
||||
const [listId, listIdErr] = $.type(ID).get(params.listId);
|
||||
if (listIdErr) return rej('invalid listId param');
|
||||
|
@ -5,7 +5,7 @@ import { ILocalUser } from '../../../../../models/user';
|
||||
/**
|
||||
* Show a user list
|
||||
*/
|
||||
module.exports = async (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
export default async (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
// Get 'listId' parameter
|
||||
const [listId, listIdErr] = $.type(ID).get(params.listId);
|
||||
if (listIdErr) return rej('invalid listId param');
|
||||
|
@ -6,7 +6,7 @@ import User, { ILocalUser } from '../../../../models/user';
|
||||
/**
|
||||
* Get notes of a user
|
||||
*/
|
||||
module.exports = (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
export default (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
// Get 'userId' parameter
|
||||
const [userId, userIdErr] = $.type(ID).optional.get(params.userId);
|
||||
if (userIdErr) return rej('invalid userId param');
|
||||
|
@ -7,7 +7,7 @@ import Mute from '../../../../models/mute';
|
||||
/**
|
||||
* Get recommended users
|
||||
*/
|
||||
module.exports = (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
export default (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
// Get 'limit' parameter
|
||||
const [limit = 10, limitErr] = $.num.optional.range(1, 100).get(params.limit);
|
||||
if (limitErr) return rej('invalid limit param');
|
||||
|
@ -5,7 +5,7 @@ const escapeRegexp = require('escape-regexp');
|
||||
/**
|
||||
* Search a user
|
||||
*/
|
||||
module.exports = (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
export default (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
// Get 'query' parameter
|
||||
const [query, queryError] = $.str.pipe(x => x != '').get(params.query);
|
||||
if (queryError) return rej('invalid query param');
|
||||
|
@ -4,7 +4,7 @@ import User, { pack, ILocalUser } from '../../../../models/user';
|
||||
/**
|
||||
* Search a user by username
|
||||
*/
|
||||
module.exports = (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
export default (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
// Get 'query' parameter
|
||||
const [query, queryError] = $.str.get(params.query);
|
||||
if (queryError) return rej('invalid query param');
|
||||
|
@ -7,7 +7,7 @@ const cursorOption = { fields: { data: false } };
|
||||
/**
|
||||
* Show user(s)
|
||||
*/
|
||||
module.exports = (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
export default (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
||||
let user;
|
||||
|
||||
// Get 'userId' parameter
|
||||
|
Reference in New Issue
Block a user