-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoc.txt
More file actions
406 lines (388 loc) · 9.76 KB
/
doc.txt
File metadata and controls
406 lines (388 loc) · 9.76 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
//////////////////////////////////////prducts////////////////////////////
1) get all product
url = http://linkloop.co:5000/products/all
method = GET
response on success
{
"data": [
{
"_id": "64099489efc793f1a888d145",
"name": "prod1",
"category": "categ2",
"description": "dsasdas",
"imgs": [
"public/uploads/imgs-1678349449316-731477911.1.png",
"public/uploads/imgs-1678349449317-505418359.details.png",
"public/uploads/imgs-1678349449317-888310057.elmasa-logo.png"
],
"details": [
{
"title": "title1",
"value": "value1",
"_id": "64099489efc793f1a888d146"
}
],
"__v": 0
},
{
"_id": "64099584efc793f1a888d14e",
"name": "prod1",
"category": "categ2",
"description": "dsasdas",
"imgs": [
"public/uploads/imgs-1678349700075-921195985.1.png",
"public/uploads/imgs-1678349700075-401705546.details.png",
"public/uploads/imgs-1678349700076-144046743.elmasa-logo.png"
],
"details": [
{
"title": "title1",
"value": "value1",
"_id": "64099584efc793f1a888d14f"
}
],
"__v": 0
}
]
}
/////////////////////////////
2) get product by id
url = http://linkloop.co:5000/products/product-by-id/{id}
method = GET
response on success
{
"data": {
"_id": "64099584efc793f1a888d14e",
"name": "prod1",
"category": "categ2",
"description": "dsasdas",
"imgs": [
"public/uploads/imgs-1678349700075-921195985.1.png",
"public/uploads/imgs-1678349700075-401705546.details.png",
"public/uploads/imgs-1678349700076-144046743.elmasa-logo.png"
],
"details": [
{
"title": "title1",
"value": "value1",
"_id": "64099584efc793f1a888d14f"
}
],
"__v": 0
}
}
////////////////////////////
3) getProducts By category
url = http://linkloop.co:5000/products/product-by-category/{category name}
method = GET
response on success
{
"data": [
{
"_id": "640998752b725325af3f4beb",
"name": "prod1",
"category": "categ2",
"description": "dsasdas",
"imgs": [
"public/uploads/imgs-1678350452874-33281486.1.png",
"public/uploads/imgs-1678350452875-673309418.details.png",
"public/uploads/imgs-1678350452879-247777535.elmasa-logo.png"
],
"details": [
{
"title": "title1",
"value": "value1",
"_id": "640998752b725325af3f4bec"
}
],
"__v": 0
}
]
}
//////////////////////////
4) add product
allowed only for suppliers and must be loged in
url = http://linkloop.co:5000/products/add-new
header
authorization = Bearer + token
method = POST
body{
imgs: files
name: String,
category: String,
description: String,
details: [
{
title: String,
value: String
}
]
}
response on success
{
"data": {
"name": "prod1",
"category": "categ2",
"description": "dsasdas",
"imgs": [
"public/uploads/imgs-1678349700075-921195985.1.png",
"public/uploads/imgs-1678349700075-401705546.details.png",
"public/uploads/imgs-1678349700076-144046743.elmasa-logo.png"
],
"details": [
{
"title": "title1",
"value": "value1",
"_id": "64099584efc793f1a888d14f"
}
],
"_id": "64099584efc793f1a888d14e",
"__v": 0
}
}
//////////////////////////
5) edit product (allowed only for suppliers and must be loged in)
url = http://linkloop.co:5000/products/edit-prod/{productId}
method = post
body{
imgs: files // if add new img
name: String,
category: String,
description: String,
details: [
{
title: String,
value: String
}
]
}
response on success
{
"data": {
"name": "prod1",
"category": "categ2",
"description": "dsasdas",
"imgs": [
"public/uploads/imgs-1678349700075-921195985.1.png",
"public/uploads/imgs-1678349700075-401705546.details.png",
"public/uploads/imgs-1678349700076-144046743.elmasa-logo.png"
],
"details": [
{
"title": "title1",
"value": "value1",
"_id": "64099584efc793f1a888d14f"
}
],
"_id": "64099584efc793f1a888d14e",
"__v": 0
}
}
/////////////////////////
6) remove product imgs
url = http://linkloop.co:5000/products/remove-img/
method = post
body
{
"img": "public/uploads/imgs-1678457484179-71316788.1.png"
}
response
{
"imgs": [
"public/uploads/imgs-1678457484179-71316788.2.png"
]
}
////////////////////////
7) remove product
url = http://linkloop.co:5000/products/remove-prod/:id
method = get
response
{
msg: "ok"
}
////////////////////////////////////supplier///////////////////////////////
1)signup
url = http://linkloop.co:5000/supplier/signup
method = POST
body{
"name": type = String , required
"email": type = String , required,
"mobile": type = String , min length = 12 ,required , ex) 201152306375
"password": type= String, min length = 8, must contain 1 special & lower case & capital case, required
"taxrecord": type = String, required
"address": type = String
}
response on success
status 200
"supplier": {
supplier data
}
2) login
url = http://linkloop.co:5000/supplier/login
method = POST
body{
email: required,
password: required
}
response on success
{
"msg": "ok",
"token": ""
}
3) logout
url = http://linkloop.co:5000/supplier/loout
method = GET
response on success
{
msg: "ok"
}
////////////////
4)add Products
uri = http://linkloop.co:5000/supplier/add-prods
method = post
body
{
ids: ["prodId"]
}
response
{
"msg": "ok"
}
////////////////
5)remove Product
uri = http://linkloop.co:5000/supplier/remove-prod
method = post
body
{
ids: "prodId"
}
response
{
"msg": "ok"
}
////////////////
6) get all products
url = http://linkloop.co:5000/supplier/all-products
method = get
response
{
"products": [
{
"supplers": [],
"_id": "6409952cefc793f1a888d14a",
"category": "categ2",
"description": "dsasdas",
"imgs": [
"public/uploads/imgs-1678349611867-874867170.1.png",
"public/uploads/imgs-1678349611867-246518852.details.png",
"public/uploads/imgs-1678349611868-838553812.elmasa-logo.png",
"public/uploads/imgs-1680121765753-730603864.1.png",
"public/uploads/imgs-1680121781081-203591709.1.png"
],
"details": [
{
"title": "title1",
"value": "value1",
"_id": "6409952cefc793f1a888d14b"
}
],
"__v": 2
}
]
}
////////////////////////////////////////////admin////////////////////////////
1)login
url = http://linkloop.co:5000/admin/login
method = POST
body{
"password": type String, plz add ADMINPASS=123 in .env just for test
}
2) logout
url = http://linkloop.co:5000/admin/login
method = GET
response on success
{
msg: "ok"
}
///////////////////////////////////////category////////////////////////////
1)add category only for admin
uri = http://linkloop.co:5000/admin/add-new-category
method = POST
body{
name: "String",
img: file
}
response on success
"category": {
"name": "categ4",
"products": [],
"img": "public/uploads/img-1678347615255-363244279.saee-logo.png",
"_id": "64098d5f090dc71a3afab24d",
"__v": 0
}
2) get all categiory
url = http://linkloop.co:5000/products/categs
method = GET
response on success
"data": [
{
"_id": "64098a4e494d6ed6dde769bf",
"name": "categ1",
"img": "public/uploads/img-1678346830319-951295145.saee-logo.png"
},
{
"_id": "64098d1702aeae9a660fa5be",
"name": "categ2",
"img": "public/uploads/img-1678347543190-478814718.saee-logo.png"
}]
/////////////////////////////////////////user/////////////////////////////////
1)signUp
url = http://linkloop.co:5000/user/signup
method = post
body{
"name": type = String , required
"email": type = String , required,
"mobile": type = String , min length = 12 ,required , ex) 201152306375
"password": type= String, min length = 8, must contain 1 special & lower case & capital case, required
"address": type = String
}
response on success
status 200
"supplier": {
supplier data
}
//////////////
2)login
url = http://linkloop.co:5000/user/login
method = POST
body{
email: required,
password: required
}
response on success
{
"msg": "ok",
"token": ""
}
////////////////////////////////////////////////orders//////////////////////////////
1) addnew only for user
url = http://linkloop.co:5000/order/add-new
method = post
body
{
"product": product id,
"quantity": number integer
}
response
{
"order": {
"prod": prod _id,
"quantity": 4,
"supplier": supplier _id,
"user": user _id,
"supplerresponse": false,
"userresponse": false,
"_id": "641700fc65e01555fd9efc5c",
"__v": 0
}
}