-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.proto
452 lines (411 loc) · 10.1 KB
/
auth.proto
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
syntax = "proto3";
package auth.v1;
import "google/api/annotations.proto";
import "google/protobuf/empty.proto";
// the validate rules:
// https://github.com/envoyproxy/protoc-gen-validate
import "validate/validate.proto";
import "cinch/params/params.proto";
option go_package = "./api/auth;auth";
option java_multiple_files = true;
option java_package = "auth.v1";
option java_outer_classname = "AuthProtoV1";
// The auth service definition.
service Auth {
rpc Register (RegisterRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
post: "/pub/register"
body: "*"
};
}
rpc Pwd (PwdRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
patch: "/pwd/update"
body: "*"
};
}
rpc Login (LoginRequest) returns (LoginReply) {
option (google.api.http) = {
post: "/pub/login"
body: "*"
};
}
rpc Status (StatusRequest) returns (StatusReply) {
option (google.api.http) = {
get: "/pub/status"
};
}
rpc Captcha (google.protobuf.Empty) returns (CaptchaReply) {
option (google.api.http) = {
get: "/pub/captcha"
};
}
rpc Refresh (RefreshRequest) returns (LoginReply) {
option (google.api.http) = {
post: "/refresh"
body: "*"
};
}
rpc Logout (google.protobuf.Empty) returns (google.protobuf.Empty) {
option (google.api.http) = {
post: "/logout"
body: "*"
};
}
rpc Info (google.protobuf.Empty) returns (InfoReply) {
option (google.api.http) = {
get: "/info"
};
}
rpc Idempotent (google.protobuf.Empty) returns (IdempotentReply) {
option (google.api.http) = {
get: "/idempotent"
};
}
rpc FindUser (FindUserRequest) returns (FindUserReply) {
option (google.api.http) = {
get: "/user/list"
};
}
rpc UpdateUser (UpdateUserRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
put: "/user/update",
body: "*",
additional_bindings {
patch: "/user/update",
body: "*",
}
};
}
rpc DeleteUser (params.IdsRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
delete: "/user/delete"
};
}
rpc Permission (PermissionRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
get: "/permission"
};
}
rpc CreateAction (CreateActionRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
post: "/action/create"
body: "*"
};
}
rpc FindAction (FindActionRequest) returns (FindActionReply) {
option (google.api.http) = {
get: "/action/list"
};
}
rpc UpdateAction (UpdateActionRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
put: "/action/update"
body: "*",
additional_bindings {
patch: "/action/update",
body: "*",
}
};
}
rpc DeleteAction (params.IdsRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
delete: "/action/delete"
};
}
rpc CreateRole (CreateRoleRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
post: "/role/create"
body: "*"
};
}
rpc FindRole (FindRoleRequest) returns (FindRoleReply) {
option (google.api.http) = {
get: "/role/list"
};
}
rpc UpdateRole (UpdateRoleRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
put: "/role/update"
body: "*",
additional_bindings {
patch: "/role/update",
body: "*",
}
};
}
rpc DeleteRole (params.IdsRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
delete: "/role/delete"
};
}
rpc CreateUserGroup (CreateUserGroupRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
post: "/user/group/create"
body: "*"
};
}
rpc FindUserGroup (FindUserGroupRequest) returns (FindUserGroupReply) {
option (google.api.http) = {
get: "/user/group/list"
};
}
rpc UpdateUserGroup (UpdateUserGroupRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
put: "/user/group/update"
body: "*",
additional_bindings {
patch: "/user/group/update",
body: "*",
}
};
}
rpc DeleteUserGroup (params.IdsRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
delete: "/user/group/delete"
};
}
rpc CreateWhitelist (CreateWhitelistRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
post: "/whitelist/create"
body: "*"
};
}
rpc FindWhitelist (FindWhitelistRequest) returns (FindWhitelistReply) {
option (google.api.http) = {
get: "/whitelist/list"
};
}
rpc UpdateWhitelist (UpdateWhitelistRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
put: "/whitelist/update"
body: "*",
additional_bindings {
patch: "/whitelist/update",
body: "*",
}
};
}
rpc DeleteWhitelist (params.IdsRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
delete: "/whitelist/delete"
};
}
}
message Captcha {
string id = 1;
string img = 2;
}
message Action {
uint64 id = 1;
string code = 2;
string name = 3;
string word = 4;
string resource = 5;
string menu = 6;
string btn = 7;
}
message User {
uint64 id = 1;
string created_at = 2;
string updated_at = 3;
string username = 4;
string code = 5;
string platform = 6;
bool locked = 7;
string last_login = 11;
int64 lock_expire = 12;
string lock_msg = 13;
repeated Action actions = 14;
uint64 role_id = 15;
Role role = 16;
}
message UserGroup {
uint64 id = 1;
string name = 2;
string word = 3;
repeated Action actions = 4;
repeated User users = 5;
}
message Role {
uint64 id = 1;
string name = 2;
string word = 3;
string action = 4;
repeated Action actions = 5;
}
message Whitelist {
uint64 id = 1;
uint32 category = 2;
string resource = 3;
}
message RegisterRequest {
string username = 1 [(validate.rules).string = {min_len: 5, max_len: 50}];
string password = 2 [(validate.rules).string = {min_len: 6, max_len: 50}];
string platform = 3 [(validate.rules).string = {min_len: 1}];
string captcha_id = 4;
string captcha_answer = 5;
}
message PwdRequest {
string username = 1;
string old_password = 2;
string new_password = 3 [(validate.rules).string = {min_len: 6, max_len: 50}];
}
message LoginRequest {
string username = 1;
string password = 2;
optional string platform = 3;
optional string captcha_id = 4;
optional string captcha_answer = 5;
}
message LoginReply {
string token = 1;
string expires = 2;
}
message StatusRequest {
string username = 1;
}
message StatusReply {
Captcha captcha = 1;
bool locked = 2;
int64 lock_expire = 3;
}
message CaptchaReply {
Captcha captcha = 1;
}
message RefreshRequest {
string token = 1;
}
message InfoReply {
uint64 id = 1;
string username = 2;
string code = 3;
string platform = 4;
Permission permission = 5;
}
message IdempotentReply {
string token = 1;
}
message Permission {
repeated string resources = 1;
repeated string menus = 2;
repeated string btns = 3;
}
message FindUserRequest {
params.Page page = 1;
optional string start_created_at = 2;
optional string end_created_at = 3;
optional string start_updated_at = 4;
optional string end_updated_at = 5;
optional string username = 6;
optional string code = 7;
optional string platform = 8;
optional bool locked = 9;
}
message FindUserReply {
params.Page page = 1;
repeated User list = 2;
}
message UpdateUserRequest {
uint64 id = 1;
optional string username = 2;
optional string password = 3;
optional string platform = 4;
optional bool locked = 5;
optional string lock_expire_time = 6;
optional string action = 7;
optional uint64 roleId = 8;
}
message PermissionRequest {
optional string resource = 1;
optional string method = 2;
optional string uri = 3;
}
message CreateActionRequest {
string name = 1 [(validate.rules).string = {max_len: 50}];
string word = 2 [(validate.rules).string = {max_len: 50}];
string resource = 3;
string menu = 4;
string btn = 5;
}
message FindActionRequest {
params.Page page = 1;
optional string code = 2;
optional string name = 3;
optional string word = 4;
optional string resource = 5;
}
message FindActionReply {
params.Page page = 1;
repeated Action list = 2;
}
message UpdateActionRequest {
uint64 id = 1;
optional string name = 2;
optional string word = 3;
optional string resource = 4;
optional string menu = 5;
optional string btn = 6;
}
message CreateRoleRequest {
string name = 1 [(validate.rules).string = {max_len: 50}];
string word = 2 [(validate.rules).string = {max_len: 50}];
optional string action = 3;
}
message FindRoleRequest {
params.Page page = 1;
optional string name = 2;
optional string word = 3;
optional string action = 4;
}
message FindRoleReply {
params.Page page = 1;
repeated Role list = 2;
}
message UpdateRoleRequest {
uint64 id = 1;
optional string name = 2;
optional string word = 3;
optional string action = 4;
}
message CreateUserGroupRequest {
repeated uint64 users = 1;
string name = 2 [(validate.rules).string = {max_len: 50}];
string word = 3 [(validate.rules).string = {max_len: 50}];
optional string action = 4;
}
message FindUserGroupRequest {
params.Page page = 1;
optional string name = 2;
optional string word = 3;
optional string action = 4;
}
message FindUserGroupReply {
params.Page page = 1;
repeated UserGroup list = 2;
}
message UpdateUserGroupRequest {
uint64 id = 1;
optional string name = 2;
optional string word = 3;
optional string action = 4;
optional string users = 5;
}
message CreateWhitelistRequest {
uint32 category = 1;
string resource = 2;
}
message FindWhitelistRequest {
params.Page page = 1;
optional uint32 category = 2;
optional string resource = 3;
}
message FindWhitelistReply {
params.Page page = 1;
repeated Whitelist list = 2;
}
message UpdateWhitelistRequest {
uint64 id = 1;
optional uint32 category = 2;
optional string resource = 3;
}