import * as mongo from 'mongodb'; const deepcopy = require('deepcopy'); import db from '../db/mongodb'; import isObjectId from '../misc/is-objectid'; import { pack as packUser } from './user'; const FollowRequest = db.get('followRequests'); FollowRequest.createIndex('followerId'); FollowRequest.createIndex('followeeId'); FollowRequest.createIndex(['followerId', 'followeeId'], { unique: true }); export default FollowRequest; export type IFollowRequest = { _id: mongo.ObjectID; createdAt: Date; followeeId: mongo.ObjectID; followerId: mongo.ObjectID; requestId?: string; // id of Follow Activity // 非正規化 _followee: { host: string; inbox?: string; sharedInbox?: string; }, _follower: { host: string; inbox?: string; sharedInbox?: string; } }; /** * Pack a request for API response */ export const pack = ( request: any, me?: any ) => new Promise(async (resolve, reject) => { let _request: any; // Populate the request if 'request' is ID if (isObjectId(request)) { _request = await FollowRequest.findOne({ _id: request }); } else if (typeof request === 'string') { _request = await FollowRequest.findOne({ _id: new mongo.ObjectID(request) }); } else { _request = deepcopy(request); } // Rename _id to id _request.id = _request._id; delete _request._id; // Populate follower _request.follower = await packUser(_request.followerId, me); // Populate followee _request.followee = await packUser(_request.followeeId, me); resolve(_request); });