mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 04:01:58 +00:00
1606 lines
35 KiB
TypeScript
1606 lines
35 KiB
TypeScript
import { Injectable } from '@angular/core'
|
|
import {
|
|
pauseFor,
|
|
Log,
|
|
RPCErrorDetails,
|
|
RPCOptions,
|
|
} from '@start9labs/shared'
|
|
import { ApiService } from './embassy-api.service'
|
|
import {
|
|
Operation,
|
|
PatchOp,
|
|
pathFromArray,
|
|
RemoveOperation,
|
|
Revision,
|
|
} from 'patch-db-client'
|
|
import {
|
|
InstallingState,
|
|
PackageDataEntry,
|
|
Proxy,
|
|
StateInfo,
|
|
UpdatingState,
|
|
} from 'src/app/services/patch-db/data-model'
|
|
import { BackupTargetType, Metrics, RR } from './api.types'
|
|
import { Mock } from './api.fixures'
|
|
import {
|
|
from,
|
|
interval,
|
|
map,
|
|
Observable,
|
|
shareReplay,
|
|
startWith,
|
|
Subject,
|
|
tap,
|
|
} from 'rxjs'
|
|
import { mockPatchData } from './mock-patch'
|
|
import { AuthService } from '../auth.service'
|
|
import { T } from '@start9labs/start-sdk'
|
|
import {
|
|
GetPackageRes,
|
|
GetPackagesRes,
|
|
MarketplacePkg,
|
|
} from '@start9labs/marketplace'
|
|
import { WebSocketSubjectConfig } from 'rxjs/webSocket'
|
|
import markdown from 'raw-loader!../../../../../shared/assets/markdown/md-sample.md'
|
|
|
|
const PROGRESS: T.FullProgress = {
|
|
overall: {
|
|
done: 0,
|
|
total: 120,
|
|
},
|
|
phases: [
|
|
{
|
|
name: 'Downloading',
|
|
progress: {
|
|
done: 0,
|
|
total: 40,
|
|
},
|
|
},
|
|
{
|
|
name: 'Validating',
|
|
progress: null,
|
|
},
|
|
{
|
|
name: 'Installing',
|
|
progress: {
|
|
done: 0,
|
|
total: 40,
|
|
},
|
|
},
|
|
],
|
|
}
|
|
|
|
@Injectable()
|
|
export class MockApiService extends ApiService {
|
|
readonly mockWsSource$ = new Subject<Revision>()
|
|
private readonly revertTime = 1800
|
|
sequence = 0
|
|
|
|
constructor(private readonly auth: AuthService) {
|
|
super()
|
|
this.auth.isVerified$
|
|
.pipe(
|
|
tap(() => {
|
|
this.sequence = 0
|
|
}),
|
|
)
|
|
.subscribe()
|
|
}
|
|
|
|
async uploadPackage(guid: string, body: Blob): Promise<string> {
|
|
await pauseFor(2000)
|
|
// @TODO Matt what should this return?
|
|
return ''
|
|
}
|
|
|
|
async uploadFile(body: Blob): Promise<string> {
|
|
await pauseFor(2000)
|
|
return 'returnedhash'
|
|
}
|
|
|
|
async getStaticProxy(
|
|
pkg: MarketplacePkg,
|
|
path: 'LICENSE.md' | 'instructions.md',
|
|
): Promise<string> {
|
|
await pauseFor(2000)
|
|
return markdown
|
|
}
|
|
|
|
async getStaticInstalled(
|
|
id: T.PackageId,
|
|
path: 'LICENSE.md' | 'instructions.md',
|
|
): Promise<string> {
|
|
await pauseFor(2000)
|
|
return markdown
|
|
}
|
|
|
|
// websocket
|
|
|
|
openWebsocket$<T>(
|
|
guid: string,
|
|
config: RR.WebsocketConfig<T>,
|
|
): Observable<T> {
|
|
if (guid === 'db-guid') {
|
|
return this.mockWsSource$.pipe<any>(
|
|
shareReplay({ bufferSize: 1, refCount: true }),
|
|
)
|
|
} else if (guid === 'logs-guid') {
|
|
return interval(50).pipe<any>(
|
|
map((_, index) => {
|
|
// mock fire open observer
|
|
if (index === 0) config.openObserver?.next(new Event(''))
|
|
if (index === 100) throw new Error('HAAHHA')
|
|
return Mock.ServerLogs[0]
|
|
}),
|
|
)
|
|
} else if (guid === 'init-progress-guid') {
|
|
return from(this.initProgress()).pipe(
|
|
startWith(PROGRESS),
|
|
) as Observable<T>
|
|
} else {
|
|
throw new Error('invalid guid type')
|
|
}
|
|
}
|
|
|
|
// state
|
|
|
|
async echo(params: RR.EchoReq, url: string): Promise<RR.EchoRes> {
|
|
if (url) {
|
|
const num = Math.floor(Math.random() * 10) + 1
|
|
if (num > 8) return params.message
|
|
throw new Error()
|
|
}
|
|
await pauseFor(2000)
|
|
return params.message
|
|
}
|
|
|
|
private stateIndex = 0
|
|
async getState(): Promise<RR.ServerState> {
|
|
await pauseFor(1000)
|
|
|
|
this.stateIndex++
|
|
|
|
return this.stateIndex === 1 ? 'running' : 'running'
|
|
}
|
|
|
|
// db
|
|
|
|
async subscribeToPatchDB(
|
|
params: RR.SubscribePatchReq,
|
|
): Promise<RR.SubscribePatchRes> {
|
|
await pauseFor(2000)
|
|
return {
|
|
dump: { id: 1, value: mockPatchData },
|
|
guid: 'db-guid',
|
|
}
|
|
}
|
|
|
|
async setDbValue<T>(
|
|
pathArr: Array<string | number>,
|
|
value: T,
|
|
): Promise<RR.SetDBValueRes> {
|
|
const pointer = pathFromArray(pathArr)
|
|
const params: RR.SetDBValueReq<T> = { pointer, value }
|
|
await pauseFor(2000)
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: '/ui' + params.pointer,
|
|
value: params.value,
|
|
},
|
|
]
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
// auth
|
|
|
|
async login(params: RR.LoginReq): Promise<RR.loginRes> {
|
|
await pauseFor(2000)
|
|
return null
|
|
}
|
|
|
|
async logout(params: RR.LogoutReq): Promise<RR.LogoutRes> {
|
|
await pauseFor(2000)
|
|
return null
|
|
}
|
|
|
|
async getSessions(params: RR.GetSessionsReq): Promise<RR.GetSessionsRes> {
|
|
await pauseFor(2000)
|
|
return Mock.Sessions
|
|
}
|
|
|
|
async killSessions(params: RR.KillSessionsReq): Promise<RR.KillSessionsRes> {
|
|
await pauseFor(2000)
|
|
return null
|
|
}
|
|
|
|
async resetPassword(
|
|
params: RR.ResetPasswordReq,
|
|
): Promise<RR.ResetPasswordRes> {
|
|
await pauseFor(2000)
|
|
return null
|
|
}
|
|
|
|
// diagnostic
|
|
|
|
async getError(): Promise<RPCErrorDetails> {
|
|
await pauseFor(1000)
|
|
return {
|
|
code: 15,
|
|
message: 'Unknown server',
|
|
data: { details: 'Some details about the error here' },
|
|
}
|
|
}
|
|
|
|
async diagnosticGetError(): Promise<RR.DiagnosticErrorRes> {
|
|
await pauseFor(1000)
|
|
return {
|
|
code: 15,
|
|
message: 'Unknown server',
|
|
data: { details: 'Some details about the error here' },
|
|
}
|
|
}
|
|
|
|
async diagnosticRestart(): Promise<void> {
|
|
await pauseFor(1000)
|
|
}
|
|
|
|
async diagnosticForgetDrive(): Promise<void> {
|
|
await pauseFor(1000)
|
|
}
|
|
|
|
async diagnosticRepairDisk(): Promise<void> {
|
|
await pauseFor(1000)
|
|
}
|
|
|
|
async diagnosticGetLogs(
|
|
params: RR.GetServerLogsReq,
|
|
): Promise<RR.GetServerLogsRes> {
|
|
return this.getServerLogs(params)
|
|
}
|
|
|
|
// init
|
|
|
|
async initGetProgress(): Promise<RR.InitGetProgressRes> {
|
|
await pauseFor(250)
|
|
return {
|
|
progress: PROGRESS,
|
|
guid: 'init-progress-guid',
|
|
}
|
|
}
|
|
|
|
async initFollowLogs(): Promise<RR.FollowServerLogsRes> {
|
|
await pauseFor(2000)
|
|
return {
|
|
startCursor: 'start-cursor',
|
|
guid: 'logs-guid',
|
|
}
|
|
}
|
|
|
|
// server
|
|
|
|
openMetricsWebsocket$(
|
|
config: WebSocketSubjectConfig<Metrics>,
|
|
): Observable<Metrics> {
|
|
return interval(2000).pipe(
|
|
map((_, index) => {
|
|
// mock fire open observer
|
|
if (index === 0) config.openObserver?.next(new Event(''))
|
|
if (index === 4) throw new Error('HAHAHA')
|
|
return Mock.getMetrics()
|
|
}),
|
|
)
|
|
}
|
|
|
|
async getSystemTime(
|
|
params: RR.GetSystemTimeReq,
|
|
): Promise<RR.GetSystemTimeRes> {
|
|
await pauseFor(2000)
|
|
return {
|
|
now: new Date().toUTCString(),
|
|
uptime: 1234567,
|
|
}
|
|
}
|
|
|
|
async getServerLogs(
|
|
params: RR.GetServerLogsReq,
|
|
): Promise<RR.GetServerLogsRes> {
|
|
await pauseFor(2000)
|
|
const entries = this.randomLogs(params.limit)
|
|
|
|
return {
|
|
entries,
|
|
startCursor: 'start-cursor',
|
|
endCursor: 'end-cursor',
|
|
}
|
|
}
|
|
|
|
async getKernelLogs(
|
|
params: RR.GetServerLogsReq,
|
|
): Promise<RR.GetServerLogsRes> {
|
|
await pauseFor(2000)
|
|
const entries = this.randomLogs(params.limit)
|
|
|
|
return {
|
|
entries,
|
|
startCursor: 'start-cursor',
|
|
endCursor: 'end-cursor',
|
|
}
|
|
}
|
|
|
|
async getTorLogs(params: RR.GetServerLogsReq): Promise<RR.GetServerLogsRes> {
|
|
await pauseFor(2000)
|
|
const entries = this.randomLogs(params.limit)
|
|
|
|
return {
|
|
entries,
|
|
startCursor: 'startCursor',
|
|
endCursor: 'end-cursor',
|
|
}
|
|
}
|
|
|
|
async followServerLogs(
|
|
params: RR.FollowServerLogsReq,
|
|
): Promise<RR.FollowServerLogsRes> {
|
|
await pauseFor(2000)
|
|
return {
|
|
startCursor: 'start-cursor',
|
|
guid: 'logs-guid',
|
|
}
|
|
}
|
|
|
|
async followKernelLogs(
|
|
params: RR.FollowServerLogsReq,
|
|
): Promise<RR.FollowServerLogsRes> {
|
|
await pauseFor(2000)
|
|
return {
|
|
startCursor: 'start-cursor',
|
|
guid: 'logs-guid',
|
|
}
|
|
}
|
|
|
|
async followTorLogs(
|
|
params: RR.FollowServerLogsReq,
|
|
): Promise<RR.FollowServerLogsRes> {
|
|
await pauseFor(2000)
|
|
return {
|
|
startCursor: 'start-cursor',
|
|
guid: 'logs-guid',
|
|
}
|
|
}
|
|
|
|
private randomLogs(limit = 1): Log[] {
|
|
const arrLength = Math.ceil(limit / Mock.ServerLogs.length)
|
|
const logs = new Array(arrLength)
|
|
.fill(Mock.ServerLogs)
|
|
.reduce((acc, val) => acc.concat(val), [])
|
|
|
|
return logs
|
|
}
|
|
|
|
async getServerMetrics(
|
|
params: RR.GetServerMetricsReq,
|
|
): Promise<RR.GetServerMetricsRes> {
|
|
await pauseFor(2000)
|
|
return {
|
|
guid: 'iqudh37um-i38u3-34-a51b-jkhd783ein',
|
|
metrics: Mock.getMetrics(),
|
|
}
|
|
}
|
|
|
|
async updateServer(url?: string): Promise<RR.UpdateServerRes> {
|
|
await pauseFor(2000)
|
|
const initialProgress = {
|
|
size: null,
|
|
downloaded: 0,
|
|
}
|
|
|
|
setTimeout(() => {
|
|
this.updateOSProgress()
|
|
}, 500)
|
|
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: '/serverInfo/statusInfo/updateProgress',
|
|
value: initialProgress,
|
|
},
|
|
]
|
|
this.mockRevision(patch)
|
|
|
|
return 'updating'
|
|
}
|
|
|
|
async setServerClearnetAddress(
|
|
params: RR.SetServerClearnetAddressReq,
|
|
): Promise<RR.SetServerClearnetAddressRes> {
|
|
await pauseFor(2000)
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: '/serverInfo/ui/domainInfo',
|
|
value: params.domainInfo,
|
|
},
|
|
]
|
|
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
async restartServer(
|
|
params: RR.RestartServerReq,
|
|
): Promise<RR.RestartServerRes> {
|
|
await pauseFor(2000)
|
|
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: '/serverInfo/statusInfo/restarting',
|
|
value: true,
|
|
},
|
|
]
|
|
this.mockRevision(patch)
|
|
|
|
setTimeout(() => {
|
|
const patch2 = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: '/serverInfo/statusInfo/restarting',
|
|
value: false,
|
|
},
|
|
]
|
|
this.mockRevision(patch2)
|
|
}, 2000)
|
|
|
|
return null
|
|
}
|
|
|
|
async shutdownServer(
|
|
params: RR.ShutdownServerReq,
|
|
): Promise<RR.ShutdownServerRes> {
|
|
await pauseFor(2000)
|
|
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: '/serverInfo/statusInfo/shuttingDown',
|
|
value: true,
|
|
},
|
|
]
|
|
this.mockRevision(patch)
|
|
|
|
setTimeout(() => {
|
|
const patch2 = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: '/serverInfo/statusInfo/shuttingDown',
|
|
value: false,
|
|
},
|
|
]
|
|
this.mockRevision(patch2)
|
|
}, 2000)
|
|
|
|
return null
|
|
}
|
|
|
|
async repairDisk(params: RR.RestartServerReq): Promise<RR.RestartServerRes> {
|
|
await pauseFor(2000)
|
|
return null
|
|
}
|
|
|
|
async resetTor(params: RR.ResetTorReq): Promise<RR.ResetTorRes> {
|
|
await pauseFor(2000)
|
|
return null
|
|
}
|
|
|
|
async setOsOutboundProxy(
|
|
params: RR.SetOsOutboundProxyReq,
|
|
): Promise<RR.SetOsOutboundProxyRes> {
|
|
await pauseFor(2000)
|
|
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: '/serverInfo/network/outboundProxy',
|
|
value: params.proxy,
|
|
},
|
|
]
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
// marketplace URLs
|
|
|
|
async registryRequest(
|
|
registryUrl: string,
|
|
options: RPCOptions,
|
|
): Promise<any> {
|
|
await pauseFor(2000)
|
|
|
|
return Error('do not call directly')
|
|
}
|
|
|
|
async checkOSUpdate(qp: RR.CheckOSUpdateReq): Promise<RR.CheckOSUpdateRes> {
|
|
await pauseFor(2000)
|
|
return Mock.MarketplaceEos
|
|
}
|
|
|
|
async getRegistryInfo(registryUrl: string): Promise<T.RegistryInfo> {
|
|
await pauseFor(2000)
|
|
return Mock.RegistryInfo
|
|
}
|
|
|
|
async getRegistryPackage(
|
|
url: string,
|
|
id: string,
|
|
versionRange: string,
|
|
): Promise<GetPackageRes> {
|
|
await pauseFor(2000)
|
|
if (!versionRange) {
|
|
return Mock.RegistryPackages[id]
|
|
} else {
|
|
return Mock.OtherPackageVersions[id][versionRange]
|
|
}
|
|
}
|
|
|
|
async getRegistryPackages(registryUrl: string): Promise<GetPackagesRes> {
|
|
await pauseFor(2000)
|
|
return Mock.RegistryPackages
|
|
}
|
|
|
|
// notification
|
|
|
|
async getNotifications(
|
|
params: RR.GetNotificationsReq,
|
|
): Promise<RR.GetNotificationsRes> {
|
|
await pauseFor(2000)
|
|
|
|
return Mock.Notifications
|
|
}
|
|
|
|
async deleteNotifications(
|
|
params: RR.DeleteNotificationReq,
|
|
): Promise<RR.DeleteNotificationRes> {
|
|
await pauseFor(2000)
|
|
return null
|
|
}
|
|
|
|
async markSeenNotifications(
|
|
params: RR.MarkSeenNotificationReq,
|
|
): Promise<RR.MarkSeenNotificationRes> {
|
|
await pauseFor(2000)
|
|
return null
|
|
}
|
|
|
|
async markSeenAllNotifications(
|
|
params: RR.MarkSeenAllNotificationsReq,
|
|
): Promise<RR.MarkSeenAllNotificationsRes> {
|
|
await pauseFor(2000)
|
|
return null
|
|
}
|
|
|
|
async markUnseenNotifications(
|
|
params: RR.MarkUnseenNotificationReq,
|
|
): Promise<RR.MarkUnseenNotificationRes> {
|
|
await pauseFor(2000)
|
|
return null
|
|
}
|
|
|
|
// network
|
|
|
|
async addProxy(params: RR.AddProxyReq): Promise<RR.AddProxyRes> {
|
|
await pauseFor(2000)
|
|
|
|
const type: Proxy['type'] = 'inbound-outbound'
|
|
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: '/serverInfo/network/proxies',
|
|
value: [
|
|
{
|
|
id: 'abcd-efgh-ijkl-mnop',
|
|
name: params.name,
|
|
createdAt: new Date(),
|
|
type,
|
|
endpoint: '10.25.2.17',
|
|
usedBy: {
|
|
domains: [],
|
|
services: [],
|
|
},
|
|
},
|
|
],
|
|
},
|
|
]
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
async updateProxy(params: RR.UpdateProxyReq): Promise<RR.UpdateProxyRes> {
|
|
await pauseFor(2000)
|
|
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: `/serverInfo/network/proxies/0/name`,
|
|
value: params.name,
|
|
},
|
|
]
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
async deleteProxy(params: RR.DeleteProxyReq): Promise<RR.DeleteProxyRes> {
|
|
await pauseFor(2000)
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: '/serverInfo/network/proxies',
|
|
value: [],
|
|
},
|
|
]
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
// domains
|
|
|
|
async claimStart9ToDomain(
|
|
params: RR.ClaimStart9ToReq,
|
|
): Promise<RR.ClaimStart9ToRes> {
|
|
await pauseFor(2000)
|
|
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: '/serverInfo/network/start9ToSubdomain',
|
|
value: {
|
|
value: 'xyz',
|
|
createdAt: new Date(),
|
|
networkStrategy: params.networkStrategy,
|
|
usedBy: [],
|
|
},
|
|
},
|
|
]
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
async deleteStart9ToDomain(
|
|
params: RR.DeleteStart9ToReq,
|
|
): Promise<RR.DeleteStart9ToRes> {
|
|
await pauseFor(2000)
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: '/serverInfo/network/start9ToSubdomain',
|
|
value: null,
|
|
},
|
|
]
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
async addDomain(params: RR.AddDomainReq): Promise<RR.AddDomainRes> {
|
|
await pauseFor(2000)
|
|
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: '/serverInfo/network/domains',
|
|
value: [
|
|
{
|
|
value: params.hostname,
|
|
createdAt: new Date(),
|
|
provider: params.provider.name,
|
|
networkStrategy: params.networkStrategy,
|
|
usedBy: [],
|
|
},
|
|
],
|
|
},
|
|
]
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
async deleteDomain(params: RR.DeleteDomainReq): Promise<RR.DeleteDomainRes> {
|
|
await pauseFor(2000)
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: '/serverInfo/network/domains',
|
|
value: [],
|
|
},
|
|
]
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
// port forwards
|
|
|
|
async overridePortForward(
|
|
params: RR.OverridePortReq,
|
|
): Promise<RR.OverridePortRes> {
|
|
await pauseFor(2000)
|
|
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: '/serverInfo/network/wanConfig/forwards/0/override',
|
|
value: params.port,
|
|
},
|
|
]
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
// wifi
|
|
|
|
async enableWifi(params: RR.EnableWifiReq): Promise<RR.EnableWifiRes> {
|
|
await pauseFor(2000)
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: '/serverInfo/network/wifi/enabled',
|
|
value: params.enable,
|
|
},
|
|
]
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
async getWifi(params: RR.GetWifiReq): Promise<RR.GetWifiRes> {
|
|
await pauseFor(2000)
|
|
return Mock.Wifi
|
|
}
|
|
|
|
async addWifi(params: RR.AddWifiReq): Promise<RR.AddWifiRes> {
|
|
await pauseFor(2000)
|
|
return null
|
|
}
|
|
|
|
async connectWifi(params: RR.ConnectWifiReq): Promise<RR.ConnectWifiRes> {
|
|
await pauseFor(2000)
|
|
return null
|
|
}
|
|
|
|
async deleteWifi(params: RR.DeleteWifiReq): Promise<RR.DeleteWifiRes> {
|
|
await pauseFor(2000)
|
|
return null
|
|
}
|
|
|
|
// email
|
|
|
|
async testEmail(params: RR.TestEmailReq): Promise<RR.TestEmailRes> {
|
|
await pauseFor(2000)
|
|
return null
|
|
}
|
|
|
|
async configureEmail(
|
|
params: RR.ConfigureEmailReq,
|
|
): Promise<RR.ConfigureEmailRes> {
|
|
await pauseFor(2000)
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: '/serverInfo/smtp',
|
|
value: params,
|
|
},
|
|
]
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
// ssh
|
|
|
|
async getSshKeys(params: RR.GetSSHKeysReq): Promise<RR.GetSSHKeysRes> {
|
|
await pauseFor(2000)
|
|
return Mock.SshKeys
|
|
}
|
|
|
|
async addSshKey(params: RR.AddSSHKeyReq): Promise<RR.AddSSHKeyRes> {
|
|
await pauseFor(2000)
|
|
return Mock.SshKey
|
|
}
|
|
|
|
async deleteSshKey(params: RR.DeleteSSHKeyReq): Promise<RR.DeleteSSHKeyRes> {
|
|
await pauseFor(2000)
|
|
return null
|
|
}
|
|
|
|
// backup
|
|
|
|
async getBackupTargets(
|
|
params: RR.GetBackupTargetsReq,
|
|
): Promise<RR.GetBackupTargetsRes> {
|
|
await pauseFor(2000)
|
|
return Mock.BackupTargets
|
|
}
|
|
|
|
async addBackupTarget(
|
|
type: BackupTargetType,
|
|
params:
|
|
| RR.AddCifsBackupTargetReq
|
|
| RR.AddCloudBackupTargetReq
|
|
| RR.AddDiskBackupTargetReq,
|
|
): Promise<RR.AddBackupTargetRes> {
|
|
await pauseFor(2000)
|
|
const { path, name } = params
|
|
return {
|
|
id: 'latfgvwdbhjsndmk',
|
|
name,
|
|
type: 'cifs',
|
|
hostname: 'mockhotname',
|
|
path: path.replace(/\\/g, '/'),
|
|
username: 'mockusername',
|
|
mountable: true,
|
|
startOs: {},
|
|
}
|
|
}
|
|
|
|
async updateBackupTarget(
|
|
type: BackupTargetType,
|
|
params: RR.UpdateCifsBackupTargetReq | RR.UpdateCloudBackupTargetReq,
|
|
): Promise<RR.UpdateBackupTargetRes> {
|
|
await pauseFor(2000)
|
|
return Mock.BackupTargets.saved.find(b => b.id === params.id)!
|
|
}
|
|
|
|
async removeBackupTarget(
|
|
params: RR.RemoveBackupTargetReq,
|
|
): Promise<RR.RemoveBackupTargetRes> {
|
|
await pauseFor(2000)
|
|
return null
|
|
}
|
|
|
|
async getBackupJobs(
|
|
params: RR.GetBackupJobsReq,
|
|
): Promise<RR.GetBackupJobsRes> {
|
|
await pauseFor(2000)
|
|
return Mock.BackupJobs
|
|
}
|
|
|
|
async createBackupJob(
|
|
params: RR.CreateBackupJobReq,
|
|
): Promise<RR.CreateBackupJobRes> {
|
|
await pauseFor(2000)
|
|
return {
|
|
id: 'hjdfbjsahdbn',
|
|
name: params.name,
|
|
target: Mock.BackupTargets.saved[0],
|
|
cron: params.cron,
|
|
packageIds: params.packageIds,
|
|
}
|
|
}
|
|
|
|
async updateBackupJob(
|
|
params: RR.UpdateBackupJobReq,
|
|
): Promise<RR.UpdateBackupJobRes> {
|
|
await pauseFor(2000)
|
|
return {
|
|
...Mock.BackupJobs[0],
|
|
...params,
|
|
}
|
|
}
|
|
|
|
async deleteBackupJob(
|
|
params: RR.DeleteBackupJobReq,
|
|
): Promise<RR.DeleteBackupJobRes> {
|
|
await pauseFor(2000)
|
|
return null
|
|
}
|
|
|
|
async getBackupRuns(
|
|
params: RR.GetBackupRunsReq,
|
|
): Promise<RR.GetBackupRunsRes> {
|
|
await pauseFor(2000)
|
|
return Mock.BackupRuns
|
|
}
|
|
|
|
async deleteBackupRuns(
|
|
params: RR.DeleteBackupRunsReq,
|
|
): Promise<RR.DeleteBackupRunsRes> {
|
|
await pauseFor(2000)
|
|
return null
|
|
}
|
|
|
|
async getBackupInfo(
|
|
params: RR.GetBackupInfoReq,
|
|
): Promise<RR.GetBackupInfoRes> {
|
|
await pauseFor(2000)
|
|
return Mock.BackupInfo
|
|
}
|
|
|
|
async createBackup(params: RR.CreateBackupReq): Promise<RR.CreateBackupRes> {
|
|
await pauseFor(2000)
|
|
const path = '/serverInfo/statusInfo/backupProgress'
|
|
const ids = params.packageIds
|
|
|
|
setTimeout(async () => {
|
|
for (let i = 0; i < ids.length; i++) {
|
|
const id = ids[i]
|
|
const appPath = `/packageData/${id}/status/main/status`
|
|
const appPatch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: appPath,
|
|
value: 'backingUp',
|
|
},
|
|
]
|
|
this.mockRevision(appPatch)
|
|
|
|
await pauseFor(8000)
|
|
|
|
this.mockRevision([
|
|
{
|
|
...appPatch[0],
|
|
value: 'stopped',
|
|
},
|
|
])
|
|
this.mockRevision([
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: `${path}/${id}/complete`,
|
|
value: true,
|
|
},
|
|
])
|
|
}
|
|
|
|
await pauseFor(1000)
|
|
|
|
// set server back to running
|
|
const lastPatch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path,
|
|
value: null,
|
|
},
|
|
]
|
|
this.mockRevision(lastPatch)
|
|
}, 500)
|
|
|
|
const originalPatch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path,
|
|
value: ids.reduce((acc, val) => {
|
|
return {
|
|
...acc,
|
|
[val]: { complete: false },
|
|
}
|
|
}, {}),
|
|
},
|
|
]
|
|
|
|
this.mockRevision(originalPatch)
|
|
|
|
return null
|
|
}
|
|
|
|
// package
|
|
|
|
async getPackageProperties(
|
|
params: RR.GetPackagePropertiesReq,
|
|
): Promise<RR.GetPackagePropertiesRes> {
|
|
await pauseFor(2000)
|
|
return {
|
|
password: 'specialPassword$',
|
|
}
|
|
}
|
|
|
|
async getPackageLogs(
|
|
params: RR.GetPackageLogsReq,
|
|
): Promise<RR.GetPackageLogsRes> {
|
|
await pauseFor(2000)
|
|
let entries
|
|
if (Math.random() < 0.2) {
|
|
entries = Mock.ServerLogs
|
|
} else {
|
|
const arrLength = params.limit
|
|
? Math.ceil(params.limit / Mock.ServerLogs.length)
|
|
: 10
|
|
entries = new Array(arrLength)
|
|
.fill(Mock.ServerLogs)
|
|
.reduce((acc, val) => acc.concat(val), [])
|
|
}
|
|
return {
|
|
entries,
|
|
startCursor: 'startCursor',
|
|
endCursor: 'end-cursor',
|
|
}
|
|
}
|
|
|
|
async followPackageLogs(
|
|
params: RR.FollowPackageLogsReq,
|
|
): Promise<RR.FollowPackageLogsRes> {
|
|
await pauseFor(2000)
|
|
return {
|
|
startCursor: 'start-cursor',
|
|
guid: 'logs-guid',
|
|
}
|
|
}
|
|
|
|
async installPackage(
|
|
params: RR.InstallPackageReq,
|
|
): Promise<RR.InstallPackageRes> {
|
|
await pauseFor(2000)
|
|
|
|
setTimeout(async () => {
|
|
this.installProgress(params.id)
|
|
}, 1000)
|
|
|
|
const patch: Operation<
|
|
PackageDataEntry<InstallingState | UpdatingState>
|
|
>[] = [
|
|
{
|
|
op: PatchOp.ADD,
|
|
path: `/packageData/${params.id}`,
|
|
value: {
|
|
...Mock.LocalPkgs[params.id],
|
|
stateInfo: {
|
|
// if installing
|
|
state: 'installing',
|
|
|
|
// if updating
|
|
// state: 'updating',
|
|
// manifest: mockPatchData.packageData[params.id].stateInfo.manifest!,
|
|
|
|
// both
|
|
installingInfo: {
|
|
newManifest: Mock.LocalPkgs[params.id].stateInfo.manifest,
|
|
progress: PROGRESS,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
]
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
async getPackageConfig(
|
|
params: RR.GetPackageConfigReq,
|
|
): Promise<RR.GetPackageConfigRes> {
|
|
await pauseFor(2000)
|
|
return {
|
|
config: Mock.MockConfig,
|
|
spec: await Mock.getInputSpec(),
|
|
}
|
|
}
|
|
|
|
async drySetPackageConfig(
|
|
params: RR.DrySetPackageConfigReq,
|
|
): Promise<RR.DrySetPackageConfigRes> {
|
|
await pauseFor(2000)
|
|
return []
|
|
}
|
|
|
|
async setPackageConfig(
|
|
params: RR.SetPackageConfigReq,
|
|
): Promise<RR.SetPackageConfigRes> {
|
|
await pauseFor(2000)
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: `/packageData/${params.id}/status/configured`,
|
|
value: true,
|
|
},
|
|
]
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
async restorePackages(
|
|
params: RR.RestorePackagesReq,
|
|
): Promise<RR.RestorePackagesRes> {
|
|
await pauseFor(2000)
|
|
const patch: Operation<PackageDataEntry>[] = params.ids.map(id => {
|
|
setTimeout(async () => {
|
|
this.installProgress(id)
|
|
}, 2000)
|
|
|
|
return {
|
|
op: PatchOp.ADD,
|
|
path: `/packageData/${id}`,
|
|
value: {
|
|
...Mock.LocalPkgs[id],
|
|
stateInfo: {
|
|
state: 'restoring',
|
|
installingInfo: {
|
|
newManifest: Mock.LocalPkgs[id].stateInfo.manifest!,
|
|
progress: PROGRESS,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
})
|
|
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
async executePackageAction(
|
|
params: RR.ExecutePackageActionReq,
|
|
): Promise<RR.ExecutePackageActionRes> {
|
|
await pauseFor(2000)
|
|
return Mock.ActionResponse
|
|
}
|
|
|
|
async startPackage(params: RR.StartPackageReq): Promise<RR.StartPackageRes> {
|
|
const path = `/packageData/${params.id}/status/main`
|
|
|
|
await pauseFor(2000)
|
|
|
|
setTimeout(async () => {
|
|
if (params.id !== 'bitcoind') {
|
|
const patch2 = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: path + '/health',
|
|
value: {},
|
|
},
|
|
]
|
|
this.mockRevision(patch2)
|
|
}
|
|
|
|
const patch3 = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: path + '/status',
|
|
value: 'running',
|
|
},
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: path + '/started',
|
|
value: new Date().toISOString(),
|
|
},
|
|
]
|
|
this.mockRevision(patch3)
|
|
}, 2000)
|
|
|
|
const originalPatch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: path + '/status',
|
|
value: 'starting',
|
|
},
|
|
]
|
|
|
|
this.mockRevision(originalPatch)
|
|
|
|
return null
|
|
}
|
|
|
|
async restartPackage(
|
|
params: RR.RestartPackageReq,
|
|
): Promise<RR.RestartPackageRes> {
|
|
// first enact stop
|
|
await pauseFor(2000)
|
|
const path = `/packageData/${params.id}/status/main`
|
|
|
|
setTimeout(async () => {
|
|
const patch2: Operation<any>[] = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: path + '/status',
|
|
value: 'starting',
|
|
},
|
|
{
|
|
op: PatchOp.ADD,
|
|
path: path + '/restarting',
|
|
value: true,
|
|
},
|
|
]
|
|
this.mockRevision(patch2)
|
|
|
|
await pauseFor(2000)
|
|
|
|
const patch3: Operation<any>[] = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: path + '/status',
|
|
value: 'running',
|
|
},
|
|
{
|
|
op: PatchOp.REMOVE,
|
|
path: path + '/restarting',
|
|
},
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: path + '/health',
|
|
value: {
|
|
'ephemeral-health-check': {
|
|
result: 'starting',
|
|
},
|
|
'unnecessary-health-check': {
|
|
result: 'disabled',
|
|
},
|
|
'chain-state': {
|
|
result: 'loading',
|
|
message: 'Bitcoin is syncing from genesis',
|
|
},
|
|
'p2p-interface': {
|
|
result: 'success',
|
|
},
|
|
'rpc-interface': {
|
|
result: 'failure',
|
|
error: 'RPC interface unreachable.',
|
|
},
|
|
},
|
|
} as any,
|
|
]
|
|
this.mockRevision(patch3)
|
|
}, this.revertTime)
|
|
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: path + '/status',
|
|
value: 'restarting',
|
|
},
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: path + '/health',
|
|
value: {},
|
|
},
|
|
]
|
|
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
async stopPackage(params: RR.StopPackageReq): Promise<RR.StopPackageRes> {
|
|
await pauseFor(2000)
|
|
const path = `/packageData/${params.id}/status/main`
|
|
|
|
setTimeout(() => {
|
|
const patch2 = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: path,
|
|
value: {
|
|
status: 'stopped',
|
|
},
|
|
},
|
|
]
|
|
this.mockRevision(patch2)
|
|
}, this.revertTime)
|
|
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: path,
|
|
value: {
|
|
status: 'stopping',
|
|
timeout: '35s',
|
|
},
|
|
},
|
|
]
|
|
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
async uninstallPackage(
|
|
params: RR.UninstallPackageReq,
|
|
): Promise<RR.UninstallPackageRes> {
|
|
await pauseFor(2000)
|
|
|
|
setTimeout(async () => {
|
|
const patch2: RemoveOperation[] = [
|
|
{
|
|
op: PatchOp.REMOVE,
|
|
path: `/packageData/${params.id}`,
|
|
},
|
|
]
|
|
this.mockRevision(patch2)
|
|
}, this.revertTime)
|
|
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: `/packageData/${params.id}/stateInfo/state`,
|
|
value: 'removing',
|
|
},
|
|
]
|
|
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
async dryConfigureDependency(
|
|
params: RR.DryConfigureDependencyReq,
|
|
): Promise<RR.DryConfigureDependencyRes> {
|
|
await pauseFor(2000)
|
|
return {
|
|
oldConfig: Mock.MockConfig,
|
|
newConfig: Mock.MockDependencyConfig,
|
|
spec: await Mock.getInputSpec(),
|
|
}
|
|
}
|
|
|
|
async sideloadPackage(): Promise<RR.SideloadPackageRes> {
|
|
await pauseFor(2000)
|
|
return {
|
|
upload: '4120e092-05ab-4de2-9fbd-c3f1f4b1df9e', // no significance, randomly generated
|
|
progress: '5120e092-05ab-4de2-9fbd-c3f1f4b1df9e', // no significance, randomly generated
|
|
}
|
|
}
|
|
|
|
async setInterfaceClearnetAddress(
|
|
params: RR.SetInterfaceClearnetAddressReq,
|
|
): Promise<RR.SetInterfaceClearnetAddressRes> {
|
|
await pauseFor(2000)
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: `/packageData/${params.packageId}/serviceInterfaces/${params.interfaceId}/addressInfo/domainInfo`,
|
|
value: params.domainInfo,
|
|
},
|
|
]
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
async setServiceOutboundProxy(
|
|
params: RR.SetServiceOutboundProxyReq,
|
|
): Promise<RR.SetServiceOutboundProxyRes> {
|
|
await pauseFor(2000)
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: `/packageData/${params.packageId}/outboundProxy`,
|
|
value: params.proxy,
|
|
},
|
|
]
|
|
this.mockRevision(patch)
|
|
|
|
return null
|
|
}
|
|
|
|
private async initProgress(): Promise<T.FullProgress> {
|
|
const progress = JSON.parse(JSON.stringify(PROGRESS))
|
|
|
|
for (let [i, phase] of progress.phases.entries()) {
|
|
if (
|
|
!phase.progress ||
|
|
typeof phase.progress !== 'object' ||
|
|
!phase.progress.total
|
|
) {
|
|
await pauseFor(2000)
|
|
|
|
progress.phases[i].progress = true
|
|
|
|
if (
|
|
progress.overall &&
|
|
typeof progress.overall === 'object' &&
|
|
progress.overall.total
|
|
) {
|
|
const step = progress.overall.total / progress.phases.length
|
|
progress.overall.done += step
|
|
}
|
|
} else {
|
|
const step = phase.progress.total / 4
|
|
|
|
while (phase.progress.done < phase.progress.total) {
|
|
await pauseFor(200)
|
|
|
|
phase.progress.done += step
|
|
|
|
if (
|
|
progress.overall &&
|
|
typeof progress.overall === 'object' &&
|
|
progress.overall.total
|
|
) {
|
|
const step = progress.overall.total / progress.phases.length / 4
|
|
|
|
progress.overall.done += step
|
|
}
|
|
|
|
if (phase.progress.done === phase.progress.total) {
|
|
await pauseFor(250)
|
|
|
|
progress.phases[i].progress = true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return progress
|
|
}
|
|
|
|
private async installProgress(id: string): Promise<void> {
|
|
const progress = JSON.parse(JSON.stringify(PROGRESS))
|
|
|
|
for (let [i, phase] of progress.phases.entries()) {
|
|
if (!phase.progress || phase.progress === true || !phase.progress.total) {
|
|
await pauseFor(2000)
|
|
|
|
const patches: Operation<any>[] = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: `/packageData/${id}/stateInfo/installingInfo/progress/phases/${i}/progress`,
|
|
value: true,
|
|
},
|
|
]
|
|
|
|
// overall
|
|
if (
|
|
progress.overall &&
|
|
typeof progress.overall === 'object' &&
|
|
progress.overall.total
|
|
) {
|
|
const step = progress.overall.total / progress.phases.length
|
|
|
|
progress.overall.done += step
|
|
|
|
patches.push({
|
|
op: PatchOp.REPLACE,
|
|
path: `/packageData/${id}/stateInfo/installingInfo/progress/overall/done`,
|
|
value: progress.overall.done,
|
|
})
|
|
}
|
|
|
|
this.mockRevision(patches)
|
|
} else {
|
|
const step = phase.progress.total / 4
|
|
|
|
while (phase.progress.done < phase.progress.total) {
|
|
await pauseFor(500)
|
|
|
|
phase.progress.done += step
|
|
|
|
const patches: Operation<any>[] = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: `/packageData/${id}/stateInfo/installingInfo/progress/phases/${i}/progress/done`,
|
|
value: phase.progress.done,
|
|
},
|
|
]
|
|
|
|
// overall
|
|
if (
|
|
progress.overall &&
|
|
typeof progress.overall === 'object' &&
|
|
progress.overall.total
|
|
) {
|
|
const step = progress.overall.total / progress.phases.length / 4
|
|
|
|
progress.overall.done += step
|
|
|
|
patches.push({
|
|
op: PatchOp.REPLACE,
|
|
path: `/packageData/${id}/stateInfo/installingInfo/progress/overall/done`,
|
|
value: progress.overall.done,
|
|
})
|
|
}
|
|
|
|
this.mockRevision(patches)
|
|
|
|
if (phase.progress.done === phase.progress.total) {
|
|
await pauseFor(250)
|
|
this.mockRevision([
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: `/packageData/${id}/stateInfo/installingInfo/progress/phases/${i}/progress`,
|
|
value: true,
|
|
},
|
|
])
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
await pauseFor(1000)
|
|
this.mockRevision([
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: `/packageData/${id}/stateInfo/installingInfo/progress/overall`,
|
|
value: true,
|
|
},
|
|
])
|
|
|
|
await pauseFor(1000)
|
|
const patch2: Operation<StateInfo>[] = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: `/packageData/${id}/stateInfo`,
|
|
value: {
|
|
state: 'installed',
|
|
manifest: Mock.LocalPkgs[id].stateInfo.manifest,
|
|
},
|
|
},
|
|
]
|
|
this.mockRevision(patch2)
|
|
}
|
|
|
|
private async updateOSProgress() {
|
|
let size = 10000
|
|
let downloaded = 0
|
|
|
|
const patch0 = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: `/serverInfo/statusInfo/updateProgress/size`,
|
|
value: size,
|
|
},
|
|
]
|
|
this.mockRevision(patch0)
|
|
|
|
while (downloaded < size) {
|
|
await pauseFor(250)
|
|
downloaded += 500
|
|
const patch = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: `/serverInfo/statusInfo/updateProgress/downloaded`,
|
|
value: downloaded,
|
|
},
|
|
]
|
|
this.mockRevision(patch)
|
|
}
|
|
|
|
const patch2 = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: `/serverInfo/statusInfo/updateProgress/downloaded`,
|
|
value: size,
|
|
},
|
|
]
|
|
this.mockRevision(patch2)
|
|
|
|
setTimeout(async () => {
|
|
const patch3: Operation<boolean>[] = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: '/serverInfo/statusInfo/updated',
|
|
value: true,
|
|
},
|
|
{
|
|
op: PatchOp.REMOVE,
|
|
path: '/serverInfo/statusInfo/updateProgress',
|
|
},
|
|
]
|
|
this.mockRevision(patch3)
|
|
// set patch indicating update is complete
|
|
await pauseFor(100)
|
|
const patch6 = [
|
|
{
|
|
op: PatchOp.REPLACE,
|
|
path: '/serverInfo/statusInfo',
|
|
value: Mock.ServerUpdated,
|
|
},
|
|
]
|
|
this.mockRevision(patch6)
|
|
}, 1000)
|
|
}
|
|
|
|
private async mockRevision<T>(patch: Operation<T>[]): Promise<void> {
|
|
const revision = {
|
|
id: ++this.sequence,
|
|
patch,
|
|
}
|
|
this.mockWsSource$.next(revision)
|
|
}
|
|
}
|