forked from supabase/fly-preview
-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathapp.ts
More file actions
205 lines (178 loc) · 4.03 KB
/
app.ts
File metadata and controls
205 lines (178 loc) · 4.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
import Client from '../client'
import { APIResponse } from './utils'
export type ListAppRequest = string
export interface ListAppResponse {
total_apps: number
apps: {
name: string
machine_count: number
network: string
}[]
}
export interface ListAppDetailedResponse {
apps: AppDetailedResponse[]
}
export type GetAppRequest = string
const getOrganizationAppsDetailedQuery = `query($slug: String!) {
organization(slug: $slug) {
apps {
nodes {
name
status
organization {
name
slug
}
ipAddresses {
nodes {
type
region
address
}
}
machines {
nodes {
id
name
state
region
}
}
}
}
}
}`
const getAppDetailedQuery = `query($name: String!) {
app(name: $name) {
name
status
organization {
name
slug
}
ipAddresses {
nodes {
type
region
address
}
}
machines {
nodes {
id
name
state
region
}
}
}
}`
export enum AppStatus {
deployed = 'deployed',
pending = 'pending',
suspended = 'suspended',
}
export interface AppResponse {
name: string
status: AppStatus
organization: {
name: string
slug: string
}
}
export interface AppDetailedResponse extends AppResponse {
ipAddresses: IPAddress[]
machines: AppMachine[]
}
export interface AppMachine {
id: string
name: string
state: string
region: string
}
export interface IPAddress {
type: string
address: string
}
export interface CreateAppRequest {
org_slug: string
app_name: string
network?: string
}
export type DeleteAppRequest = string
export class App {
private client: Client
constructor(client: Client) {
this.client = client
}
async listApps(
org_slug: ListAppRequest
): Promise<APIResponse<ListAppResponse>> {
const path = `apps?org_slug=${org_slug}`
return await this.client.safeRest(path)
}
async listAppsDetailed(
org_slug: ListAppRequest
): Promise<APIResponse<ListAppDetailedResponse>> {
const response = await this.client.safeGqlPost<
string,
{ organization: any }
>({
query: getOrganizationAppsDetailedQuery,
variables: { slug: org_slug },
})
if (response.error) {
return response
}
return {
data: parseOrgResponse(response.data.organization).apps,
error: undefined,
}
}
async getApp(app_name: GetAppRequest): Promise<APIResponse<AppResponse>> {
const path = `apps/${app_name}`
return await this.client.safeRest(path)
}
async getAppDetailed(
app_name: GetAppRequest
): Promise<APIResponse<AppDetailedResponse>> {
const response = await this.client.safeGqlPost<string, { app: any }>({
query: getAppDetailedQuery,
variables: { name: app_name },
})
if (response.error) {
return response
}
return {
data: parseAppResponse(response.data.app),
error: undefined,
}
}
async createApp(payload: CreateAppRequest): Promise<APIResponse<void>> {
const path = 'apps'
return await this.client.safeRest(path, 'POST', payload)
}
async deleteApp(app_name: DeleteAppRequest): Promise<APIResponse<void>> {
const path = `apps/${app_name}`
return await this.client.safeRest(path, 'DELETE')
}
}
function parseAppResponse(appData: any) {
const ipAddresses = parseNodes<IPAddress>(appData, 'ipAddresses')
const machines = parseNodes<AppMachine>(appData, 'machines')
return {
...appData,
ipAddresses,
machines,
}
}
function parseOrgResponse(orgData: any) {
const apps = parseNodes(orgData, 'apps').map(parseAppResponse)
return {
...orgData,
apps,
}
}
function parseNodes<T>(data: any, key: string): T[] {
return data[key].nodes
}