forked from java-park-mail-ru/KVVArtet-09-2017
-
Notifications
You must be signed in to change notification settings - Fork 1
/
swagger.yml
216 lines (216 loc) · 7.13 KB
/
swagger.yml
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
swagger: '2.0'
info:
title: Lands and Dungeons
description: |
Онлайновый rogue-like RPG проект от команды KVVArtet
version: "0.0.1"
schemes:
- http
- https
basePath: /api
consumes:
- application/json
produces:
- application/json
paths:
/signup:
post:
summary: Регистрация пользователя
description: |
Регистрация нового пользователя
operationId: signUp
parameters:
- name: user
in: body
description: |
Данные для регистрации
required: true
schema:
$ref: '#/definitions/User'
responses:
200:
description: |
Пользователь успешно зарегистрирован
schema:
$ref: '#/definitions/ApiResponse'
400(1):
description: |
Имя пользователя уже занято
schema:
$ref: '#/definitions/ApiResponse'
400(2):
description: |
Данный почтовый ящик уже использован для регистрации другого пользователя
schema:
$ref: '#/definitions/ApiResponse'
/username:
post:
summary: Авторизация пользователя
description: |
Авторизация зарегистрированного пользователя
operationId: signIn
parameters:
- name: user
in: body
description: |
Данные для авторизации пользователя
required: true
schema:
$ref: '#/definitions/User'
responses:
200:
description: |
Авторизация успешно выполнена
schema:
$ref: '#/definitions/ApiResponse'
403(1):
description: |
Данный пользователь уже авторизован
schema:
$ref: '#/definitions/ApiResponse'
403(2):
description: |
Неверный пароль
schema:
$ref: '#/definitions/ApiResponse'
/signout:
post:
summary: Выход из текущей учетной записи
description: |
Выход из текущей учетной записи
operationId: signOut
parameters:
- name: session
in: body
description: |
Активная сессия
required: true
schema:
$ref: '#/definitions/HttpSession'
responses:
200:
description: |
Успешный выход из учетной записи
schema:
$ref: '#/definitions/ApiResponse'
403:
description: |
Неавторизованный пользователь не может разлогиниться
schema:
$ref: '#/definitions/ApiResponse'
/session:
get:
summary: Получение данных о пользователе из сессии
description: |
Получение данных о пользователе из сессии
operationId: requestUserInCurrentSession
parameters:
- name: session
in: body
description: |
Активная сессия
required: true
schema:
$ref: '#/definitions/HttpSession'
responses:
200:
description: |
Пользователь авторизован
schema:
$ref: '#/definitions/ApiResponse'
403:
description: |
Пользователь не авторизован
schema:
$ref: '#/definitions/ApiResponse'
/settings:
post:
summary: Редактирование данных пользователя
description: |
Редактирование данных пользователя
operationId: changeUserProfile
parameters:
- name: user
description: |
Изменения для учетной записи
schema:
$ref: '#/definitions/User'
- name: session
description: |
Активная сессия
schema:
$ref: '#/definitions/HttpSession'
responses:
200:
description: |
Учетная запись успешно изменена
schema:
$ref: '#/definitions/ApiResponse'
400:
description: |
Логин не изменился
schema:
$ref: '#/definitions/ApiResponse'
403:
description: |
Пользователь не авторизован
schema:
$ref: '#/definitions/ApiResponse'
definitions:
User:
type: object
description: |
модель пользователя
properties:
username:
type: string
description: |
Логин пользователя
email:
type: string
description: |
email пользователя
password:
type: string
description: |
пароль
required:
- username
- email
- password
ApiResponse:
type: object
description: |
ответ API
properties:
status:
type: integer
description: |
Код ответа.
0: Пользователь с таким именем уже существует
1: Данный адрес электронной почты уже зарегистрирован
2: Пользователь уже авторизован
3: Логин или почта не найдены
4: Неверный пароль
5: Пользователь успешно зарегистрирован
6: Пользователь успешно авторизован
7: Пользователь не авторизован
8: Выход из учетной записи успешен
9: Логин не изменен
10: Профиль успешно изменен
11: В сессии присутствует авторизованный пользователь
response:
type: string
description: |
Описание ответа. Несет информативный характер
required:
- status
- response
HttpSession:
type: object
description: |
объект HttpSession.
(https://docs/oracle.com/javaee/7/api/javax/servlet/http/HttpSession.html)
Хранит и управляет данными сеанса пользователя.
В нашем случае используется, чтобы получать информацию о пользователе
(сеанс авторизованного пользователя должен содержать в себе атрибут username).