rudeshark.net/src/misc/should-mute-this-note.ts

23 lines
536 B
TypeScript
Raw Normal View History

2018-09-19 21:56:24 +02:00
import * as mongo from 'mongodb';
2018-10-16 04:38:09 +02:00
import isObjectId from './is-objectid';
2018-09-19 21:56:24 +02:00
function toString(id: any) {
2018-10-16 04:38:09 +02:00
return isObjectId(id) ? (id as mongo.ObjectID).toHexString() : id;
2018-09-19 21:56:24 +02:00
}
export default function(note: any, mutedUserIds: string[]): boolean {
2018-09-19 21:56:24 +02:00
if (mutedUserIds.includes(toString(note.userId))) {
return true;
}
2018-09-19 21:56:24 +02:00
if (note.reply != null && mutedUserIds.includes(toString(note.reply.userId))) {
return true;
}
2018-09-19 21:56:24 +02:00
if (note.renote != null && mutedUserIds.includes(toString(note.renote.userId))) {
return true;
}
return false;
}