1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048 |
- // Code generated by ent, DO NOT EDIT.
- package ent
- import (
- "context"
- "errors"
- "fmt"
- "time"
- "wechat-api/ent/agent"
- "wechat-api/ent/predicate"
- "wechat-api/ent/server"
- "wechat-api/ent/wx"
- "entgo.io/ent/dialect/sql"
- "entgo.io/ent/dialect/sql/sqlgraph"
- "entgo.io/ent/schema/field"
- )
- // WxUpdate is the builder for updating Wx entities.
- type WxUpdate struct {
- config
- hooks []Hook
- mutation *WxMutation
- }
- // Where appends a list predicates to the WxUpdate builder.
- func (wu *WxUpdate) Where(ps ...predicate.Wx) *WxUpdate {
- wu.mutation.Where(ps...)
- return wu
- }
- // SetUpdatedAt sets the "updated_at" field.
- func (wu *WxUpdate) SetUpdatedAt(t time.Time) *WxUpdate {
- wu.mutation.SetUpdatedAt(t)
- return wu
- }
- // SetStatus sets the "status" field.
- func (wu *WxUpdate) SetStatus(u uint8) *WxUpdate {
- wu.mutation.ResetStatus()
- wu.mutation.SetStatus(u)
- return wu
- }
- // SetNillableStatus sets the "status" field if the given value is not nil.
- func (wu *WxUpdate) SetNillableStatus(u *uint8) *WxUpdate {
- if u != nil {
- wu.SetStatus(*u)
- }
- return wu
- }
- // AddStatus adds u to the "status" field.
- func (wu *WxUpdate) AddStatus(u int8) *WxUpdate {
- wu.mutation.AddStatus(u)
- return wu
- }
- // ClearStatus clears the value of the "status" field.
- func (wu *WxUpdate) ClearStatus() *WxUpdate {
- wu.mutation.ClearStatus()
- return wu
- }
- // SetDeletedAt sets the "deleted_at" field.
- func (wu *WxUpdate) SetDeletedAt(t time.Time) *WxUpdate {
- wu.mutation.SetDeletedAt(t)
- return wu
- }
- // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
- func (wu *WxUpdate) SetNillableDeletedAt(t *time.Time) *WxUpdate {
- if t != nil {
- wu.SetDeletedAt(*t)
- }
- return wu
- }
- // ClearDeletedAt clears the value of the "deleted_at" field.
- func (wu *WxUpdate) ClearDeletedAt() *WxUpdate {
- wu.mutation.ClearDeletedAt()
- return wu
- }
- // SetServerID sets the "server_id" field.
- func (wu *WxUpdate) SetServerID(u uint64) *WxUpdate {
- wu.mutation.SetServerID(u)
- return wu
- }
- // SetNillableServerID sets the "server_id" field if the given value is not nil.
- func (wu *WxUpdate) SetNillableServerID(u *uint64) *WxUpdate {
- if u != nil {
- wu.SetServerID(*u)
- }
- return wu
- }
- // ClearServerID clears the value of the "server_id" field.
- func (wu *WxUpdate) ClearServerID() *WxUpdate {
- wu.mutation.ClearServerID()
- return wu
- }
- // SetPort sets the "port" field.
- func (wu *WxUpdate) SetPort(s string) *WxUpdate {
- wu.mutation.SetPort(s)
- return wu
- }
- // SetNillablePort sets the "port" field if the given value is not nil.
- func (wu *WxUpdate) SetNillablePort(s *string) *WxUpdate {
- if s != nil {
- wu.SetPort(*s)
- }
- return wu
- }
- // SetProcessID sets the "process_id" field.
- func (wu *WxUpdate) SetProcessID(s string) *WxUpdate {
- wu.mutation.SetProcessID(s)
- return wu
- }
- // SetNillableProcessID sets the "process_id" field if the given value is not nil.
- func (wu *WxUpdate) SetNillableProcessID(s *string) *WxUpdate {
- if s != nil {
- wu.SetProcessID(*s)
- }
- return wu
- }
- // SetCallback sets the "callback" field.
- func (wu *WxUpdate) SetCallback(s string) *WxUpdate {
- wu.mutation.SetCallback(s)
- return wu
- }
- // SetNillableCallback sets the "callback" field if the given value is not nil.
- func (wu *WxUpdate) SetNillableCallback(s *string) *WxUpdate {
- if s != nil {
- wu.SetCallback(*s)
- }
- return wu
- }
- // SetWxid sets the "wxid" field.
- func (wu *WxUpdate) SetWxid(s string) *WxUpdate {
- wu.mutation.SetWxid(s)
- return wu
- }
- // SetNillableWxid sets the "wxid" field if the given value is not nil.
- func (wu *WxUpdate) SetNillableWxid(s *string) *WxUpdate {
- if s != nil {
- wu.SetWxid(*s)
- }
- return wu
- }
- // SetAccount sets the "account" field.
- func (wu *WxUpdate) SetAccount(s string) *WxUpdate {
- wu.mutation.SetAccount(s)
- return wu
- }
- // SetNillableAccount sets the "account" field if the given value is not nil.
- func (wu *WxUpdate) SetNillableAccount(s *string) *WxUpdate {
- if s != nil {
- wu.SetAccount(*s)
- }
- return wu
- }
- // SetNickname sets the "nickname" field.
- func (wu *WxUpdate) SetNickname(s string) *WxUpdate {
- wu.mutation.SetNickname(s)
- return wu
- }
- // SetNillableNickname sets the "nickname" field if the given value is not nil.
- func (wu *WxUpdate) SetNillableNickname(s *string) *WxUpdate {
- if s != nil {
- wu.SetNickname(*s)
- }
- return wu
- }
- // SetTel sets the "tel" field.
- func (wu *WxUpdate) SetTel(s string) *WxUpdate {
- wu.mutation.SetTel(s)
- return wu
- }
- // SetNillableTel sets the "tel" field if the given value is not nil.
- func (wu *WxUpdate) SetNillableTel(s *string) *WxUpdate {
- if s != nil {
- wu.SetTel(*s)
- }
- return wu
- }
- // SetHeadBig sets the "head_big" field.
- func (wu *WxUpdate) SetHeadBig(s string) *WxUpdate {
- wu.mutation.SetHeadBig(s)
- return wu
- }
- // SetNillableHeadBig sets the "head_big" field if the given value is not nil.
- func (wu *WxUpdate) SetNillableHeadBig(s *string) *WxUpdate {
- if s != nil {
- wu.SetHeadBig(*s)
- }
- return wu
- }
- // SetOrganizationID sets the "organization_id" field.
- func (wu *WxUpdate) SetOrganizationID(u uint64) *WxUpdate {
- wu.mutation.ResetOrganizationID()
- wu.mutation.SetOrganizationID(u)
- return wu
- }
- // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
- func (wu *WxUpdate) SetNillableOrganizationID(u *uint64) *WxUpdate {
- if u != nil {
- wu.SetOrganizationID(*u)
- }
- return wu
- }
- // AddOrganizationID adds u to the "organization_id" field.
- func (wu *WxUpdate) AddOrganizationID(u int64) *WxUpdate {
- wu.mutation.AddOrganizationID(u)
- return wu
- }
- // ClearOrganizationID clears the value of the "organization_id" field.
- func (wu *WxUpdate) ClearOrganizationID() *WxUpdate {
- wu.mutation.ClearOrganizationID()
- return wu
- }
- // SetAgentID sets the "agent_id" field.
- func (wu *WxUpdate) SetAgentID(u uint64) *WxUpdate {
- wu.mutation.SetAgentID(u)
- return wu
- }
- // SetNillableAgentID sets the "agent_id" field if the given value is not nil.
- func (wu *WxUpdate) SetNillableAgentID(u *uint64) *WxUpdate {
- if u != nil {
- wu.SetAgentID(*u)
- }
- return wu
- }
- // SetAPIBase sets the "api_base" field.
- func (wu *WxUpdate) SetAPIBase(s string) *WxUpdate {
- wu.mutation.SetAPIBase(s)
- return wu
- }
- // SetNillableAPIBase sets the "api_base" field if the given value is not nil.
- func (wu *WxUpdate) SetNillableAPIBase(s *string) *WxUpdate {
- if s != nil {
- wu.SetAPIBase(*s)
- }
- return wu
- }
- // ClearAPIBase clears the value of the "api_base" field.
- func (wu *WxUpdate) ClearAPIBase() *WxUpdate {
- wu.mutation.ClearAPIBase()
- return wu
- }
- // SetAPIKey sets the "api_key" field.
- func (wu *WxUpdate) SetAPIKey(s string) *WxUpdate {
- wu.mutation.SetAPIKey(s)
- return wu
- }
- // SetNillableAPIKey sets the "api_key" field if the given value is not nil.
- func (wu *WxUpdate) SetNillableAPIKey(s *string) *WxUpdate {
- if s != nil {
- wu.SetAPIKey(*s)
- }
- return wu
- }
- // ClearAPIKey clears the value of the "api_key" field.
- func (wu *WxUpdate) ClearAPIKey() *WxUpdate {
- wu.mutation.ClearAPIKey()
- return wu
- }
- // SetServer sets the "server" edge to the Server entity.
- func (wu *WxUpdate) SetServer(s *Server) *WxUpdate {
- return wu.SetServerID(s.ID)
- }
- // SetAgent sets the "agent" edge to the Agent entity.
- func (wu *WxUpdate) SetAgent(a *Agent) *WxUpdate {
- return wu.SetAgentID(a.ID)
- }
- // Mutation returns the WxMutation object of the builder.
- func (wu *WxUpdate) Mutation() *WxMutation {
- return wu.mutation
- }
- // ClearServer clears the "server" edge to the Server entity.
- func (wu *WxUpdate) ClearServer() *WxUpdate {
- wu.mutation.ClearServer()
- return wu
- }
- // ClearAgent clears the "agent" edge to the Agent entity.
- func (wu *WxUpdate) ClearAgent() *WxUpdate {
- wu.mutation.ClearAgent()
- return wu
- }
- // Save executes the query and returns the number of nodes affected by the update operation.
- func (wu *WxUpdate) Save(ctx context.Context) (int, error) {
- if err := wu.defaults(); err != nil {
- return 0, err
- }
- return withHooks(ctx, wu.sqlSave, wu.mutation, wu.hooks)
- }
- // SaveX is like Save, but panics if an error occurs.
- func (wu *WxUpdate) SaveX(ctx context.Context) int {
- affected, err := wu.Save(ctx)
- if err != nil {
- panic(err)
- }
- return affected
- }
- // Exec executes the query.
- func (wu *WxUpdate) Exec(ctx context.Context) error {
- _, err := wu.Save(ctx)
- return err
- }
- // ExecX is like Exec, but panics if an error occurs.
- func (wu *WxUpdate) ExecX(ctx context.Context) {
- if err := wu.Exec(ctx); err != nil {
- panic(err)
- }
- }
- // defaults sets the default values of the builder before save.
- func (wu *WxUpdate) defaults() error {
- if _, ok := wu.mutation.UpdatedAt(); !ok {
- if wx.UpdateDefaultUpdatedAt == nil {
- return fmt.Errorf("ent: uninitialized wx.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
- }
- v := wx.UpdateDefaultUpdatedAt()
- wu.mutation.SetUpdatedAt(v)
- }
- return nil
- }
- // check runs all checks and user-defined validators on the builder.
- func (wu *WxUpdate) check() error {
- if _, ok := wu.mutation.AgentID(); wu.mutation.AgentCleared() && !ok {
- return errors.New(`ent: clearing a required unique edge "Wx.agent"`)
- }
- return nil
- }
- func (wu *WxUpdate) sqlSave(ctx context.Context) (n int, err error) {
- if err := wu.check(); err != nil {
- return n, err
- }
- _spec := sqlgraph.NewUpdateSpec(wx.Table, wx.Columns, sqlgraph.NewFieldSpec(wx.FieldID, field.TypeUint64))
- if ps := wu.mutation.predicates; len(ps) > 0 {
- _spec.Predicate = func(selector *sql.Selector) {
- for i := range ps {
- ps[i](selector)
- }
- }
- }
- if value, ok := wu.mutation.UpdatedAt(); ok {
- _spec.SetField(wx.FieldUpdatedAt, field.TypeTime, value)
- }
- if value, ok := wu.mutation.Status(); ok {
- _spec.SetField(wx.FieldStatus, field.TypeUint8, value)
- }
- if value, ok := wu.mutation.AddedStatus(); ok {
- _spec.AddField(wx.FieldStatus, field.TypeUint8, value)
- }
- if wu.mutation.StatusCleared() {
- _spec.ClearField(wx.FieldStatus, field.TypeUint8)
- }
- if value, ok := wu.mutation.DeletedAt(); ok {
- _spec.SetField(wx.FieldDeletedAt, field.TypeTime, value)
- }
- if wu.mutation.DeletedAtCleared() {
- _spec.ClearField(wx.FieldDeletedAt, field.TypeTime)
- }
- if value, ok := wu.mutation.Port(); ok {
- _spec.SetField(wx.FieldPort, field.TypeString, value)
- }
- if value, ok := wu.mutation.ProcessID(); ok {
- _spec.SetField(wx.FieldProcessID, field.TypeString, value)
- }
- if value, ok := wu.mutation.Callback(); ok {
- _spec.SetField(wx.FieldCallback, field.TypeString, value)
- }
- if value, ok := wu.mutation.Wxid(); ok {
- _spec.SetField(wx.FieldWxid, field.TypeString, value)
- }
- if value, ok := wu.mutation.Account(); ok {
- _spec.SetField(wx.FieldAccount, field.TypeString, value)
- }
- if value, ok := wu.mutation.Nickname(); ok {
- _spec.SetField(wx.FieldNickname, field.TypeString, value)
- }
- if value, ok := wu.mutation.Tel(); ok {
- _spec.SetField(wx.FieldTel, field.TypeString, value)
- }
- if value, ok := wu.mutation.HeadBig(); ok {
- _spec.SetField(wx.FieldHeadBig, field.TypeString, value)
- }
- if value, ok := wu.mutation.OrganizationID(); ok {
- _spec.SetField(wx.FieldOrganizationID, field.TypeUint64, value)
- }
- if value, ok := wu.mutation.AddedOrganizationID(); ok {
- _spec.AddField(wx.FieldOrganizationID, field.TypeUint64, value)
- }
- if wu.mutation.OrganizationIDCleared() {
- _spec.ClearField(wx.FieldOrganizationID, field.TypeUint64)
- }
- if value, ok := wu.mutation.APIBase(); ok {
- _spec.SetField(wx.FieldAPIBase, field.TypeString, value)
- }
- if wu.mutation.APIBaseCleared() {
- _spec.ClearField(wx.FieldAPIBase, field.TypeString)
- }
- if value, ok := wu.mutation.APIKey(); ok {
- _spec.SetField(wx.FieldAPIKey, field.TypeString, value)
- }
- if wu.mutation.APIKeyCleared() {
- _spec.ClearField(wx.FieldAPIKey, field.TypeString)
- }
- if wu.mutation.ServerCleared() {
- edge := &sqlgraph.EdgeSpec{
- Rel: sqlgraph.M2O,
- Inverse: true,
- Table: wx.ServerTable,
- Columns: []string{wx.ServerColumn},
- Bidi: false,
- Target: &sqlgraph.EdgeTarget{
- IDSpec: sqlgraph.NewFieldSpec(server.FieldID, field.TypeUint64),
- },
- }
- _spec.Edges.Clear = append(_spec.Edges.Clear, edge)
- }
- if nodes := wu.mutation.ServerIDs(); len(nodes) > 0 {
- edge := &sqlgraph.EdgeSpec{
- Rel: sqlgraph.M2O,
- Inverse: true,
- Table: wx.ServerTable,
- Columns: []string{wx.ServerColumn},
- Bidi: false,
- Target: &sqlgraph.EdgeTarget{
- IDSpec: sqlgraph.NewFieldSpec(server.FieldID, field.TypeUint64),
- },
- }
- for _, k := range nodes {
- edge.Target.Nodes = append(edge.Target.Nodes, k)
- }
- _spec.Edges.Add = append(_spec.Edges.Add, edge)
- }
- if wu.mutation.AgentCleared() {
- edge := &sqlgraph.EdgeSpec{
- Rel: sqlgraph.M2O,
- Inverse: true,
- Table: wx.AgentTable,
- Columns: []string{wx.AgentColumn},
- Bidi: false,
- Target: &sqlgraph.EdgeTarget{
- IDSpec: sqlgraph.NewFieldSpec(agent.FieldID, field.TypeUint64),
- },
- }
- _spec.Edges.Clear = append(_spec.Edges.Clear, edge)
- }
- if nodes := wu.mutation.AgentIDs(); len(nodes) > 0 {
- edge := &sqlgraph.EdgeSpec{
- Rel: sqlgraph.M2O,
- Inverse: true,
- Table: wx.AgentTable,
- Columns: []string{wx.AgentColumn},
- Bidi: false,
- Target: &sqlgraph.EdgeTarget{
- IDSpec: sqlgraph.NewFieldSpec(agent.FieldID, field.TypeUint64),
- },
- }
- for _, k := range nodes {
- edge.Target.Nodes = append(edge.Target.Nodes, k)
- }
- _spec.Edges.Add = append(_spec.Edges.Add, edge)
- }
- if n, err = sqlgraph.UpdateNodes(ctx, wu.driver, _spec); err != nil {
- if _, ok := err.(*sqlgraph.NotFoundError); ok {
- err = &NotFoundError{wx.Label}
- } else if sqlgraph.IsConstraintError(err) {
- err = &ConstraintError{msg: err.Error(), wrap: err}
- }
- return 0, err
- }
- wu.mutation.done = true
- return n, nil
- }
- // WxUpdateOne is the builder for updating a single Wx entity.
- type WxUpdateOne struct {
- config
- fields []string
- hooks []Hook
- mutation *WxMutation
- }
- // SetUpdatedAt sets the "updated_at" field.
- func (wuo *WxUpdateOne) SetUpdatedAt(t time.Time) *WxUpdateOne {
- wuo.mutation.SetUpdatedAt(t)
- return wuo
- }
- // SetStatus sets the "status" field.
- func (wuo *WxUpdateOne) SetStatus(u uint8) *WxUpdateOne {
- wuo.mutation.ResetStatus()
- wuo.mutation.SetStatus(u)
- return wuo
- }
- // SetNillableStatus sets the "status" field if the given value is not nil.
- func (wuo *WxUpdateOne) SetNillableStatus(u *uint8) *WxUpdateOne {
- if u != nil {
- wuo.SetStatus(*u)
- }
- return wuo
- }
- // AddStatus adds u to the "status" field.
- func (wuo *WxUpdateOne) AddStatus(u int8) *WxUpdateOne {
- wuo.mutation.AddStatus(u)
- return wuo
- }
- // ClearStatus clears the value of the "status" field.
- func (wuo *WxUpdateOne) ClearStatus() *WxUpdateOne {
- wuo.mutation.ClearStatus()
- return wuo
- }
- // SetDeletedAt sets the "deleted_at" field.
- func (wuo *WxUpdateOne) SetDeletedAt(t time.Time) *WxUpdateOne {
- wuo.mutation.SetDeletedAt(t)
- return wuo
- }
- // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
- func (wuo *WxUpdateOne) SetNillableDeletedAt(t *time.Time) *WxUpdateOne {
- if t != nil {
- wuo.SetDeletedAt(*t)
- }
- return wuo
- }
- // ClearDeletedAt clears the value of the "deleted_at" field.
- func (wuo *WxUpdateOne) ClearDeletedAt() *WxUpdateOne {
- wuo.mutation.ClearDeletedAt()
- return wuo
- }
- // SetServerID sets the "server_id" field.
- func (wuo *WxUpdateOne) SetServerID(u uint64) *WxUpdateOne {
- wuo.mutation.SetServerID(u)
- return wuo
- }
- // SetNillableServerID sets the "server_id" field if the given value is not nil.
- func (wuo *WxUpdateOne) SetNillableServerID(u *uint64) *WxUpdateOne {
- if u != nil {
- wuo.SetServerID(*u)
- }
- return wuo
- }
- // ClearServerID clears the value of the "server_id" field.
- func (wuo *WxUpdateOne) ClearServerID() *WxUpdateOne {
- wuo.mutation.ClearServerID()
- return wuo
- }
- // SetPort sets the "port" field.
- func (wuo *WxUpdateOne) SetPort(s string) *WxUpdateOne {
- wuo.mutation.SetPort(s)
- return wuo
- }
- // SetNillablePort sets the "port" field if the given value is not nil.
- func (wuo *WxUpdateOne) SetNillablePort(s *string) *WxUpdateOne {
- if s != nil {
- wuo.SetPort(*s)
- }
- return wuo
- }
- // SetProcessID sets the "process_id" field.
- func (wuo *WxUpdateOne) SetProcessID(s string) *WxUpdateOne {
- wuo.mutation.SetProcessID(s)
- return wuo
- }
- // SetNillableProcessID sets the "process_id" field if the given value is not nil.
- func (wuo *WxUpdateOne) SetNillableProcessID(s *string) *WxUpdateOne {
- if s != nil {
- wuo.SetProcessID(*s)
- }
- return wuo
- }
- // SetCallback sets the "callback" field.
- func (wuo *WxUpdateOne) SetCallback(s string) *WxUpdateOne {
- wuo.mutation.SetCallback(s)
- return wuo
- }
- // SetNillableCallback sets the "callback" field if the given value is not nil.
- func (wuo *WxUpdateOne) SetNillableCallback(s *string) *WxUpdateOne {
- if s != nil {
- wuo.SetCallback(*s)
- }
- return wuo
- }
- // SetWxid sets the "wxid" field.
- func (wuo *WxUpdateOne) SetWxid(s string) *WxUpdateOne {
- wuo.mutation.SetWxid(s)
- return wuo
- }
- // SetNillableWxid sets the "wxid" field if the given value is not nil.
- func (wuo *WxUpdateOne) SetNillableWxid(s *string) *WxUpdateOne {
- if s != nil {
- wuo.SetWxid(*s)
- }
- return wuo
- }
- // SetAccount sets the "account" field.
- func (wuo *WxUpdateOne) SetAccount(s string) *WxUpdateOne {
- wuo.mutation.SetAccount(s)
- return wuo
- }
- // SetNillableAccount sets the "account" field if the given value is not nil.
- func (wuo *WxUpdateOne) SetNillableAccount(s *string) *WxUpdateOne {
- if s != nil {
- wuo.SetAccount(*s)
- }
- return wuo
- }
- // SetNickname sets the "nickname" field.
- func (wuo *WxUpdateOne) SetNickname(s string) *WxUpdateOne {
- wuo.mutation.SetNickname(s)
- return wuo
- }
- // SetNillableNickname sets the "nickname" field if the given value is not nil.
- func (wuo *WxUpdateOne) SetNillableNickname(s *string) *WxUpdateOne {
- if s != nil {
- wuo.SetNickname(*s)
- }
- return wuo
- }
- // SetTel sets the "tel" field.
- func (wuo *WxUpdateOne) SetTel(s string) *WxUpdateOne {
- wuo.mutation.SetTel(s)
- return wuo
- }
- // SetNillableTel sets the "tel" field if the given value is not nil.
- func (wuo *WxUpdateOne) SetNillableTel(s *string) *WxUpdateOne {
- if s != nil {
- wuo.SetTel(*s)
- }
- return wuo
- }
- // SetHeadBig sets the "head_big" field.
- func (wuo *WxUpdateOne) SetHeadBig(s string) *WxUpdateOne {
- wuo.mutation.SetHeadBig(s)
- return wuo
- }
- // SetNillableHeadBig sets the "head_big" field if the given value is not nil.
- func (wuo *WxUpdateOne) SetNillableHeadBig(s *string) *WxUpdateOne {
- if s != nil {
- wuo.SetHeadBig(*s)
- }
- return wuo
- }
- // SetOrganizationID sets the "organization_id" field.
- func (wuo *WxUpdateOne) SetOrganizationID(u uint64) *WxUpdateOne {
- wuo.mutation.ResetOrganizationID()
- wuo.mutation.SetOrganizationID(u)
- return wuo
- }
- // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
- func (wuo *WxUpdateOne) SetNillableOrganizationID(u *uint64) *WxUpdateOne {
- if u != nil {
- wuo.SetOrganizationID(*u)
- }
- return wuo
- }
- // AddOrganizationID adds u to the "organization_id" field.
- func (wuo *WxUpdateOne) AddOrganizationID(u int64) *WxUpdateOne {
- wuo.mutation.AddOrganizationID(u)
- return wuo
- }
- // ClearOrganizationID clears the value of the "organization_id" field.
- func (wuo *WxUpdateOne) ClearOrganizationID() *WxUpdateOne {
- wuo.mutation.ClearOrganizationID()
- return wuo
- }
- // SetAgentID sets the "agent_id" field.
- func (wuo *WxUpdateOne) SetAgentID(u uint64) *WxUpdateOne {
- wuo.mutation.SetAgentID(u)
- return wuo
- }
- // SetNillableAgentID sets the "agent_id" field if the given value is not nil.
- func (wuo *WxUpdateOne) SetNillableAgentID(u *uint64) *WxUpdateOne {
- if u != nil {
- wuo.SetAgentID(*u)
- }
- return wuo
- }
- // SetAPIBase sets the "api_base" field.
- func (wuo *WxUpdateOne) SetAPIBase(s string) *WxUpdateOne {
- wuo.mutation.SetAPIBase(s)
- return wuo
- }
- // SetNillableAPIBase sets the "api_base" field if the given value is not nil.
- func (wuo *WxUpdateOne) SetNillableAPIBase(s *string) *WxUpdateOne {
- if s != nil {
- wuo.SetAPIBase(*s)
- }
- return wuo
- }
- // ClearAPIBase clears the value of the "api_base" field.
- func (wuo *WxUpdateOne) ClearAPIBase() *WxUpdateOne {
- wuo.mutation.ClearAPIBase()
- return wuo
- }
- // SetAPIKey sets the "api_key" field.
- func (wuo *WxUpdateOne) SetAPIKey(s string) *WxUpdateOne {
- wuo.mutation.SetAPIKey(s)
- return wuo
- }
- // SetNillableAPIKey sets the "api_key" field if the given value is not nil.
- func (wuo *WxUpdateOne) SetNillableAPIKey(s *string) *WxUpdateOne {
- if s != nil {
- wuo.SetAPIKey(*s)
- }
- return wuo
- }
- // ClearAPIKey clears the value of the "api_key" field.
- func (wuo *WxUpdateOne) ClearAPIKey() *WxUpdateOne {
- wuo.mutation.ClearAPIKey()
- return wuo
- }
- // SetServer sets the "server" edge to the Server entity.
- func (wuo *WxUpdateOne) SetServer(s *Server) *WxUpdateOne {
- return wuo.SetServerID(s.ID)
- }
- // SetAgent sets the "agent" edge to the Agent entity.
- func (wuo *WxUpdateOne) SetAgent(a *Agent) *WxUpdateOne {
- return wuo.SetAgentID(a.ID)
- }
- // Mutation returns the WxMutation object of the builder.
- func (wuo *WxUpdateOne) Mutation() *WxMutation {
- return wuo.mutation
- }
- // ClearServer clears the "server" edge to the Server entity.
- func (wuo *WxUpdateOne) ClearServer() *WxUpdateOne {
- wuo.mutation.ClearServer()
- return wuo
- }
- // ClearAgent clears the "agent" edge to the Agent entity.
- func (wuo *WxUpdateOne) ClearAgent() *WxUpdateOne {
- wuo.mutation.ClearAgent()
- return wuo
- }
- // Where appends a list predicates to the WxUpdate builder.
- func (wuo *WxUpdateOne) Where(ps ...predicate.Wx) *WxUpdateOne {
- wuo.mutation.Where(ps...)
- return wuo
- }
- // Select allows selecting one or more fields (columns) of the returned entity.
- // The default is selecting all fields defined in the entity schema.
- func (wuo *WxUpdateOne) Select(field string, fields ...string) *WxUpdateOne {
- wuo.fields = append([]string{field}, fields...)
- return wuo
- }
- // Save executes the query and returns the updated Wx entity.
- func (wuo *WxUpdateOne) Save(ctx context.Context) (*Wx, error) {
- if err := wuo.defaults(); err != nil {
- return nil, err
- }
- return withHooks(ctx, wuo.sqlSave, wuo.mutation, wuo.hooks)
- }
- // SaveX is like Save, but panics if an error occurs.
- func (wuo *WxUpdateOne) SaveX(ctx context.Context) *Wx {
- node, err := wuo.Save(ctx)
- if err != nil {
- panic(err)
- }
- return node
- }
- // Exec executes the query on the entity.
- func (wuo *WxUpdateOne) Exec(ctx context.Context) error {
- _, err := wuo.Save(ctx)
- return err
- }
- // ExecX is like Exec, but panics if an error occurs.
- func (wuo *WxUpdateOne) ExecX(ctx context.Context) {
- if err := wuo.Exec(ctx); err != nil {
- panic(err)
- }
- }
- // defaults sets the default values of the builder before save.
- func (wuo *WxUpdateOne) defaults() error {
- if _, ok := wuo.mutation.UpdatedAt(); !ok {
- if wx.UpdateDefaultUpdatedAt == nil {
- return fmt.Errorf("ent: uninitialized wx.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
- }
- v := wx.UpdateDefaultUpdatedAt()
- wuo.mutation.SetUpdatedAt(v)
- }
- return nil
- }
- // check runs all checks and user-defined validators on the builder.
- func (wuo *WxUpdateOne) check() error {
- if _, ok := wuo.mutation.AgentID(); wuo.mutation.AgentCleared() && !ok {
- return errors.New(`ent: clearing a required unique edge "Wx.agent"`)
- }
- return nil
- }
- func (wuo *WxUpdateOne) sqlSave(ctx context.Context) (_node *Wx, err error) {
- if err := wuo.check(); err != nil {
- return _node, err
- }
- _spec := sqlgraph.NewUpdateSpec(wx.Table, wx.Columns, sqlgraph.NewFieldSpec(wx.FieldID, field.TypeUint64))
- id, ok := wuo.mutation.ID()
- if !ok {
- return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "Wx.id" for update`)}
- }
- _spec.Node.ID.Value = id
- if fields := wuo.fields; len(fields) > 0 {
- _spec.Node.Columns = make([]string, 0, len(fields))
- _spec.Node.Columns = append(_spec.Node.Columns, wx.FieldID)
- for _, f := range fields {
- if !wx.ValidColumn(f) {
- return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
- }
- if f != wx.FieldID {
- _spec.Node.Columns = append(_spec.Node.Columns, f)
- }
- }
- }
- if ps := wuo.mutation.predicates; len(ps) > 0 {
- _spec.Predicate = func(selector *sql.Selector) {
- for i := range ps {
- ps[i](selector)
- }
- }
- }
- if value, ok := wuo.mutation.UpdatedAt(); ok {
- _spec.SetField(wx.FieldUpdatedAt, field.TypeTime, value)
- }
- if value, ok := wuo.mutation.Status(); ok {
- _spec.SetField(wx.FieldStatus, field.TypeUint8, value)
- }
- if value, ok := wuo.mutation.AddedStatus(); ok {
- _spec.AddField(wx.FieldStatus, field.TypeUint8, value)
- }
- if wuo.mutation.StatusCleared() {
- _spec.ClearField(wx.FieldStatus, field.TypeUint8)
- }
- if value, ok := wuo.mutation.DeletedAt(); ok {
- _spec.SetField(wx.FieldDeletedAt, field.TypeTime, value)
- }
- if wuo.mutation.DeletedAtCleared() {
- _spec.ClearField(wx.FieldDeletedAt, field.TypeTime)
- }
- if value, ok := wuo.mutation.Port(); ok {
- _spec.SetField(wx.FieldPort, field.TypeString, value)
- }
- if value, ok := wuo.mutation.ProcessID(); ok {
- _spec.SetField(wx.FieldProcessID, field.TypeString, value)
- }
- if value, ok := wuo.mutation.Callback(); ok {
- _spec.SetField(wx.FieldCallback, field.TypeString, value)
- }
- if value, ok := wuo.mutation.Wxid(); ok {
- _spec.SetField(wx.FieldWxid, field.TypeString, value)
- }
- if value, ok := wuo.mutation.Account(); ok {
- _spec.SetField(wx.FieldAccount, field.TypeString, value)
- }
- if value, ok := wuo.mutation.Nickname(); ok {
- _spec.SetField(wx.FieldNickname, field.TypeString, value)
- }
- if value, ok := wuo.mutation.Tel(); ok {
- _spec.SetField(wx.FieldTel, field.TypeString, value)
- }
- if value, ok := wuo.mutation.HeadBig(); ok {
- _spec.SetField(wx.FieldHeadBig, field.TypeString, value)
- }
- if value, ok := wuo.mutation.OrganizationID(); ok {
- _spec.SetField(wx.FieldOrganizationID, field.TypeUint64, value)
- }
- if value, ok := wuo.mutation.AddedOrganizationID(); ok {
- _spec.AddField(wx.FieldOrganizationID, field.TypeUint64, value)
- }
- if wuo.mutation.OrganizationIDCleared() {
- _spec.ClearField(wx.FieldOrganizationID, field.TypeUint64)
- }
- if value, ok := wuo.mutation.APIBase(); ok {
- _spec.SetField(wx.FieldAPIBase, field.TypeString, value)
- }
- if wuo.mutation.APIBaseCleared() {
- _spec.ClearField(wx.FieldAPIBase, field.TypeString)
- }
- if value, ok := wuo.mutation.APIKey(); ok {
- _spec.SetField(wx.FieldAPIKey, field.TypeString, value)
- }
- if wuo.mutation.APIKeyCleared() {
- _spec.ClearField(wx.FieldAPIKey, field.TypeString)
- }
- if wuo.mutation.ServerCleared() {
- edge := &sqlgraph.EdgeSpec{
- Rel: sqlgraph.M2O,
- Inverse: true,
- Table: wx.ServerTable,
- Columns: []string{wx.ServerColumn},
- Bidi: false,
- Target: &sqlgraph.EdgeTarget{
- IDSpec: sqlgraph.NewFieldSpec(server.FieldID, field.TypeUint64),
- },
- }
- _spec.Edges.Clear = append(_spec.Edges.Clear, edge)
- }
- if nodes := wuo.mutation.ServerIDs(); len(nodes) > 0 {
- edge := &sqlgraph.EdgeSpec{
- Rel: sqlgraph.M2O,
- Inverse: true,
- Table: wx.ServerTable,
- Columns: []string{wx.ServerColumn},
- Bidi: false,
- Target: &sqlgraph.EdgeTarget{
- IDSpec: sqlgraph.NewFieldSpec(server.FieldID, field.TypeUint64),
- },
- }
- for _, k := range nodes {
- edge.Target.Nodes = append(edge.Target.Nodes, k)
- }
- _spec.Edges.Add = append(_spec.Edges.Add, edge)
- }
- if wuo.mutation.AgentCleared() {
- edge := &sqlgraph.EdgeSpec{
- Rel: sqlgraph.M2O,
- Inverse: true,
- Table: wx.AgentTable,
- Columns: []string{wx.AgentColumn},
- Bidi: false,
- Target: &sqlgraph.EdgeTarget{
- IDSpec: sqlgraph.NewFieldSpec(agent.FieldID, field.TypeUint64),
- },
- }
- _spec.Edges.Clear = append(_spec.Edges.Clear, edge)
- }
- if nodes := wuo.mutation.AgentIDs(); len(nodes) > 0 {
- edge := &sqlgraph.EdgeSpec{
- Rel: sqlgraph.M2O,
- Inverse: true,
- Table: wx.AgentTable,
- Columns: []string{wx.AgentColumn},
- Bidi: false,
- Target: &sqlgraph.EdgeTarget{
- IDSpec: sqlgraph.NewFieldSpec(agent.FieldID, field.TypeUint64),
- },
- }
- for _, k := range nodes {
- edge.Target.Nodes = append(edge.Target.Nodes, k)
- }
- _spec.Edges.Add = append(_spec.Edges.Add, edge)
- }
- _node = &Wx{config: wuo.config}
- _spec.Assign = _node.assignValues
- _spec.ScanValues = _node.scanValues
- if err = sqlgraph.UpdateNode(ctx, wuo.driver, _spec); err != nil {
- if _, ok := err.(*sqlgraph.NotFoundError); ok {
- err = &NotFoundError{wx.Label}
- } else if sqlgraph.IsConstraintError(err) {
- err = &ConstraintError{msg: err.Error(), wrap: err}
- }
- return nil, err
- }
- wuo.mutation.done = true
- return _node, nil
- }
|