123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- package model
- // ParamValidator .
- type ParamValidator interface {
- Validate() bool
- }
- // ParamSearch .
- type ParamSearch struct {
- MIDs []int64 `form:"mids,split"`
- }
- // Validate .
- func (p *ParamSearch) Validate() bool {
- p.MIDs = intsSet(p.MIDs)
- if len(p.MIDs) == 0 || len(p.MIDs) > 200 {
- return false
- }
- return true
- }
- // ParamHistory .
- type ParamHistory struct {
- MID int64 `form:"mid"`
- PS int `form:"ps"`
- PN int `form:"pn"`
- }
- // Validate .
- func (p *ParamHistory) Validate() bool {
- if p.MID <= 0 {
- return false
- }
- if p.PS <= 0 || p.PS > 100 {
- return false
- }
- if p.PN <= 0 {
- return false
- }
- return true
- }
- // ParamBatchBlock .
- type ParamBatchBlock struct {
- MIDs []int64 `form:"mids,split"`
- AdminID int64 `form:"admin_id"`
- AdminName string `form:"admin_name"`
- Source int `form:"source"` //1 系统封禁 2 小黑屋封禁
- Area BlockArea `form:"area"`
- Reason string `form:"reason"`
- Comment string `form:"comment"`
- Action BlockAction `form:"action"`
- Duration int64 `form:"duration"` // 单位:天
- Notify bool `form:"notify"`
- }
- // Validate .
- func (p *ParamBatchBlock) Validate() bool {
- p.MIDs = intsSet(p.MIDs)
- if len(p.MIDs) == 0 || len(p.MIDs) > 200 {
- return false
- }
- if p.AdminID <= 0 {
- return false
- }
- if p.AdminName == "" {
- return false
- }
- if p.Source != 1 && p.Source != 2 {
- return false
- }
- if !p.Area.Contain() {
- return false
- }
- if p.Comment == "" {
- return false
- }
- if p.Action != BlockActionForever && p.Action != BlockActionLimit {
- return false
- }
- if p.Action == BlockActionLimit {
- if p.Duration <= 0 {
- return false
- }
- }
- return true
- }
- // ParamBatchRemove .
- type ParamBatchRemove struct {
- MIDs []int64 `form:"mids,split"`
- AdminID int64 `form:"admin_id"`
- AdminName string `form:"admin_name"`
- Comment string `form:"comment"`
- Notify bool `form:"notify"`
- }
- // Validate .
- func (p *ParamBatchRemove) Validate() bool {
- p.MIDs = intsSet(p.MIDs)
- if len(p.MIDs) == 0 || len(p.MIDs) > 200 {
- return false
- }
- if p.AdminID <= 0 {
- return false
- }
- if p.AdminName == "" {
- return false
- }
- if p.Comment == "" {
- return false
- }
- return true
- }
- func intsSet(ints []int64) (intSet []int64) {
- if len(ints) == 0 {
- return
- }
- OUTER:
- for i := range ints {
- for ni := range intSet {
- if ints[i] == intSet[ni] {
- continue OUTER
- }
- }
- intSet = append(intSet, ints[i])
- }
- return
- }
|