2019-10-02 19:03:23 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2020-06-11 06:10:01 +00:00
|
|
|
|
2019-10-03 20:22:22 +00:00
|
|
|
"go.etztech.xyz/go-mcm/internal"
|
2019-10-02 19:03:23 +00:00
|
|
|
"go.etztech.xyz/go-mcm/model/django"
|
|
|
|
)
|
|
|
|
|
|
|
|
type IP struct {
|
|
|
|
ID int64 `json:"id"`
|
|
|
|
PlayerID int64 `json:"player_id"`
|
|
|
|
LastUsed string `json:"last_used"`
|
|
|
|
Link string `json:"link"`
|
2019-11-24 21:20:07 +00:00
|
|
|
|
|
|
|
model *Model `json:"-"`
|
2019-10-02 19:03:23 +00:00
|
|
|
}
|
|
|
|
|
2019-10-03 20:22:22 +00:00
|
|
|
func (q *Model) IP(builder *django.Builder) ([]*IP, error) {
|
2019-11-24 21:20:07 +00:00
|
|
|
endpoint := q.queryEndpoint("ip", builder.QueryString())
|
2019-10-02 19:03:23 +00:00
|
|
|
ips := make([]*IP, 0)
|
|
|
|
|
2019-10-03 20:22:22 +00:00
|
|
|
resp, err := internal.ResponseGet(endpoint)
|
2019-10-02 19:03:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.Unmarshal(resp, &ips)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-11-24 21:20:07 +00:00
|
|
|
for _, ip := range ips {
|
|
|
|
ip.model = q
|
|
|
|
}
|
|
|
|
|
2019-10-02 19:03:23 +00:00
|
|
|
return ips, nil
|
|
|
|
}
|
2019-11-24 21:20:07 +00:00
|
|
|
|
|
|
|
func (i *IP) Save() (*internal.Status, error) {
|
|
|
|
endpoint := i.model.endpoint("ip")
|
|
|
|
return internal.ResponseStatus(endpoint, i.model.Values(i))
|
|
|
|
}
|