Merge remote-tracking branch 'repomerge/t3chguy/repomerge' into t3chguy/repo-merge Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
99 lines
3.1 KiB
TypeScript
99 lines
3.1 KiB
TypeScript
/*
|
|
Copyright 2022-2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
// eslint-disable-next-line no-restricted-imports
|
|
import { IMatrixProfile, IEventWithRoomId as IMatrixEvent, IResultRoomEvents } from "matrix-js-sdk/src/@types/search";
|
|
|
|
import BaseEventIndexManager, {
|
|
ICrawlerCheckpoint,
|
|
IEventAndProfile,
|
|
IIndexStats,
|
|
ISearchArgs,
|
|
ILoadArgs,
|
|
} from "../../indexing/BaseEventIndexManager";
|
|
import { IPCManager } from "./IPCManager";
|
|
|
|
export class SeshatIndexManager extends BaseEventIndexManager {
|
|
private readonly ipc = new IPCManager("seshat", "seshatReply");
|
|
|
|
public async supportsEventIndexing(): Promise<boolean> {
|
|
return this.ipc.call("supportsEventIndexing");
|
|
}
|
|
|
|
public async initEventIndex(userId: string, deviceId: string): Promise<void> {
|
|
return this.ipc.call("initEventIndex", userId, deviceId);
|
|
}
|
|
|
|
public async addEventToIndex(ev: IMatrixEvent, profile: IMatrixProfile): Promise<void> {
|
|
return this.ipc.call("addEventToIndex", ev, profile);
|
|
}
|
|
|
|
public async deleteEvent(eventId: string): Promise<boolean> {
|
|
return this.ipc.call("deleteEvent", eventId);
|
|
}
|
|
|
|
public async isEventIndexEmpty(): Promise<boolean> {
|
|
return this.ipc.call("isEventIndexEmpty");
|
|
}
|
|
|
|
public async isRoomIndexed(roomId: string): Promise<boolean> {
|
|
return this.ipc.call("isRoomIndexed", roomId);
|
|
}
|
|
|
|
public async commitLiveEvents(): Promise<void> {
|
|
return this.ipc.call("commitLiveEvents");
|
|
}
|
|
|
|
public async searchEventIndex(searchConfig: ISearchArgs): Promise<IResultRoomEvents> {
|
|
return this.ipc.call("searchEventIndex", searchConfig);
|
|
}
|
|
|
|
public async addHistoricEvents(
|
|
events: IEventAndProfile[],
|
|
checkpoint: ICrawlerCheckpoint | null,
|
|
oldCheckpoint: ICrawlerCheckpoint | null,
|
|
): Promise<boolean> {
|
|
return this.ipc.call("addHistoricEvents", events, checkpoint, oldCheckpoint);
|
|
}
|
|
|
|
public async addCrawlerCheckpoint(checkpoint: ICrawlerCheckpoint): Promise<void> {
|
|
return this.ipc.call("addCrawlerCheckpoint", checkpoint);
|
|
}
|
|
|
|
public async removeCrawlerCheckpoint(checkpoint: ICrawlerCheckpoint): Promise<void> {
|
|
return this.ipc.call("removeCrawlerCheckpoint", checkpoint);
|
|
}
|
|
|
|
public async loadFileEvents(args: ILoadArgs): Promise<IEventAndProfile[]> {
|
|
return this.ipc.call("loadFileEvents", args);
|
|
}
|
|
|
|
public async loadCheckpoints(): Promise<ICrawlerCheckpoint[]> {
|
|
return this.ipc.call("loadCheckpoints");
|
|
}
|
|
|
|
public async closeEventIndex(): Promise<void> {
|
|
return this.ipc.call("closeEventIndex");
|
|
}
|
|
|
|
public async getStats(): Promise<IIndexStats> {
|
|
return this.ipc.call("getStats");
|
|
}
|
|
|
|
public async getUserVersion(): Promise<number> {
|
|
return this.ipc.call("getUserVersion");
|
|
}
|
|
|
|
public async setUserVersion(version: number): Promise<void> {
|
|
return this.ipc.call("setUserVersion", version);
|
|
}
|
|
|
|
public async deleteEventIndex(): Promise<void> {
|
|
return this.ipc.call("deleteEventIndex");
|
|
}
|
|
}
|