-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapidoc.yaml
3647 lines (3549 loc) · 94.3 KB
/
apidoc.yaml
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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
swagger: '2.0'
### information start ###
info:
description: work.muxixyz.com API
version: 1.0.0
title: Work API
contact:
email: shiina_orez@qq.com
#license
### information end ###
host: work.muxixyz.com
basePath: /api/v1.0
schemes:
- https
- http
### tag start ###
tags:
- name: auth
description: 身份验证服务
- name: management
description: 成员管理服务
- name: feed
description: feed流服务
- name: message
description: 消息服务
- name: status
description: 进度服务
- name: search
description: 搜索服务
- name: project
description: 项目服务
- name: file
description: 文件服务
### tag end ###
### auth start ###
securityDefinitions:
basic:
type: basic
description: http basic auth,即在请求头中添加Authorization字段,内容为base64.encode(“邮箱:muxi304”)
token:
type: apiKey
description: token,然后在请求头中添加Authorization字段,内容为base64.encode(“token:”)
name: token
in: header
### auth end ###
### path start ###
paths:
/auth/signup/:
post:
tags:
- auth
summary: Signup a account.
description: Just save a list of user.
consumes:
- application/json
produces:
- application/json
parameters:
- name: POSTdata
in: body
description: data to fill the segments
schema:
required:
- name
- email
- avatar
- tel
properties:
name:
type: string
email:
type: string
avatar:
type: string
tel:
type: string
teamID:
type: integer
responses:
200:
description: Signup successfully
401:
description: User already exist
/auth/login/:
post:
tags:
- auth
summary: Login a account
description: Get a token formed by user-info
consumes:
- application/json
produces:
- application/json
parameters:
- name: POSTdata
in: body
description: data to mark who want a token
schema:
required:
- email
properties:
email:
type: string
responses:
200:
description: Return a token
schema:
required:
- token
- uid
- urole
properties:
token:
type: string
uid:
type: integer
urole:
type: integer
/user/2bSuperuser/:
post:
tags:
- management
summary: create a superuser
description: get username and add it to superuser
consumes:
- application/json
produces:
- application/json
parameters:
- name: name
in: body
description: username
required: true
schema:
type: string
responses:
200:
description: ok
/group/new/:
post:
tags:
- management
summary: post a new group
description: a groupName and a user list
consumes:
- application/json
produces:
- application/json
parameters:
- name: POSTdata
in: body
description: data to set a enw group
schema:
required:
- groupName
- userList
properties:
groupName:
type: string
userlist:
type: array
items:
required:
- userID
properties:
userID:
type: integer
responses:
200:
description: successful!
402:
description: user list is None!/ group name exist!
security:
- token: []
/group/{gid}/:
delete:
tags:
- management
summary: delete a group
description: DANGER:must be superuser can delete a group
produces:
- application/json
parameters:
- in: path
name: gid
description: groupID
required: true
type: integer
responses:
200:
description: ok
security:
- token: []
/group/<gid>/rename/:
post:
tags:
- management
summary: rename the group
description: get a new group name
produces:
- application/json
parameters:
- in: path
name: gid
description: groupID
required: true
type: integer
- name: rename
in: body
description: a new group name
required: true
schema:
type: string
responses:
200:
description: rename successful!
402:
description: rename is None/please keep group name unique
/group/{gid}/userList/:
get:
tags:
- management
summary: group user list
description: get a user list by group id/ if gid ==0 ,get all users
produces:
- application/json
parameters:
- in: path
name: gid
description: groupID
required: true
type: integer
responses:
200:
description: user list
schema:
required:
- count
- list
properties:
count:
type: integer
list:
type: array
items:
required:
- teamID
- username
- userID
- groupName
- groupID
- role
- email
- avatar
properties:
teamID:
type: integer
username:
type: string
userID:
type: integer
groupName:
type: string
groupID:
type: integer
role:
type: integer
email:
type: string
avatar:
type: string
security:
- token: []
/group/list/:
get:
tags:
- management
summary: get a group list
description: verify token and get a list/all group list
produces:
- application/json
responses:
200:
description: OK
schema:
required:
- groupList
properties:
groupList:
type: array
items:
required:
- groupID
- groupName
- userCount
properties:
groupID:
type: integer
groupName:
type: string
userCount:
type: integer
security:
- token: []
/group/{gid}/manageUser/:
post:
tags:
- management
summary: change group members by list
description: get a list of userID and change it
produces:
- application/json
consumes:
- application/json
parameters:
- in: path
name: gid
description: groupID
required: true
type: integer
- in: body
name: POSTdata
description: userID List
schema:
required:
- userList
properties:
userList:
type: array
items:
required:
- userID
properties:
userID:
type: integer
responses:
200:
description: OK
security:
- token: []
/project/{pid}/userList/:
get:
tags:
- management
summary: get project user list
description: get a list of user by projectID
produces:
- application/json
parameters:
- in: path
name: pid
description: projectID
required: true
type: integer
responses:
200:
description: user list
schema:
required:
- list
- count
properties:
count:
type: integer
list:
type: array
items:
required:
- username
- userID
- avatar
properties:
username:
type: string
userID:
type: integer
avatar:
type: string
security:
- token: []
/user/{uid}/project/list/:
get:
tags:
- management
summary: get a project list
description: verify token and get a list/ if you are admin or superuser, get all projetc list
produces:
- application/json
parameters:
- in: path
name: uid
description: user ID
required: true
type: integer
responses:
200:
description: OK
schema:
required:
- list
- count
- pageMax
- pageNow
- hasNext
properties:
pagewMax:
type: integer
pageNow:
type: integer
hasNext:
type: boolean
count:
type: integer
list:
type: array
items:
required:
- projectID
- projectName
- userCount
- intro
properties:
projectID:
type: integer
projectName:
type: string
userCount:
type: integer
intro:
type: string
security:
- token: []
/user/{uid}/:
delete:
tags:
- management
summary: remove user out of team
description: set role=0 and remove all data to None
consumes:
- application/json
produces:
- application/json
parameters:
- in: path
name: uid
description: user ID
required: true
type: integer
responses:
200:
description: OK
402:
description: Never give up yourself!
security:
- token: []
/user/2bMember/:
post:
tags:
- management
summary: accept a new member
description: receive a user ID
consumes:
- application/json
produces:
- application/json
parameters:
- name: POSTdata
in: body
description: userID
schema:
required:
- userID
properties:
userID:
type: integer
responses:
200:
description: successful!
402:
description: user already be a member
security:
- token: []
/user/admins/:
get:
tags:
- management
summary: get a list of admin
description: verify token and get a list of admin
consumes:
- application/json
produces:
- application/json
responses:
200:
description: OK
schema:
required:
- list
properties:
list:
type: array
items:
required:
- userID
- userName
properties:
userID:
type: integer
userName:
type: string
201:
description: No one is admin
/user/addAdmin/:
post:
tags:
- management
summary: super user add someone on admin list
description: verify token and add a FK
consumes:
- application/json
produces:
- application/json
parameters:
- name: POSTdata
in: body
description: who are the lucky dog
schema:
required:
- luckydog
properties:
luckydog:
type: integer
responses:
200:
description: luckydog be a admin
security:
- token: []
/user/delAdmin/:
post:
tags:
- management
summary: super user delete someone on admin list
description: verify token and delete a FK
consumes:
- application/json
produces:
- application/json
parameters:
- name: POSTdata
in: body
description: who is the unlucky dog
schema:
required:
- unluckydog
properties:
luckydog:
type: integer
responses:
200:
description: successful!
security:
- token: []
/user/{uid}/managePro/:
post:
tags:
- management
summary: project management
description: get a list of project,and change user's project list
consumes:
- application/json
produces:
- application/json
parameters:
- in: path
name: uid
description: user ID
required: true
type: integer
- name: POSTdata
in: body
description: data to change projects
schema:
required:
- projectList
properties:
projectList:
type: array
items:
required:
- projectID
properties:
projectID:
type: integer
responses:
200:
description: change it successfully
security:
- token: []
/user/{uid}/manageGroup/:
post:
tags:
- management
summary: superuser change member's group
description: just receive a groupID
consumes:
- application/json
produces:
- application/json
parameters:
- in: path
name: uid
description: user ID
required: true
type: integer
- name: POSTdata
in: body
description: groupID
schema:
required:
- groupID
properties:
groupID:
type: integer
responses:
200:
description: OK
security:
- token: []
/user/{uid}/setRole/:
post:
tags:
- management
summary: superuser set user's role
description: receive a number and change it
consumes:
- application/json
produces:
- application/json
parameters:
- in: path
name: uid
description: user ID
required: true
type: integer
- name: POSTdata
in: body
description: role
schema:
required:
- role
properties:
role:
type: integer
responses:
200:
description: OK
security:
- token: []
/user/{uid}/setting/:
get:
tags:
- management
summary: get one's informattion
description: get information by one's id
consumes:
- application/json
produces:
- application/json
parameters:
- in: path
name: uid
description: userID
required: true
type: integer
responses:
200:
description: OK
schema:
required:
- name
- email
- tel
- avatar
- email_service
- message
properties:
name:
type: string
email:
type: string
tel:
type: string
avatar:
type: string
email_service:
type: boolean
message:
type: boolean
security:
- token: []
post:
tags:
- management
summary: user's setting
description: setting about message and email service
consumes:
- application/json
produces:
- application/json
parameters:
- in: path
name: uid
description: user ID
required: true
type: integer
- name: POSTdata
in: body
description: message and email
schema:
required:
- username
- address
- tel
- message
- email
properties:
username:
type: string
address:
type: string
tel:
type: string
message:
type: boolean
email:
type: boolean
responses:
200:
description: OK
401:
description: this is others personal setting!
402:
description: please ger yourself information!/username can't be a empty string
409:
description: Username has existed
security:
- token: []
/user/uploadAvatar/:
post:
tags:
- management
summary: upload a image and get a url,and set new url
description: receive a image upload it to qiniu, and get a url,set it on database and return it
consumes:
- application/json
produces:
- application/json
parameters:
- name: image
in: body
description: a image file
required: true
schema:
type: string
responses:
200:
description: OK
schema:
required:
- url
properties:
url:
type: string
403:
description: upload failed
/team/applyList/:
get:
tags:
- management
summary: get a list of who want join the "club"
description: receive a token, verify it and return list
consumes:
- application/json
produces:
- application/json
responses:
200:
description: OK
schema:
required:
- list
properties:
list:
type: array
items:
required:
- userID
- userName
- userEmail
properties:
userID:
type: integer
userName:
type: string
userEmail:
type: string
201:
description: Application all done!
/team/apply/{uid}/:
delete:
tags:
- management
summary: refuse application to join team
description: receive a id and delete it
consumes:
- application/json
produces:
- application/json
parameters:
- in: path
name: uid
description: userID
required: true
type: integer
responses:
200:
description: Ok
403:
description: other admin already refuse this one
/team/invite/:
get:
tags:
- management
summary: Get a hash_id of team id
description: get the request user's team id, and hash it, return url to prase
consumes:
- application/json
produces:
- application/json
responses:
200:
description: OK
schema:
required:
- invite_url
- hash_id
properties:
invite_url:
type: string
hash_id:
type: string
/team/invite/{hash_id}/:
get:
tags:
- management
summary: resolve hash_id and get the team id
description: receive a string and unhash it, return it
consumes:
- application/json
produces:
- application/json
parameters:
- in: path
name: hash_id
type: string
description: hash_id of team
required: true
responses:
200:
description: OK
schema:
required:
- teamID
properties:
teamID:
type: integer
402:
description: resolve failed
/feed/list/{page}/:
get:
tags:
- feed
summary: API for getting a list of feeds
description: Use mq's receive service to get feed from different queue.
produces:
- application/json
parameters:
- in: path
name: page
description: page to get
required: true
type: string
responses:
200:
description: feed list
schema:
required:
- dataList
- hasNext
- pageMax
- pageNum
- rowsNum
properties:
dataList:
type: array
items:
required:
- user
- acton
- source
- time
- split
properties:
user:
type: array
items:
required:
- name
- id
- avatar_url
properties:
name:
type: string
id:
type: integer
avatar_url:
type: string
acton:
type: string
source:
type: array
items:
required:
- kind_id
- object_id
- project_id
- name
properties:
kind_id:
type: integer
object_id:
type: integer
project_id:
type: integer
description: 没有为-1
name:
type: string
time:
type: string
description: "yyyy-mm-dd-HH:MM:SS"
split:
type: boolean
hasNext:
type: boolean
pageMax:
type: integer
pageNum:
type: integer
rowsNum:
type: integer
401:
description: none
404:
description: none
security:
- token: []
/feed/list/{userid}/personal/{page}/:
get: