misskey/src/models/following.ts

52 lines
1.0 KiB
TypeScript
Raw Normal View History

2018-03-28 22:48:47 -07:00
import * as mongo from 'mongodb';
2018-03-29 04:32:18 -07:00
import db from '../db/mongodb';
2017-01-16 16:12:33 -08:00
2018-03-28 22:48:47 -07:00
const Following = db.get<IFollowing>('following');
2018-04-02 03:50:40 -07:00
Following.createIndex(['followerId', 'followeeId'], { unique: true });
2018-03-28 22:48:47 -07:00
export default Following;
export type IFollowing = {
_id: mongo.ObjectID;
createdAt: Date;
followeeId: mongo.ObjectID;
followerId: mongo.ObjectID;
2018-04-18 20:43:25 -07:00
stalk: boolean;
// 非正規化
_followee: {
host: string;
inbox?: string;
},
_follower: {
host: string;
inbox?: string;
}
2018-03-28 22:48:47 -07:00
};
2018-04-11 15:13:15 -07: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
});
}