-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathuser.routes.ts
135 lines (128 loc) · 3.45 KB
/
user.routes.ts
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
import { Router } from "express";
import * as userController from "../controllers/userController";
import { isPioneerFound } from "../middlewares/isPioneerFound";
import { verifyToken } from "../middlewares/verifyToken";
/**
* @swagger
* components:
* schemas:
* UserSchema:
* type: object
* properties:
* pi_uid:
* type: string
* description: Pi user ID
* pi_username:
* type: string
* description: Pi user alias
* user_name:
* type: string
* description: Name of Pi user; preset to Pi user alias
*/
const userRoutes = Router();
/**
* @swagger
* /api/v1/users/authenticate:
* post:
* tags:
* - User
* summary: Authenticate the user's access token *
* security:
* - BearerAuth: []
* responses:
* 200:
* description: Successful response
* content:
* application/json:
* schema:
* $ref: '/api/docs/UsersSchema.yml#/components/schemas/AuthenticateUserRs'
* 404:
* description: Pioneer not found
* 400:
* description: Bad request
* 500:
* description: Internal server error
*/
userRoutes.post("/authenticate", isPioneerFound, userController.authenticateUser);
/**
* @swagger
* /api/v1/users/me:
* get:
* tags:
* - User
* summary: Fetch the user's information using Bearer Auth token *
* responses:
* 200:
* description: Successful response
* content:
* application/json:
* schema:
* $ref: '/api/docs/UsersSchema.yml#/components/schemas/GetUserRs'
* 404:
* description: User not found | Pioneer not found
* 401:
* description: Unauthorized
* 400:
* description: Bad request
* 500:
* description: Internal server error
*/
userRoutes.get("/me", verifyToken, userController.autoLoginUser);
/**
* @swagger
* /api/v1/users/{pi_uid}:
* get:
* tags:
* - User
* summary: Get a user by Pi UID
* parameters:
* - name: pi_uid
* in: path
* required: true
* schema:
* type: string
* description: The Pi uid of the user to retrieve
* responses:
* 200:
* description: Successful response
* content:
* application/json:
* schema:
* $ref: '/api/docs/UsersSchema.yml#/components/schemas/GetUserRs'
* 404:
* description: User not found
* 400:
* description: Bad request
* 500:
* description: Internal server error
*/
userRoutes.get("/:pi_uid", userController.getUser);
/**
* @swagger
* /api/v1/users/delete:
* delete:
* tags:
* - User
* summary: Delete a user and user associated data using Bearer Auth token *
* responses:
* 200:
* description: Successful response | User deleted successfully
* content:
* application/json:
* schema:
* $ref: '/api/docs/UsersSchema.yml#/components/schemas/DeleteUserRs'
* 404:
* description: User not found
* 401:
* description: Unauthorized
* 400:
* description: Bad request
* 500:
* description: Internal server error
*/
userRoutes.delete(
"/delete",
verifyToken,
userController.deleteUser
);
export default userRoutes;