This repository has been archived on 2022-10-02. You can view files and clone it, but cannot push or open issues or pull requests.
dcbot-old/models/observation.go

30 lines
822 B
Go

package models
type Observation struct {
ID int `json:"id" gqlgen:"id"`
World string `pg:"unique:group_1" json:"world" gqlgen:"world"`
TribeID int `pg:"unique:group_1" json:"TribeID" gqlgen:"TribeID"`
ServerID string `pg:"on_delete:CASCADE,unique:group_1" json:"serverID" gqlgen:"serverID"`
Server *Server `json:"server,omitempty" gqlgen:"server"`
}
type Observations []*Observation
func (o Observations) Contains(world string, id int) bool {
for _, observation := range o {
if observation.TribeID == id && observation.World == world {
return true
}
}
return false
}
type ObservationFilter struct {
ID []int
World []string
ServerID []string
Limit int `urlstruct:",nowhere"`
Offset int `urlstruct:",nowhere"`
Order []string `urlstruct:",nowhere"`
}