You've already forked AstralRinth
forked from didirus/AstralRinth
* feat: ws client * feat: v1 backups endpoints * feat: migrate backups page to api-client and new DI ctx * feat: switch to ws client via api-client * fix: disgust * fix: stats * fix: console * feat: v0 backups api * feat: migrate backups.vue to page system w/ components to ui pkgs * feat: polish backups frontend * feat: pending refactor for ws handling of backups * fix: vue shit * fix: cancel logic fix * fix: qa issues * fix: alignment issues for backups page * fix: bar positioning * feat: finish QA * fix: icons * fix: lint & i18n * fix: clear comment * lint --------- Co-authored-by: Prospector <6166773+Prospector@users.noreply.github.com>
96 lines
3.0 KiB
TypeScript
96 lines
3.0 KiB
TypeScript
import { AbstractModule } from '../../../core/abstract-module'
|
|
import type { Archon } from '../types'
|
|
|
|
export class ArchonBackupsV0Module extends AbstractModule {
|
|
public getModuleID(): string {
|
|
return 'archon_backups_v0'
|
|
}
|
|
|
|
/** GET /modrinth/v0/servers/:server_id/backups */
|
|
public async list(serverId: string): Promise<Archon.Backups.v1.Backup[]> {
|
|
return this.client.request<Archon.Backups.v1.Backup[]>(`/servers/${serverId}/backups`, {
|
|
api: 'archon',
|
|
version: 'modrinth/v0',
|
|
method: 'GET',
|
|
})
|
|
}
|
|
|
|
/** GET /modrinth/v0/servers/:server_id/backups/:backup_id */
|
|
public async get(serverId: string, backupId: string): Promise<Archon.Backups.v1.Backup> {
|
|
return this.client.request<Archon.Backups.v1.Backup>(
|
|
`/servers/${serverId}/backups/${backupId}`,
|
|
{ api: 'archon', version: 'modrinth/v0', method: 'GET' },
|
|
)
|
|
}
|
|
|
|
/** POST /modrinth/v0/servers/:server_id/backups */
|
|
public async create(
|
|
serverId: string,
|
|
request: Archon.Backups.v1.BackupRequest,
|
|
): Promise<Archon.Backups.v1.PostBackupResponse> {
|
|
return this.client.request<Archon.Backups.v1.PostBackupResponse>(
|
|
`/servers/${serverId}/backups`,
|
|
{ api: 'archon', version: 'modrinth/v0', method: 'POST', body: request },
|
|
)
|
|
}
|
|
|
|
/** POST /modrinth/v0/servers/:server_id/backups/:backup_id/restore */
|
|
public async restore(serverId: string, backupId: string): Promise<void> {
|
|
await this.client.request<void>(`/servers/${serverId}/backups/${backupId}/restore`, {
|
|
api: 'archon',
|
|
version: 'modrinth/v0',
|
|
method: 'POST',
|
|
})
|
|
}
|
|
|
|
/** DELETE /modrinth/v0/servers/:server_id/backups/:backup_id */
|
|
public async delete(serverId: string, backupId: string): Promise<void> {
|
|
await this.client.request<void>(`/servers/${serverId}/backups/${backupId}`, {
|
|
api: 'archon',
|
|
version: 'modrinth/v0',
|
|
method: 'DELETE',
|
|
})
|
|
}
|
|
|
|
/** POST /modrinth/v0/servers/:server_id/backups/:backup_id/lock */
|
|
public async lock(serverId: string, backupId: string): Promise<void> {
|
|
await this.client.request<void>(`/servers/${serverId}/backups/${backupId}/lock`, {
|
|
api: 'archon',
|
|
version: 'modrinth/v0',
|
|
method: 'POST',
|
|
})
|
|
}
|
|
|
|
/** POST /modrinth/v0/servers/:server_id/backups/:backup_id/unlock */
|
|
public async unlock(serverId: string, backupId: string): Promise<void> {
|
|
await this.client.request<void>(`/servers/${serverId}/backups/${backupId}/unlock`, {
|
|
api: 'archon',
|
|
version: 'modrinth/v0',
|
|
method: 'POST',
|
|
})
|
|
}
|
|
|
|
/** POST /modrinth/v0/servers/:server_id/backups/:backup_id/retry */
|
|
public async retry(serverId: string, backupId: string): Promise<void> {
|
|
await this.client.request<void>(`/servers/${serverId}/backups/${backupId}/retry`, {
|
|
api: 'archon',
|
|
version: 'modrinth/v0',
|
|
method: 'POST',
|
|
})
|
|
}
|
|
|
|
/** PATCH /modrinth/v0/servers/:server_id/backups/:backup_id */
|
|
public async rename(
|
|
serverId: string,
|
|
backupId: string,
|
|
request: Archon.Backups.v1.PatchBackup,
|
|
): Promise<void> {
|
|
await this.client.request<void>(`/servers/${serverId}/backups/${backupId}`, {
|
|
api: 'archon',
|
|
version: 'modrinth/v0',
|
|
method: 'PATCH',
|
|
body: request,
|
|
})
|
|
}
|
|
}
|