2022-09-27 17:59:05 +08:00
|
|
|
definitions:
|
|
|
|
entity.AdminSetAnswerStatusRequest:
|
|
|
|
properties:
|
|
|
|
answer_id:
|
|
|
|
type: string
|
|
|
|
status:
|
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
handler.RespBody:
|
|
|
|
properties:
|
|
|
|
code:
|
|
|
|
description: http code
|
|
|
|
type: integer
|
|
|
|
data:
|
|
|
|
description: response data
|
|
|
|
msg:
|
|
|
|
description: response message
|
|
|
|
type: string
|
|
|
|
reason:
|
|
|
|
description: reason key
|
|
|
|
type: string
|
|
|
|
type: object
|
2022-11-11 15:13:23 +08:00
|
|
|
install.CheckConfigFileResp:
|
|
|
|
properties:
|
|
|
|
config_file_exist:
|
|
|
|
type: boolean
|
|
|
|
db_connection_success:
|
|
|
|
type: boolean
|
|
|
|
db_table_exist:
|
|
|
|
type: boolean
|
|
|
|
type: object
|
|
|
|
install.CheckDatabaseReq:
|
|
|
|
properties:
|
|
|
|
db_file:
|
|
|
|
type: string
|
|
|
|
db_host:
|
|
|
|
type: string
|
|
|
|
db_name:
|
|
|
|
type: string
|
|
|
|
db_password:
|
|
|
|
type: string
|
|
|
|
db_type:
|
|
|
|
enum:
|
|
|
|
- postgres
|
|
|
|
- sqlite3
|
|
|
|
- mysql
|
|
|
|
type: string
|
|
|
|
db_username:
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- db_type
|
|
|
|
type: object
|
|
|
|
install.InitBaseInfoReq:
|
|
|
|
properties:
|
|
|
|
contact_email:
|
|
|
|
maxLength: 500
|
|
|
|
type: string
|
|
|
|
email:
|
|
|
|
maxLength: 500
|
|
|
|
type: string
|
|
|
|
lang:
|
|
|
|
maxLength: 30
|
|
|
|
type: string
|
|
|
|
name:
|
|
|
|
maxLength: 30
|
|
|
|
type: string
|
|
|
|
password:
|
|
|
|
maxLength: 32
|
|
|
|
minLength: 8
|
|
|
|
type: string
|
|
|
|
site_name:
|
|
|
|
maxLength: 30
|
|
|
|
type: string
|
|
|
|
site_url:
|
|
|
|
maxLength: 512
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- contact_email
|
|
|
|
- email
|
|
|
|
- lang
|
|
|
|
- name
|
|
|
|
- password
|
|
|
|
- site_name
|
|
|
|
- site_url
|
|
|
|
type: object
|
2022-09-27 17:59:05 +08:00
|
|
|
pager.PageModel:
|
|
|
|
properties:
|
|
|
|
count:
|
|
|
|
type: integer
|
|
|
|
list: {}
|
|
|
|
type: object
|
2022-11-23 11:10:15 +08:00
|
|
|
schema.ActObjectInfo:
|
|
|
|
properties:
|
|
|
|
answer_id:
|
|
|
|
type: string
|
|
|
|
object_type:
|
|
|
|
type: string
|
|
|
|
question_id:
|
|
|
|
type: string
|
|
|
|
title:
|
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.ActObjectTimeline:
|
|
|
|
properties:
|
|
|
|
activity_id:
|
|
|
|
type: string
|
|
|
|
activity_type:
|
|
|
|
type: string
|
|
|
|
cancelled:
|
|
|
|
type: boolean
|
|
|
|
cancelled_at:
|
|
|
|
type: integer
|
|
|
|
comment:
|
|
|
|
type: string
|
|
|
|
created_at:
|
|
|
|
type: integer
|
|
|
|
object_id:
|
|
|
|
type: string
|
|
|
|
object_type:
|
|
|
|
type: string
|
|
|
|
revision_id:
|
|
|
|
type: string
|
|
|
|
user_display_name:
|
|
|
|
type: string
|
|
|
|
username:
|
|
|
|
type: string
|
|
|
|
type: object
|
2022-09-27 17:59:05 +08:00
|
|
|
schema.ActionRecordResp:
|
|
|
|
properties:
|
|
|
|
captcha_id:
|
|
|
|
type: string
|
|
|
|
captcha_img:
|
|
|
|
type: string
|
|
|
|
verify:
|
|
|
|
type: boolean
|
|
|
|
type: object
|
|
|
|
schema.AddCommentReq:
|
|
|
|
properties:
|
|
|
|
mention_username_list:
|
|
|
|
description: '@ user id list'
|
|
|
|
items:
|
|
|
|
type: string
|
|
|
|
type: array
|
|
|
|
object_id:
|
|
|
|
description: object id
|
|
|
|
type: string
|
|
|
|
original_text:
|
|
|
|
description: original comment content
|
|
|
|
type: string
|
|
|
|
parsed_text:
|
|
|
|
description: parsed comment content
|
|
|
|
type: string
|
|
|
|
reply_comment_id:
|
|
|
|
description: reply comment id
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- object_id
|
|
|
|
- original_text
|
|
|
|
- parsed_text
|
|
|
|
type: object
|
|
|
|
schema.AddReportReq:
|
|
|
|
properties:
|
|
|
|
content:
|
|
|
|
description: report content
|
|
|
|
maxLength: 500
|
|
|
|
type: string
|
|
|
|
object_id:
|
|
|
|
description: object id
|
|
|
|
maxLength: 20
|
|
|
|
type: string
|
|
|
|
report_type:
|
|
|
|
description: report type
|
|
|
|
type: integer
|
|
|
|
required:
|
|
|
|
- object_id
|
|
|
|
- report_type
|
|
|
|
type: object
|
|
|
|
schema.AdminSetQuestionStatusRequest:
|
|
|
|
properties:
|
|
|
|
question_id:
|
|
|
|
type: string
|
|
|
|
status:
|
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.AnswerAddReq:
|
|
|
|
properties:
|
|
|
|
content:
|
|
|
|
description: content
|
|
|
|
type: string
|
|
|
|
html:
|
2022-10-21 12:00:50 +08:00
|
|
|
description: html
|
2022-09-27 17:59:05 +08:00
|
|
|
type: string
|
|
|
|
question_id:
|
|
|
|
description: question_id
|
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.AnswerAdoptedReq:
|
|
|
|
properties:
|
|
|
|
answer_id:
|
|
|
|
type: string
|
|
|
|
question_id:
|
|
|
|
description: question_id
|
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.AnswerList:
|
|
|
|
properties:
|
|
|
|
order:
|
|
|
|
description: 1 Default 2 time
|
|
|
|
type: string
|
|
|
|
page:
|
|
|
|
description: Query number of pages
|
|
|
|
type: integer
|
|
|
|
page_size:
|
|
|
|
description: Search page size
|
|
|
|
type: integer
|
|
|
|
question_id:
|
|
|
|
description: question_id
|
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.AnswerUpdateReq:
|
|
|
|
properties:
|
|
|
|
content:
|
|
|
|
description: content
|
|
|
|
type: string
|
|
|
|
edit_summary:
|
|
|
|
description: edit_summary
|
|
|
|
type: string
|
|
|
|
html:
|
2022-10-21 12:00:50 +08:00
|
|
|
description: html
|
2022-09-27 17:59:05 +08:00
|
|
|
type: string
|
|
|
|
id:
|
|
|
|
description: id
|
|
|
|
type: string
|
|
|
|
question_id:
|
|
|
|
description: question_id
|
|
|
|
type: string
|
|
|
|
title:
|
|
|
|
description: title
|
|
|
|
type: string
|
|
|
|
type: object
|
2022-10-28 14:53:44 +08:00
|
|
|
schema.AvatarInfo:
|
|
|
|
properties:
|
|
|
|
custom:
|
|
|
|
maxLength: 200
|
|
|
|
type: string
|
|
|
|
gravatar:
|
|
|
|
maxLength: 200
|
|
|
|
type: string
|
|
|
|
type:
|
|
|
|
maxLength: 100
|
|
|
|
type: string
|
|
|
|
type: object
|
2022-09-27 17:59:05 +08:00
|
|
|
schema.CloseQuestionReq:
|
|
|
|
properties:
|
|
|
|
close_msg:
|
|
|
|
description: close_type
|
|
|
|
type: string
|
|
|
|
close_type:
|
|
|
|
description: close_type
|
|
|
|
type: integer
|
|
|
|
id:
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- id
|
|
|
|
type: object
|
|
|
|
schema.CollectionSwitchReq:
|
|
|
|
properties:
|
|
|
|
group_id:
|
|
|
|
description: user collection group TagID
|
|
|
|
type: string
|
|
|
|
object_id:
|
|
|
|
description: object TagID
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- group_id
|
|
|
|
- object_id
|
|
|
|
type: object
|
|
|
|
schema.CollectionSwitchResp:
|
|
|
|
properties:
|
|
|
|
object_collection_count:
|
|
|
|
type: string
|
|
|
|
object_id:
|
|
|
|
type: string
|
|
|
|
switch:
|
|
|
|
type: boolean
|
|
|
|
type: object
|
|
|
|
schema.FollowReq:
|
|
|
|
properties:
|
|
|
|
is_cancel:
|
|
|
|
description: is cancel
|
|
|
|
type: boolean
|
|
|
|
object_id:
|
|
|
|
description: object id
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- object_id
|
|
|
|
type: object
|
|
|
|
schema.FollowResp:
|
|
|
|
properties:
|
|
|
|
follows:
|
|
|
|
description: the followers of object
|
|
|
|
type: integer
|
|
|
|
is_followed:
|
|
|
|
description: if user is followed object will be true,otherwise false
|
|
|
|
type: boolean
|
|
|
|
type: object
|
|
|
|
schema.GetCommentPersonalWithPageResp:
|
|
|
|
properties:
|
|
|
|
answer_id:
|
|
|
|
description: answer id
|
|
|
|
type: string
|
|
|
|
comment_id:
|
|
|
|
description: comment id
|
|
|
|
type: string
|
|
|
|
content:
|
|
|
|
description: content
|
|
|
|
type: string
|
|
|
|
created_at:
|
|
|
|
description: create time
|
|
|
|
type: integer
|
|
|
|
object_id:
|
|
|
|
description: object id
|
|
|
|
type: string
|
|
|
|
object_type:
|
|
|
|
description: object type
|
|
|
|
enum:
|
|
|
|
- question
|
|
|
|
- answer
|
|
|
|
- tag
|
|
|
|
- comment
|
|
|
|
type: string
|
|
|
|
question_id:
|
|
|
|
description: question id
|
|
|
|
type: string
|
|
|
|
title:
|
|
|
|
description: title
|
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.GetCommentResp:
|
|
|
|
properties:
|
|
|
|
comment_id:
|
|
|
|
description: comment id
|
|
|
|
type: string
|
|
|
|
created_at:
|
|
|
|
description: create time
|
|
|
|
type: integer
|
|
|
|
is_vote:
|
|
|
|
description: current user if already vote this comment
|
|
|
|
type: boolean
|
|
|
|
member_actions:
|
|
|
|
description: MemberActions
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/schema.PermissionMemberAction'
|
|
|
|
type: array
|
|
|
|
object_id:
|
|
|
|
description: object id
|
|
|
|
type: string
|
|
|
|
original_text:
|
|
|
|
description: original comment content
|
|
|
|
type: string
|
|
|
|
parsed_text:
|
|
|
|
description: parsed comment content
|
|
|
|
type: string
|
|
|
|
reply_comment_id:
|
|
|
|
description: reply comment id
|
|
|
|
type: string
|
|
|
|
reply_user_display_name:
|
|
|
|
description: reply user display name
|
|
|
|
type: string
|
|
|
|
reply_user_id:
|
|
|
|
description: reply user id
|
|
|
|
type: string
|
2022-09-29 15:27:56 +08:00
|
|
|
reply_user_status:
|
|
|
|
description: reply user status
|
|
|
|
type: string
|
2022-09-27 17:59:05 +08:00
|
|
|
reply_username:
|
|
|
|
description: reply user username
|
|
|
|
type: string
|
|
|
|
user_avatar:
|
|
|
|
description: user avatar
|
|
|
|
type: string
|
|
|
|
user_display_name:
|
|
|
|
description: user display name
|
|
|
|
type: string
|
|
|
|
user_id:
|
|
|
|
description: user id
|
|
|
|
type: string
|
2022-09-29 15:27:56 +08:00
|
|
|
user_status:
|
|
|
|
description: user status
|
|
|
|
type: string
|
2022-09-27 17:59:05 +08:00
|
|
|
username:
|
|
|
|
description: username
|
|
|
|
type: string
|
|
|
|
vote_count:
|
|
|
|
description: user vote amount
|
|
|
|
type: integer
|
|
|
|
type: object
|
|
|
|
schema.GetFollowingTagsResp:
|
|
|
|
properties:
|
|
|
|
display_name:
|
|
|
|
description: display name
|
|
|
|
type: string
|
|
|
|
main_tag_slug_name:
|
|
|
|
description: if main tag slug name is not empty, this tag is synonymous with
|
|
|
|
the main tag
|
|
|
|
type: string
|
2022-11-16 15:28:23 +08:00
|
|
|
recommend:
|
|
|
|
type: boolean
|
|
|
|
reserved:
|
|
|
|
type: boolean
|
2022-09-27 17:59:05 +08:00
|
|
|
slug_name:
|
|
|
|
description: slug name
|
|
|
|
type: string
|
|
|
|
tag_id:
|
|
|
|
description: tag id
|
|
|
|
type: string
|
|
|
|
type: object
|
2022-11-23 11:10:15 +08:00
|
|
|
schema.GetObjectTimelineResp:
|
|
|
|
properties:
|
|
|
|
object_info:
|
|
|
|
$ref: '#/definitions/schema.ActObjectInfo'
|
|
|
|
timeline:
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/schema.ActObjectTimeline'
|
|
|
|
type: array
|
|
|
|
type: object
|
2022-09-27 17:59:05 +08:00
|
|
|
schema.GetOtherUserInfoByUsernameResp:
|
|
|
|
properties:
|
|
|
|
answer_count:
|
|
|
|
description: answer count
|
|
|
|
type: integer
|
|
|
|
avatar:
|
|
|
|
description: avatar
|
|
|
|
type: string
|
|
|
|
bio:
|
|
|
|
description: bio markdown
|
|
|
|
type: string
|
|
|
|
bio_html:
|
|
|
|
description: bio html
|
|
|
|
type: string
|
|
|
|
created_at:
|
|
|
|
description: create time
|
|
|
|
type: integer
|
|
|
|
display_name:
|
|
|
|
description: display name
|
|
|
|
type: string
|
|
|
|
follow_count:
|
|
|
|
description: |-
|
|
|
|
email
|
|
|
|
follow count
|
|
|
|
type: integer
|
|
|
|
id:
|
|
|
|
description: user id
|
|
|
|
type: string
|
|
|
|
ip_info:
|
|
|
|
description: ip info
|
|
|
|
type: string
|
|
|
|
is_admin:
|
|
|
|
description: is admin
|
|
|
|
type: boolean
|
|
|
|
last_login_date:
|
|
|
|
description: last login date
|
|
|
|
type: integer
|
|
|
|
location:
|
|
|
|
description: location
|
|
|
|
type: string
|
|
|
|
mobile:
|
|
|
|
description: mobile
|
|
|
|
type: string
|
|
|
|
question_count:
|
|
|
|
description: question count
|
|
|
|
type: integer
|
|
|
|
rank:
|
|
|
|
description: rank
|
|
|
|
type: integer
|
|
|
|
status:
|
|
|
|
type: string
|
|
|
|
status_msg:
|
|
|
|
type: string
|
|
|
|
username:
|
|
|
|
description: username
|
|
|
|
type: string
|
|
|
|
website:
|
|
|
|
description: website
|
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.GetOtherUserInfoResp:
|
|
|
|
properties:
|
|
|
|
has:
|
|
|
|
type: boolean
|
|
|
|
info:
|
|
|
|
$ref: '#/definitions/schema.GetOtherUserInfoByUsernameResp'
|
|
|
|
type: object
|
|
|
|
schema.GetRankPersonalWithPageResp:
|
|
|
|
properties:
|
|
|
|
answer_id:
|
|
|
|
description: answer id
|
|
|
|
type: string
|
|
|
|
content:
|
|
|
|
description: content
|
|
|
|
type: string
|
|
|
|
created_at:
|
|
|
|
description: create time
|
|
|
|
type: integer
|
|
|
|
object_id:
|
|
|
|
description: object id
|
|
|
|
type: string
|
|
|
|
object_type:
|
|
|
|
description: object type
|
|
|
|
enum:
|
|
|
|
- question
|
|
|
|
- answer
|
|
|
|
- tag
|
|
|
|
- comment
|
|
|
|
type: string
|
|
|
|
question_id:
|
|
|
|
description: question id
|
|
|
|
type: string
|
|
|
|
rank_type:
|
|
|
|
description: rank type
|
|
|
|
type: string
|
|
|
|
reputation:
|
|
|
|
description: reputation
|
|
|
|
type: integer
|
|
|
|
title:
|
|
|
|
description: title
|
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.GetReportTypeResp:
|
|
|
|
properties:
|
|
|
|
content_type:
|
|
|
|
description: content type
|
|
|
|
type: string
|
|
|
|
description:
|
|
|
|
description: report description
|
|
|
|
type: string
|
|
|
|
have_content:
|
|
|
|
description: is have content
|
|
|
|
type: boolean
|
|
|
|
name:
|
|
|
|
description: report name
|
|
|
|
type: string
|
|
|
|
source:
|
|
|
|
description: report source
|
|
|
|
type: string
|
|
|
|
type:
|
|
|
|
description: report type
|
|
|
|
type: integer
|
|
|
|
type: object
|
|
|
|
schema.GetRevisionResp:
|
|
|
|
properties:
|
|
|
|
content:
|
|
|
|
description: content parsed
|
|
|
|
create_at:
|
|
|
|
type: integer
|
|
|
|
id:
|
|
|
|
description: id
|
|
|
|
type: string
|
|
|
|
object_id:
|
|
|
|
description: object id
|
|
|
|
type: string
|
|
|
|
reason:
|
|
|
|
type: string
|
|
|
|
status:
|
|
|
|
description: 'revision status(normal: 1; delete 2)'
|
|
|
|
type: integer
|
|
|
|
title:
|
|
|
|
description: title
|
|
|
|
type: string
|
|
|
|
use_id:
|
|
|
|
description: user id
|
|
|
|
type: string
|
|
|
|
user_info:
|
|
|
|
$ref: '#/definitions/schema.UserBasicInfo'
|
|
|
|
type: object
|
2022-10-21 10:26:32 +08:00
|
|
|
schema.GetSMTPConfigResp:
|
|
|
|
properties:
|
|
|
|
encryption:
|
2022-10-21 17:04:41 +08:00
|
|
|
description: '"" SSL'
|
2022-10-21 10:26:32 +08:00
|
|
|
type: string
|
2022-10-21 17:04:41 +08:00
|
|
|
from_email:
|
2022-10-21 10:26:32 +08:00
|
|
|
type: string
|
|
|
|
from_name:
|
|
|
|
type: string
|
2022-10-21 17:04:41 +08:00
|
|
|
smtp_authentication:
|
|
|
|
type: boolean
|
2022-10-21 10:26:32 +08:00
|
|
|
smtp_host:
|
|
|
|
type: string
|
|
|
|
smtp_password:
|
|
|
|
type: string
|
|
|
|
smtp_port:
|
|
|
|
type: integer
|
|
|
|
smtp_username:
|
|
|
|
type: string
|
|
|
|
type: object
|
2022-11-16 15:31:24 +08:00
|
|
|
schema.GetSiteLegalInfoResp:
|
|
|
|
properties:
|
|
|
|
privacy_policy_original_text:
|
|
|
|
type: string
|
|
|
|
privacy_policy_parsed_text:
|
|
|
|
type: string
|
|
|
|
terms_of_service_original_text:
|
|
|
|
type: string
|
|
|
|
terms_of_service_parsed_text:
|
|
|
|
type: string
|
|
|
|
type: object
|
2022-09-27 17:59:05 +08:00
|
|
|
schema.GetTagPageResp:
|
|
|
|
properties:
|
|
|
|
created_at:
|
|
|
|
description: created time
|
|
|
|
type: integer
|
|
|
|
display_name:
|
|
|
|
description: display_name
|
|
|
|
type: string
|
|
|
|
excerpt:
|
|
|
|
description: excerpt
|
|
|
|
type: string
|
|
|
|
follow_count:
|
|
|
|
description: follower amount
|
|
|
|
type: integer
|
|
|
|
is_follower:
|
|
|
|
description: is follower
|
|
|
|
type: boolean
|
|
|
|
original_text:
|
|
|
|
description: original text
|
|
|
|
type: string
|
|
|
|
parsed_text:
|
|
|
|
description: parsed_text
|
|
|
|
type: string
|
|
|
|
question_count:
|
|
|
|
description: question amount
|
|
|
|
type: integer
|
2022-11-16 15:28:23 +08:00
|
|
|
recommend:
|
|
|
|
type: boolean
|
|
|
|
reserved:
|
|
|
|
type: boolean
|
2022-09-27 17:59:05 +08:00
|
|
|
slug_name:
|
|
|
|
description: slug_name
|
|
|
|
type: string
|
|
|
|
tag_id:
|
|
|
|
description: tag_id
|
|
|
|
type: string
|
|
|
|
updated_at:
|
|
|
|
description: updated time
|
|
|
|
type: integer
|
|
|
|
type: object
|
|
|
|
schema.GetTagResp:
|
|
|
|
properties:
|
|
|
|
created_at:
|
|
|
|
description: created time
|
|
|
|
type: integer
|
|
|
|
display_name:
|
|
|
|
description: display name
|
|
|
|
type: string
|
|
|
|
excerpt:
|
|
|
|
description: excerpt
|
|
|
|
type: string
|
|
|
|
follow_count:
|
|
|
|
description: follower amount
|
|
|
|
type: integer
|
|
|
|
is_follower:
|
|
|
|
description: is follower
|
|
|
|
type: boolean
|
|
|
|
main_tag_slug_name:
|
|
|
|
description: if main tag slug name is not empty, this tag is synonymous with
|
|
|
|
the main tag
|
|
|
|
type: string
|
|
|
|
member_actions:
|
|
|
|
description: MemberActions
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/schema.PermissionMemberAction'
|
|
|
|
type: array
|
|
|
|
original_text:
|
|
|
|
description: original text
|
|
|
|
type: string
|
|
|
|
parsed_text:
|
|
|
|
description: parsed text
|
|
|
|
type: string
|
|
|
|
question_count:
|
|
|
|
description: question amount
|
|
|
|
type: integer
|
2022-11-16 15:28:23 +08:00
|
|
|
recommend:
|
|
|
|
type: boolean
|
|
|
|
reserved:
|
|
|
|
type: boolean
|
2022-09-27 17:59:05 +08:00
|
|
|
slug_name:
|
|
|
|
description: slug name
|
|
|
|
type: string
|
|
|
|
tag_id:
|
|
|
|
description: tag id
|
|
|
|
type: string
|
|
|
|
updated_at:
|
|
|
|
description: updated time
|
|
|
|
type: integer
|
|
|
|
type: object
|
|
|
|
schema.GetTagSynonymsResp:
|
|
|
|
properties:
|
|
|
|
display_name:
|
|
|
|
description: display name
|
|
|
|
type: string
|
|
|
|
main_tag_slug_name:
|
|
|
|
description: if main tag slug name is not empty, this tag is synonymous with
|
|
|
|
the main tag
|
|
|
|
type: string
|
|
|
|
slug_name:
|
|
|
|
description: slug name
|
|
|
|
type: string
|
|
|
|
tag_id:
|
|
|
|
description: tag id
|
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.GetUserPageResp:
|
|
|
|
properties:
|
|
|
|
avatar:
|
|
|
|
description: avatar
|
|
|
|
type: string
|
|
|
|
created_at:
|
|
|
|
description: create time
|
|
|
|
type: integer
|
|
|
|
deleted_at:
|
|
|
|
description: delete time
|
|
|
|
type: integer
|
|
|
|
display_name:
|
|
|
|
description: display name
|
|
|
|
type: string
|
|
|
|
e_mail:
|
|
|
|
description: email
|
|
|
|
type: string
|
|
|
|
rank:
|
|
|
|
description: rank
|
|
|
|
type: integer
|
|
|
|
status:
|
|
|
|
description: user status(normal,suspended,deleted,inactive)
|
|
|
|
type: string
|
|
|
|
suspended_at:
|
|
|
|
description: suspended time
|
|
|
|
type: integer
|
|
|
|
user_id:
|
|
|
|
description: user id
|
|
|
|
type: string
|
|
|
|
username:
|
|
|
|
description: username
|
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.GetUserResp:
|
|
|
|
properties:
|
|
|
|
access_token:
|
|
|
|
description: access token
|
|
|
|
type: string
|
|
|
|
answer_count:
|
|
|
|
description: answer count
|
|
|
|
type: integer
|
|
|
|
authority_group:
|
|
|
|
description: authority group
|
|
|
|
type: integer
|
|
|
|
avatar:
|
|
|
|
description: avatar
|
|
|
|
type: string
|
|
|
|
bio:
|
|
|
|
description: bio markdown
|
|
|
|
type: string
|
|
|
|
bio_html:
|
|
|
|
description: bio html
|
|
|
|
type: string
|
|
|
|
created_at:
|
|
|
|
description: create time
|
|
|
|
type: integer
|
|
|
|
display_name:
|
|
|
|
description: display name
|
|
|
|
type: string
|
|
|
|
e_mail:
|
|
|
|
description: email
|
|
|
|
type: string
|
|
|
|
follow_count:
|
|
|
|
description: follow count
|
|
|
|
type: integer
|
|
|
|
id:
|
|
|
|
description: user id
|
|
|
|
type: string
|
|
|
|
ip_info:
|
|
|
|
description: ip info
|
|
|
|
type: string
|
|
|
|
is_admin:
|
|
|
|
description: is admin
|
|
|
|
type: boolean
|
2022-11-11 15:13:23 +08:00
|
|
|
language:
|
|
|
|
description: language
|
|
|
|
type: string
|
2022-09-27 17:59:05 +08:00
|
|
|
last_login_date:
|
|
|
|
description: last login date
|
|
|
|
type: integer
|
|
|
|
location:
|
|
|
|
description: location
|
|
|
|
type: string
|
|
|
|
mail_status:
|
|
|
|
description: mail status(1 pass 2 to be verified)
|
|
|
|
type: integer
|
|
|
|
mobile:
|
|
|
|
description: mobile
|
|
|
|
type: string
|
|
|
|
notice_status:
|
|
|
|
description: notice status(1 on 2off)
|
|
|
|
type: integer
|
|
|
|
question_count:
|
|
|
|
description: question count
|
|
|
|
type: integer
|
|
|
|
rank:
|
|
|
|
description: rank
|
|
|
|
type: integer
|
|
|
|
status:
|
|
|
|
description: user status
|
|
|
|
type: string
|
|
|
|
username:
|
|
|
|
description: username
|
|
|
|
type: string
|
|
|
|
website:
|
|
|
|
description: website
|
|
|
|
type: string
|
|
|
|
type: object
|
2022-10-28 15:46:05 +08:00
|
|
|
schema.GetUserToSetShowResp:
|
|
|
|
properties:
|
|
|
|
access_token:
|
|
|
|
description: access token
|
|
|
|
type: string
|
|
|
|
answer_count:
|
|
|
|
description: answer count
|
|
|
|
type: integer
|
|
|
|
authority_group:
|
|
|
|
description: authority group
|
|
|
|
type: integer
|
|
|
|
avatar:
|
|
|
|
$ref: '#/definitions/schema.AvatarInfo'
|
|
|
|
bio:
|
|
|
|
description: bio markdown
|
|
|
|
type: string
|
|
|
|
bio_html:
|
|
|
|
description: bio html
|
|
|
|
type: string
|
|
|
|
created_at:
|
|
|
|
description: create time
|
|
|
|
type: integer
|
|
|
|
display_name:
|
|
|
|
description: display name
|
|
|
|
type: string
|
|
|
|
e_mail:
|
|
|
|
description: email
|
|
|
|
type: string
|
|
|
|
follow_count:
|
|
|
|
description: follow count
|
|
|
|
type: integer
|
|
|
|
id:
|
|
|
|
description: user id
|
|
|
|
type: string
|
|
|
|
ip_info:
|
|
|
|
description: ip info
|
|
|
|
type: string
|
|
|
|
is_admin:
|
|
|
|
description: is admin
|
|
|
|
type: boolean
|
2022-11-11 15:13:23 +08:00
|
|
|
language:
|
|
|
|
description: language
|
|
|
|
type: string
|
2022-10-28 15:46:05 +08:00
|
|
|
last_login_date:
|
|
|
|
description: last login date
|
|
|
|
type: integer
|
|
|
|
location:
|
|
|
|
description: location
|
|
|
|
type: string
|
|
|
|
mail_status:
|
|
|
|
description: mail status(1 pass 2 to be verified)
|
|
|
|
type: integer
|
|
|
|
mobile:
|
|
|
|
description: mobile
|
|
|
|
type: string
|
|
|
|
notice_status:
|
|
|
|
description: notice status(1 on 2off)
|
|
|
|
type: integer
|
|
|
|
question_count:
|
|
|
|
description: question count
|
|
|
|
type: integer
|
|
|
|
rank:
|
|
|
|
description: rank
|
|
|
|
type: integer
|
|
|
|
status:
|
|
|
|
description: user status
|
|
|
|
type: string
|
|
|
|
username:
|
|
|
|
description: username
|
|
|
|
type: string
|
|
|
|
website:
|
|
|
|
description: website
|
|
|
|
type: string
|
|
|
|
type: object
|
2022-09-27 17:59:05 +08:00
|
|
|
schema.GetVoteWithPageResp:
|
|
|
|
properties:
|
|
|
|
answer_id:
|
|
|
|
description: answer id
|
|
|
|
type: string
|
|
|
|
content:
|
|
|
|
description: content
|
|
|
|
type: string
|
|
|
|
created_at:
|
|
|
|
description: create time
|
|
|
|
type: integer
|
|
|
|
object_id:
|
|
|
|
description: object id
|
|
|
|
type: string
|
|
|
|
object_type:
|
|
|
|
description: object type
|
|
|
|
enum:
|
|
|
|
- question
|
|
|
|
- answer
|
|
|
|
- tag
|
|
|
|
- comment
|
|
|
|
type: string
|
|
|
|
question_id:
|
|
|
|
description: question id
|
|
|
|
type: string
|
|
|
|
title:
|
|
|
|
description: title
|
|
|
|
type: string
|
|
|
|
vote_type:
|
|
|
|
description: vote type
|
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.NotificationClearIDRequest:
|
|
|
|
properties:
|
|
|
|
id:
|
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.NotificationClearRequest:
|
|
|
|
properties:
|
|
|
|
type:
|
|
|
|
description: inbox achievement
|
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.PermissionMemberAction:
|
|
|
|
properties:
|
|
|
|
action:
|
|
|
|
type: string
|
|
|
|
name:
|
|
|
|
type: string
|
|
|
|
type:
|
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.QuestionAdd:
|
|
|
|
properties:
|
|
|
|
content:
|
|
|
|
description: content
|
|
|
|
maxLength: 65535
|
|
|
|
minLength: 6
|
|
|
|
type: string
|
|
|
|
html:
|
|
|
|
description: html
|
|
|
|
maxLength: 65535
|
|
|
|
minLength: 6
|
|
|
|
type: string
|
|
|
|
tags:
|
|
|
|
description: tags
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/schema.TagItem'
|
|
|
|
type: array
|
|
|
|
title:
|
|
|
|
description: question title
|
2022-09-30 10:22:41 +08:00
|
|
|
maxLength: 150
|
2022-09-27 17:59:05 +08:00
|
|
|
minLength: 6
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- content
|
|
|
|
- html
|
|
|
|
- tags
|
|
|
|
- title
|
|
|
|
type: object
|
|
|
|
schema.QuestionSearch:
|
|
|
|
properties:
|
|
|
|
order:
|
|
|
|
description: Search order by
|
|
|
|
type: string
|
|
|
|
page:
|
|
|
|
description: Query number of pages
|
|
|
|
type: integer
|
|
|
|
page_size:
|
|
|
|
description: Search page size
|
|
|
|
type: integer
|
2022-10-27 10:41:57 +08:00
|
|
|
tag:
|
2022-11-01 15:52:38 +08:00
|
|
|
description: Tags []string `json:"tags" form:"tags"` // Search
|
2022-10-27 10:41:57 +08:00
|
|
|
tag
|
|
|
|
type: string
|
2022-09-27 17:59:05 +08:00
|
|
|
username:
|
|
|
|
description: Search username
|
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.QuestionUpdate:
|
|
|
|
properties:
|
|
|
|
content:
|
|
|
|
description: content
|
|
|
|
maxLength: 65535
|
|
|
|
minLength: 6
|
|
|
|
type: string
|
|
|
|
edit_summary:
|
|
|
|
description: edit summary
|
|
|
|
type: string
|
|
|
|
html:
|
|
|
|
description: html
|
|
|
|
maxLength: 65535
|
|
|
|
minLength: 6
|
|
|
|
type: string
|
|
|
|
id:
|
|
|
|
description: question id
|
|
|
|
type: string
|
|
|
|
tags:
|
|
|
|
description: tags
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/schema.TagItem'
|
|
|
|
type: array
|
|
|
|
title:
|
|
|
|
description: question title
|
2022-09-30 10:22:41 +08:00
|
|
|
maxLength: 150
|
2022-09-27 17:59:05 +08:00
|
|
|
minLength: 6
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- content
|
|
|
|
- html
|
|
|
|
- id
|
|
|
|
- tags
|
|
|
|
- title
|
|
|
|
type: object
|
|
|
|
schema.RemoveAnswerReq:
|
|
|
|
properties:
|
|
|
|
id:
|
|
|
|
description: answer id
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- id
|
|
|
|
type: object
|
|
|
|
schema.RemoveCommentReq:
|
|
|
|
properties:
|
|
|
|
comment_id:
|
|
|
|
description: comment id
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- comment_id
|
|
|
|
type: object
|
|
|
|
schema.RemoveQuestionReq:
|
|
|
|
properties:
|
|
|
|
id:
|
|
|
|
description: question id
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- id
|
|
|
|
type: object
|
|
|
|
schema.RemoveTagReq:
|
|
|
|
properties:
|
|
|
|
tag_id:
|
|
|
|
description: tag_id
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- tag_id
|
|
|
|
type: object
|
|
|
|
schema.ReportHandleReq:
|
|
|
|
properties:
|
2022-10-14 17:11:40 +08:00
|
|
|
flagged_content:
|
2022-09-27 17:59:05 +08:00
|
|
|
type: string
|
2022-10-14 17:11:40 +08:00
|
|
|
flagged_type:
|
2022-09-27 17:59:05 +08:00
|
|
|
type: integer
|
|
|
|
id:
|
|
|
|
type: string
|
|
|
|
required:
|
2022-10-14 17:11:40 +08:00
|
|
|
- flagged_type
|
2022-09-27 17:59:05 +08:00
|
|
|
- id
|
|
|
|
type: object
|
|
|
|
schema.SearchListResp:
|
|
|
|
properties:
|
|
|
|
count:
|
|
|
|
type: integer
|
|
|
|
extra:
|
|
|
|
description: extra fields
|
|
|
|
list:
|
|
|
|
description: search response
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/schema.SearchResp'
|
|
|
|
type: array
|
|
|
|
type: object
|
|
|
|
schema.SearchObject:
|
|
|
|
properties:
|
|
|
|
accepted:
|
|
|
|
type: boolean
|
|
|
|
answer_count:
|
|
|
|
type: integer
|
|
|
|
created_at:
|
|
|
|
type: integer
|
|
|
|
excerpt:
|
|
|
|
type: string
|
|
|
|
id:
|
|
|
|
type: string
|
2022-11-17 14:14:02 +08:00
|
|
|
question_id:
|
|
|
|
type: string
|
2022-10-09 18:44:56 +08:00
|
|
|
status:
|
|
|
|
description: Status
|
|
|
|
type: string
|
2022-09-27 17:59:05 +08:00
|
|
|
tags:
|
|
|
|
description: tags
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/schema.TagResp'
|
|
|
|
type: array
|
|
|
|
title:
|
|
|
|
type: string
|
|
|
|
user_info:
|
|
|
|
$ref: '#/definitions/schema.UserBasicInfo'
|
|
|
|
description: user info
|
|
|
|
vote_count:
|
|
|
|
type: integer
|
|
|
|
type: object
|
|
|
|
schema.SearchResp:
|
|
|
|
properties:
|
|
|
|
object:
|
|
|
|
$ref: '#/definitions/schema.SearchObject'
|
|
|
|
description: this object
|
|
|
|
object_type:
|
|
|
|
description: object_type
|
|
|
|
type: string
|
|
|
|
type: object
|
2022-11-14 17:04:25 +08:00
|
|
|
schema.SiteBrandingReq:
|
|
|
|
properties:
|
|
|
|
favicon:
|
|
|
|
maxLength: 512
|
|
|
|
type: string
|
|
|
|
logo:
|
|
|
|
maxLength: 512
|
|
|
|
type: string
|
|
|
|
mobile_logo:
|
|
|
|
maxLength: 512
|
|
|
|
type: string
|
|
|
|
square_icon:
|
|
|
|
maxLength: 512
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- logo
|
|
|
|
- square_icon
|
|
|
|
type: object
|
|
|
|
schema.SiteBrandingResp:
|
|
|
|
properties:
|
|
|
|
favicon:
|
|
|
|
maxLength: 512
|
|
|
|
type: string
|
|
|
|
logo:
|
|
|
|
maxLength: 512
|
|
|
|
type: string
|
|
|
|
mobile_logo:
|
|
|
|
maxLength: 512
|
|
|
|
type: string
|
|
|
|
square_icon:
|
|
|
|
maxLength: 512
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- logo
|
|
|
|
- square_icon
|
|
|
|
type: object
|
2022-09-27 17:59:05 +08:00
|
|
|
schema.SiteGeneralReq:
|
|
|
|
properties:
|
2022-11-11 11:53:44 +08:00
|
|
|
contact_email:
|
|
|
|
maxLength: 512
|
|
|
|
type: string
|
2022-09-27 17:59:05 +08:00
|
|
|
description:
|
|
|
|
maxLength: 2000
|
|
|
|
type: string
|
|
|
|
name:
|
|
|
|
maxLength: 128
|
|
|
|
type: string
|
|
|
|
short_description:
|
|
|
|
maxLength: 255
|
|
|
|
type: string
|
2022-11-11 11:53:44 +08:00
|
|
|
site_url:
|
|
|
|
maxLength: 512
|
|
|
|
type: string
|
2022-09-27 17:59:05 +08:00
|
|
|
required:
|
2022-11-11 11:53:44 +08:00
|
|
|
- contact_email
|
2022-09-27 17:59:05 +08:00
|
|
|
- description
|
|
|
|
- name
|
|
|
|
- short_description
|
2022-11-11 11:53:44 +08:00
|
|
|
- site_url
|
2022-09-27 17:59:05 +08:00
|
|
|
type: object
|
|
|
|
schema.SiteGeneralResp:
|
|
|
|
properties:
|
2022-11-11 11:53:44 +08:00
|
|
|
contact_email:
|
|
|
|
maxLength: 512
|
|
|
|
type: string
|
2022-09-27 17:59:05 +08:00
|
|
|
description:
|
|
|
|
maxLength: 2000
|
|
|
|
type: string
|
|
|
|
name:
|
|
|
|
maxLength: 128
|
|
|
|
type: string
|
|
|
|
short_description:
|
|
|
|
maxLength: 255
|
|
|
|
type: string
|
2022-11-11 11:53:44 +08:00
|
|
|
site_url:
|
|
|
|
maxLength: 512
|
|
|
|
type: string
|
2022-09-27 17:59:05 +08:00
|
|
|
required:
|
2022-11-11 11:53:44 +08:00
|
|
|
- contact_email
|
2022-09-27 17:59:05 +08:00
|
|
|
- description
|
|
|
|
- name
|
|
|
|
- short_description
|
2022-11-11 11:53:44 +08:00
|
|
|
- site_url
|
2022-09-27 17:59:05 +08:00
|
|
|
type: object
|
|
|
|
schema.SiteInterfaceReq:
|
|
|
|
properties:
|
|
|
|
language:
|
|
|
|
maxLength: 128
|
|
|
|
type: string
|
|
|
|
theme:
|
|
|
|
maxLength: 128
|
|
|
|
type: string
|
2022-11-02 16:01:17 +08:00
|
|
|
time_zone:
|
|
|
|
maxLength: 128
|
|
|
|
type: string
|
2022-09-27 17:59:05 +08:00
|
|
|
required:
|
|
|
|
- language
|
|
|
|
- theme
|
2022-11-02 16:01:17 +08:00
|
|
|
- time_zone
|
2022-09-27 17:59:05 +08:00
|
|
|
type: object
|
|
|
|
schema.SiteInterfaceResp:
|
|
|
|
properties:
|
|
|
|
language:
|
|
|
|
maxLength: 128
|
|
|
|
type: string
|
|
|
|
theme:
|
|
|
|
maxLength: 128
|
|
|
|
type: string
|
2022-11-02 16:01:17 +08:00
|
|
|
time_zone:
|
|
|
|
maxLength: 128
|
|
|
|
type: string
|
2022-09-27 17:59:05 +08:00
|
|
|
required:
|
|
|
|
- language
|
|
|
|
- theme
|
2022-11-02 16:01:17 +08:00
|
|
|
- time_zone
|
2022-09-27 17:59:05 +08:00
|
|
|
type: object
|
2022-11-14 17:04:25 +08:00
|
|
|
schema.SiteLegalReq:
|
|
|
|
properties:
|
2022-11-15 17:12:33 +08:00
|
|
|
privacy_policy_original_text:
|
2022-11-14 17:04:25 +08:00
|
|
|
type: string
|
2022-11-15 17:12:33 +08:00
|
|
|
privacy_policy_parsed_text:
|
|
|
|
type: string
|
|
|
|
terms_of_service_original_text:
|
|
|
|
type: string
|
|
|
|
terms_of_service_parsed_text:
|
2022-11-14 17:04:25 +08:00
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.SiteLegalResp:
|
|
|
|
properties:
|
2022-11-15 17:12:33 +08:00
|
|
|
privacy_policy_original_text:
|
|
|
|
type: string
|
|
|
|
privacy_policy_parsed_text:
|
2022-11-14 17:04:25 +08:00
|
|
|
type: string
|
2022-11-15 17:12:33 +08:00
|
|
|
terms_of_service_original_text:
|
|
|
|
type: string
|
|
|
|
terms_of_service_parsed_text:
|
2022-11-14 17:04:25 +08:00
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.SiteWriteReq:
|
|
|
|
properties:
|
2022-11-15 11:53:46 +08:00
|
|
|
recommend_tags:
|
|
|
|
items:
|
|
|
|
type: string
|
|
|
|
type: array
|
2022-11-14 17:04:25 +08:00
|
|
|
required_tag:
|
|
|
|
type: boolean
|
2022-11-15 11:53:46 +08:00
|
|
|
reserved_tags:
|
|
|
|
items:
|
|
|
|
type: string
|
|
|
|
type: array
|
2022-11-14 17:04:25 +08:00
|
|
|
type: object
|
|
|
|
schema.SiteWriteResp:
|
|
|
|
properties:
|
2022-11-15 11:53:46 +08:00
|
|
|
recommend_tags:
|
|
|
|
items:
|
|
|
|
type: string
|
|
|
|
type: array
|
2022-11-14 17:04:25 +08:00
|
|
|
required_tag:
|
|
|
|
type: boolean
|
2022-11-15 11:53:46 +08:00
|
|
|
reserved_tags:
|
|
|
|
items:
|
|
|
|
type: string
|
|
|
|
type: array
|
2022-11-14 17:04:25 +08:00
|
|
|
type: object
|
2022-09-27 17:59:05 +08:00
|
|
|
schema.TagItem:
|
|
|
|
properties:
|
|
|
|
display_name:
|
|
|
|
description: display_name
|
2022-09-30 10:22:41 +08:00
|
|
|
maxLength: 35
|
2022-09-27 17:59:05 +08:00
|
|
|
type: string
|
|
|
|
original_text:
|
|
|
|
description: original text
|
|
|
|
type: string
|
|
|
|
parsed_text:
|
|
|
|
description: parsed text
|
|
|
|
type: string
|
|
|
|
slug_name:
|
|
|
|
description: slug_name
|
2022-09-30 10:22:41 +08:00
|
|
|
maxLength: 35
|
2022-09-27 17:59:05 +08:00
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.TagResp:
|
|
|
|
properties:
|
|
|
|
display_name:
|
|
|
|
type: string
|
|
|
|
main_tag_slug_name:
|
|
|
|
description: if main tag slug name is not empty, this tag is synonymous with
|
|
|
|
the main tag
|
|
|
|
type: string
|
2022-11-15 10:54:30 +08:00
|
|
|
recommend:
|
|
|
|
type: boolean
|
2022-11-16 15:28:23 +08:00
|
|
|
reserved:
|
|
|
|
type: boolean
|
2022-09-27 17:59:05 +08:00
|
|
|
slug_name:
|
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.UpdateCommentReq:
|
|
|
|
properties:
|
|
|
|
comment_id:
|
|
|
|
description: comment id
|
|
|
|
type: string
|
|
|
|
original_text:
|
|
|
|
description: original comment content
|
|
|
|
type: string
|
|
|
|
parsed_text:
|
|
|
|
description: parsed comment content
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- comment_id
|
|
|
|
type: object
|
|
|
|
schema.UpdateFollowTagsReq:
|
|
|
|
properties:
|
|
|
|
slug_name_list:
|
|
|
|
description: tag slug name list
|
|
|
|
items:
|
|
|
|
type: string
|
|
|
|
type: array
|
|
|
|
type: object
|
|
|
|
schema.UpdateInfoRequest:
|
|
|
|
properties:
|
|
|
|
avatar:
|
2022-10-28 14:53:44 +08:00
|
|
|
$ref: '#/definitions/schema.AvatarInfo'
|
2022-09-27 17:59:05 +08:00
|
|
|
description: avatar
|
|
|
|
bio:
|
2022-09-30 10:22:41 +08:00
|
|
|
description: bio
|
|
|
|
maxLength: 4096
|
2022-09-27 17:59:05 +08:00
|
|
|
type: string
|
|
|
|
bio_html:
|
2022-09-30 10:22:41 +08:00
|
|
|
description: bio
|
|
|
|
maxLength: 4096
|
2022-09-27 17:59:05 +08:00
|
|
|
type: string
|
|
|
|
display_name:
|
|
|
|
description: display_name
|
2022-09-30 10:22:41 +08:00
|
|
|
maxLength: 30
|
2022-09-27 17:59:05 +08:00
|
|
|
type: string
|
|
|
|
location:
|
|
|
|
description: location
|
2022-09-30 10:22:41 +08:00
|
|
|
maxLength: 100
|
2022-09-27 17:59:05 +08:00
|
|
|
type: string
|
2022-10-14 17:11:40 +08:00
|
|
|
username:
|
|
|
|
description: username
|
|
|
|
maxLength: 30
|
|
|
|
type: string
|
2022-09-27 17:59:05 +08:00
|
|
|
website:
|
|
|
|
description: website
|
2022-09-30 10:22:41 +08:00
|
|
|
maxLength: 500
|
2022-09-27 17:59:05 +08:00
|
|
|
type: string
|
2022-09-30 10:22:41 +08:00
|
|
|
required:
|
|
|
|
- display_name
|
2022-09-27 17:59:05 +08:00
|
|
|
type: object
|
2022-10-21 10:26:32 +08:00
|
|
|
schema.UpdateSMTPConfigReq:
|
|
|
|
properties:
|
|
|
|
encryption:
|
2022-10-21 17:04:41 +08:00
|
|
|
description: '"" SSL'
|
2022-10-21 10:26:32 +08:00
|
|
|
enum:
|
|
|
|
- SSL
|
|
|
|
type: string
|
2022-10-21 17:04:41 +08:00
|
|
|
from_email:
|
2022-10-21 10:26:32 +08:00
|
|
|
maxLength: 256
|
|
|
|
type: string
|
|
|
|
from_name:
|
|
|
|
maxLength: 256
|
|
|
|
type: string
|
2022-10-21 17:04:41 +08:00
|
|
|
smtp_authentication:
|
|
|
|
type: boolean
|
2022-10-21 10:26:32 +08:00
|
|
|
smtp_host:
|
|
|
|
maxLength: 256
|
|
|
|
type: string
|
|
|
|
smtp_password:
|
|
|
|
maxLength: 256
|
|
|
|
type: string
|
|
|
|
smtp_port:
|
|
|
|
maximum: 65535
|
|
|
|
minimum: 1
|
|
|
|
type: integer
|
|
|
|
smtp_username:
|
|
|
|
maxLength: 256
|
|
|
|
type: string
|
2022-10-21 17:04:41 +08:00
|
|
|
test_email_recipient:
|
|
|
|
type: string
|
2022-10-21 10:26:32 +08:00
|
|
|
type: object
|
2022-09-27 17:59:05 +08:00
|
|
|
schema.UpdateTagReq:
|
|
|
|
properties:
|
|
|
|
display_name:
|
|
|
|
description: display_name
|
2022-09-30 10:22:41 +08:00
|
|
|
maxLength: 35
|
2022-09-27 17:59:05 +08:00
|
|
|
type: string
|
|
|
|
edit_summary:
|
|
|
|
description: edit summary
|
|
|
|
type: string
|
|
|
|
original_text:
|
|
|
|
description: original text
|
|
|
|
type: string
|
|
|
|
parsed_text:
|
|
|
|
description: parsed text
|
|
|
|
type: string
|
|
|
|
slug_name:
|
|
|
|
description: slug_name
|
2022-09-30 10:22:41 +08:00
|
|
|
maxLength: 35
|
2022-09-27 17:59:05 +08:00
|
|
|
type: string
|
|
|
|
tag_id:
|
|
|
|
description: tag_id
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- tag_id
|
|
|
|
type: object
|
|
|
|
schema.UpdateTagSynonymReq:
|
|
|
|
properties:
|
|
|
|
synonym_tag_list:
|
|
|
|
description: synonym tag list
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/schema.TagItem'
|
|
|
|
type: array
|
|
|
|
tag_id:
|
|
|
|
description: tag_id
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- synonym_tag_list
|
|
|
|
- tag_id
|
|
|
|
type: object
|
2022-11-11 15:13:23 +08:00
|
|
|
schema.UpdateUserInterfaceRequest:
|
|
|
|
properties:
|
|
|
|
language:
|
|
|
|
description: language
|
|
|
|
maxLength: 100
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- language
|
|
|
|
type: object
|
2022-09-27 17:59:05 +08:00
|
|
|
schema.UpdateUserStatusReq:
|
|
|
|
properties:
|
|
|
|
status:
|
|
|
|
description: user status
|
|
|
|
enum:
|
|
|
|
- normal
|
|
|
|
- suspended
|
|
|
|
- deleted
|
|
|
|
- inactive
|
|
|
|
type: string
|
|
|
|
user_id:
|
|
|
|
description: user id
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- status
|
|
|
|
- user_id
|
|
|
|
type: object
|
|
|
|
schema.UserBasicInfo:
|
|
|
|
properties:
|
|
|
|
avatar:
|
|
|
|
description: avatar
|
|
|
|
type: string
|
|
|
|
display_name:
|
|
|
|
description: display_name
|
|
|
|
type: string
|
|
|
|
ip_info:
|
|
|
|
description: ip info
|
|
|
|
type: string
|
|
|
|
location:
|
|
|
|
description: location
|
|
|
|
type: string
|
|
|
|
rank:
|
|
|
|
description: rank
|
|
|
|
type: integer
|
|
|
|
status:
|
|
|
|
description: status
|
2022-09-29 15:27:56 +08:00
|
|
|
type: string
|
2022-09-27 17:59:05 +08:00
|
|
|
username:
|
|
|
|
description: name
|
|
|
|
type: string
|
|
|
|
website:
|
|
|
|
description: website
|
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.UserChangeEmailSendCodeReq:
|
|
|
|
properties:
|
2022-10-28 17:13:49 +08:00
|
|
|
captcha_code:
|
|
|
|
maxLength: 500
|
|
|
|
type: string
|
|
|
|
captcha_id:
|
|
|
|
maxLength: 500
|
|
|
|
type: string
|
2022-09-27 17:59:05 +08:00
|
|
|
e_mail:
|
|
|
|
maxLength: 500
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- e_mail
|
|
|
|
type: object
|
|
|
|
schema.UserChangeEmailVerifyReq:
|
|
|
|
properties:
|
|
|
|
code:
|
|
|
|
maxLength: 500
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- code
|
|
|
|
type: object
|
|
|
|
schema.UserEmailLogin:
|
|
|
|
properties:
|
|
|
|
captcha_code:
|
|
|
|
description: captcha_code
|
|
|
|
type: string
|
|
|
|
captcha_id:
|
|
|
|
description: captcha_id
|
|
|
|
type: string
|
|
|
|
e_mail:
|
|
|
|
description: e_mail
|
2022-11-17 19:23:02 +08:00
|
|
|
maxLength: 500
|
2022-09-27 17:59:05 +08:00
|
|
|
type: string
|
|
|
|
pass:
|
|
|
|
description: password
|
2022-11-17 19:23:02 +08:00
|
|
|
maxLength: 32
|
|
|
|
minLength: 8
|
2022-09-27 17:59:05 +08:00
|
|
|
type: string
|
2022-11-17 19:23:02 +08:00
|
|
|
required:
|
|
|
|
- e_mail
|
|
|
|
- pass
|
2022-09-27 17:59:05 +08:00
|
|
|
type: object
|
|
|
|
schema.UserModifyPassWordRequest:
|
|
|
|
properties:
|
|
|
|
old_pass:
|
|
|
|
description: old password
|
|
|
|
type: string
|
|
|
|
pass:
|
|
|
|
description: password
|
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
schema.UserNoticeSetRequest:
|
|
|
|
properties:
|
|
|
|
notice_switch:
|
|
|
|
type: boolean
|
|
|
|
type: object
|
|
|
|
schema.UserNoticeSetResp:
|
|
|
|
properties:
|
|
|
|
notice_switch:
|
|
|
|
type: boolean
|
|
|
|
type: object
|
|
|
|
schema.UserRePassWordRequest:
|
|
|
|
properties:
|
|
|
|
code:
|
|
|
|
description: code
|
|
|
|
maxLength: 100
|
|
|
|
type: string
|
|
|
|
pass:
|
|
|
|
description: Password
|
|
|
|
maxLength: 32
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- code
|
|
|
|
- pass
|
|
|
|
type: object
|
2022-10-14 17:11:40 +08:00
|
|
|
schema.UserRegisterReq:
|
2022-09-27 17:59:05 +08:00
|
|
|
properties:
|
|
|
|
e_mail:
|
|
|
|
description: email
|
|
|
|
maxLength: 500
|
|
|
|
type: string
|
|
|
|
name:
|
|
|
|
description: name
|
2022-10-14 17:11:40 +08:00
|
|
|
maxLength: 30
|
2022-09-27 17:59:05 +08:00
|
|
|
type: string
|
|
|
|
pass:
|
|
|
|
description: password
|
|
|
|
maxLength: 32
|
|
|
|
minLength: 8
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- e_mail
|
|
|
|
- name
|
|
|
|
- pass
|
|
|
|
type: object
|
|
|
|
schema.UserRetrievePassWordRequest:
|
|
|
|
properties:
|
|
|
|
captcha_code:
|
|
|
|
description: captcha_code
|
|
|
|
type: string
|
|
|
|
captcha_id:
|
|
|
|
description: captcha_id
|
|
|
|
type: string
|
|
|
|
e_mail:
|
|
|
|
description: e_mail
|
|
|
|
maxLength: 500
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- e_mail
|
|
|
|
type: object
|
|
|
|
schema.VoteReq:
|
|
|
|
properties:
|
|
|
|
is_cancel:
|
|
|
|
description: is cancel
|
|
|
|
type: boolean
|
|
|
|
object_id:
|
|
|
|
description: id
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- object_id
|
|
|
|
type: object
|
|
|
|
schema.VoteResp:
|
|
|
|
properties:
|
|
|
|
down_votes:
|
|
|
|
type: integer
|
|
|
|
up_votes:
|
|
|
|
type: integer
|
|
|
|
vote_status:
|
|
|
|
type: string
|
|
|
|
votes:
|
|
|
|
type: integer
|
|
|
|
type: object
|
2022-11-11 15:13:23 +08:00
|
|
|
translator.LangOption:
|
|
|
|
properties:
|
|
|
|
label:
|
|
|
|
type: string
|
|
|
|
value:
|
|
|
|
type: string
|
|
|
|
type: object
|
2022-09-27 17:59:05 +08:00
|
|
|
info:
|
|
|
|
contact: {}
|
|
|
|
paths:
|
|
|
|
/answer/admin/api/answer/page:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: Status:[available,deleted]
|
|
|
|
parameters:
|
|
|
|
- description: page size
|
|
|
|
in: query
|
|
|
|
name: page
|
|
|
|
type: integer
|
|
|
|
- description: page size
|
|
|
|
in: query
|
|
|
|
name: page_size
|
|
|
|
type: integer
|
|
|
|
- description: user status
|
|
|
|
enum:
|
|
|
|
- available
|
|
|
|
- deleted
|
|
|
|
in: query
|
|
|
|
name: status
|
|
|
|
type: string
|
2022-11-01 09:12:12 +08:00
|
|
|
- description: answer id or question title
|
|
|
|
in: query
|
|
|
|
name: query
|
|
|
|
type: string
|
2022-11-11 15:13:23 +08:00
|
|
|
- description: question id
|
|
|
|
in: query
|
|
|
|
name: question_id
|
|
|
|
type: string
|
2022-09-27 17:59:05 +08:00
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: CmsSearchList
|
|
|
|
tags:
|
|
|
|
- admin
|
|
|
|
/answer/admin/api/answer/status:
|
|
|
|
put:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: Status:[available,deleted]
|
|
|
|
parameters:
|
|
|
|
- description: AdminSetAnswerStatusRequest
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/entity.AdminSetAnswerStatusRequest'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: AdminSetAnswerStatus
|
|
|
|
tags:
|
|
|
|
- admin
|
2022-11-02 16:01:17 +08:00
|
|
|
/answer/admin/api/dashboard:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: DashboardInfo
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: DashboardInfo
|
|
|
|
tags:
|
|
|
|
- admin
|
2022-09-27 17:59:05 +08:00
|
|
|
/answer/admin/api/language/options:
|
|
|
|
get:
|
|
|
|
description: Get language options
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
summary: Get language options
|
|
|
|
tags:
|
|
|
|
- Lang
|
|
|
|
/answer/admin/api/question/page:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: Status:[available,closed,deleted]
|
|
|
|
parameters:
|
|
|
|
- description: page size
|
|
|
|
in: query
|
|
|
|
name: page
|
|
|
|
type: integer
|
|
|
|
- description: page size
|
|
|
|
in: query
|
|
|
|
name: page_size
|
|
|
|
type: integer
|
|
|
|
- description: user status
|
|
|
|
enum:
|
|
|
|
- available
|
|
|
|
- closed
|
|
|
|
- deleted
|
|
|
|
in: query
|
|
|
|
name: status
|
|
|
|
type: string
|
2022-11-01 09:12:12 +08:00
|
|
|
- description: question id or title
|
|
|
|
in: query
|
|
|
|
name: query
|
|
|
|
type: string
|
2022-09-27 17:59:05 +08:00
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: CmsSearchList
|
|
|
|
tags:
|
|
|
|
- admin
|
|
|
|
/answer/admin/api/question/status:
|
|
|
|
put:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: Status:[available,closed,deleted]
|
|
|
|
parameters:
|
|
|
|
- description: AdminSetQuestionStatusRequest
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.AdminSetQuestionStatusRequest'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: AdminSetQuestionStatus
|
|
|
|
tags:
|
|
|
|
- admin
|
|
|
|
/answer/admin/api/reasons:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: get reasons by object type and action
|
|
|
|
parameters:
|
|
|
|
- description: object_type
|
|
|
|
enum:
|
|
|
|
- question
|
|
|
|
- answer
|
|
|
|
- comment
|
|
|
|
- user
|
|
|
|
in: query
|
|
|
|
name: object_type
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
- description: action
|
|
|
|
enum:
|
|
|
|
- status
|
|
|
|
- close
|
|
|
|
- flag
|
|
|
|
- review
|
|
|
|
in: query
|
|
|
|
name: action
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: get reasons by object type and action
|
|
|
|
tags:
|
|
|
|
- reason
|
|
|
|
/answer/admin/api/report/:
|
|
|
|
put:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: handle flag
|
|
|
|
parameters:
|
|
|
|
- description: flag
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.ReportHandleReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: handle flag
|
|
|
|
tags:
|
|
|
|
- admin
|
|
|
|
/answer/admin/api/reports/page:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: list report records
|
|
|
|
parameters:
|
|
|
|
- description: status
|
|
|
|
enum:
|
|
|
|
- pending
|
|
|
|
- completed
|
|
|
|
in: query
|
|
|
|
name: status
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
- description: object_type
|
|
|
|
enum:
|
|
|
|
- all
|
|
|
|
- question
|
|
|
|
- answer
|
|
|
|
- comment
|
|
|
|
in: query
|
|
|
|
name: object_type
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
- description: page size
|
|
|
|
in: query
|
|
|
|
name: page
|
|
|
|
type: integer
|
|
|
|
- description: page size
|
|
|
|
in: query
|
|
|
|
name: page_size
|
|
|
|
type: integer
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: list report page
|
|
|
|
tags:
|
|
|
|
- admin
|
2022-10-20 16:40:43 +08:00
|
|
|
/answer/admin/api/setting/smtp:
|
|
|
|
get:
|
|
|
|
description: GetSMTPConfig get smtp config
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
2022-10-21 10:26:32 +08:00
|
|
|
$ref: '#/definitions/schema.GetSMTPConfigResp'
|
2022-10-20 16:40:43 +08:00
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: GetSMTPConfig get smtp config
|
|
|
|
tags:
|
|
|
|
- admin
|
|
|
|
put:
|
|
|
|
description: update smtp config
|
|
|
|
parameters:
|
2022-10-21 10:26:32 +08:00
|
|
|
- description: smtp config
|
2022-10-20 16:40:43 +08:00
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
2022-10-21 10:26:32 +08:00
|
|
|
$ref: '#/definitions/schema.UpdateSMTPConfigReq'
|
2022-10-20 16:40:43 +08:00
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: update smtp config
|
|
|
|
tags:
|
|
|
|
- admin
|
2022-11-14 17:04:25 +08:00
|
|
|
/answer/admin/api/siteinfo/branding:
|
|
|
|
get:
|
|
|
|
description: get site interface
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
$ref: '#/definitions/schema.SiteBrandingResp'
|
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: get site interface
|
|
|
|
tags:
|
|
|
|
- admin
|
|
|
|
put:
|
|
|
|
description: update site info branding
|
|
|
|
parameters:
|
|
|
|
- description: branding info
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.SiteBrandingReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: update site info branding
|
|
|
|
tags:
|
|
|
|
- admin
|
2022-09-27 17:59:05 +08:00
|
|
|
/answer/admin/api/siteinfo/general:
|
|
|
|
get:
|
2022-11-02 16:01:17 +08:00
|
|
|
description: get site general information
|
2022-09-27 17:59:05 +08:00
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
$ref: '#/definitions/schema.SiteGeneralResp'
|
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
2022-11-02 16:01:17 +08:00
|
|
|
summary: get site general information
|
2022-09-27 17:59:05 +08:00
|
|
|
tags:
|
|
|
|
- admin
|
|
|
|
put:
|
2022-11-02 16:01:17 +08:00
|
|
|
description: update site general information
|
2022-09-27 17:59:05 +08:00
|
|
|
parameters:
|
|
|
|
- description: general
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.SiteGeneralReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
2022-11-02 16:01:17 +08:00
|
|
|
summary: update site general information
|
2022-09-27 17:59:05 +08:00
|
|
|
tags:
|
|
|
|
- admin
|
|
|
|
/answer/admin/api/siteinfo/interface:
|
|
|
|
get:
|
2022-11-02 16:01:17 +08:00
|
|
|
description: get site interface
|
2022-09-27 17:59:05 +08:00
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
$ref: '#/definitions/schema.SiteInterfaceResp'
|
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
2022-11-02 16:01:17 +08:00
|
|
|
summary: get site interface
|
2022-09-27 17:59:05 +08:00
|
|
|
tags:
|
|
|
|
- admin
|
|
|
|
put:
|
2022-11-02 16:01:17 +08:00
|
|
|
description: update site info interface
|
2022-09-27 17:59:05 +08:00
|
|
|
parameters:
|
|
|
|
- description: general
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.SiteInterfaceReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
2022-11-02 16:01:17 +08:00
|
|
|
summary: update site info interface
|
2022-09-27 17:59:05 +08:00
|
|
|
tags:
|
|
|
|
- admin
|
2022-11-14 17:04:25 +08:00
|
|
|
/answer/admin/api/siteinfo/legal:
|
|
|
|
get:
|
|
|
|
description: Set the legal information for the site
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
$ref: '#/definitions/schema.SiteLegalResp'
|
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: Set the legal information for the site
|
|
|
|
tags:
|
|
|
|
- admin
|
|
|
|
put:
|
|
|
|
description: update site legal info
|
|
|
|
parameters:
|
|
|
|
- description: write info
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.SiteLegalReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: update site legal info
|
|
|
|
tags:
|
|
|
|
- admin
|
|
|
|
/answer/admin/api/siteinfo/write:
|
|
|
|
get:
|
|
|
|
description: get site interface
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
$ref: '#/definitions/schema.SiteWriteResp'
|
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: get site interface
|
|
|
|
tags:
|
|
|
|
- admin
|
|
|
|
put:
|
|
|
|
description: update site write info
|
|
|
|
parameters:
|
|
|
|
- description: write info
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.SiteWriteReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: update site write info
|
|
|
|
tags:
|
|
|
|
- admin
|
2022-09-27 17:59:05 +08:00
|
|
|
/answer/admin/api/theme/options:
|
|
|
|
get:
|
|
|
|
description: Get theme options
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: Get theme options
|
|
|
|
tags:
|
|
|
|
- admin
|
|
|
|
/answer/admin/api/user/status:
|
|
|
|
put:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: update user
|
|
|
|
parameters:
|
|
|
|
- description: user
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.UpdateUserStatusReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: update user
|
|
|
|
tags:
|
|
|
|
- admin
|
|
|
|
/answer/admin/api/users/page:
|
|
|
|
get:
|
|
|
|
description: get user page
|
|
|
|
parameters:
|
|
|
|
- description: page size
|
|
|
|
in: query
|
|
|
|
name: page
|
|
|
|
type: integer
|
|
|
|
- description: page size
|
|
|
|
in: query
|
|
|
|
name: page_size
|
|
|
|
type: integer
|
2022-11-01 09:12:12 +08:00
|
|
|
- description: 'search query: email, username or id:[id]'
|
2022-09-27 17:59:05 +08:00
|
|
|
in: query
|
2022-11-01 09:12:12 +08:00
|
|
|
name: query
|
2022-09-27 17:59:05 +08:00
|
|
|
type: string
|
|
|
|
- description: user status
|
|
|
|
enum:
|
|
|
|
- suspended
|
|
|
|
- deleted
|
|
|
|
- inactive
|
|
|
|
in: query
|
|
|
|
name: status
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/pager.PageModel'
|
|
|
|
- properties:
|
|
|
|
records:
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/schema.GetUserPageResp'
|
|
|
|
type: array
|
|
|
|
type: object
|
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: get user page
|
|
|
|
tags:
|
|
|
|
- admin
|
2022-11-23 11:10:15 +08:00
|
|
|
/answer/api/v1/activity/timeline:
|
|
|
|
get:
|
|
|
|
description: get object timeline
|
|
|
|
parameters:
|
|
|
|
- description: object id
|
|
|
|
in: query
|
|
|
|
name: object_id
|
|
|
|
type: string
|
|
|
|
- description: tag slug name
|
|
|
|
in: query
|
|
|
|
name: tag_slug_name
|
|
|
|
type: string
|
|
|
|
- description: object type
|
|
|
|
enum:
|
|
|
|
- question
|
|
|
|
- answer
|
|
|
|
- tag
|
|
|
|
in: query
|
|
|
|
name: object_type
|
|
|
|
type: string
|
|
|
|
- description: is show vote
|
|
|
|
in: query
|
|
|
|
name: show_vote
|
|
|
|
type: boolean
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
$ref: '#/definitions/schema.GetObjectTimelineResp'
|
|
|
|
type: object
|
|
|
|
summary: get object timeline
|
|
|
|
tags:
|
|
|
|
- Comment
|
2022-09-27 17:59:05 +08:00
|
|
|
/answer/api/v1/answer:
|
|
|
|
delete:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: delete answer
|
|
|
|
parameters:
|
|
|
|
- description: answer
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.RemoveAnswerReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: delete answer
|
|
|
|
tags:
|
|
|
|
- api-answer
|
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: Insert Answer
|
|
|
|
parameters:
|
|
|
|
- description: AnswerAddReq
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.AnswerAddReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: Insert Answer
|
|
|
|
tags:
|
|
|
|
- api-answer
|
|
|
|
put:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: Update Answer
|
|
|
|
parameters:
|
|
|
|
- description: AnswerUpdateReq
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.AnswerUpdateReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: Update Answer
|
|
|
|
tags:
|
|
|
|
- api-answer
|
|
|
|
/answer/api/v1/answer/acceptance:
|
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: Adopted
|
|
|
|
parameters:
|
|
|
|
- description: AnswerAdoptedReq
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.AnswerAdoptedReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: Adopted
|
|
|
|
tags:
|
|
|
|
- api-answer
|
|
|
|
/answer/api/v1/answer/info:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: Get Answer
|
|
|
|
parameters:
|
|
|
|
- default: "1"
|
|
|
|
description: Answer TagID
|
|
|
|
in: query
|
|
|
|
name: id
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
summary: Get Answer
|
|
|
|
tags:
|
|
|
|
- api-answer
|
|
|
|
/answer/api/v1/answer/list:
|
2022-09-28 14:54:54 +08:00
|
|
|
get:
|
2022-09-27 17:59:05 +08:00
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: AnswerList <br> <b>order</b> (default or updated)
|
|
|
|
parameters:
|
|
|
|
- description: AnswerList
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.AnswerList'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: AnswerList
|
|
|
|
tags:
|
|
|
|
- api-answer
|
|
|
|
/answer/api/v1/collection/switch:
|
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: add collection
|
|
|
|
parameters:
|
|
|
|
- description: collection
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.CollectionSwitchReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
$ref: '#/definitions/schema.CollectionSwitchResp'
|
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: add collection
|
|
|
|
tags:
|
|
|
|
- Collection
|
|
|
|
/answer/api/v1/comment:
|
|
|
|
delete:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: remove comment
|
|
|
|
parameters:
|
|
|
|
- description: comment
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.RemoveCommentReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: remove comment
|
|
|
|
tags:
|
|
|
|
- Comment
|
|
|
|
get:
|
|
|
|
description: get comment by id
|
|
|
|
parameters:
|
|
|
|
- description: id
|
|
|
|
in: query
|
|
|
|
name: id
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/pager.PageModel'
|
|
|
|
- properties:
|
|
|
|
list:
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/schema.GetCommentResp'
|
|
|
|
type: array
|
|
|
|
type: object
|
|
|
|
type: object
|
|
|
|
summary: get comment by id
|
|
|
|
tags:
|
|
|
|
- Comment
|
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: add comment
|
|
|
|
parameters:
|
|
|
|
- description: comment
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.AddCommentReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
$ref: '#/definitions/schema.GetCommentResp'
|
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: add comment
|
|
|
|
tags:
|
|
|
|
- Comment
|
|
|
|
put:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: update comment
|
|
|
|
parameters:
|
|
|
|
- description: comment
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.UpdateCommentReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: update comment
|
|
|
|
tags:
|
|
|
|
- Comment
|
|
|
|
/answer/api/v1/comment/page:
|
|
|
|
get:
|
|
|
|
description: get comment page
|
|
|
|
parameters:
|
|
|
|
- description: page
|
|
|
|
in: query
|
|
|
|
name: page
|
|
|
|
type: integer
|
|
|
|
- description: page size
|
|
|
|
in: query
|
|
|
|
name: page_size
|
|
|
|
type: integer
|
|
|
|
- description: object id
|
|
|
|
in: query
|
|
|
|
name: object_id
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
- description: query condition
|
|
|
|
enum:
|
|
|
|
- vote
|
|
|
|
in: query
|
|
|
|
name: query_cond
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/pager.PageModel'
|
|
|
|
- properties:
|
|
|
|
list:
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/schema.GetCommentResp'
|
|
|
|
type: array
|
|
|
|
type: object
|
|
|
|
type: object
|
|
|
|
summary: get comment page
|
|
|
|
tags:
|
|
|
|
- Comment
|
2022-11-14 17:04:25 +08:00
|
|
|
/answer/api/v1/file:
|
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- multipart/form-data
|
|
|
|
description: upload file
|
|
|
|
parameters:
|
|
|
|
- description: identify the source of the file upload
|
|
|
|
enum:
|
|
|
|
- post
|
|
|
|
- avatar
|
|
|
|
- branding
|
|
|
|
in: formData
|
|
|
|
name: source
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
- description: file
|
|
|
|
in: formData
|
|
|
|
name: file
|
|
|
|
required: true
|
|
|
|
type: file
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
type: string
|
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: upload file
|
|
|
|
tags:
|
|
|
|
- Upload
|
2022-09-27 17:59:05 +08:00
|
|
|
/answer/api/v1/follow:
|
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: follow object or cancel follow operation
|
|
|
|
parameters:
|
|
|
|
- description: follow
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.FollowReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
$ref: '#/definitions/schema.FollowResp'
|
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: follow object or cancel follow operation
|
|
|
|
tags:
|
|
|
|
- Activity
|
|
|
|
/answer/api/v1/follow/tags:
|
|
|
|
put:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: update user follow tags
|
|
|
|
parameters:
|
|
|
|
- description: follow
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.UpdateFollowTagsReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: update user follow tags
|
|
|
|
tags:
|
|
|
|
- Activity
|
|
|
|
/answer/api/v1/language/config:
|
|
|
|
get:
|
|
|
|
description: get language config mapping
|
|
|
|
parameters:
|
|
|
|
- description: Accept-Language
|
|
|
|
in: header
|
|
|
|
name: Accept-Language
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
summary: get language config mapping
|
|
|
|
tags:
|
|
|
|
- Lang
|
|
|
|
/answer/api/v1/language/options:
|
|
|
|
get:
|
|
|
|
description: Get language options
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
summary: Get language options
|
|
|
|
tags:
|
|
|
|
- Lang
|
|
|
|
/answer/api/v1/notification/page:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
2022-09-30 10:22:41 +08:00
|
|
|
description: get notification list
|
2022-09-27 17:59:05 +08:00
|
|
|
parameters:
|
|
|
|
- description: page size
|
|
|
|
in: query
|
|
|
|
name: page
|
|
|
|
type: integer
|
|
|
|
- description: page size
|
|
|
|
in: query
|
|
|
|
name: page_size
|
|
|
|
type: integer
|
|
|
|
- description: type
|
|
|
|
enum:
|
|
|
|
- inbox
|
|
|
|
- achievement
|
|
|
|
in: query
|
|
|
|
name: type
|
2022-09-30 10:22:41 +08:00
|
|
|
required: true
|
2022-09-27 17:59:05 +08:00
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
2022-09-30 10:22:41 +08:00
|
|
|
summary: get notification list
|
2022-09-27 17:59:05 +08:00
|
|
|
tags:
|
|
|
|
- Notification
|
|
|
|
/answer/api/v1/notification/read/state:
|
|
|
|
put:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: ClearUnRead
|
|
|
|
parameters:
|
|
|
|
- description: NotificationClearIDRequest
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.NotificationClearIDRequest'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: ClearUnRead
|
|
|
|
tags:
|
|
|
|
- Notification
|
|
|
|
/answer/api/v1/notification/read/state/all:
|
|
|
|
put:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: ClearUnRead
|
|
|
|
parameters:
|
|
|
|
- description: NotificationClearRequest
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.NotificationClearRequest'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: ClearUnRead
|
|
|
|
tags:
|
|
|
|
- Notification
|
|
|
|
/answer/api/v1/notification/status:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: GetRedDot
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: GetRedDot
|
|
|
|
tags:
|
|
|
|
- Notification
|
|
|
|
put:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: DelRedDot
|
|
|
|
parameters:
|
|
|
|
- description: NotificationClearRequest
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.NotificationClearRequest'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: DelRedDot
|
|
|
|
tags:
|
|
|
|
- Notification
|
|
|
|
/answer/api/v1/personal/answer/page:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: UserAnswerList
|
|
|
|
parameters:
|
|
|
|
- default: string
|
|
|
|
description: username
|
|
|
|
in: query
|
|
|
|
name: username
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
- description: order
|
|
|
|
enum:
|
|
|
|
- newest
|
|
|
|
- score
|
|
|
|
in: query
|
|
|
|
name: order
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
- default: "0"
|
|
|
|
description: page
|
|
|
|
in: query
|
|
|
|
name: page
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
- default: "20"
|
|
|
|
description: pagesize
|
|
|
|
in: query
|
|
|
|
name: pagesize
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: UserAnswerList
|
|
|
|
tags:
|
|
|
|
- api-answer
|
|
|
|
/answer/api/v1/personal/collection/page:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: UserCollectionList
|
|
|
|
parameters:
|
|
|
|
- default: "0"
|
|
|
|
description: page
|
|
|
|
in: query
|
|
|
|
name: page
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
- default: "20"
|
|
|
|
description: pagesize
|
|
|
|
in: query
|
|
|
|
name: pagesize
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: UserCollectionList
|
|
|
|
tags:
|
|
|
|
- Collection
|
|
|
|
/answer/api/v1/personal/comment/page:
|
|
|
|
get:
|
|
|
|
description: user personal comment list
|
|
|
|
parameters:
|
|
|
|
- description: page
|
|
|
|
in: query
|
|
|
|
name: page
|
|
|
|
type: integer
|
|
|
|
- description: page size
|
|
|
|
in: query
|
|
|
|
name: page_size
|
|
|
|
type: integer
|
|
|
|
- description: username
|
|
|
|
in: query
|
|
|
|
name: username
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/pager.PageModel'
|
|
|
|
- properties:
|
|
|
|
list:
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/schema.GetCommentPersonalWithPageResp'
|
|
|
|
type: array
|
|
|
|
type: object
|
|
|
|
type: object
|
|
|
|
summary: user personal comment list
|
|
|
|
tags:
|
|
|
|
- Comment
|
|
|
|
/answer/api/v1/personal/qa/top:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: UserTop
|
|
|
|
parameters:
|
|
|
|
- default: string
|
|
|
|
description: username
|
|
|
|
in: query
|
|
|
|
name: username
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: UserTop
|
|
|
|
tags:
|
|
|
|
- api-question
|
|
|
|
/answer/api/v1/personal/rank/page:
|
|
|
|
get:
|
|
|
|
description: user personal rank list
|
|
|
|
parameters:
|
|
|
|
- description: page
|
|
|
|
in: query
|
|
|
|
name: page
|
|
|
|
type: integer
|
|
|
|
- description: page size
|
|
|
|
in: query
|
|
|
|
name: page_size
|
|
|
|
type: integer
|
|
|
|
- description: username
|
|
|
|
in: query
|
|
|
|
name: username
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/pager.PageModel'
|
|
|
|
- properties:
|
|
|
|
list:
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/schema.GetRankPersonalWithPageResp'
|
|
|
|
type: array
|
|
|
|
type: object
|
|
|
|
type: object
|
|
|
|
summary: user personal rank list
|
|
|
|
tags:
|
|
|
|
- Rank
|
|
|
|
/answer/api/v1/personal/user/info:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: GetOtherUserInfoByUsername
|
|
|
|
parameters:
|
|
|
|
- description: username
|
|
|
|
in: query
|
|
|
|
name: username
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
$ref: '#/definitions/schema.GetOtherUserInfoResp'
|
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: GetOtherUserInfoByUsername
|
|
|
|
tags:
|
|
|
|
- User
|
|
|
|
/answer/api/v1/personal/vote/page:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: user's vote
|
|
|
|
parameters:
|
|
|
|
- description: page size
|
|
|
|
in: query
|
|
|
|
name: page
|
|
|
|
type: integer
|
|
|
|
- description: page size
|
|
|
|
in: query
|
|
|
|
name: page_size
|
|
|
|
type: integer
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/pager.PageModel'
|
|
|
|
- properties:
|
|
|
|
list:
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/schema.GetVoteWithPageResp'
|
|
|
|
type: array
|
|
|
|
type: object
|
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: user's votes
|
|
|
|
tags:
|
|
|
|
- Activity
|
|
|
|
/answer/api/v1/question:
|
|
|
|
delete:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: delete question
|
|
|
|
parameters:
|
|
|
|
- description: question
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.RemoveQuestionReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: delete question
|
|
|
|
tags:
|
|
|
|
- api-question
|
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: add question
|
|
|
|
parameters:
|
|
|
|
- description: question
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.QuestionAdd'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: add question
|
|
|
|
tags:
|
|
|
|
- api-question
|
|
|
|
put:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: update question
|
|
|
|
parameters:
|
|
|
|
- description: question
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.QuestionUpdate'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: update question
|
|
|
|
tags:
|
|
|
|
- api-question
|
|
|
|
/answer/api/v1/question/closemsglist:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: close question msg list
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: close question msg list
|
|
|
|
tags:
|
|
|
|
- api-question
|
|
|
|
/answer/api/v1/question/info:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: GetQuestion Question
|
|
|
|
parameters:
|
|
|
|
- default: "1"
|
|
|
|
description: Question TagID
|
|
|
|
in: query
|
|
|
|
name: id
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: GetQuestion Question
|
|
|
|
tags:
|
|
|
|
- api-question
|
|
|
|
/answer/api/v1/question/page:
|
2022-10-14 12:28:11 +08:00
|
|
|
get:
|
2022-09-27 17:59:05 +08:00
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: SearchQuestionList <br> "order" Enums(newest, active,frequent,score,unanswered)
|
|
|
|
parameters:
|
|
|
|
- description: QuestionSearch
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.QuestionSearch'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
summary: SearchQuestionList
|
|
|
|
tags:
|
|
|
|
- api-question
|
|
|
|
/answer/api/v1/question/search:
|
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: SearchQuestionList
|
|
|
|
parameters:
|
|
|
|
- description: QuestionSearch
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.QuestionSearch'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
summary: SearchQuestionList
|
|
|
|
tags:
|
|
|
|
- api-question
|
|
|
|
/answer/api/v1/question/similar:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: add question title like
|
|
|
|
parameters:
|
|
|
|
- default: string
|
|
|
|
description: title
|
|
|
|
in: query
|
|
|
|
name: title
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: add question title like
|
|
|
|
tags:
|
|
|
|
- api-question
|
|
|
|
/answer/api/v1/question/similar/tag:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: Search Similar Question
|
|
|
|
parameters:
|
|
|
|
- default: ""
|
|
|
|
description: question_id
|
|
|
|
in: query
|
|
|
|
name: question_id
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
summary: Search Similar Question
|
|
|
|
tags:
|
|
|
|
- api-question
|
|
|
|
/answer/api/v1/question/status:
|
|
|
|
put:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: Close question
|
|
|
|
parameters:
|
|
|
|
- description: question
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.CloseQuestionReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: Close question
|
|
|
|
tags:
|
|
|
|
- api-question
|
|
|
|
/answer/api/v1/question/tags:
|
|
|
|
get:
|
|
|
|
description: get tag list
|
|
|
|
parameters:
|
|
|
|
- description: tag
|
|
|
|
in: query
|
|
|
|
name: tag
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/schema.GetTagResp'
|
|
|
|
type: array
|
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: get tag list
|
|
|
|
tags:
|
|
|
|
- Tag
|
|
|
|
/answer/api/v1/reasons:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: get reasons by object type and action
|
|
|
|
parameters:
|
|
|
|
- description: object_type
|
|
|
|
enum:
|
|
|
|
- question
|
|
|
|
- answer
|
|
|
|
- comment
|
|
|
|
- user
|
|
|
|
in: query
|
|
|
|
name: object_type
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
- description: action
|
|
|
|
enum:
|
|
|
|
- status
|
|
|
|
- close
|
|
|
|
- flag
|
|
|
|
- review
|
|
|
|
in: query
|
|
|
|
name: action
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: get reasons by object type and action
|
|
|
|
tags:
|
|
|
|
- reason
|
|
|
|
/answer/api/v1/report:
|
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: add report <br> source (question, answer, comment, user)
|
|
|
|
parameters:
|
|
|
|
- description: report
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.AddReportReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: add report
|
|
|
|
tags:
|
|
|
|
- Report
|
|
|
|
/answer/api/v1/report/type/list:
|
|
|
|
get:
|
|
|
|
description: get report type list
|
|
|
|
parameters:
|
|
|
|
- description: report source
|
|
|
|
enum:
|
|
|
|
- question
|
|
|
|
- answer
|
|
|
|
- comment
|
|
|
|
- user
|
|
|
|
in: query
|
|
|
|
name: source
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/schema.GetReportTypeResp'
|
|
|
|
type: array
|
|
|
|
type: object
|
|
|
|
summary: get report type list
|
|
|
|
tags:
|
|
|
|
- Report
|
|
|
|
/answer/api/v1/revisions:
|
|
|
|
get:
|
|
|
|
description: get revision list
|
|
|
|
parameters:
|
|
|
|
- description: object id
|
|
|
|
in: query
|
|
|
|
name: object_id
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/schema.GetRevisionResp'
|
|
|
|
type: array
|
|
|
|
type: object
|
|
|
|
summary: get revision list
|
|
|
|
tags:
|
|
|
|
- Revision
|
|
|
|
/answer/api/v1/search:
|
|
|
|
get:
|
|
|
|
description: search object
|
|
|
|
parameters:
|
|
|
|
- description: query string
|
|
|
|
in: query
|
|
|
|
name: q
|
|
|
|
required: true
|
|
|
|
type: string
|
2022-10-09 18:44:56 +08:00
|
|
|
- description: order
|
|
|
|
enum:
|
|
|
|
- newest
|
|
|
|
- active
|
|
|
|
- score
|
2022-10-17 11:11:23 +08:00
|
|
|
- relevance
|
2022-10-09 18:44:56 +08:00
|
|
|
in: query
|
|
|
|
name: order
|
|
|
|
required: true
|
|
|
|
type: string
|
2022-09-27 17:59:05 +08:00
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
$ref: '#/definitions/schema.SearchListResp'
|
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: search object
|
|
|
|
tags:
|
|
|
|
- Search
|
|
|
|
/answer/api/v1/siteinfo:
|
|
|
|
get:
|
2022-11-07 12:45:01 +08:00
|
|
|
description: get site info
|
2022-09-27 17:59:05 +08:00
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
$ref: '#/definitions/schema.SiteGeneralResp'
|
|
|
|
type: object
|
2022-11-07 12:45:01 +08:00
|
|
|
summary: get site info
|
2022-09-27 17:59:05 +08:00
|
|
|
tags:
|
|
|
|
- site
|
2022-11-15 17:12:33 +08:00
|
|
|
/answer/api/v1/siteinfo/legal:
|
|
|
|
get:
|
|
|
|
description: get site legal info
|
2022-11-16 15:31:24 +08:00
|
|
|
parameters:
|
|
|
|
- description: legal information type
|
|
|
|
enum:
|
|
|
|
- tos
|
|
|
|
- privacy
|
|
|
|
in: query
|
|
|
|
name: info_type
|
|
|
|
required: true
|
|
|
|
type: string
|
2022-11-15 17:12:33 +08:00
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
2022-11-16 15:31:24 +08:00
|
|
|
$ref: '#/definitions/schema.GetSiteLegalInfoResp'
|
2022-11-15 17:12:33 +08:00
|
|
|
type: object
|
|
|
|
summary: get site legal info
|
|
|
|
tags:
|
|
|
|
- site
|
2022-09-27 17:59:05 +08:00
|
|
|
/answer/api/v1/tag:
|
|
|
|
delete:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: delete tag
|
|
|
|
parameters:
|
|
|
|
- description: tag
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.RemoveTagReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
summary: delete tag
|
|
|
|
tags:
|
|
|
|
- Tag
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: get tag one
|
|
|
|
parameters:
|
|
|
|
- description: tag id
|
|
|
|
in: query
|
|
|
|
name: tag_id
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
- description: tag name
|
|
|
|
in: query
|
|
|
|
name: tag_name
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
$ref: '#/definitions/schema.GetTagResp'
|
|
|
|
type: object
|
|
|
|
summary: get tag one
|
|
|
|
tags:
|
|
|
|
- Tag
|
|
|
|
put:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: update tag
|
|
|
|
parameters:
|
|
|
|
- description: tag
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.UpdateTagReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
summary: update tag
|
|
|
|
tags:
|
|
|
|
- Tag
|
|
|
|
/answer/api/v1/tag/synonym:
|
|
|
|
put:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: update tag
|
|
|
|
parameters:
|
|
|
|
- description: tag
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.UpdateTagSynonymReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
summary: update tag
|
|
|
|
tags:
|
|
|
|
- Tag
|
|
|
|
/answer/api/v1/tag/synonyms:
|
|
|
|
get:
|
|
|
|
description: get tag synonyms
|
|
|
|
parameters:
|
|
|
|
- description: tag id
|
|
|
|
in: query
|
|
|
|
name: tag_id
|
|
|
|
required: true
|
|
|
|
type: integer
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/schema.GetTagSynonymsResp'
|
|
|
|
type: array
|
|
|
|
type: object
|
|
|
|
summary: get tag synonyms
|
|
|
|
tags:
|
|
|
|
- Tag
|
|
|
|
/answer/api/v1/tags/following:
|
|
|
|
get:
|
|
|
|
description: get following tag list
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/schema.GetFollowingTagsResp'
|
|
|
|
type: array
|
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: get following tag list
|
|
|
|
tags:
|
|
|
|
- Tag
|
|
|
|
/answer/api/v1/tags/page:
|
|
|
|
get:
|
|
|
|
description: get tag page
|
|
|
|
parameters:
|
|
|
|
- description: page size
|
|
|
|
in: query
|
|
|
|
name: page
|
|
|
|
type: integer
|
|
|
|
- description: page size
|
|
|
|
in: query
|
|
|
|
name: page_size
|
|
|
|
type: integer
|
|
|
|
- description: slug_name
|
|
|
|
in: query
|
|
|
|
name: slug_name
|
|
|
|
type: string
|
|
|
|
- description: query condition
|
|
|
|
enum:
|
|
|
|
- popular
|
|
|
|
- name
|
|
|
|
- newest
|
|
|
|
in: query
|
|
|
|
name: query_cond
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/pager.PageModel'
|
|
|
|
- properties:
|
|
|
|
list:
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/schema.GetTagPageResp'
|
|
|
|
type: array
|
|
|
|
type: object
|
|
|
|
type: object
|
|
|
|
summary: get tag page
|
|
|
|
tags:
|
|
|
|
- Tag
|
|
|
|
/answer/api/v1/user/action/record:
|
|
|
|
get:
|
|
|
|
description: ActionRecord
|
|
|
|
parameters:
|
|
|
|
- description: action
|
|
|
|
enum:
|
|
|
|
- login
|
|
|
|
- e_mail
|
|
|
|
- find_pass
|
|
|
|
in: query
|
|
|
|
name: action
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
$ref: '#/definitions/schema.ActionRecordResp'
|
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: ActionRecord
|
|
|
|
tags:
|
|
|
|
- User
|
|
|
|
/answer/api/v1/user/email:
|
|
|
|
put:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: user change email verification
|
|
|
|
parameters:
|
|
|
|
- description: UserChangeEmailVerifyReq
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.UserChangeEmailVerifyReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: user change email verification
|
|
|
|
tags:
|
|
|
|
- User
|
|
|
|
/answer/api/v1/user/email/change/code:
|
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: send email to the user email then change their email
|
|
|
|
parameters:
|
|
|
|
- description: UserChangeEmailSendCodeReq
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.UserChangeEmailSendCodeReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
summary: send email to the user email then change their email
|
|
|
|
tags:
|
|
|
|
- User
|
|
|
|
/answer/api/v1/user/email/verification:
|
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: UserVerifyEmail
|
|
|
|
parameters:
|
|
|
|
- default: ""
|
|
|
|
description: code
|
|
|
|
in: query
|
|
|
|
name: code
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
$ref: '#/definitions/schema.GetUserResp'
|
|
|
|
type: object
|
|
|
|
summary: UserVerifyEmail
|
|
|
|
tags:
|
|
|
|
- User
|
|
|
|
/answer/api/v1/user/email/verification/send:
|
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: UserVerifyEmailSend
|
|
|
|
parameters:
|
|
|
|
- default: ""
|
|
|
|
description: captcha_id
|
|
|
|
in: query
|
|
|
|
name: captcha_id
|
|
|
|
type: string
|
|
|
|
- default: ""
|
|
|
|
description: captcha_code
|
|
|
|
in: query
|
|
|
|
name: captcha_code
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: UserVerifyEmailSend
|
|
|
|
tags:
|
|
|
|
- User
|
|
|
|
/answer/api/v1/user/info:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
2022-10-28 17:13:49 +08:00
|
|
|
description: get user info, if user no login response http code is 200, but
|
|
|
|
user info is null
|
2022-09-27 17:59:05 +08:00
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
2022-10-28 15:46:05 +08:00
|
|
|
$ref: '#/definitions/schema.GetUserToSetShowResp'
|
2022-09-27 17:59:05 +08:00
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: GetUserInfoByUserID
|
|
|
|
tags:
|
|
|
|
- User
|
|
|
|
put:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
2022-09-30 10:22:41 +08:00
|
|
|
description: UserUpdateInfo update user info
|
2022-09-27 17:59:05 +08:00
|
|
|
parameters:
|
|
|
|
- description: access-token
|
|
|
|
in: header
|
|
|
|
name: Authorization
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
- description: UpdateInfoRequest
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.UpdateInfoRequest'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
2022-09-30 10:22:41 +08:00
|
|
|
summary: UserUpdateInfo update user info
|
2022-09-27 17:59:05 +08:00
|
|
|
tags:
|
|
|
|
- User
|
2022-11-11 15:13:23 +08:00
|
|
|
/answer/api/v1/user/interface:
|
|
|
|
put:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: UserUpdateInterface update user interface config
|
|
|
|
parameters:
|
|
|
|
- description: access-token
|
|
|
|
in: header
|
|
|
|
name: Authorization
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
- description: UpdateInfoRequest
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.UpdateUserInterfaceRequest'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: UserUpdateInterface update user interface config
|
|
|
|
tags:
|
|
|
|
- User
|
2022-09-27 17:59:05 +08:00
|
|
|
/answer/api/v1/user/login/email:
|
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: UserEmailLogin
|
|
|
|
parameters:
|
|
|
|
- description: UserEmailLogin
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.UserEmailLogin'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
$ref: '#/definitions/schema.GetUserResp'
|
|
|
|
type: object
|
|
|
|
summary: UserEmailLogin
|
|
|
|
tags:
|
|
|
|
- User
|
|
|
|
/answer/api/v1/user/logout:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: user logout
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
summary: user logout
|
|
|
|
tags:
|
|
|
|
- User
|
|
|
|
/answer/api/v1/user/notice/set:
|
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: UserNoticeSet
|
|
|
|
parameters:
|
|
|
|
- description: UserNoticeSetRequest
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.UserNoticeSetRequest'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
$ref: '#/definitions/schema.UserNoticeSetResp'
|
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: UserNoticeSet
|
|
|
|
tags:
|
|
|
|
- User
|
|
|
|
/answer/api/v1/user/password:
|
|
|
|
put:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: UserModifyPassWord
|
|
|
|
parameters:
|
|
|
|
- description: UserModifyPassWordRequest
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.UserModifyPassWordRequest'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: UserModifyPassWord
|
|
|
|
tags:
|
|
|
|
- User
|
|
|
|
/answer/api/v1/user/password/replacement:
|
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: UseRePassWord
|
|
|
|
parameters:
|
|
|
|
- description: UserRePassWordRequest
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.UserRePassWordRequest'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
summary: UseRePassWord
|
|
|
|
tags:
|
|
|
|
- User
|
|
|
|
/answer/api/v1/user/password/reset:
|
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: RetrievePassWord
|
|
|
|
parameters:
|
|
|
|
- description: UserRetrievePassWordRequest
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.UserRetrievePassWordRequest'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
summary: RetrievePassWord
|
|
|
|
tags:
|
|
|
|
- User
|
|
|
|
/answer/api/v1/user/register/email:
|
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: UserRegisterByEmail
|
|
|
|
parameters:
|
2022-10-14 17:11:40 +08:00
|
|
|
- description: UserRegisterReq
|
2022-09-27 17:59:05 +08:00
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
2022-10-14 17:11:40 +08:00
|
|
|
$ref: '#/definitions/schema.UserRegisterReq'
|
2022-09-27 17:59:05 +08:00
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
$ref: '#/definitions/schema.GetUserResp'
|
|
|
|
type: object
|
|
|
|
summary: UserRegisterByEmail
|
|
|
|
tags:
|
|
|
|
- User
|
2022-11-11 15:13:23 +08:00
|
|
|
/answer/api/v1/vote/down:
|
|
|
|
post:
|
2022-09-28 14:54:54 +08:00
|
|
|
consumes:
|
|
|
|
- application/json
|
2022-11-11 15:13:23 +08:00
|
|
|
description: add vote
|
|
|
|
parameters:
|
|
|
|
- description: vote
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.VoteReq'
|
2022-09-28 14:54:54 +08:00
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
2022-11-11 15:13:23 +08:00
|
|
|
$ref: '#/definitions/schema.VoteResp'
|
2022-09-28 14:54:54 +08:00
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
2022-11-11 15:13:23 +08:00
|
|
|
summary: vote down
|
2022-09-28 14:54:54 +08:00
|
|
|
tags:
|
2022-11-11 15:13:23 +08:00
|
|
|
- Activity
|
|
|
|
/answer/api/v1/vote/up:
|
2022-09-27 17:59:05 +08:00
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: add vote
|
|
|
|
parameters:
|
|
|
|
- description: vote
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/schema.VoteReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
$ref: '#/definitions/schema.VoteResp'
|
|
|
|
type: object
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
2022-11-11 15:13:23 +08:00
|
|
|
summary: vote up
|
2022-09-27 17:59:05 +08:00
|
|
|
tags:
|
|
|
|
- Activity
|
2022-11-11 15:13:23 +08:00
|
|
|
/installation/base-info:
|
2022-09-27 17:59:05 +08:00
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
2022-11-11 15:13:23 +08:00
|
|
|
description: init base info
|
2022-09-27 17:59:05 +08:00
|
|
|
parameters:
|
2022-11-11 15:13:23 +08:00
|
|
|
- description: InitBaseInfoReq
|
2022-09-27 17:59:05 +08:00
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
2022-11-11 15:13:23 +08:00
|
|
|
$ref: '#/definitions/install.InitBaseInfoReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
summary: init base info
|
|
|
|
tags:
|
|
|
|
- installation
|
|
|
|
/installation/config-file/check:
|
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: check config file if exist when installation
|
2022-09-27 17:59:05 +08:00
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
2022-11-11 15:13:23 +08:00
|
|
|
$ref: '#/definitions/install.CheckConfigFileResp'
|
2022-09-27 17:59:05 +08:00
|
|
|
type: object
|
2022-11-11 15:13:23 +08:00
|
|
|
summary: check config file if exist when installation
|
2022-09-27 17:59:05 +08:00
|
|
|
tags:
|
2022-11-11 15:13:23 +08:00
|
|
|
- installation
|
|
|
|
/installation/db/check:
|
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: check database if exist when installation
|
|
|
|
parameters:
|
|
|
|
- description: CheckDatabaseReq
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/install.CheckDatabaseReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
$ref: '#/definitions/install.CheckConfigFileResp'
|
|
|
|
type: object
|
|
|
|
summary: check database if exist when installation
|
|
|
|
tags:
|
|
|
|
- installation
|
|
|
|
/installation/init:
|
|
|
|
post:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: init environment
|
|
|
|
parameters:
|
|
|
|
- description: CheckDatabaseReq
|
|
|
|
in: body
|
|
|
|
name: data
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/install.CheckDatabaseReq'
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
summary: init environment
|
|
|
|
tags:
|
|
|
|
- installation
|
|
|
|
/installation/language/options:
|
|
|
|
get:
|
|
|
|
description: get installation language options
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
allOf:
|
|
|
|
- $ref: '#/definitions/handler.RespBody'
|
|
|
|
- properties:
|
|
|
|
data:
|
|
|
|
items:
|
|
|
|
$ref: '#/definitions/translator.LangOption'
|
|
|
|
type: array
|
|
|
|
type: object
|
|
|
|
summary: get installation language options
|
|
|
|
tags:
|
|
|
|
- Lang
|
2022-09-27 17:59:05 +08:00
|
|
|
/personal/question/page:
|
|
|
|
get:
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
description: UserList
|
|
|
|
parameters:
|
|
|
|
- default: string
|
|
|
|
description: username
|
|
|
|
in: query
|
|
|
|
name: username
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
- description: order
|
|
|
|
enum:
|
|
|
|
- newest
|
|
|
|
- score
|
|
|
|
in: query
|
|
|
|
name: order
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
- default: "0"
|
|
|
|
description: page
|
|
|
|
in: query
|
|
|
|
name: page
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
- default: "20"
|
|
|
|
description: pagesize
|
|
|
|
in: query
|
|
|
|
name: pagesize
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/handler.RespBody'
|
|
|
|
security:
|
|
|
|
- ApiKeyAuth: []
|
|
|
|
summary: UserList
|
|
|
|
tags:
|
|
|
|
- api-question
|
|
|
|
securityDefinitions:
|
|
|
|
ApiKeyAuth:
|
|
|
|
in: header
|
|
|
|
name: Authorization
|
|
|
|
type: apiKey
|
|
|
|
swagger: "2.0"
|