package models import ( "encoding/json" "time" "github.com/featurebasedb/featurebase/v3/dax" "github.com/gobuffalo/pop/v6" "github.com/gobuffalo/validate/v3" "github.com/gobuffalo/validate/v3/validators" "github.com/gofrs/uuid" ) // Node represents a host or server that is available to work on jobs. type Node struct { ID uuid.UUID `json:"id" db:"id"` Address dax.Address `json:"address" db:"address"` NodeRoles NodeRoles `json:"node_roles" has_many:"node_roles" order_by:"created_at asc"` CreatedAt time.Time `json:"created_at" db:"created_at"` UpdatedAt time.Time `json:"updated_at" db:"updated_at"` } // String is not required by pop and may be deleted func (t *Node) String() string { jt, _ := json.MarshalIndent(t, " ", " ") //nolint:errchkjson return string(jt) } // Nodes is not required by pop and may be deleted type Nodes []*Node // String is not required by pop and may be deleted func (t Nodes) String() string { jt, _ := json.MarshalIndent(t, " ", " ") //nolint:errchkjson return string(jt) } // Validate gets run every time you call a "pop.Validate*" (pop.ValidateAndSave, pop.ValidateAndCreate, pop.ValidateAndUpdate) method. // This method is not required and may be deleted. func (t *Node) Validate(tx *pop.Connection) (*validate.Errors, error) { return validate.Validate( &validators.StringIsPresent{Field: string(t.Address), Name: "Address"}, ), nil } // ValidateCreate gets run every time you call "pop.ValidateAndCreate" method. // This method is not required and may be deleted. func (t *Node) ValidateCreate(tx *pop.Connection) (*validate.Errors, error) { return validate.NewErrors(), nil } // ValidateUpdate gets run every time you call "pop.ValidateAndUpdate" method. // This method is not required and may be deleted. func (t *Node) ValidateUpdate(tx *pop.Connection) (*validate.Errors, error) { return validate.NewErrors(), nil }