summaryrefslogtreecommitdiff
path: root/src/models/mute.ts
blob: 8fe4eb2ee942163c973385968e67ff9430f3555a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import * as mongo from 'mongodb';
import db from '../db/mongodb';

const Mute = db.get<IMute>('mute');
Mute.createIndex(['muterId', 'muteeId'], { unique: true });
export default Mute;

export interface IMute {
	_id: mongo.ObjectID;
	createdAt: Date;
	muterId: mongo.ObjectID;
	muteeId: mongo.ObjectID;
}

/**
 * Muteを物理削除します
 */
export async function deleteMute(mute: string | mongo.ObjectID | IMute) {
	let m: IMute;

	// Populate
	if (mongo.ObjectID.prototype.isPrototypeOf(mute)) {
		m = await Mute.findOne({
			_id: mute
		});
	} else if (typeof mute === 'string') {
		m = await Mute.findOne({
			_id: new mongo.ObjectID(mute)
		});
	} else {
		m = mute as IMute;
	}

	if (m == null) return;

	// このMuteを削除
	await Mute.remove({
		_id: m._id
	});
}