-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.openapi.yaml
More file actions
230 lines (229 loc) · 5.97 KB
/
api.openapi.yaml
File metadata and controls
230 lines (229 loc) · 5.97 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
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
openapi: 3.1.0
info:
title: FetchDock Server
description: FetchDock Server
version: 1.0.0
servers:
- url: 'https://download.api.pbxg33k.eu/'
tags:
- name: Download
description: Operations related to file downloads
- name: Health
description: Health check operations
paths:
/download:
post:
tags:
- Download
summary: Initiate a file download
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DownloadRequestDTO'
responses:
'202':
description: Download initiated successfully
content:
application/json:
schema:
type: object
properties:
id:
type: string
format: uuid
description: The unique identifier for the initiated download.
'400':
description: Bad Request - Invalid input data
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/download/{id}/status:
get:
tags:
- Download
summary: Get the status of a download
parameters:
- name: id
in: path
required: true
schema:
type: string
format: uuid
description: The unique identifier of the download.
responses:
'200':
description: Download status retrieved successfully
content:
application/json:
schema:
$ref: '#/components/schemas/DownloadStatusDTO'
'404':
description: Not Found - Download with the specified ID does not exist
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/ping:
get:
tags:
- Health
summary: Ping endpoint to check service availability
responses:
'200':
description: Service is available
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: "pong"
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/health:
get:
tags:
- Health
summary: Health check endpoint
responses:
'200':
description: Service is healthy
content:
application/json:
schema:
$ref: '#/components/schemas/HealthCheckResponse'
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
components:
schemas:
DownloadRequestDTO:
type: object
properties:
url:
type: string
format: uri
description: The URL to download the file from.
downloadTargetPool:
type: string
description: The target pool where the file should be downloaded.
filename:
type: string
description: The desired filename for the downloaded file.
required:
- url
- downloadTargetPool
DownloadStatusDTO:
type: object
properties:
id:
type: string
format: uuid
description: The unique identifier for the download.
created:
type: string
format: date-time
description: The timestamp when the download was created.
updated:
type: string
format: date-time
nullable: true
description: The timestamp when the download was last updated.
status:
type: string
description: The current status of the download (e.g., pending, in_progress, completed, failed).
progress:
type: number
format: float
description: The progress of the download as a percentage (0 to 100).
errorMessage:
type: string
nullable: true
description: An error message if the download failed.
required:
- id
- created
- status
- progress
Site:
type: object
properties:
id:
type: string
format: uuid
name:
type: string
url:
type: string
format: uri
downloaders:
type: array
items:
$ref: '#/components/schemas/Downloader'
required:
- id
- name
- url
Downloader:
type: object
properties:
id:
type: string
format: uuid
slug:
type: string
name:
type: string
version:
type: string
supportedSites:
type: array
items:
$ref: '#/components/schemas/Site'
required:
- id
- slug
- name
- version
ErrorResponse:
type: object
properties:
code:
type: string
message:
type: string
required:
- code
- message
HealthCheckResponse:
type: object
properties:
status:
type: string
description: The health status of the service (e.g., "healthy", "unhealthy").
uptime:
type: string
description: The total uptime of the service.
timestamp:
type: string
format: date-time
description: The timestamp when the health check was performed.
required:
- status
- uptime
- timestamp