-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAPI_reference.yaml
2303 lines (2299 loc) · 76.1 KB
/
API_reference.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
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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
swagger: "2.0"
info:
description: "This is the API reference of The Spoon project.\n \n VERSIONING: The version number works in this way: it's composed of two numbers separated by a point. The first number identifies the Sprint, so for example the version 2.1 of the API reference is related to the Sprint number 2. The second number starts from 0 and has to be increased by one each time the file is modified. The person who modifies this document is responsible for increasing the number.\n \n GROUPING OF ENDPOINTS: The endpoints are grouped by dividing them into customers' operations and owners' operations. All the endpoints that are not strictly related to customers nor owners remain inside the default group.\n \n AUTHENTICATION/AUTHORIZATION: The json web token returned when the login is performed is supposed to be put into x-auth-token header in the endpoints that require authorization"
version: "8.2"
title: "The Spoon API reference"
tags:
- name: "customer"
description: "Operations about customers"
- name: "owner"
description: "Operations about owners"
- name: "consultant"
description: "Operations about consultants"
paths:
/api/user/customer/register:
post:
tags:
- "customer"
summary: "Creates customer"
description: "Creates a new customer profile. This endpoint is used only for customer registration.\n The endpoint, if the registration succeeds, returns the username of the account as a confirmation."
operationId: "createCustomer"
consumes:
- "application/json"
produces:
- "application/json"
parameters:
- in: "body"
name: "body"
description: "Customer that needs to register"
required: true
schema:
$ref: "#/definitions/Customer"
responses:
201:
description: "Customer registered"
schema:
$ref: "#/definitions/UsernameAndToken"
400:
description: "A string describing the error. Could be for example 'Username or email already taken.' or 'Invalid input.'"
schema:
type: "string"
example: "Username or email already taken."
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
/api/user/owner/register:
post:
tags:
- "owner"
summary: "Creates restaurant owner"
description: "Creates a new restaurant owner profile. This endpoint is used only for restaurant owner registration.\n The endpoint, if the registration succeeds, returns the username of the account as a confirmation."
operationId: "createOwner"
consumes:
- "application/json"
produces:
- "application/json"
parameters:
- in: "body"
name: "body"
description: "Restaurant owner that needs to register"
required: true
schema:
$ref: "#/definitions/Owner"
responses:
201:
description: "Restaurant owner registered"
schema:
$ref: "#/definitions/UsernameAndToken"
400:
description: "A string describing the error. Could be for example 'Username or email already taken.' or 'Invalid input.'"
schema:
type: "string"
example: "Username or email already taken."
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
/api/user/login:
post:
tags:
- "generic user"
summary: "Logs user into the system"
description: "Logs user into the system. This endpoint is used both for restaurant owner and customer login. In order to distinguish them, in the request json there's the flag ''isRestaurantOwner''.\n If the login succeeds, returns the json web token that is supposed to be stored on the frontend application (for example in the local storage of the web browser). Each time the frontend application needs to access an endpoint that requires authentication, that token will be put in the header of the request."
operationId: "loginUser"
consumes:
- "application/json"
produces:
- "application/json"
parameters:
- in: "body"
name: "body"
description: "User that needs to login"
required: true
schema:
$ref: "#/definitions/UserLogin"
responses:
201:
description: "Successful operation"
schema:
$ref: "#/definitions/Token"
400:
description: "A string describing the error. Could be for example 'Invalid username or password.' or 'Invalid input.'"
schema:
type: "string"
example: "Invalid username or password."
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
/api/user/owner/restaurant:
post:
tags:
- "owner"
- "Matej"
summary: "Configure data of the restaurant"
description: "Save the data of the restaurant given by the owner. Authentication is needed. A 400 will be sent if the owner already sent the data of his restaurant (an owner can't have more than one restaurant).\n One of the parameter to be passed is the imageID, this is the flow:\n 1. The restaurant owner is in the page in which he can input the restaurant data. He will upload the photo of the restaurant while he is writing all the fields of the form.\n 2. The uploading of the photo is done by sending the photo to the /api/image endpoint. While the restaurant owner is still writing the fields of the form, the message to that endpoint is sent and the imageID is received as a response.\n 3. When the restaurant owner finishes writing the fields of the form and click the send button, the photo was actually already been ent in the point 2 and he doesn't have to wait for the upload (if he was fast compiling the form and the upload isn't finished yet, at least he has to wait less because it was already started). The imageID received as a response by the /api/image endpoint will be sent to this endpoint with the data of the form in a json, because the backend needs it in order to associate the json to the previously uploaded photo."
operationId: "configureRestaurant"
consumes:
- "application/json"
produces:
- "application/json"
parameters:
- in: "body"
name: "body"
description: "Restaurant data"
required: true
schema:
$ref: "#/definitions/Restaurant"
responses:
200:
description: "Successful operation"
schema:
$ref: "#/definitions/RestaurantID"
400:
description: "A string describing the error. Could be for example 'Restaurant already existing.' or 'Invalid input.'"
schema:
type: "string"
example: "Restaurant already existing."
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
401:
description: "Access denied"
schema:
type: "string"
example: "Access denied."
security:
- Bearer: []
x-security-scopes:
- "owner"
get:
tags:
- "owner"
- "Frikk"
summary: "Get data of own restaurant"
description: "Get the data of the restaurant of authenticated owner, so that it can be showed in the 'Your Restaurant' page."
operationId: "getRestaurant"
produces:
- "application/json"
responses:
200:
description: "Successful operation"
schema:
$ref: '#/definitions/RestaurantReceived'
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
401:
description: "Access denied"
schema:
type: "string"
example: "Access denied."
security:
- Bearer: []
x-security-scopes:
- "owner"
put:
tags:
- "owner"
- "Emilio"
summary: "Edit restaurant's information"
description: "Edit the information of the restaurant. It's needed that the restaurant already exists, otherwise a 404 error will be sent. The POST endpoint should be used to create it."
operationId: "editRestaurant"
consumes:
- "application/json"
produces:
- "application/json"
parameters:
- in: "body"
name: "body"
description: "Restaurant data"
required: true
schema:
$ref: "#/definitions/Restaurant"
responses:
200:
description: "Successful operation"
schema:
$ref: "#/definitions/RestaurantID"
404:
description: "No restaurant associated to this account found"
schema:
type: "string"
example: "No restaurant associated to this account found."
400:
description: "A string describing the error. Could be for example 'Invalid input.'"
schema:
type: "string"
example: "Invalid input."
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
401:
description: "Access denied"
schema:
type: "string"
example: "Access denied."
security:
- Bearer: []
x-security-scopes:
- "owner"
/api/user/owner/restaurant/menu:
post:
tags:
- "owner"
- "Emilio"
summary: "Add an empty menu to a restaurant"
description: "Add a menu to a restaurant of a restaurant owner, which needs to be logged in. The menuItems are not meant to be added to the menu through this endpoint. The tags of the menu must be valid, otherwise a 400 error will be sent. It's needed that the restaurant already exists, otherwise a 404 error will be sent."
operationId: "addMenu"
consumes:
- "application/json"
produces:
- "application/json"
parameters:
- in: "body"
name: "body"
description: "Menu data"
required: true
schema:
$ref: "#/definitions/MenuWithoutItems"
responses:
201:
description: "Successful operation"
schema:
$ref: "#/definitions/MenuID"
404:
description: "No restaurant associated to this account found"
schema:
type: "string"
example: "No restaurant associated to this account found."
400:
description: "A string describing the error. Could be for example 'One or more tags are not valid.' or 'Invalid input.'"
schema:
type: "string"
example: "One or more tags are not valid."
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
401:
description: "Access denied"
schema:
type: "string"
example: "Access denied."
security:
- Bearer: []
x-security-scopes:
- "owner"
get:
tags:
- "owner"
- "Frikk"
summary: "Return all the menus of the restaurant"
description: "Return all the menus of the restaurant. Since authentication is required, the backend is able to get which restaurant is involved from the authentication token. It's needed that the restaurant already exists, otherwise a 404 error will be sent."
operationId: "getOwnMenus"
produces:
- "application/json"
responses:
200:
description: "Successful operation"
schema:
type: "array"
items:
$ref: "#/definitions/MenuCompleteWithID"
404:
description: "No restaurant associated to this account found"
schema:
type: "string"
example: "No restaurant associated to this account found."
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
401:
description: "Access denied"
schema:
type: "string"
example: "Access denied."
security:
- Bearer: []
x-security-scopes:
- "owner"
/api/user/owner/restaurant/menu/{menuID}:
put:
tags:
- "owner"
- "Emilio"
summary: "Edit a menu's information (not its items)"
description: "Edit a given menu (but not its menuItems). To identify the menu, the menuID needs to be given. Authentication is required. The tags of the menu must be valid, otherwise a 400 error will be sent. It's needed that the restaurant already exists, otherwise a 404 error will be sent."
operationId: "editMenu"
consumes:
- "application/json"
produces:
- "application/json"
parameters:
- name: "menuID"
in: "path"
description: "ID of the menu to be edited"
required: true
type: "integer"
- name: "body"
in: "body"
description: "Data of the menu to be saved"
required: true
schema:
$ref: "#/definitions/MenuWithoutItems"
responses:
200:
description: "Successful operation"
schema:
$ref: "#/definitions/MenuID"
404:
description: "Menu not found/No restaurant associated to this account found"
schema:
type: "string"
example: "Menu not found."
400:
description: "A string describing the error. Could be for example 'One or more tags are not valid.' or 'Invalid input.'"
schema:
type: "string"
example: "One or more tags are not valid."
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
401:
description: "Access denied"
schema:
type: "string"
example: "Access denied."
security:
- Bearer: []
x-security-scopes:
- "owner"
delete:
tags:
- "owner"
- "Emilio"
summary: "Delete a menu"
description: "Delete a menu of the restaurant. Authentication is required. It's needed that the restaurant already exists, otherwise a 404 error will be sent."
operationId: "deleteMenu"
parameters:
- name: "menuID"
in: "path"
description: "ID of the menu to be edited"
required: true
type: "integer"
responses:
200:
description: "Successful operation"
404:
description: "Menu not found/No restaurant associated to this account found"
schema:
type: "string"
example: "Menu not found."
400:
description: "A string describing the error. Could be for example 'Invalid input.'"
schema:
type: "string"
example: "Invalid input."
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
401:
description: "Access denied"
schema:
type: "string"
example: "Access denied."
security:
- Bearer: []
x-security-scopes:
- "owner"
/api/user/customer/menu/searchByMenuItem:
get:
tags:
- "customer"
- "Frikk"
summary: "Search by menu item"
description: "Returns all the menus with given menu item (dish/drink) with menuID. It also returns the names of the associated restaurants with restaurantID.\n The menu items inside every menu are not returned. It will be needed to access the endpoint /api/user/customer/menu/{menuID} to get the menu items of a specific menu (the menuID passed can be obtained from the response of this endpoint, since it returns the menuID of every menu).\n The customer can be not logged in, if that is the case then the authentication token must be sent with a null value. The authentication in this endpoint is necessary to collect the search done by the customer and use it to collect statistics."
operationId: "searchByMenuItem"
produces:
- "application/json"
parameters:
- name: "menuItemName"
in: "query"
description: "Name of the desired menu item"
required: true
type: "string"
responses:
200:
description: "Successful operation"
schema:
type: "array"
items:
$ref: "#/definitions/MenuAndRestaurant"
404:
description: "No menu item found"
schema:
type: "string"
example: "No matching Menus."
400:
description: "A string describing the error. Could be for example 'Invalid input.'"
schema:
type: "string"
example: "Invalid input."
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
401:
description: "Access denied"
schema:
type: "string"
example: "Access denied."
security:
- Bearer: []
x-security-scopes:
- "customer"
/api/user/customer/menu/{menuID}:
get:
tags:
- "customer"
- "Frikk"
summary: "Return data of a specific menu"
description: "Returns all the data about the menu with given menuID, even the menu items inside it. The photos of the menu items are saved in the Amazon s3 storage, so the links to the cloud storage are also returned. The frontend will directly download them from the cloud storage, they won't be sent by the backend with this endpoint."
operationId: "getMenuCustomer"
produces:
- "application/json"
parameters:
- name: "menuID"
in: "path"
description: "ID of the menu to be returned"
required: true
type: "integer"
responses:
200:
description: "Successful operation"
schema:
$ref: "#/definitions/MenuRetrievedToCustomer"
404:
description: "Menu with given menuID not found"
schema:
type: "string"
example: "Menu with given menuID not found."
400:
description: "A string describing the error. Could be for example 'Invalid input.'"
schema:
type: "string"
example: "Invalid input."
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
/api/image:
post:
tags:
- "generic user"
- "Marin"
summary: "Upload an image"
description: "This endpoint is used in order to upload EVERY image. For example, when a restaurant owner is registering his restaurant data, he will need to upload an image. Both this endpoint and the dedicated endpoint (POST /api/user/owner/restaurant) will be used. This endpoint to upload the image, the other one to upload all the other textual data (with a json). The images will be stored using Amazon s3. The ID of the image is returned.\n For more information, this is used as a reference: https://stackoverflow.com/questions/33279153/rest-api-file-ie-images-processing-best-practices \n This endpoint requires authentication: we don't want anyone to update images but only authenticated users."
operationId: "uploadImage"
consumes:
- "image/png"
- "image/jpeg"
produces:
- "application/json"
responses:
201:
description: "Successful operation"
schema:
$ref: "#/definitions/ImageID"
422:
description: "Image upload error"
schema:
type: "string"
example: "Image upload error."
401:
description: "Access denied"
schema:
type: "string"
example: "Access denied."
security:
- Bearer: []
x-security-scopes:
- "user"
/api/user/owner/restaurant/menu/{menuID}/menuItem:
post:
tags:
- "owner"
- "Marin"
summary: "Add a menuItem to a menu"
description: "Add a menuItem to the menu with given menuID. Authentication required. The tags of the menu item must be valid, otherwise a 400 error will be sent. It's needed that the restaurant already exists, otherwise a 404 error will be sent."
operationId: "addMenuItem"
consumes:
- "application/json"
produces:
- "application/json"
parameters:
- name: "menuID"
in: "path"
description: "ID of the menu"
required: true
type: "integer"
- in: "body"
name: "body"
description: "Menu data"
required: true
schema:
$ref: "#/definitions/MenuItemWithoutColors"
responses:
200:
description: "Successful operation"
schema:
$ref: "#/definitions/Menu"
404:
description: "Menu not found/No restaurant associated to this account found"
schema:
type: "string"
example: "Menu not found."
400:
description: "A string describing the error. Could be for example 'One or more tags are not valid.' or 'Invalid input.'"
schema:
type: "string"
example: "One or more tags are not valid."
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
401:
description: "Access denied"
schema:
type: "string"
example: "Access denied."
security:
- Bearer: []
x-security-scopes:
- "owner"
/api/user/owner/restaurant/menu/{menuID}/menuItem/{menuItemID}:
put:
tags:
- "owner"
- "Marin"
summary: "Edit a menuItem"
description: "Edit the menuItem with given menuItemID of the menu with given menuID. Authentication required. The tags of the menu item must be valid, otherwise a 400 error will be sent. It's needed that the restaurant already exists, otherwise a 404 error will be sent."
operationId: "editMenuItem"
consumes:
- "application/json"
produces:
- "application/json"
parameters:
- name: "menuID"
in: "path"
description: "ID of the menu"
required: true
type: "integer"
- name: "menuItemID"
in: "path"
description: "ID of the menuItem"
required: true
type: "integer"
- name: "body"
in: "body"
description: "Data of the menuItem"
required: true
schema:
$ref: "#/definitions/MenuItemWithoutColors"
responses:
200:
description: "Successful operation"
schema:
$ref: "#/definitions/Menu"
404:
description: "Menu not found/Menu item not found/No restaurant associated to this account found"
schema:
type: "string"
example: "Menu item not found."
400:
description: "A string describing the error. Could be for example 'One or more tags are not valid.' or 'Invalid input.'"
schema:
type: "string"
example: "One or more tags are not valid."
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
401:
description: "Access denied"
schema:
type: "string"
example: "Access denied."
security:
- Bearer: []
x-security-scopes:
- "owner"
delete:
tags:
- "owner"
- "Marin"
summary: "Delete a menuItem"
description: "Delete the menuItem with given menuItemID of the menu with given menuID. Authentication required. It's needed that the restaurant already exists, otherwise a 404 error will be sent."
operationId: "deleteMenuItem"
parameters:
- name: "menuID"
in: "path"
description: "ID of the menu"
required: true
type: "integer"
- name: "menuItemID"
in: "path"
description: "ID of the menuItem"
required: true
type: "integer"
responses:
200:
description: "Successful operation"
404:
description: "Menu not found/Menu item not found/No restaurant associated to this account found"
schema:
type: "string"
example: "Menu item not found."
400:
description: "A string describing the error. Could be for example 'Invalid input.'"
schema:
type: "string"
example: "Invalid input."
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
401:
description: "Access denied"
schema:
type: "string"
example: "Access denied."
security:
- Bearer: []
x-security-scopes:
- "owner"
/api/user/customer/review/restaurant:
get:
tags:
- "customer"
- "Emilio"
summary: "Return all the restaurants"
description: "Return all the names of the restaurants and their restaurantIDs. Only the restaurants that actually contain menus are actually sent, because a menu has to be reviewed, so it wouldn't make sense to send restaurant with no menus. Moreover, at least one menu of the restaurant must have at least one menu item inside.\n In case no restaurant is found, an empty array is sent (with code 200, not 404)."
operationId: "getRestaurants"
produces:
- "application/json"
responses:
200:
description: "Successful operation"
schema:
type: "array"
items:
$ref: "#/definitions/RestaurantIDAndName"
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
401:
description: "Access denied"
schema:
type: "string"
example: "Access denied."
security:
- Bearer: []
x-security-scopes:
- "customer"
/api/user/customer/review/restaurant/{restaurantID}/menu:
get:
tags:
- "customer"
- "Emilio"
summary: "Return all the menus of given restaurant"
description: "Return all the names of the menus of the restaurant and their menuIDs. Only menus that contain at least one menu item are actually sent.\n In case no menu is found, an empty array is sent (with code 200, not 404). "
operationId: "getMenusOfRestaurant"
produces:
- "application/json"
parameters:
- name: "restaurantID"
in: "path"
description: "ID of the restaurant"
required: true
type: "integer"
responses:
200:
description: "Successful operation"
schema:
type: "array"
items:
$ref: "#/definitions/MenuIDAndName"
404:
description: "Restaurant with given restaurantID not found"
schema:
type: "string"
example: "Restaurant with given restaurantID not found."
400:
description: "A string describing the error. Could be for example 'Invalid input.'"
schema:
type: "string"
example: "Invalid input."
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
401:
description: "Access denied"
schema:
type: "string"
example: "Access denied."
security:
- Bearer: []
x-security-scopes:
- "customer"
/api/user/customer/review/restaurant/menu/{menuID}/menuItem:
get:
tags:
- "customer"
- "Emilio"
summary: "Return all the menu items of given menu"
description: "Return all the menu items of given menu.\n In case no menu item is found, an empty array is sent (with code 200, not 404)."
operationId: "getItemsOfMenu"
produces:
- "application/json"
parameters:
- name: "menuID"
in: "path"
description: "ID of the menu"
required: true
type: "integer"
responses:
200:
description: "Successful operation"
schema:
type: "array"
items:
$ref: "#/definitions/MenuItemIDAndName"
404:
description: "Menu with given menuID not found"
schema:
type: "string"
example: "Menu with given menuID not found."
400:
description: "A string describing the error. Could be for example 'Invalid input.'"
schema:
type: "string"
example: "Invalid input."
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
401:
description: "Access denied"
schema:
type: "string"
example: "Access denied."
security:
- Bearer: []
x-security-scopes:
- "customer"
/api/user/customer/review/restaurant/menu/{menuID}:
post:
tags:
- "customer"
- "Marin"
summary: "Submit a review of the menu"
description: "Submit a review of the menu with given menuID. The receiptImageID is obtained by the frontend when the photo of the receipt is uploaded through the dedicated endpoint."
operationId: "submitReview"
consumes:
- "application/json"
parameters:
- name: "menuID"
in: "path"
description: "ID of the menu"
required: true
type: "integer"
- name: "body"
in: "body"
description: "Review"
required: true
schema:
$ref: "#/definitions/MenuReview"
responses:
201:
description: "Successful operation"
404:
description: "Menu with given menuID not found"
schema:
type: "string"
example: "Menu with given menuID not found."
400:
description: "A string describing the error. Could be for example 'Invalid input.'"
schema:
type: "string"
example: "Invalid input."
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
401:
description: "Access denied"
schema:
type: "string"
example: "Access denied."
security:
- Bearer: []
x-security-scopes:
- "customer"
/api/user/customer/review:
get:
tags:
- "customer"
- "Frikk"
summary: "Return all the reviews of the customer"
description: "Return all the reviews of the customer, with their reviewIDs and their status (accepted/refused/pending). Returns an empty array if no review is found (with code 200, not 404)."
operationId: "getOwnReviews"
produces:
- "application/json"
responses:
200:
description: "Successful operation"
schema:
type: "array"
items:
$ref: "#/definitions/MenuReviewWithIDAndStatus"
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
401:
description: "Access denied"
schema:
type: "string"
example: "Access denied."
security:
- Bearer: []
x-security-scopes:
- "customer"
/api/user/customer/review/{reviewID}:
delete:
tags:
- "customer"
- "Frikk"
summary: "Delete a review"
description: "Delete the review with the given reviewID. This will also delete the reviews of the menu items associated to the review with given reviewID. The review must belong to the authenticated customer, otherwise a 403 error will be sent."
parameters:
- name: "reviewID"
in: "path"
description: "ID of the review"
required: true
type: "integer"
responses:
200:
description: "Successful operation"
404:
description: "Review with given reviewID not found"
schema:
type: "string"
example: "Review with given reviewID not found."
400:
description: "A string describing the error. Could be for example 'Invalid input.'"
schema:
type: "string"
example: "Invalid input."
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
403:
description: "The review doesn't belong to the authenticated customer, so it can't be deleted"
schema:
type: "string"
example: "Forbidden request."
401:
description: "Access denied"
schema:
type: "string"
example: "Access denied."
security:
- Bearer: []
x-security-scopes:
- "customer"
/api/user/customer:
get:
tags:
- "customer"
- "Marin"
summary: "Return profile data of the customer"
description: "Return own data of the logged in customer. This endpoint should be used when the frontend has to visualize the profile of the customer."
produces:
- "application/json"
responses:
200:
description: "Successful operation"
schema:
$ref: "#/definitions/CustomerData"
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
401:
description: "Access denied"
schema:
type: "string"
example: "Access denied."
security:
- Bearer: []
x-security-scopes:
- "customer"
put:
tags:
- "customer"
- "Frikk"
summary: "Edit profile data of the customer"
description: "Edit profile data of the logged in customer. All the customer data must be sent with this endpoint, even if it's not changed (in that case the fields must contain the current values). The password can't be changed through this endpoint, but the dedicated one should be used instead.\n Valid values for Gender are 'Male/Female/Other'.\n The username, the name and the surname can't be changed.\n The age is a range, for example '24-34'."
consumes:
- "application/json"
parameters:
- in: "body"
name: "body"
description: "New data of the customer"
required: true
schema:
$ref: "#/definitions/CustomerEditData"
responses:
200:
description: "Successful operation"
schema:
$ref: "#/definitions/CustomerData"
400:
description: "A string describing the error. Could be for example 'Invalid input.'"
schema:
type: "string"
example: "Invalid input."
500:
description: "Internal server error"
schema:
type: "string"
example: "Internal server error."
401:
description: "Access denied"
schema:
type: "string"
example: "Access denied."
security:
- Bearer: []
x-security-scopes:
- "customer"
delete:
tags:
- "customer"
- "Frikk"
summary: "Delete profile of the customer"