role.go•7.02 kB
// Code generated by ent, DO NOT EDIT.
package ent
import (
"encoding/json"
"fmt"
"strings"
"time"
"entgo.io/ent"
"entgo.io/ent/dialect/sql"
"github.com/Southclaws/storyden/internal/ent/role"
"github.com/rs/xid"
)
// Role is the model entity for the Role schema.
type Role struct {
config `json:"-"`
// ID of the ent.
ID xid.ID `json:"id,omitempty"`
// CreatedAt holds the value of the "created_at" field.
CreatedAt time.Time `json:"created_at,omitempty"`
// UpdatedAt holds the value of the "updated_at" field.
UpdatedAt time.Time `json:"updated_at,omitempty"`
// Name holds the value of the "name" field.
Name string `json:"name,omitempty"`
// Colour holds the value of the "colour" field.
Colour string `json:"colour,omitempty"`
// Permissions holds the value of the "permissions" field.
Permissions []string `json:"permissions,omitempty"`
// SortKey holds the value of the "sort_key" field.
SortKey float64 `json:"sort_key,omitempty"`
// Edges holds the relations/edges for other nodes in the graph.
// The values are being populated by the RoleQuery when eager-loading is set.
Edges RoleEdges `json:"edges"`
selectValues sql.SelectValues
}
// RoleEdges holds the relations/edges for other nodes in the graph.
type RoleEdges struct {
// Accounts holds the value of the accounts edge.
Accounts []*Account `json:"accounts,omitempty"`
// AccountRoles holds the value of the account_roles edge.
AccountRoles []*AccountRoles `json:"account_roles,omitempty"`
// loadedTypes holds the information for reporting if a
// type was loaded (or requested) in eager-loading or not.
loadedTypes [2]bool
}
// AccountsOrErr returns the Accounts value or an error if the edge
// was not loaded in eager-loading.
func (e RoleEdges) AccountsOrErr() ([]*Account, error) {
if e.loadedTypes[0] {
return e.Accounts, nil
}
return nil, &NotLoadedError{edge: "accounts"}
}
// AccountRolesOrErr returns the AccountRoles value or an error if the edge
// was not loaded in eager-loading.
func (e RoleEdges) AccountRolesOrErr() ([]*AccountRoles, error) {
if e.loadedTypes[1] {
return e.AccountRoles, nil
}
return nil, &NotLoadedError{edge: "account_roles"}
}
// scanValues returns the types for scanning values from sql.Rows.
func (*Role) scanValues(columns []string) ([]any, error) {
values := make([]any, len(columns))
for i := range columns {
switch columns[i] {
case role.FieldPermissions:
values[i] = new([]byte)
case role.FieldSortKey:
values[i] = new(sql.NullFloat64)
case role.FieldName, role.FieldColour:
values[i] = new(sql.NullString)
case role.FieldCreatedAt, role.FieldUpdatedAt:
values[i] = new(sql.NullTime)
case role.FieldID:
values[i] = new(xid.ID)
default:
values[i] = new(sql.UnknownType)
}
}
return values, nil
}
// assignValues assigns the values that were returned from sql.Rows (after scanning)
// to the Role fields.
func (_m *Role) assignValues(columns []string, values []any) error {
if m, n := len(values), len(columns); m < n {
return fmt.Errorf("mismatch number of scan values: %d != %d", m, n)
}
for i := range columns {
switch columns[i] {
case role.FieldID:
if value, ok := values[i].(*xid.ID); !ok {
return fmt.Errorf("unexpected type %T for field id", values[i])
} else if value != nil {
_m.ID = *value
}
case role.FieldCreatedAt:
if value, ok := values[i].(*sql.NullTime); !ok {
return fmt.Errorf("unexpected type %T for field created_at", values[i])
} else if value.Valid {
_m.CreatedAt = value.Time
}
case role.FieldUpdatedAt:
if value, ok := values[i].(*sql.NullTime); !ok {
return fmt.Errorf("unexpected type %T for field updated_at", values[i])
} else if value.Valid {
_m.UpdatedAt = value.Time
}
case role.FieldName:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field name", values[i])
} else if value.Valid {
_m.Name = value.String
}
case role.FieldColour:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field colour", values[i])
} else if value.Valid {
_m.Colour = value.String
}
case role.FieldPermissions:
if value, ok := values[i].(*[]byte); !ok {
return fmt.Errorf("unexpected type %T for field permissions", values[i])
} else if value != nil && len(*value) > 0 {
if err := json.Unmarshal(*value, &_m.Permissions); err != nil {
return fmt.Errorf("unmarshal field permissions: %w", err)
}
}
case role.FieldSortKey:
if value, ok := values[i].(*sql.NullFloat64); !ok {
return fmt.Errorf("unexpected type %T for field sort_key", values[i])
} else if value.Valid {
_m.SortKey = value.Float64
}
default:
_m.selectValues.Set(columns[i], values[i])
}
}
return nil
}
// Value returns the ent.Value that was dynamically selected and assigned to the Role.
// This includes values selected through modifiers, order, etc.
func (_m *Role) Value(name string) (ent.Value, error) {
return _m.selectValues.Get(name)
}
// QueryAccounts queries the "accounts" edge of the Role entity.
func (_m *Role) QueryAccounts() *AccountQuery {
return NewRoleClient(_m.config).QueryAccounts(_m)
}
// QueryAccountRoles queries the "account_roles" edge of the Role entity.
func (_m *Role) QueryAccountRoles() *AccountRolesQuery {
return NewRoleClient(_m.config).QueryAccountRoles(_m)
}
// Update returns a builder for updating this Role.
// Note that you need to call Role.Unwrap() before calling this method if this Role
// was returned from a transaction, and the transaction was committed or rolled back.
func (_m *Role) Update() *RoleUpdateOne {
return NewRoleClient(_m.config).UpdateOne(_m)
}
// Unwrap unwraps the Role entity that was returned from a transaction after it was closed,
// so that all future queries will be executed through the driver which created the transaction.
func (_m *Role) Unwrap() *Role {
_tx, ok := _m.config.driver.(*txDriver)
if !ok {
panic("ent: Role is not a transactional entity")
}
_m.config.driver = _tx.drv
return _m
}
// String implements the fmt.Stringer.
func (_m *Role) String() string {
var builder strings.Builder
builder.WriteString("Role(")
builder.WriteString(fmt.Sprintf("id=%v, ", _m.ID))
builder.WriteString("created_at=")
builder.WriteString(_m.CreatedAt.Format(time.ANSIC))
builder.WriteString(", ")
builder.WriteString("updated_at=")
builder.WriteString(_m.UpdatedAt.Format(time.ANSIC))
builder.WriteString(", ")
builder.WriteString("name=")
builder.WriteString(_m.Name)
builder.WriteString(", ")
builder.WriteString("colour=")
builder.WriteString(_m.Colour)
builder.WriteString(", ")
builder.WriteString("permissions=")
builder.WriteString(fmt.Sprintf("%v", _m.Permissions))
builder.WriteString(", ")
builder.WriteString("sort_key=")
builder.WriteString(fmt.Sprintf("%v", _m.SortKey))
builder.WriteByte(')')
return builder.String()
}
// Roles is a parsable slice of Role.
type Roles []*Role