This repository has been archived by the owner on Apr 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapidocs.py
234 lines (228 loc) · 6.08 KB
/
apidocs.py
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
import os
from flasgger import Swagger
from app import create_app
from app.decorators import token_required
config_name = os.getenv('APP_SETTINGS')
app = create_app(config_name)
swagger = Swagger(app)
@app.route('/auth/register', methods=["POST"])
def register_user():
""" endpoint returns registration details.
---
parameters:
- name: email
in: formData
type: string
required: true
- name: password
in: formData
type: string
required: true
"""
@app.route('/auth/login', methods=["POST"])
def login_user():
""" endpoint returns authorization details.
---
parameters:
- name: email
in: formData
type: string
required: true
- name: password
in: formData
type: string
required: true
"""
@app.route("/bucketlists", methods=["GET"])
@token_required
def get_all_bucketlists():
"""endpoint returns a list of all user's bucketlists.
Authorization is in format: 'Bearer access_token'
Copy the access token from the message/response you get after login
---
parameters:
- name: Authorization
in: header
type: string
required: true
"""
@app.route("/bucketlists", methods=["POST"])
@token_required
def create_bucketlist():
"""endpoint creates bucketlist and returns it's details.
Authorization is in format: 'Bearer access_token'
Copy the access token from the message/response you get after login
---
parameters:
- name: name
in: formData
type: string
required: true
- name: Authorization
in: header
type: string
required: true
"""
@app.route('/bucketlists/<int:bid>', methods=['PUT'])
@token_required
def update_bucketlist():
"""endpoint updates bucketlist with new details.
Authorization is in format: 'Bearer access_token'
Copy the access token from the message/response you get after login
---
parameters:
- name: name
in: formData
type: string
required: true
- name: Authorization
in: header
type: string
required: true
- name: bid
in: path
type: string
required: true
"""
@app.route('/bucketlists/<int:bid>', methods=['GET'])
@token_required
def get_bucketlist_by_id():
"""endpoint gets bucketlist details by id.
Authorization is in format: 'Bearer access_token'
Copy the access token from the message/response you get after login
---
parameters:
- name: Authorization
in: header
type: string
required: true
- name: bid
in: path
type: string
required: true
"""
@app.route('/bucketlists/<int:bid>', methods=['DELETE'])
@token_required
def delete_a_bucketlist():
"""endpoint deletes a bucketlist by id.
Authorization is in format: 'Bearer access_token'
Copy the access token from the message/response you get after login
---
parameters:
- name: Authorization
in: header
type: string
required: true
- name: bid
in: path
type: string
required: true
"""
@app.route("/bucketlists/<int:id>/items", methods=["GET"])
@token_required
def get_all_bucketlist_items():
"""endpoint returns all items belonging to a specific bucketlist.
Authorization is in format: 'Bearer access_token'
Copy the access token from the message/response you get after login
---
parameters:
- name: Authorization
in: header
type: string
required: true
- name: id
in: path
type: string
required: true
"""
@app.route("/bucketlists/<int:id>/items", methods=["POST"])
@token_required
def create_bucketlist_item():
"""endpoint creates a bucketlist item.
Authorization is in format: 'Bearer access_token'
Copy the access token from the message/response you get after login
---
parameters:
- name: name
in: formData
type: string
required: true
- name: Authorization
in: header
type: string
required: true
- name: id
in: path
type: string
required: true
"""
@app.route("/bucketlists/<int:bid>/items/<int:item_id>", methods=["PUT"])
@token_required
def update_bucketlist_item():
"""endpoint updates a bucketlist item by id.
Authorization is in format: 'Bearer access_token'
Copy the access token from the message/response you get after login
---
parameters:
- name: name
in: formData
type: string
required: true
- name: Authorization
in: header
type: string
required: true
- name: item_id
in: path
type: string
required: true
- name: bid
in: path
type: string
required: true
"""
@app.route("/bucketlists/<int:bid>/items/<int:item_id>", methods=["DELETE"])
@token_required
def delete_a_bucketlist_item():
"""endpoint deletes a bucketlist item by id.
Authorization is in format: 'Bearer access_token'
Copy the access token from the message/response you get after login
---
parameters:
- name: Authorization
in: header
type: string
required: true
- name: item_id
in: path
type: string
required: true
- name: bid
in: path
type: string
required: true
"""
@app.route("/bucketlists/<int:bid>/items/<int:item_id>", methods=["GET"])
@token_required
def get_bucketlist_item_by_id():
"""endpoint returns a specific bucketlist item by id.
Authorization is in format: 'Bearer access_token'
Copy the access token from the message/response you get after login
---
parameters:
- name: Authorization
in: header
type: string
required: true
- name: item_id
in: path
type: string
required: true
- name: bid
in: path
type: string
required: true
"""
if __name__ == "__main__":
port = int(os.environ.get('PORT', 5000))
app.run('', port=port)