42 lines
835 B
Go
42 lines
835 B
Go
package model
|
|
|
|
import (
|
|
"encoding/json"
|
|
"go.etztech.xyz/go-mcm/model/django"
|
|
)
|
|
|
|
type Importance string
|
|
|
|
const (
|
|
ImportanceLow Importance = "L"
|
|
ImportanceMedium Importance = "M"
|
|
ImportanceHigh Importance = "H"
|
|
)
|
|
|
|
type Note struct {
|
|
ID int64 `json:"id"`
|
|
PlayerID int64 `json:"player_id"`
|
|
Message string `json:"message"`
|
|
Importance Importance `json:"importance"`
|
|
StaffID int64 `json:"staff_id"`
|
|
Date string `json:"date"`
|
|
Link string `json:"link"`
|
|
}
|
|
|
|
func (q *Query) Note(builder *django.Builder) ([]*Note, error) {
|
|
endpoint := q.endpoint("note", builder.QueryString())
|
|
notes := make([]*Note, 0)
|
|
|
|
resp, err := response(endpoint)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = json.Unmarshal(resp, ¬es)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return notes, nil
|
|
}
|