-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-doc.yml
More file actions
440 lines (427 loc) · 9.93 KB
/
api-doc.yml
File metadata and controls
440 lines (427 loc) · 9.93 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
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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
openapi: 3.0.0
servers: []
info:
description: The simple back API of SYP
version: "1.0.0"
title: SYP API
contact:
email: syp@shareyourproject.fr
license:
name: Apache 2.0
url: 'http://www.apache.org/licenses/LICENSE-2.0.html'
tags:
- name: Authentication
description: For authentication purposes
- name: Post
- name: User
- name: Project
- name: Badge
paths:
/login:
post:
tags:
- Authentication
summary: Authenticate an existing user
requestBody:
required: true
content:
application/x-www-form-urlencoded:
schema:
type: object
properties:
email:
type: string
password:
type: string
required:
- password
- email
responses:
'200':
description: User authenticated
'422':
description: Invalid form
content:
application/json:
schema:
$ref: '#/components/schemas/FormError'
'401':
description: Invalid credentials
/register:
post:
tags:
- Authentication
summary: Authenticate and create a new user
requestBody:
required: true
content:
application/x-www-form-urlencoded:
schema:
type: object
properties:
username:
type: string
first_name:
type: string
last_name:
type: string
email:
type: string
password:
type: string
password_confirmation:
type: string
required:
- password
- password_confirmation
- email
- first_name
- last_name
- username
responses:
'200':
description: User created and authenticated
'422':
description: Invalid form
content:
application/json:
schema:
$ref: '#/components/schemas/FormError'
/user:
get:
security:
- cookieAuth: []
tags:
- Authentication
summary: Get the current authenticated user
responses:
'200':
description: User created and authenticated
content:
application/json:
schema:
$ref: '#/components/schemas/User'
'401':
description: Unauthorized
/feed:
get:
tags:
- Post
summary: Get the post in the user feed
responses:
'200':
description: User created and authenticated
content:
application/json:
schema:
$ref: '#/components/schemas/FeedResponse'
'401':
description: Unauthorized
/posts/{postId}/like:
put:
security:
- cookieAuth: []
tags:
- Post
parameters:
- in: path
name: postId
schema:
type: integer
required: true
description: Numeric ID of the post to like
summary: Like the current post
responses:
'200':
description: Post has been edited
content:
application/json:
schema:
$ref: '#/components/schemas/Post'
'404':
description: Post not found
'401':
description: Unauthenticated
/posts/{postId}/unlike:
put:
security:
- cookieAuth: []
tags:
- Post
parameters:
- in: path
name: postId
schema:
type: integer
required: true
description: Numeric ID of the post to unlike
summary: Unlike the current post
responses:
'200':
description: Post has been edited
content:
application/json:
schema:
$ref: '#/components/schemas/Post'
'404':
description: Post not found
'401':
description: Unauthenticated
/projects/search/{query}:
get:
tags:
- Project
parameters:
- in: path
name: query
schema:
type: string
required: true
description: The search query string
summary: Search for projects
responses:
'200':
description: List of project
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Project'
/project/{projectId}:
get:
tags:
- Project
parameters:
- in: path
name: projectId
schema:
type: number
required: true
description: Numeric ID of the project to retrieve
summary: Get a project
responses:
'200':
description: A project resource
content:
application/json:
schema:
$ref: '#/components/schemas/Project'
'404':
description: Project not found
/users/search/{query}:
get:
tags:
- User
parameters:
- in: path
name: query
schema:
type: string
required: true
description: The search query string
summary: Search for user profiles
responses:
'200':
description: List of user
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/User'
/user/{userId}:
get:
tags:
- User
parameters:
- in: path
name: userId
schema:
type: number
required: true
description: Numeric ID of the user to retrieve
summary: Get a user
responses:
'200':
description: A user resource
content:
application/json:
schema:
$ref: '#/components/schemas/User'
'404':
description: User not found
components:
securitySchemes:
cookieAuth:
type: apiKey
in: cookie
name: share_your_project_session
schemas:
FormError:
type: object
required:
- message
- errors
properties:
message:
type: string
errors:
type: object
User:
type: object
properties:
id:
type: number
username:
type: string
first_name:
type: string
last_name:
type: string
email:
type: string
email_verified_at:
type: string
is_admin:
type: boolean
bio:
type: string
banner_picture:
type: string
profile_picture:
type: string
title:
type: string
updated_at:
type: string
created_at:
type: string
Tag:
type: object
Project:
type: object
properties:
id:
type: number
description:
type: string
formated_content:
type: string
name:
type: string
public:
type: boolean
owner_id:
type: number
technologies:
type: array
items:
$ref: '#/components/schemas/Technologie'
member_ids:
type: array
items:
type: number
profile_picture:
type: string
banner_picture:
type: string
created_at:
type: string
format: date
updated_at:
type: string
format: date
Technologie:
type: object
Post:
type: object
properties:
id:
type: number
author:
$ref: '#/components/schemas/User'
content:
type: string
formated_content:
type: string
project:
$ref: '#/components/schemas/Project'
images_url:
type: array
items:
type: string
tags:
type: array
items:
$ref: '#/components/schemas/Tag'
url:
type: object
properties:
author:
type: string
post:
type: string
reshared_post:
type: number
liked:
type: boolean
stats:
type: object
properties:
comments:
type: number
like:
type: number
updated_at:
type: string
format: date
created_at:
type: string
format: date
FeedResponse:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/Post'
links:
type: object
properties:
first :
type: string
last:
type: string
next:
type: string
prev:
type: string
meta:
type: object
properties:
current_page:
type: number
from:
type: number
last_page:
type: number
links:
type: array
items:
type: object
properties:
active:
type: boolean
label:
type: number
url:
type: string
path:
type: string
per_page:
type: number
to:
type: number
total:
type: number