jump to end of reports on init, better handle missing next_token

This commit is contained in:
jesopo 2022-08-19 13:06:38 +00:00
parent 4d5447cb50
commit b2b6ff6ef4

View File

@ -31,7 +31,7 @@ export class ReportPoller {
* https://matrix-org.github.io/synapse/latest/admin_api/event_reports.html * https://matrix-org.github.io/synapse/latest/admin_api/event_reports.html
* "from" is an opaque token that is returned from the API to paginate reports * "from" is an opaque token that is returned from the API to paginate reports
*/ */
private from = 0; private from: number | null = null;
/** /**
* The currently-pending report poll * The currently-pending report poll
*/ */
@ -60,19 +60,24 @@ export class ReportPoller {
} }
private async getAbuseReports() { private async getAbuseReports() {
let params: { dir: string, from?: number} = {
// short for direction: forward; i.e. show newest last
dir: "f",
}
if (this.from !== null) {
params["from"] = this.from;
}
let response_: { let response_: {
event_reports: { room_id: string, event_id: string, sender: string, reason: string }[], event_reports: { room_id: string, event_id: string, sender: string, reason: string }[],
next_token: number | undefined next_token: number | undefined,
total: number,
} | undefined; } | undefined;
try { try {
response_ = await this.mjolnir.client.doRequest( response_ = await this.mjolnir.client.doRequest(
"GET", "GET",
"/_synapse/admin/v1/event_reports", "/_synapse/admin/v1/event_reports",
{ params,
// short for direction: forward; i.e. show newest last
dir: "f",
from: this.from.toString()
}
); );
} catch (ex) { } catch (ex) {
await this.mjolnir.logMessage(LogLevel.ERROR, "getAbuseReports", `failed to poll events: ${ex}`); await this.mjolnir.logMessage(LogLevel.ERROR, "getAbuseReports", `failed to poll events: ${ex}`);
@ -80,6 +85,7 @@ export class ReportPoller {
} }
const response = response_!; const response = response_!;
for (let report of response.event_reports) { for (let report of response.event_reports) {
if (!(report.room_id in this.mjolnir.protectedRooms)) { if (!(report.room_id in this.mjolnir.protectedRooms)) {
continue; continue;
@ -104,18 +110,29 @@ export class ReportPoller {
}); });
} }
/* let from;
* This API endpoint returns an opaque `next_token` number that we if (this.from === null) {
* need to give back to subsequent requests for pagination, so here we /*
* save it in account data * If this is our first call to this endpoint, we want to skip to
*/ * the end of available reports, so we'll only consider reports
if (response.next_token !== undefined) { * that happened after we supported report polling.
this.from = response.next_token; */
try { from = response.total;
await this.mjolnir.client.setAccountData(REPORT_POLL_EVENT_TYPE, { from: response.next_token }); } else {
} catch (ex) { /*
await this.mjolnir.logMessage(LogLevel.ERROR, "getAbuseReports", `failed to update progress: ${ex}`); * If there are more pages for us to read, this endpoint will
} * return an opaque `next_token` number that we want to provide
* on the next endpoint call. If not, we're on the last page,
* which means we want to skip to the end of this page.
*/
from = response.next_token ?? this.from + response.event_reports.length;
}
this.from = from;
try {
await this.mjolnir.client.setAccountData(REPORT_POLL_EVENT_TYPE, { from: from });
} catch (ex) {
await this.mjolnir.logMessage(LogLevel.ERROR, "getAbuseReports", `failed to update progress: ${ex}`);
} }
} }