report

package
v0.3.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 18, 2020 License: MIT Imports: 11 Imported by: 0

Documentation

Overview

Copyright 2019-2020 Axetroy. All rights reserved. MIT license.

Copyright 2019-2020 Axetroy. All rights reserved. MIT license.

Copyright 2019-2020 Axetroy. All rights reserved. MIT license.

Copyright 2019-2020 Axetroy. All rights reserved. MIT license.

Copyright 2019-2020 Axetroy. All rights reserved. MIT license.

Index

Constants

This section is empty.

Variables

View Source
var CreateRouter = router.Handler(func(c router.Context) {
	var (
		input CreateParams
	)

	c.ResponseFunc(c.ShouldBindJSON(&input), func() schema.Response {
		return Create(helper.NewContext(&c), input)
	})
})
View Source
var GetListRouter = router.Handler(func(c router.Context) {
	var (
		input Query
	)

	c.ResponseFunc(c.ShouldBindQuery(&input), func() schema.Response {
		return GetList(helper.NewContext(&c), input)
	})
})
View Source
var GetReportRouter = router.Handler(func(c router.Context) {
	id := c.Param("report_id")

	c.ResponseFunc(nil, func() schema.Response {
		return GetReportByUser(helper.NewContext(&c), id)
	})
})
View Source
var UpdateRouter = router.Handler(func(c router.Context) {
	var (
		input UpdateParams
	)

	reportId := c.Param("report_id")

	c.ResponseFunc(c.ShouldBindJSON(&input), func() schema.Response {
		return Update(helper.NewContext(&c), reportId, input)
	})
})

Functions

func Create

func Create(c helper.Context, input CreateParams) (res schema.Response)

func DeleteReportById

func DeleteReportById(id string)

func GetList

func GetList(c helper.Context, input Query) (res schema.Response)

func GetReportByAdmin

func GetReportByAdmin(c helper.Context, id string) (res schema.Response)

func GetReportByUser

func GetReportByUser(c helper.Context, id string) (res schema.Response)

func Update

func Update(c helper.Context, reportId string, input UpdateParams) (res schema.Response)

Types

type CreateParams

type CreateParams struct {
	Title       string           `json:"title" valid:"required~请填写标题"`     // 标题
	Content     string           `json:"content" valid:"required~请填写反馈内容"` // 内容
	Type        model.ReportType `json:"type" valid:"required~请填写反馈类型"`    // 反馈类型
	Screenshots []string         `json:"screenshots"`                      // 截图
}

type Query

type Query struct {
	schema.Query
	Type   *model.ReportType   `json:"type" form:"type"`     // 类型
	Status *model.ReportStatus `json:"status" form:"status"` // 状态
}

type QueryAdmin

type QueryAdmin struct {
	Query
	Uid string `json:"uid"`
}

type UpdateByAdminParams

type UpdateByAdminParams struct {
	UpdateParams
	Locked *bool `json:"locked"` // 是否锁定
}

type UpdateParams

type UpdateParams struct {
	Status *model.ReportStatus `json:"status" valid:"required~请选择要标记的状态"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL