mkdir apps/web/scripts
mv scripts/{cleanup.sh,ci_package.sh,copy-res.ts,deploy.py,package.sh} apps/web/scripts
And a couple of gitignore tweaks
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
65 lines
1.7 KiB
TypeScript
65 lines
1.7 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import { Whenable } from "../../utils/Whenable";
|
|
|
|
export type RunFn = () => Promise<void>;
|
|
|
|
export enum TransactionStatus {
|
|
Pending,
|
|
Success,
|
|
Error,
|
|
}
|
|
|
|
export class EchoTransaction extends Whenable<TransactionStatus> {
|
|
private _status = TransactionStatus.Pending;
|
|
private didFail = false;
|
|
|
|
public readonly startTime = new Date();
|
|
|
|
public constructor(
|
|
public readonly auditName: string,
|
|
public runFn: RunFn,
|
|
) {
|
|
super();
|
|
}
|
|
|
|
public get didPreviouslyFail(): boolean {
|
|
return this.didFail;
|
|
}
|
|
|
|
public get status(): TransactionStatus {
|
|
return this._status;
|
|
}
|
|
|
|
public run(): void {
|
|
if (this.status === TransactionStatus.Success) {
|
|
throw new Error("Cannot re-run a successful echo transaction");
|
|
}
|
|
this.setStatus(TransactionStatus.Pending);
|
|
this.runFn()
|
|
.then(() => this.setStatus(TransactionStatus.Success))
|
|
.catch(() => this.setStatus(TransactionStatus.Error));
|
|
}
|
|
|
|
public cancel(): void {
|
|
// Success basically means "done"
|
|
this.setStatus(TransactionStatus.Success);
|
|
}
|
|
|
|
private setStatus(status: TransactionStatus): void {
|
|
this._status = status;
|
|
if (status === TransactionStatus.Error) {
|
|
this.didFail = true;
|
|
} else if (status === TransactionStatus.Success) {
|
|
this.didFail = false;
|
|
}
|
|
this.notifyCondition(status);
|
|
}
|
|
}
|