mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-15 01:51:03 -07:00
dd0871dd59
* Implement instance blocking * Add missing text * Delete unnecessary file * Covert Punycode to Unicode
65 lines
1.3 KiB
TypeScript
65 lines
1.3 KiB
TypeScript
import * as mongo from 'mongodb';
|
|
import db from '../db/mongodb';
|
|
|
|
const Instance = db.get<IInstance>('instances');
|
|
Instance.createIndex('host', { unique: true });
|
|
export default Instance;
|
|
|
|
export interface IInstance {
|
|
_id: mongo.ObjectID;
|
|
|
|
/**
|
|
* ホスト
|
|
*/
|
|
host: string;
|
|
|
|
/**
|
|
* このインスタンスを捕捉した日時
|
|
*/
|
|
caughtAt: Date;
|
|
|
|
/**
|
|
* このインスタンスのシステム (MastodonとかMisskeyとかPleromaとか)
|
|
*/
|
|
system: string;
|
|
|
|
/**
|
|
* このインスタンスのユーザー数
|
|
*/
|
|
usersCount: number;
|
|
|
|
/**
|
|
* このインスタンスから受け取った投稿数
|
|
*/
|
|
notesCount: number;
|
|
|
|
/**
|
|
* このインスタンスのユーザーからフォローされている、自インスタンスのユーザーの数
|
|
*/
|
|
followingCount: number;
|
|
|
|
/**
|
|
* このインスタンスのユーザーをフォローしている、自インスタンスのユーザーの数
|
|
*/
|
|
followersCount: number;
|
|
|
|
/**
|
|
* 直近のリクエスト送信日時
|
|
*/
|
|
latestRequestSentAt?: Date;
|
|
|
|
/**
|
|
* 直近のリクエスト送信時のHTTPステータスコード
|
|
*/
|
|
latestStatus?: number;
|
|
|
|
/**
|
|
* 直近のリクエスト受信日時
|
|
*/
|
|
latestRequestReceivedAt?: Date;
|
|
|
|
/**
|
|
* このインスタンスをブロックしているか
|
|
*/
|
|
isBlocked: boolean;
|
|
}
|