FoundKey/src/models/following.ts

54 lines
1.1 KiB
TypeScript
Raw Normal View History

2018-03-29 05:48:47 +00:00
import * as mongo from 'mongodb';
2018-03-29 11:32:18 +00:00
import db from '../db/mongodb';
2017-01-17 00:12:33 +00:00
2018-03-29 05:48:47 +00:00
const Following = db.get<IFollowing>('following');
2018-04-02 10:50:40 +00:00
Following.createIndex(['followerId', 'followeeId'], { unique: true });
2018-03-29 05:48:47 +00:00
export default Following;
export type IFollowing = {
_id: mongo.ObjectID;
createdAt: Date;
followeeId: mongo.ObjectID;
followerId: mongo.ObjectID;
2018-04-19 03:43:25 +00:00
stalk: boolean;
// 非正規化
_followee: {
host: string;
inbox?: string;
2018-07-21 10:33:56 +00:00
sharedInbox?: string;
2018-04-19 03:43:25 +00:00
},
_follower: {
host: string;
inbox?: string;
2018-07-21 10:33:56 +00:00
sharedInbox?: string;
2018-04-19 03:43:25 +00:00
}
2018-03-29 05:48:47 +00:00
};
2018-04-11 22:13:15 +00:00
/**
* Followingを物理削除します
*/
export async function deleteFollowing(following: string | mongo.ObjectID | IFollowing) {
let f: IFollowing;
// Populate
if (mongo.ObjectID.prototype.isPrototypeOf(following)) {
f = await Following.findOne({
_id: following
});
} else if (typeof following === 'string') {
f = await Following.findOne({
_id: new mongo.ObjectID(following)
});
} else {
f = following as IFollowing;
}
if (f == null) return;
// このFollowingを削除
await Following.remove({
_id: f._id
});
}