-
Notifications
You must be signed in to change notification settings - Fork 1
/
swagger.yaml
392 lines (392 loc) · 11.3 KB
/
swagger.yaml
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
openapi: 3.0.0
# Added by API Auto Mocking Plugin
servers:
- description: SwaggerHub API Auto Mocking
url: https://virtserver.swaggerhub.com/rimaulana/asustor-nas-api/1.0.0
info:
description: |
API documentation for ASUSTOR NAS API project. You can find
out more about the project at
[GitHub](https://github.com/rimaulana/asustor-nas-api)
version: "1.0.0"
title: ASUSTOR NAS API
contact:
email: rimaulana@outlook.com
license:
name: Licensed under MIT License
url: https://opensource.org/licenses/MIT
tags:
- name: health check
description: service health check
- name: file
description: all actions for file on ASUSTOR NAS
- name: folder
description: all actions for folder on ASUSTOR NAS
- name: usb
description: all actions for USB drive(s) on ASUSTOR NAS
paths:
/:
get:
tags:
- health check
summary: check service status
operationId: getHealthCheck
description: |
When you need to check whether service is up and running.
responses:
'200':
description: response when service is up
content:
application/json:
schema:
$ref: '#/components/schemas/HealthCheck'
post:
tags:
- health check
summary: check service status
operationId: postHealthCheck
description: |
When you need to check whether service is up and running.
responses:
'200':
description: response when service is up
content:
application/json:
schema:
$ref: '#/components/schemas/HealthCheck'
'/file/{fileName}':
get:
tags:
- file
summary: retrieve file information
description: |
Getting information on a file on server, such as file path and the size of file in KB
parameters:
- in: path
name: fileName
description: |
the full path of the file that we want to query in URL string format
required: true
schema:
type: string
format: url-string
security:
- header_token: []
- query_token: []
responses:
'200':
description: |
response when request is accepted and token is valid
content:
application/json:
schema:
$ref: '#/components/schemas/FolderInfo'
'401':
description: |
Unauthorized access to resource
content:
application/json:
schema:
$ref: '#/components/schemas/FailedSecurity'
'500':
description: |
Generic error when something wrong happened on server
content:
application/json:
schema:
$ref: '#/components/schemas/GenericInternalError'
'/folder/':
post:
tags:
- folder
summary: create new folder on the server
description: |
Send post request to create a new folder on the server
requestBody:
description: |
data that needs to be sent over to server to create new folder
content:
application/json:
schema:
type: object
properties:
foldername:
type: string
example: /var/www/test
security:
- header_token: []
- query_token: []
responses:
'200':
description: |
response when request is accepted and token is valid
content:
application/json:
schema:
$ref: '#/components/schemas/FolderCreated'
'401':
description: |
Unauthorized access to resource
content:
application/json:
schema:
$ref: '#/components/schemas/FailedSecurity'
'500':
description: |
Generic error when something wrong happened on server
content:
application/json:
schema:
$ref: '#/components/schemas/GenericInternalError'
'/folder/{folderName}':
get:
tags:
- folder
summary: retrieve folder information
description: |
Getting information on a folder on server, such as files it contains, file path and the size of file in KB
parameters:
- in: path
name: folderName
description: |
the full path of the folder on server that we want to query in URL string format
required: true
schema:
type: string
format: url-string
security:
- header_token: []
- query_token: []
responses:
'200':
description: |
response when request is accepted and token is valid
content:
application/json:
schema:
$ref: '#/components/schemas/FolderInfo'
'401':
description: |
Unauthorized access to resource
content:
application/json:
schema:
$ref: '#/components/schemas/FailedSecurity'
'500':
description: |
Generic error when something wrong happened on server
content:
application/json:
schema:
$ref: '#/components/schemas/GenericInternalError'
post:
tags:
- folder
summary: create new folder on the server
description: |
Send post request to create a new folder on the server
parameters:
- in: path
name: folderName
description: |
the full path of the folder that we want to create on server in URL string format
required: true
schema:
type: string
format: url-string
security:
- header_token: []
- query_token: []
responses:
'200':
description: |
response when request is accepted and token is valid
content:
application/json:
schema:
$ref: '#/components/schemas/FolderCreated'
'401':
description: |
Unauthorized access to resource
content:
application/json:
schema:
$ref: '#/components/schemas/FailedSecurity'
'500':
description: |
Generic error when something wrong happened on server
content:
application/json:
schema:
$ref: '#/components/schemas/GenericInternalError'
/usb/:
get:
tags:
- usb
summary: retrieve information on USB drives
description: |
Retrieve information of USB drives that is mounted on server, the information contains drive mount point, drive ID and free space available on the drive
security:
- header_token: []
- query_token: []
responses:
'200':
description: |
response when request is accepted and token is valid
content:
application/json:
schema:
$ref: '#/components/schemas/UsbInfo'
'401':
description: |
Unauthorized access to resource
content:
application/json:
schema:
$ref: '#/components/schemas/FailedSecurity'
'500':
description: |
Generic error when something wrong happened on server
content:
application/json:
schema:
$ref: '#/components/schemas/GenericInternalError'
'/usb/{driveIndex}':
post:
tags:
- usb
summary: copy file to USB
description: |
Copy defined file / folder into the root path / mount point of USB drive.
parameters:
- in: path
name: driveIndex
description: |
the index of the USB drive, you can get this information from get usb path
required: true
schema:
type: string
requestBody:
description: |
json payload that need to be send over to the server
content:
application/json:
schema:
type: object
properties:
source:
type: string
format: uri
example: /home/rio/backup
security:
- header_token: []
- query_token: []
responses:
'200':
description: |
response when request is accepted and token is valid
content:
application/json:
schema:
type: object
properties:
status:
type: string
example: request is being processed
'401':
description: |
Unauthorized access to resource
content:
application/json:
schema:
$ref: '#/components/schemas/FailedSecurity'
'500':
description: |
Generic error when something wrong happened on server
content:
application/json:
schema:
$ref: '#/components/schemas/GenericInternalError'
components:
schemas:
HealthCheck:
type: object
properties:
process:
type: string
example: Health check
version:
type: string
example: 1.0.0
ok:
type: boolean
example: true
FailedSecurity:
type: object
properties:
reason:
type: string
example: access token required / invalid
FolderInfo:
type: object
properties:
totalSize:
type: integer
example: 2000
files:
type: array
items:
$ref: '#/components/schemas/File'
File:
type: object
properties:
path:
type: string
example: /var/www/riospace.web.id/index.js
size:
type: integer
example: 2000
GenericInternalError:
type: object
properties:
reason:
type: string
example: error in accessing file / folder not found
FolderCreated:
type: object
properties:
status:
type: string
example: folder /var/www/test created
Usb:
type: object
properties:
name:
type: string
format: uri
example: /share/USB1
size:
type: integer
example: 180000
index:
type: integer
example: 1
UsbInfo:
type: object
properties:
totalAvailableSpace:
type: integer
example: 180000
drives:
type: array
items:
$ref: '#/components/schemas/Usb'
securitySchemes:
header_token:
type: apiKey
name: x-access-token
in: header
query_token:
type: apiKey
name: token
in: query