client.go 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827
  1. // Code generated by ent, DO NOT EDIT.
  2. package ent
  3. import (
  4. "context"
  5. "errors"
  6. "fmt"
  7. "log"
  8. "reflect"
  9. "wechat-api/ent/migrate"
  10. "wechat-api/ent/contact"
  11. "wechat-api/ent/label"
  12. "wechat-api/ent/labelrelationship"
  13. "wechat-api/ent/message"
  14. "wechat-api/ent/messagerecords"
  15. "wechat-api/ent/server"
  16. "wechat-api/ent/sopnode"
  17. "wechat-api/ent/sopstage"
  18. "wechat-api/ent/soptask"
  19. "wechat-api/ent/wx"
  20. "entgo.io/ent"
  21. "entgo.io/ent/dialect"
  22. "entgo.io/ent/dialect/sql"
  23. "entgo.io/ent/dialect/sql/sqlgraph"
  24. stdsql "database/sql"
  25. )
  26. // Client is the client that holds all ent builders.
  27. type Client struct {
  28. config
  29. // Schema is the client for creating, migrating and dropping schema.
  30. Schema *migrate.Schema
  31. // Contact is the client for interacting with the Contact builders.
  32. Contact *ContactClient
  33. // Label is the client for interacting with the Label builders.
  34. Label *LabelClient
  35. // LabelRelationship is the client for interacting with the LabelRelationship builders.
  36. LabelRelationship *LabelRelationshipClient
  37. // Message is the client for interacting with the Message builders.
  38. Message *MessageClient
  39. // MessageRecords is the client for interacting with the MessageRecords builders.
  40. MessageRecords *MessageRecordsClient
  41. // Server is the client for interacting with the Server builders.
  42. Server *ServerClient
  43. // SopNode is the client for interacting with the SopNode builders.
  44. SopNode *SopNodeClient
  45. // SopStage is the client for interacting with the SopStage builders.
  46. SopStage *SopStageClient
  47. // SopTask is the client for interacting with the SopTask builders.
  48. SopTask *SopTaskClient
  49. // Wx is the client for interacting with the Wx builders.
  50. Wx *WxClient
  51. }
  52. // NewClient creates a new client configured with the given options.
  53. func NewClient(opts ...Option) *Client {
  54. client := &Client{config: newConfig(opts...)}
  55. client.init()
  56. return client
  57. }
  58. func (c *Client) init() {
  59. c.Schema = migrate.NewSchema(c.driver)
  60. c.Contact = NewContactClient(c.config)
  61. c.Label = NewLabelClient(c.config)
  62. c.LabelRelationship = NewLabelRelationshipClient(c.config)
  63. c.Message = NewMessageClient(c.config)
  64. c.MessageRecords = NewMessageRecordsClient(c.config)
  65. c.Server = NewServerClient(c.config)
  66. c.SopNode = NewSopNodeClient(c.config)
  67. c.SopStage = NewSopStageClient(c.config)
  68. c.SopTask = NewSopTaskClient(c.config)
  69. c.Wx = NewWxClient(c.config)
  70. }
  71. type (
  72. // config is the configuration for the client and its builder.
  73. config struct {
  74. // driver used for executing database requests.
  75. driver dialect.Driver
  76. // debug enable a debug logging.
  77. debug bool
  78. // log used for logging on debug mode.
  79. log func(...any)
  80. // hooks to execute on mutations.
  81. hooks *hooks
  82. // interceptors to execute on queries.
  83. inters *inters
  84. }
  85. // Option function to configure the client.
  86. Option func(*config)
  87. )
  88. // newConfig creates a new config for the client.
  89. func newConfig(opts ...Option) config {
  90. cfg := config{log: log.Println, hooks: &hooks{}, inters: &inters{}}
  91. cfg.options(opts...)
  92. return cfg
  93. }
  94. // options applies the options on the config object.
  95. func (c *config) options(opts ...Option) {
  96. for _, opt := range opts {
  97. opt(c)
  98. }
  99. if c.debug {
  100. c.driver = dialect.Debug(c.driver, c.log)
  101. }
  102. }
  103. // Debug enables debug logging on the ent.Driver.
  104. func Debug() Option {
  105. return func(c *config) {
  106. c.debug = true
  107. }
  108. }
  109. // Log sets the logging function for debug mode.
  110. func Log(fn func(...any)) Option {
  111. return func(c *config) {
  112. c.log = fn
  113. }
  114. }
  115. // Driver configures the client driver.
  116. func Driver(driver dialect.Driver) Option {
  117. return func(c *config) {
  118. c.driver = driver
  119. }
  120. }
  121. // Open opens a database/sql.DB specified by the driver name and
  122. // the data source name, and returns a new client attached to it.
  123. // Optional parameters can be added for configuring the client.
  124. func Open(driverName, dataSourceName string, options ...Option) (*Client, error) {
  125. switch driverName {
  126. case dialect.MySQL, dialect.Postgres, dialect.SQLite:
  127. drv, err := sql.Open(driverName, dataSourceName)
  128. if err != nil {
  129. return nil, err
  130. }
  131. return NewClient(append(options, Driver(drv))...), nil
  132. default:
  133. return nil, fmt.Errorf("unsupported driver: %q", driverName)
  134. }
  135. }
  136. // ErrTxStarted is returned when trying to start a new transaction from a transactional client.
  137. var ErrTxStarted = errors.New("ent: cannot start a transaction within a transaction")
  138. // Tx returns a new transactional client. The provided context
  139. // is used until the transaction is committed or rolled back.
  140. func (c *Client) Tx(ctx context.Context) (*Tx, error) {
  141. if _, ok := c.driver.(*txDriver); ok {
  142. return nil, ErrTxStarted
  143. }
  144. tx, err := newTx(ctx, c.driver)
  145. if err != nil {
  146. return nil, fmt.Errorf("ent: starting a transaction: %w", err)
  147. }
  148. cfg := c.config
  149. cfg.driver = tx
  150. return &Tx{
  151. ctx: ctx,
  152. config: cfg,
  153. Contact: NewContactClient(cfg),
  154. Label: NewLabelClient(cfg),
  155. LabelRelationship: NewLabelRelationshipClient(cfg),
  156. Message: NewMessageClient(cfg),
  157. MessageRecords: NewMessageRecordsClient(cfg),
  158. Server: NewServerClient(cfg),
  159. SopNode: NewSopNodeClient(cfg),
  160. SopStage: NewSopStageClient(cfg),
  161. SopTask: NewSopTaskClient(cfg),
  162. Wx: NewWxClient(cfg),
  163. }, nil
  164. }
  165. // BeginTx returns a transactional client with specified options.
  166. func (c *Client) BeginTx(ctx context.Context, opts *sql.TxOptions) (*Tx, error) {
  167. if _, ok := c.driver.(*txDriver); ok {
  168. return nil, errors.New("ent: cannot start a transaction within a transaction")
  169. }
  170. tx, err := c.driver.(interface {
  171. BeginTx(context.Context, *sql.TxOptions) (dialect.Tx, error)
  172. }).BeginTx(ctx, opts)
  173. if err != nil {
  174. return nil, fmt.Errorf("ent: starting a transaction: %w", err)
  175. }
  176. cfg := c.config
  177. cfg.driver = &txDriver{tx: tx, drv: c.driver}
  178. return &Tx{
  179. ctx: ctx,
  180. config: cfg,
  181. Contact: NewContactClient(cfg),
  182. Label: NewLabelClient(cfg),
  183. LabelRelationship: NewLabelRelationshipClient(cfg),
  184. Message: NewMessageClient(cfg),
  185. MessageRecords: NewMessageRecordsClient(cfg),
  186. Server: NewServerClient(cfg),
  187. SopNode: NewSopNodeClient(cfg),
  188. SopStage: NewSopStageClient(cfg),
  189. SopTask: NewSopTaskClient(cfg),
  190. Wx: NewWxClient(cfg),
  191. }, nil
  192. }
  193. // Debug returns a new debug-client. It's used to get verbose logging on specific operations.
  194. //
  195. // client.Debug().
  196. // Contact.
  197. // Query().
  198. // Count(ctx)
  199. func (c *Client) Debug() *Client {
  200. if c.debug {
  201. return c
  202. }
  203. cfg := c.config
  204. cfg.driver = dialect.Debug(c.driver, c.log)
  205. client := &Client{config: cfg}
  206. client.init()
  207. return client
  208. }
  209. // Close closes the database connection and prevents new queries from starting.
  210. func (c *Client) Close() error {
  211. return c.driver.Close()
  212. }
  213. // Use adds the mutation hooks to all the entity clients.
  214. // In order to add hooks to a specific client, call: `client.Node.Use(...)`.
  215. func (c *Client) Use(hooks ...Hook) {
  216. for _, n := range []interface{ Use(...Hook) }{
  217. c.Contact, c.Label, c.LabelRelationship, c.Message, c.MessageRecords, c.Server,
  218. c.SopNode, c.SopStage, c.SopTask, c.Wx,
  219. } {
  220. n.Use(hooks...)
  221. }
  222. }
  223. // Intercept adds the query interceptors to all the entity clients.
  224. // In order to add interceptors to a specific client, call: `client.Node.Intercept(...)`.
  225. func (c *Client) Intercept(interceptors ...Interceptor) {
  226. for _, n := range []interface{ Intercept(...Interceptor) }{
  227. c.Contact, c.Label, c.LabelRelationship, c.Message, c.MessageRecords, c.Server,
  228. c.SopNode, c.SopStage, c.SopTask, c.Wx,
  229. } {
  230. n.Intercept(interceptors...)
  231. }
  232. }
  233. // Mutate implements the ent.Mutator interface.
  234. func (c *Client) Mutate(ctx context.Context, m Mutation) (Value, error) {
  235. switch m := m.(type) {
  236. case *ContactMutation:
  237. return c.Contact.mutate(ctx, m)
  238. case *LabelMutation:
  239. return c.Label.mutate(ctx, m)
  240. case *LabelRelationshipMutation:
  241. return c.LabelRelationship.mutate(ctx, m)
  242. case *MessageMutation:
  243. return c.Message.mutate(ctx, m)
  244. case *MessageRecordsMutation:
  245. return c.MessageRecords.mutate(ctx, m)
  246. case *ServerMutation:
  247. return c.Server.mutate(ctx, m)
  248. case *SopNodeMutation:
  249. return c.SopNode.mutate(ctx, m)
  250. case *SopStageMutation:
  251. return c.SopStage.mutate(ctx, m)
  252. case *SopTaskMutation:
  253. return c.SopTask.mutate(ctx, m)
  254. case *WxMutation:
  255. return c.Wx.mutate(ctx, m)
  256. default:
  257. return nil, fmt.Errorf("ent: unknown mutation type %T", m)
  258. }
  259. }
  260. // ContactClient is a client for the Contact schema.
  261. type ContactClient struct {
  262. config
  263. }
  264. // NewContactClient returns a client for the Contact from the given config.
  265. func NewContactClient(c config) *ContactClient {
  266. return &ContactClient{config: c}
  267. }
  268. // Use adds a list of mutation hooks to the hooks stack.
  269. // A call to `Use(f, g, h)` equals to `contact.Hooks(f(g(h())))`.
  270. func (c *ContactClient) Use(hooks ...Hook) {
  271. c.hooks.Contact = append(c.hooks.Contact, hooks...)
  272. }
  273. // Intercept adds a list of query interceptors to the interceptors stack.
  274. // A call to `Intercept(f, g, h)` equals to `contact.Intercept(f(g(h())))`.
  275. func (c *ContactClient) Intercept(interceptors ...Interceptor) {
  276. c.inters.Contact = append(c.inters.Contact, interceptors...)
  277. }
  278. // Create returns a builder for creating a Contact entity.
  279. func (c *ContactClient) Create() *ContactCreate {
  280. mutation := newContactMutation(c.config, OpCreate)
  281. return &ContactCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  282. }
  283. // CreateBulk returns a builder for creating a bulk of Contact entities.
  284. func (c *ContactClient) CreateBulk(builders ...*ContactCreate) *ContactCreateBulk {
  285. return &ContactCreateBulk{config: c.config, builders: builders}
  286. }
  287. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  288. // a builder and applies setFunc on it.
  289. func (c *ContactClient) MapCreateBulk(slice any, setFunc func(*ContactCreate, int)) *ContactCreateBulk {
  290. rv := reflect.ValueOf(slice)
  291. if rv.Kind() != reflect.Slice {
  292. return &ContactCreateBulk{err: fmt.Errorf("calling to ContactClient.MapCreateBulk with wrong type %T, need slice", slice)}
  293. }
  294. builders := make([]*ContactCreate, rv.Len())
  295. for i := 0; i < rv.Len(); i++ {
  296. builders[i] = c.Create()
  297. setFunc(builders[i], i)
  298. }
  299. return &ContactCreateBulk{config: c.config, builders: builders}
  300. }
  301. // Update returns an update builder for Contact.
  302. func (c *ContactClient) Update() *ContactUpdate {
  303. mutation := newContactMutation(c.config, OpUpdate)
  304. return &ContactUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  305. }
  306. // UpdateOne returns an update builder for the given entity.
  307. func (c *ContactClient) UpdateOne(co *Contact) *ContactUpdateOne {
  308. mutation := newContactMutation(c.config, OpUpdateOne, withContact(co))
  309. return &ContactUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  310. }
  311. // UpdateOneID returns an update builder for the given id.
  312. func (c *ContactClient) UpdateOneID(id uint64) *ContactUpdateOne {
  313. mutation := newContactMutation(c.config, OpUpdateOne, withContactID(id))
  314. return &ContactUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  315. }
  316. // Delete returns a delete builder for Contact.
  317. func (c *ContactClient) Delete() *ContactDelete {
  318. mutation := newContactMutation(c.config, OpDelete)
  319. return &ContactDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  320. }
  321. // DeleteOne returns a builder for deleting the given entity.
  322. func (c *ContactClient) DeleteOne(co *Contact) *ContactDeleteOne {
  323. return c.DeleteOneID(co.ID)
  324. }
  325. // DeleteOneID returns a builder for deleting the given entity by its id.
  326. func (c *ContactClient) DeleteOneID(id uint64) *ContactDeleteOne {
  327. builder := c.Delete().Where(contact.ID(id))
  328. builder.mutation.id = &id
  329. builder.mutation.op = OpDeleteOne
  330. return &ContactDeleteOne{builder}
  331. }
  332. // Query returns a query builder for Contact.
  333. func (c *ContactClient) Query() *ContactQuery {
  334. return &ContactQuery{
  335. config: c.config,
  336. ctx: &QueryContext{Type: TypeContact},
  337. inters: c.Interceptors(),
  338. }
  339. }
  340. // Get returns a Contact entity by its id.
  341. func (c *ContactClient) Get(ctx context.Context, id uint64) (*Contact, error) {
  342. return c.Query().Where(contact.ID(id)).Only(ctx)
  343. }
  344. // GetX is like Get, but panics if an error occurs.
  345. func (c *ContactClient) GetX(ctx context.Context, id uint64) *Contact {
  346. obj, err := c.Get(ctx, id)
  347. if err != nil {
  348. panic(err)
  349. }
  350. return obj
  351. }
  352. // QueryContactRelationships queries the contact_relationships edge of a Contact.
  353. func (c *ContactClient) QueryContactRelationships(co *Contact) *LabelRelationshipQuery {
  354. query := (&LabelRelationshipClient{config: c.config}).Query()
  355. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  356. id := co.ID
  357. step := sqlgraph.NewStep(
  358. sqlgraph.From(contact.Table, contact.FieldID, id),
  359. sqlgraph.To(labelrelationship.Table, labelrelationship.FieldID),
  360. sqlgraph.Edge(sqlgraph.O2M, false, contact.ContactRelationshipsTable, contact.ContactRelationshipsColumn),
  361. )
  362. fromV = sqlgraph.Neighbors(co.driver.Dialect(), step)
  363. return fromV, nil
  364. }
  365. return query
  366. }
  367. // Hooks returns the client hooks.
  368. func (c *ContactClient) Hooks() []Hook {
  369. hooks := c.hooks.Contact
  370. return append(hooks[:len(hooks):len(hooks)], contact.Hooks[:]...)
  371. }
  372. // Interceptors returns the client interceptors.
  373. func (c *ContactClient) Interceptors() []Interceptor {
  374. inters := c.inters.Contact
  375. return append(inters[:len(inters):len(inters)], contact.Interceptors[:]...)
  376. }
  377. func (c *ContactClient) mutate(ctx context.Context, m *ContactMutation) (Value, error) {
  378. switch m.Op() {
  379. case OpCreate:
  380. return (&ContactCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  381. case OpUpdate:
  382. return (&ContactUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  383. case OpUpdateOne:
  384. return (&ContactUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  385. case OpDelete, OpDeleteOne:
  386. return (&ContactDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  387. default:
  388. return nil, fmt.Errorf("ent: unknown Contact mutation op: %q", m.Op())
  389. }
  390. }
  391. // LabelClient is a client for the Label schema.
  392. type LabelClient struct {
  393. config
  394. }
  395. // NewLabelClient returns a client for the Label from the given config.
  396. func NewLabelClient(c config) *LabelClient {
  397. return &LabelClient{config: c}
  398. }
  399. // Use adds a list of mutation hooks to the hooks stack.
  400. // A call to `Use(f, g, h)` equals to `label.Hooks(f(g(h())))`.
  401. func (c *LabelClient) Use(hooks ...Hook) {
  402. c.hooks.Label = append(c.hooks.Label, hooks...)
  403. }
  404. // Intercept adds a list of query interceptors to the interceptors stack.
  405. // A call to `Intercept(f, g, h)` equals to `label.Intercept(f(g(h())))`.
  406. func (c *LabelClient) Intercept(interceptors ...Interceptor) {
  407. c.inters.Label = append(c.inters.Label, interceptors...)
  408. }
  409. // Create returns a builder for creating a Label entity.
  410. func (c *LabelClient) Create() *LabelCreate {
  411. mutation := newLabelMutation(c.config, OpCreate)
  412. return &LabelCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  413. }
  414. // CreateBulk returns a builder for creating a bulk of Label entities.
  415. func (c *LabelClient) CreateBulk(builders ...*LabelCreate) *LabelCreateBulk {
  416. return &LabelCreateBulk{config: c.config, builders: builders}
  417. }
  418. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  419. // a builder and applies setFunc on it.
  420. func (c *LabelClient) MapCreateBulk(slice any, setFunc func(*LabelCreate, int)) *LabelCreateBulk {
  421. rv := reflect.ValueOf(slice)
  422. if rv.Kind() != reflect.Slice {
  423. return &LabelCreateBulk{err: fmt.Errorf("calling to LabelClient.MapCreateBulk with wrong type %T, need slice", slice)}
  424. }
  425. builders := make([]*LabelCreate, rv.Len())
  426. for i := 0; i < rv.Len(); i++ {
  427. builders[i] = c.Create()
  428. setFunc(builders[i], i)
  429. }
  430. return &LabelCreateBulk{config: c.config, builders: builders}
  431. }
  432. // Update returns an update builder for Label.
  433. func (c *LabelClient) Update() *LabelUpdate {
  434. mutation := newLabelMutation(c.config, OpUpdate)
  435. return &LabelUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  436. }
  437. // UpdateOne returns an update builder for the given entity.
  438. func (c *LabelClient) UpdateOne(l *Label) *LabelUpdateOne {
  439. mutation := newLabelMutation(c.config, OpUpdateOne, withLabel(l))
  440. return &LabelUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  441. }
  442. // UpdateOneID returns an update builder for the given id.
  443. func (c *LabelClient) UpdateOneID(id uint64) *LabelUpdateOne {
  444. mutation := newLabelMutation(c.config, OpUpdateOne, withLabelID(id))
  445. return &LabelUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  446. }
  447. // Delete returns a delete builder for Label.
  448. func (c *LabelClient) Delete() *LabelDelete {
  449. mutation := newLabelMutation(c.config, OpDelete)
  450. return &LabelDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  451. }
  452. // DeleteOne returns a builder for deleting the given entity.
  453. func (c *LabelClient) DeleteOne(l *Label) *LabelDeleteOne {
  454. return c.DeleteOneID(l.ID)
  455. }
  456. // DeleteOneID returns a builder for deleting the given entity by its id.
  457. func (c *LabelClient) DeleteOneID(id uint64) *LabelDeleteOne {
  458. builder := c.Delete().Where(label.ID(id))
  459. builder.mutation.id = &id
  460. builder.mutation.op = OpDeleteOne
  461. return &LabelDeleteOne{builder}
  462. }
  463. // Query returns a query builder for Label.
  464. func (c *LabelClient) Query() *LabelQuery {
  465. return &LabelQuery{
  466. config: c.config,
  467. ctx: &QueryContext{Type: TypeLabel},
  468. inters: c.Interceptors(),
  469. }
  470. }
  471. // Get returns a Label entity by its id.
  472. func (c *LabelClient) Get(ctx context.Context, id uint64) (*Label, error) {
  473. return c.Query().Where(label.ID(id)).Only(ctx)
  474. }
  475. // GetX is like Get, but panics if an error occurs.
  476. func (c *LabelClient) GetX(ctx context.Context, id uint64) *Label {
  477. obj, err := c.Get(ctx, id)
  478. if err != nil {
  479. panic(err)
  480. }
  481. return obj
  482. }
  483. // QueryLabelRelationships queries the label_relationships edge of a Label.
  484. func (c *LabelClient) QueryLabelRelationships(l *Label) *LabelRelationshipQuery {
  485. query := (&LabelRelationshipClient{config: c.config}).Query()
  486. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  487. id := l.ID
  488. step := sqlgraph.NewStep(
  489. sqlgraph.From(label.Table, label.FieldID, id),
  490. sqlgraph.To(labelrelationship.Table, labelrelationship.FieldID),
  491. sqlgraph.Edge(sqlgraph.O2M, false, label.LabelRelationshipsTable, label.LabelRelationshipsColumn),
  492. )
  493. fromV = sqlgraph.Neighbors(l.driver.Dialect(), step)
  494. return fromV, nil
  495. }
  496. return query
  497. }
  498. // Hooks returns the client hooks.
  499. func (c *LabelClient) Hooks() []Hook {
  500. hooks := c.hooks.Label
  501. return append(hooks[:len(hooks):len(hooks)], label.Hooks[:]...)
  502. }
  503. // Interceptors returns the client interceptors.
  504. func (c *LabelClient) Interceptors() []Interceptor {
  505. inters := c.inters.Label
  506. return append(inters[:len(inters):len(inters)], label.Interceptors[:]...)
  507. }
  508. func (c *LabelClient) mutate(ctx context.Context, m *LabelMutation) (Value, error) {
  509. switch m.Op() {
  510. case OpCreate:
  511. return (&LabelCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  512. case OpUpdate:
  513. return (&LabelUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  514. case OpUpdateOne:
  515. return (&LabelUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  516. case OpDelete, OpDeleteOne:
  517. return (&LabelDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  518. default:
  519. return nil, fmt.Errorf("ent: unknown Label mutation op: %q", m.Op())
  520. }
  521. }
  522. // LabelRelationshipClient is a client for the LabelRelationship schema.
  523. type LabelRelationshipClient struct {
  524. config
  525. }
  526. // NewLabelRelationshipClient returns a client for the LabelRelationship from the given config.
  527. func NewLabelRelationshipClient(c config) *LabelRelationshipClient {
  528. return &LabelRelationshipClient{config: c}
  529. }
  530. // Use adds a list of mutation hooks to the hooks stack.
  531. // A call to `Use(f, g, h)` equals to `labelrelationship.Hooks(f(g(h())))`.
  532. func (c *LabelRelationshipClient) Use(hooks ...Hook) {
  533. c.hooks.LabelRelationship = append(c.hooks.LabelRelationship, hooks...)
  534. }
  535. // Intercept adds a list of query interceptors to the interceptors stack.
  536. // A call to `Intercept(f, g, h)` equals to `labelrelationship.Intercept(f(g(h())))`.
  537. func (c *LabelRelationshipClient) Intercept(interceptors ...Interceptor) {
  538. c.inters.LabelRelationship = append(c.inters.LabelRelationship, interceptors...)
  539. }
  540. // Create returns a builder for creating a LabelRelationship entity.
  541. func (c *LabelRelationshipClient) Create() *LabelRelationshipCreate {
  542. mutation := newLabelRelationshipMutation(c.config, OpCreate)
  543. return &LabelRelationshipCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  544. }
  545. // CreateBulk returns a builder for creating a bulk of LabelRelationship entities.
  546. func (c *LabelRelationshipClient) CreateBulk(builders ...*LabelRelationshipCreate) *LabelRelationshipCreateBulk {
  547. return &LabelRelationshipCreateBulk{config: c.config, builders: builders}
  548. }
  549. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  550. // a builder and applies setFunc on it.
  551. func (c *LabelRelationshipClient) MapCreateBulk(slice any, setFunc func(*LabelRelationshipCreate, int)) *LabelRelationshipCreateBulk {
  552. rv := reflect.ValueOf(slice)
  553. if rv.Kind() != reflect.Slice {
  554. return &LabelRelationshipCreateBulk{err: fmt.Errorf("calling to LabelRelationshipClient.MapCreateBulk with wrong type %T, need slice", slice)}
  555. }
  556. builders := make([]*LabelRelationshipCreate, rv.Len())
  557. for i := 0; i < rv.Len(); i++ {
  558. builders[i] = c.Create()
  559. setFunc(builders[i], i)
  560. }
  561. return &LabelRelationshipCreateBulk{config: c.config, builders: builders}
  562. }
  563. // Update returns an update builder for LabelRelationship.
  564. func (c *LabelRelationshipClient) Update() *LabelRelationshipUpdate {
  565. mutation := newLabelRelationshipMutation(c.config, OpUpdate)
  566. return &LabelRelationshipUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  567. }
  568. // UpdateOne returns an update builder for the given entity.
  569. func (c *LabelRelationshipClient) UpdateOne(lr *LabelRelationship) *LabelRelationshipUpdateOne {
  570. mutation := newLabelRelationshipMutation(c.config, OpUpdateOne, withLabelRelationship(lr))
  571. return &LabelRelationshipUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  572. }
  573. // UpdateOneID returns an update builder for the given id.
  574. func (c *LabelRelationshipClient) UpdateOneID(id uint64) *LabelRelationshipUpdateOne {
  575. mutation := newLabelRelationshipMutation(c.config, OpUpdateOne, withLabelRelationshipID(id))
  576. return &LabelRelationshipUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  577. }
  578. // Delete returns a delete builder for LabelRelationship.
  579. func (c *LabelRelationshipClient) Delete() *LabelRelationshipDelete {
  580. mutation := newLabelRelationshipMutation(c.config, OpDelete)
  581. return &LabelRelationshipDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  582. }
  583. // DeleteOne returns a builder for deleting the given entity.
  584. func (c *LabelRelationshipClient) DeleteOne(lr *LabelRelationship) *LabelRelationshipDeleteOne {
  585. return c.DeleteOneID(lr.ID)
  586. }
  587. // DeleteOneID returns a builder for deleting the given entity by its id.
  588. func (c *LabelRelationshipClient) DeleteOneID(id uint64) *LabelRelationshipDeleteOne {
  589. builder := c.Delete().Where(labelrelationship.ID(id))
  590. builder.mutation.id = &id
  591. builder.mutation.op = OpDeleteOne
  592. return &LabelRelationshipDeleteOne{builder}
  593. }
  594. // Query returns a query builder for LabelRelationship.
  595. func (c *LabelRelationshipClient) Query() *LabelRelationshipQuery {
  596. return &LabelRelationshipQuery{
  597. config: c.config,
  598. ctx: &QueryContext{Type: TypeLabelRelationship},
  599. inters: c.Interceptors(),
  600. }
  601. }
  602. // Get returns a LabelRelationship entity by its id.
  603. func (c *LabelRelationshipClient) Get(ctx context.Context, id uint64) (*LabelRelationship, error) {
  604. return c.Query().Where(labelrelationship.ID(id)).Only(ctx)
  605. }
  606. // GetX is like Get, but panics if an error occurs.
  607. func (c *LabelRelationshipClient) GetX(ctx context.Context, id uint64) *LabelRelationship {
  608. obj, err := c.Get(ctx, id)
  609. if err != nil {
  610. panic(err)
  611. }
  612. return obj
  613. }
  614. // QueryContacts queries the contacts edge of a LabelRelationship.
  615. func (c *LabelRelationshipClient) QueryContacts(lr *LabelRelationship) *ContactQuery {
  616. query := (&ContactClient{config: c.config}).Query()
  617. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  618. id := lr.ID
  619. step := sqlgraph.NewStep(
  620. sqlgraph.From(labelrelationship.Table, labelrelationship.FieldID, id),
  621. sqlgraph.To(contact.Table, contact.FieldID),
  622. sqlgraph.Edge(sqlgraph.M2O, true, labelrelationship.ContactsTable, labelrelationship.ContactsColumn),
  623. )
  624. fromV = sqlgraph.Neighbors(lr.driver.Dialect(), step)
  625. return fromV, nil
  626. }
  627. return query
  628. }
  629. // QueryLabels queries the labels edge of a LabelRelationship.
  630. func (c *LabelRelationshipClient) QueryLabels(lr *LabelRelationship) *LabelQuery {
  631. query := (&LabelClient{config: c.config}).Query()
  632. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  633. id := lr.ID
  634. step := sqlgraph.NewStep(
  635. sqlgraph.From(labelrelationship.Table, labelrelationship.FieldID, id),
  636. sqlgraph.To(label.Table, label.FieldID),
  637. sqlgraph.Edge(sqlgraph.M2O, true, labelrelationship.LabelsTable, labelrelationship.LabelsColumn),
  638. )
  639. fromV = sqlgraph.Neighbors(lr.driver.Dialect(), step)
  640. return fromV, nil
  641. }
  642. return query
  643. }
  644. // Hooks returns the client hooks.
  645. func (c *LabelRelationshipClient) Hooks() []Hook {
  646. hooks := c.hooks.LabelRelationship
  647. return append(hooks[:len(hooks):len(hooks)], labelrelationship.Hooks[:]...)
  648. }
  649. // Interceptors returns the client interceptors.
  650. func (c *LabelRelationshipClient) Interceptors() []Interceptor {
  651. inters := c.inters.LabelRelationship
  652. return append(inters[:len(inters):len(inters)], labelrelationship.Interceptors[:]...)
  653. }
  654. func (c *LabelRelationshipClient) mutate(ctx context.Context, m *LabelRelationshipMutation) (Value, error) {
  655. switch m.Op() {
  656. case OpCreate:
  657. return (&LabelRelationshipCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  658. case OpUpdate:
  659. return (&LabelRelationshipUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  660. case OpUpdateOne:
  661. return (&LabelRelationshipUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  662. case OpDelete, OpDeleteOne:
  663. return (&LabelRelationshipDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  664. default:
  665. return nil, fmt.Errorf("ent: unknown LabelRelationship mutation op: %q", m.Op())
  666. }
  667. }
  668. // MessageClient is a client for the Message schema.
  669. type MessageClient struct {
  670. config
  671. }
  672. // NewMessageClient returns a client for the Message from the given config.
  673. func NewMessageClient(c config) *MessageClient {
  674. return &MessageClient{config: c}
  675. }
  676. // Use adds a list of mutation hooks to the hooks stack.
  677. // A call to `Use(f, g, h)` equals to `message.Hooks(f(g(h())))`.
  678. func (c *MessageClient) Use(hooks ...Hook) {
  679. c.hooks.Message = append(c.hooks.Message, hooks...)
  680. }
  681. // Intercept adds a list of query interceptors to the interceptors stack.
  682. // A call to `Intercept(f, g, h)` equals to `message.Intercept(f(g(h())))`.
  683. func (c *MessageClient) Intercept(interceptors ...Interceptor) {
  684. c.inters.Message = append(c.inters.Message, interceptors...)
  685. }
  686. // Create returns a builder for creating a Message entity.
  687. func (c *MessageClient) Create() *MessageCreate {
  688. mutation := newMessageMutation(c.config, OpCreate)
  689. return &MessageCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  690. }
  691. // CreateBulk returns a builder for creating a bulk of Message entities.
  692. func (c *MessageClient) CreateBulk(builders ...*MessageCreate) *MessageCreateBulk {
  693. return &MessageCreateBulk{config: c.config, builders: builders}
  694. }
  695. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  696. // a builder and applies setFunc on it.
  697. func (c *MessageClient) MapCreateBulk(slice any, setFunc func(*MessageCreate, int)) *MessageCreateBulk {
  698. rv := reflect.ValueOf(slice)
  699. if rv.Kind() != reflect.Slice {
  700. return &MessageCreateBulk{err: fmt.Errorf("calling to MessageClient.MapCreateBulk with wrong type %T, need slice", slice)}
  701. }
  702. builders := make([]*MessageCreate, rv.Len())
  703. for i := 0; i < rv.Len(); i++ {
  704. builders[i] = c.Create()
  705. setFunc(builders[i], i)
  706. }
  707. return &MessageCreateBulk{config: c.config, builders: builders}
  708. }
  709. // Update returns an update builder for Message.
  710. func (c *MessageClient) Update() *MessageUpdate {
  711. mutation := newMessageMutation(c.config, OpUpdate)
  712. return &MessageUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  713. }
  714. // UpdateOne returns an update builder for the given entity.
  715. func (c *MessageClient) UpdateOne(m *Message) *MessageUpdateOne {
  716. mutation := newMessageMutation(c.config, OpUpdateOne, withMessage(m))
  717. return &MessageUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  718. }
  719. // UpdateOneID returns an update builder for the given id.
  720. func (c *MessageClient) UpdateOneID(id int) *MessageUpdateOne {
  721. mutation := newMessageMutation(c.config, OpUpdateOne, withMessageID(id))
  722. return &MessageUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  723. }
  724. // Delete returns a delete builder for Message.
  725. func (c *MessageClient) Delete() *MessageDelete {
  726. mutation := newMessageMutation(c.config, OpDelete)
  727. return &MessageDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  728. }
  729. // DeleteOne returns a builder for deleting the given entity.
  730. func (c *MessageClient) DeleteOne(m *Message) *MessageDeleteOne {
  731. return c.DeleteOneID(m.ID)
  732. }
  733. // DeleteOneID returns a builder for deleting the given entity by its id.
  734. func (c *MessageClient) DeleteOneID(id int) *MessageDeleteOne {
  735. builder := c.Delete().Where(message.ID(id))
  736. builder.mutation.id = &id
  737. builder.mutation.op = OpDeleteOne
  738. return &MessageDeleteOne{builder}
  739. }
  740. // Query returns a query builder for Message.
  741. func (c *MessageClient) Query() *MessageQuery {
  742. return &MessageQuery{
  743. config: c.config,
  744. ctx: &QueryContext{Type: TypeMessage},
  745. inters: c.Interceptors(),
  746. }
  747. }
  748. // Get returns a Message entity by its id.
  749. func (c *MessageClient) Get(ctx context.Context, id int) (*Message, error) {
  750. return c.Query().Where(message.ID(id)).Only(ctx)
  751. }
  752. // GetX is like Get, but panics if an error occurs.
  753. func (c *MessageClient) GetX(ctx context.Context, id int) *Message {
  754. obj, err := c.Get(ctx, id)
  755. if err != nil {
  756. panic(err)
  757. }
  758. return obj
  759. }
  760. // Hooks returns the client hooks.
  761. func (c *MessageClient) Hooks() []Hook {
  762. return c.hooks.Message
  763. }
  764. // Interceptors returns the client interceptors.
  765. func (c *MessageClient) Interceptors() []Interceptor {
  766. return c.inters.Message
  767. }
  768. func (c *MessageClient) mutate(ctx context.Context, m *MessageMutation) (Value, error) {
  769. switch m.Op() {
  770. case OpCreate:
  771. return (&MessageCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  772. case OpUpdate:
  773. return (&MessageUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  774. case OpUpdateOne:
  775. return (&MessageUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  776. case OpDelete, OpDeleteOne:
  777. return (&MessageDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  778. default:
  779. return nil, fmt.Errorf("ent: unknown Message mutation op: %q", m.Op())
  780. }
  781. }
  782. // MessageRecordsClient is a client for the MessageRecords schema.
  783. type MessageRecordsClient struct {
  784. config
  785. }
  786. // NewMessageRecordsClient returns a client for the MessageRecords from the given config.
  787. func NewMessageRecordsClient(c config) *MessageRecordsClient {
  788. return &MessageRecordsClient{config: c}
  789. }
  790. // Use adds a list of mutation hooks to the hooks stack.
  791. // A call to `Use(f, g, h)` equals to `messagerecords.Hooks(f(g(h())))`.
  792. func (c *MessageRecordsClient) Use(hooks ...Hook) {
  793. c.hooks.MessageRecords = append(c.hooks.MessageRecords, hooks...)
  794. }
  795. // Intercept adds a list of query interceptors to the interceptors stack.
  796. // A call to `Intercept(f, g, h)` equals to `messagerecords.Intercept(f(g(h())))`.
  797. func (c *MessageRecordsClient) Intercept(interceptors ...Interceptor) {
  798. c.inters.MessageRecords = append(c.inters.MessageRecords, interceptors...)
  799. }
  800. // Create returns a builder for creating a MessageRecords entity.
  801. func (c *MessageRecordsClient) Create() *MessageRecordsCreate {
  802. mutation := newMessageRecordsMutation(c.config, OpCreate)
  803. return &MessageRecordsCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  804. }
  805. // CreateBulk returns a builder for creating a bulk of MessageRecords entities.
  806. func (c *MessageRecordsClient) CreateBulk(builders ...*MessageRecordsCreate) *MessageRecordsCreateBulk {
  807. return &MessageRecordsCreateBulk{config: c.config, builders: builders}
  808. }
  809. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  810. // a builder and applies setFunc on it.
  811. func (c *MessageRecordsClient) MapCreateBulk(slice any, setFunc func(*MessageRecordsCreate, int)) *MessageRecordsCreateBulk {
  812. rv := reflect.ValueOf(slice)
  813. if rv.Kind() != reflect.Slice {
  814. return &MessageRecordsCreateBulk{err: fmt.Errorf("calling to MessageRecordsClient.MapCreateBulk with wrong type %T, need slice", slice)}
  815. }
  816. builders := make([]*MessageRecordsCreate, rv.Len())
  817. for i := 0; i < rv.Len(); i++ {
  818. builders[i] = c.Create()
  819. setFunc(builders[i], i)
  820. }
  821. return &MessageRecordsCreateBulk{config: c.config, builders: builders}
  822. }
  823. // Update returns an update builder for MessageRecords.
  824. func (c *MessageRecordsClient) Update() *MessageRecordsUpdate {
  825. mutation := newMessageRecordsMutation(c.config, OpUpdate)
  826. return &MessageRecordsUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  827. }
  828. // UpdateOne returns an update builder for the given entity.
  829. func (c *MessageRecordsClient) UpdateOne(mr *MessageRecords) *MessageRecordsUpdateOne {
  830. mutation := newMessageRecordsMutation(c.config, OpUpdateOne, withMessageRecords(mr))
  831. return &MessageRecordsUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  832. }
  833. // UpdateOneID returns an update builder for the given id.
  834. func (c *MessageRecordsClient) UpdateOneID(id uint64) *MessageRecordsUpdateOne {
  835. mutation := newMessageRecordsMutation(c.config, OpUpdateOne, withMessageRecordsID(id))
  836. return &MessageRecordsUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  837. }
  838. // Delete returns a delete builder for MessageRecords.
  839. func (c *MessageRecordsClient) Delete() *MessageRecordsDelete {
  840. mutation := newMessageRecordsMutation(c.config, OpDelete)
  841. return &MessageRecordsDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  842. }
  843. // DeleteOne returns a builder for deleting the given entity.
  844. func (c *MessageRecordsClient) DeleteOne(mr *MessageRecords) *MessageRecordsDeleteOne {
  845. return c.DeleteOneID(mr.ID)
  846. }
  847. // DeleteOneID returns a builder for deleting the given entity by its id.
  848. func (c *MessageRecordsClient) DeleteOneID(id uint64) *MessageRecordsDeleteOne {
  849. builder := c.Delete().Where(messagerecords.ID(id))
  850. builder.mutation.id = &id
  851. builder.mutation.op = OpDeleteOne
  852. return &MessageRecordsDeleteOne{builder}
  853. }
  854. // Query returns a query builder for MessageRecords.
  855. func (c *MessageRecordsClient) Query() *MessageRecordsQuery {
  856. return &MessageRecordsQuery{
  857. config: c.config,
  858. ctx: &QueryContext{Type: TypeMessageRecords},
  859. inters: c.Interceptors(),
  860. }
  861. }
  862. // Get returns a MessageRecords entity by its id.
  863. func (c *MessageRecordsClient) Get(ctx context.Context, id uint64) (*MessageRecords, error) {
  864. return c.Query().Where(messagerecords.ID(id)).Only(ctx)
  865. }
  866. // GetX is like Get, but panics if an error occurs.
  867. func (c *MessageRecordsClient) GetX(ctx context.Context, id uint64) *MessageRecords {
  868. obj, err := c.Get(ctx, id)
  869. if err != nil {
  870. panic(err)
  871. }
  872. return obj
  873. }
  874. // Hooks returns the client hooks.
  875. func (c *MessageRecordsClient) Hooks() []Hook {
  876. hooks := c.hooks.MessageRecords
  877. return append(hooks[:len(hooks):len(hooks)], messagerecords.Hooks[:]...)
  878. }
  879. // Interceptors returns the client interceptors.
  880. func (c *MessageRecordsClient) Interceptors() []Interceptor {
  881. inters := c.inters.MessageRecords
  882. return append(inters[:len(inters):len(inters)], messagerecords.Interceptors[:]...)
  883. }
  884. func (c *MessageRecordsClient) mutate(ctx context.Context, m *MessageRecordsMutation) (Value, error) {
  885. switch m.Op() {
  886. case OpCreate:
  887. return (&MessageRecordsCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  888. case OpUpdate:
  889. return (&MessageRecordsUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  890. case OpUpdateOne:
  891. return (&MessageRecordsUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  892. case OpDelete, OpDeleteOne:
  893. return (&MessageRecordsDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  894. default:
  895. return nil, fmt.Errorf("ent: unknown MessageRecords mutation op: %q", m.Op())
  896. }
  897. }
  898. // ServerClient is a client for the Server schema.
  899. type ServerClient struct {
  900. config
  901. }
  902. // NewServerClient returns a client for the Server from the given config.
  903. func NewServerClient(c config) *ServerClient {
  904. return &ServerClient{config: c}
  905. }
  906. // Use adds a list of mutation hooks to the hooks stack.
  907. // A call to `Use(f, g, h)` equals to `server.Hooks(f(g(h())))`.
  908. func (c *ServerClient) Use(hooks ...Hook) {
  909. c.hooks.Server = append(c.hooks.Server, hooks...)
  910. }
  911. // Intercept adds a list of query interceptors to the interceptors stack.
  912. // A call to `Intercept(f, g, h)` equals to `server.Intercept(f(g(h())))`.
  913. func (c *ServerClient) Intercept(interceptors ...Interceptor) {
  914. c.inters.Server = append(c.inters.Server, interceptors...)
  915. }
  916. // Create returns a builder for creating a Server entity.
  917. func (c *ServerClient) Create() *ServerCreate {
  918. mutation := newServerMutation(c.config, OpCreate)
  919. return &ServerCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  920. }
  921. // CreateBulk returns a builder for creating a bulk of Server entities.
  922. func (c *ServerClient) CreateBulk(builders ...*ServerCreate) *ServerCreateBulk {
  923. return &ServerCreateBulk{config: c.config, builders: builders}
  924. }
  925. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  926. // a builder and applies setFunc on it.
  927. func (c *ServerClient) MapCreateBulk(slice any, setFunc func(*ServerCreate, int)) *ServerCreateBulk {
  928. rv := reflect.ValueOf(slice)
  929. if rv.Kind() != reflect.Slice {
  930. return &ServerCreateBulk{err: fmt.Errorf("calling to ServerClient.MapCreateBulk with wrong type %T, need slice", slice)}
  931. }
  932. builders := make([]*ServerCreate, rv.Len())
  933. for i := 0; i < rv.Len(); i++ {
  934. builders[i] = c.Create()
  935. setFunc(builders[i], i)
  936. }
  937. return &ServerCreateBulk{config: c.config, builders: builders}
  938. }
  939. // Update returns an update builder for Server.
  940. func (c *ServerClient) Update() *ServerUpdate {
  941. mutation := newServerMutation(c.config, OpUpdate)
  942. return &ServerUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  943. }
  944. // UpdateOne returns an update builder for the given entity.
  945. func (c *ServerClient) UpdateOne(s *Server) *ServerUpdateOne {
  946. mutation := newServerMutation(c.config, OpUpdateOne, withServer(s))
  947. return &ServerUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  948. }
  949. // UpdateOneID returns an update builder for the given id.
  950. func (c *ServerClient) UpdateOneID(id uint64) *ServerUpdateOne {
  951. mutation := newServerMutation(c.config, OpUpdateOne, withServerID(id))
  952. return &ServerUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  953. }
  954. // Delete returns a delete builder for Server.
  955. func (c *ServerClient) Delete() *ServerDelete {
  956. mutation := newServerMutation(c.config, OpDelete)
  957. return &ServerDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  958. }
  959. // DeleteOne returns a builder for deleting the given entity.
  960. func (c *ServerClient) DeleteOne(s *Server) *ServerDeleteOne {
  961. return c.DeleteOneID(s.ID)
  962. }
  963. // DeleteOneID returns a builder for deleting the given entity by its id.
  964. func (c *ServerClient) DeleteOneID(id uint64) *ServerDeleteOne {
  965. builder := c.Delete().Where(server.ID(id))
  966. builder.mutation.id = &id
  967. builder.mutation.op = OpDeleteOne
  968. return &ServerDeleteOne{builder}
  969. }
  970. // Query returns a query builder for Server.
  971. func (c *ServerClient) Query() *ServerQuery {
  972. return &ServerQuery{
  973. config: c.config,
  974. ctx: &QueryContext{Type: TypeServer},
  975. inters: c.Interceptors(),
  976. }
  977. }
  978. // Get returns a Server entity by its id.
  979. func (c *ServerClient) Get(ctx context.Context, id uint64) (*Server, error) {
  980. return c.Query().Where(server.ID(id)).Only(ctx)
  981. }
  982. // GetX is like Get, but panics if an error occurs.
  983. func (c *ServerClient) GetX(ctx context.Context, id uint64) *Server {
  984. obj, err := c.Get(ctx, id)
  985. if err != nil {
  986. panic(err)
  987. }
  988. return obj
  989. }
  990. // QueryWxs queries the wxs edge of a Server.
  991. func (c *ServerClient) QueryWxs(s *Server) *WxQuery {
  992. query := (&WxClient{config: c.config}).Query()
  993. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  994. id := s.ID
  995. step := sqlgraph.NewStep(
  996. sqlgraph.From(server.Table, server.FieldID, id),
  997. sqlgraph.To(wx.Table, wx.FieldID),
  998. sqlgraph.Edge(sqlgraph.O2M, false, server.WxsTable, server.WxsColumn),
  999. )
  1000. fromV = sqlgraph.Neighbors(s.driver.Dialect(), step)
  1001. return fromV, nil
  1002. }
  1003. return query
  1004. }
  1005. // Hooks returns the client hooks.
  1006. func (c *ServerClient) Hooks() []Hook {
  1007. hooks := c.hooks.Server
  1008. return append(hooks[:len(hooks):len(hooks)], server.Hooks[:]...)
  1009. }
  1010. // Interceptors returns the client interceptors.
  1011. func (c *ServerClient) Interceptors() []Interceptor {
  1012. inters := c.inters.Server
  1013. return append(inters[:len(inters):len(inters)], server.Interceptors[:]...)
  1014. }
  1015. func (c *ServerClient) mutate(ctx context.Context, m *ServerMutation) (Value, error) {
  1016. switch m.Op() {
  1017. case OpCreate:
  1018. return (&ServerCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1019. case OpUpdate:
  1020. return (&ServerUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1021. case OpUpdateOne:
  1022. return (&ServerUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1023. case OpDelete, OpDeleteOne:
  1024. return (&ServerDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  1025. default:
  1026. return nil, fmt.Errorf("ent: unknown Server mutation op: %q", m.Op())
  1027. }
  1028. }
  1029. // SopNodeClient is a client for the SopNode schema.
  1030. type SopNodeClient struct {
  1031. config
  1032. }
  1033. // NewSopNodeClient returns a client for the SopNode from the given config.
  1034. func NewSopNodeClient(c config) *SopNodeClient {
  1035. return &SopNodeClient{config: c}
  1036. }
  1037. // Use adds a list of mutation hooks to the hooks stack.
  1038. // A call to `Use(f, g, h)` equals to `sopnode.Hooks(f(g(h())))`.
  1039. func (c *SopNodeClient) Use(hooks ...Hook) {
  1040. c.hooks.SopNode = append(c.hooks.SopNode, hooks...)
  1041. }
  1042. // Intercept adds a list of query interceptors to the interceptors stack.
  1043. // A call to `Intercept(f, g, h)` equals to `sopnode.Intercept(f(g(h())))`.
  1044. func (c *SopNodeClient) Intercept(interceptors ...Interceptor) {
  1045. c.inters.SopNode = append(c.inters.SopNode, interceptors...)
  1046. }
  1047. // Create returns a builder for creating a SopNode entity.
  1048. func (c *SopNodeClient) Create() *SopNodeCreate {
  1049. mutation := newSopNodeMutation(c.config, OpCreate)
  1050. return &SopNodeCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1051. }
  1052. // CreateBulk returns a builder for creating a bulk of SopNode entities.
  1053. func (c *SopNodeClient) CreateBulk(builders ...*SopNodeCreate) *SopNodeCreateBulk {
  1054. return &SopNodeCreateBulk{config: c.config, builders: builders}
  1055. }
  1056. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  1057. // a builder and applies setFunc on it.
  1058. func (c *SopNodeClient) MapCreateBulk(slice any, setFunc func(*SopNodeCreate, int)) *SopNodeCreateBulk {
  1059. rv := reflect.ValueOf(slice)
  1060. if rv.Kind() != reflect.Slice {
  1061. return &SopNodeCreateBulk{err: fmt.Errorf("calling to SopNodeClient.MapCreateBulk with wrong type %T, need slice", slice)}
  1062. }
  1063. builders := make([]*SopNodeCreate, rv.Len())
  1064. for i := 0; i < rv.Len(); i++ {
  1065. builders[i] = c.Create()
  1066. setFunc(builders[i], i)
  1067. }
  1068. return &SopNodeCreateBulk{config: c.config, builders: builders}
  1069. }
  1070. // Update returns an update builder for SopNode.
  1071. func (c *SopNodeClient) Update() *SopNodeUpdate {
  1072. mutation := newSopNodeMutation(c.config, OpUpdate)
  1073. return &SopNodeUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1074. }
  1075. // UpdateOne returns an update builder for the given entity.
  1076. func (c *SopNodeClient) UpdateOne(sn *SopNode) *SopNodeUpdateOne {
  1077. mutation := newSopNodeMutation(c.config, OpUpdateOne, withSopNode(sn))
  1078. return &SopNodeUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1079. }
  1080. // UpdateOneID returns an update builder for the given id.
  1081. func (c *SopNodeClient) UpdateOneID(id uint64) *SopNodeUpdateOne {
  1082. mutation := newSopNodeMutation(c.config, OpUpdateOne, withSopNodeID(id))
  1083. return &SopNodeUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1084. }
  1085. // Delete returns a delete builder for SopNode.
  1086. func (c *SopNodeClient) Delete() *SopNodeDelete {
  1087. mutation := newSopNodeMutation(c.config, OpDelete)
  1088. return &SopNodeDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1089. }
  1090. // DeleteOne returns a builder for deleting the given entity.
  1091. func (c *SopNodeClient) DeleteOne(sn *SopNode) *SopNodeDeleteOne {
  1092. return c.DeleteOneID(sn.ID)
  1093. }
  1094. // DeleteOneID returns a builder for deleting the given entity by its id.
  1095. func (c *SopNodeClient) DeleteOneID(id uint64) *SopNodeDeleteOne {
  1096. builder := c.Delete().Where(sopnode.ID(id))
  1097. builder.mutation.id = &id
  1098. builder.mutation.op = OpDeleteOne
  1099. return &SopNodeDeleteOne{builder}
  1100. }
  1101. // Query returns a query builder for SopNode.
  1102. func (c *SopNodeClient) Query() *SopNodeQuery {
  1103. return &SopNodeQuery{
  1104. config: c.config,
  1105. ctx: &QueryContext{Type: TypeSopNode},
  1106. inters: c.Interceptors(),
  1107. }
  1108. }
  1109. // Get returns a SopNode entity by its id.
  1110. func (c *SopNodeClient) Get(ctx context.Context, id uint64) (*SopNode, error) {
  1111. return c.Query().Where(sopnode.ID(id)).Only(ctx)
  1112. }
  1113. // GetX is like Get, but panics if an error occurs.
  1114. func (c *SopNodeClient) GetX(ctx context.Context, id uint64) *SopNode {
  1115. obj, err := c.Get(ctx, id)
  1116. if err != nil {
  1117. panic(err)
  1118. }
  1119. return obj
  1120. }
  1121. // QuerySopStage queries the sop_stage edge of a SopNode.
  1122. func (c *SopNodeClient) QuerySopStage(sn *SopNode) *SopStageQuery {
  1123. query := (&SopStageClient{config: c.config}).Query()
  1124. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1125. id := sn.ID
  1126. step := sqlgraph.NewStep(
  1127. sqlgraph.From(sopnode.Table, sopnode.FieldID, id),
  1128. sqlgraph.To(sopstage.Table, sopstage.FieldID),
  1129. sqlgraph.Edge(sqlgraph.M2O, true, sopnode.SopStageTable, sopnode.SopStageColumn),
  1130. )
  1131. fromV = sqlgraph.Neighbors(sn.driver.Dialect(), step)
  1132. return fromV, nil
  1133. }
  1134. return query
  1135. }
  1136. // Hooks returns the client hooks.
  1137. func (c *SopNodeClient) Hooks() []Hook {
  1138. hooks := c.hooks.SopNode
  1139. return append(hooks[:len(hooks):len(hooks)], sopnode.Hooks[:]...)
  1140. }
  1141. // Interceptors returns the client interceptors.
  1142. func (c *SopNodeClient) Interceptors() []Interceptor {
  1143. inters := c.inters.SopNode
  1144. return append(inters[:len(inters):len(inters)], sopnode.Interceptors[:]...)
  1145. }
  1146. func (c *SopNodeClient) mutate(ctx context.Context, m *SopNodeMutation) (Value, error) {
  1147. switch m.Op() {
  1148. case OpCreate:
  1149. return (&SopNodeCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1150. case OpUpdate:
  1151. return (&SopNodeUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1152. case OpUpdateOne:
  1153. return (&SopNodeUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1154. case OpDelete, OpDeleteOne:
  1155. return (&SopNodeDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  1156. default:
  1157. return nil, fmt.Errorf("ent: unknown SopNode mutation op: %q", m.Op())
  1158. }
  1159. }
  1160. // SopStageClient is a client for the SopStage schema.
  1161. type SopStageClient struct {
  1162. config
  1163. }
  1164. // NewSopStageClient returns a client for the SopStage from the given config.
  1165. func NewSopStageClient(c config) *SopStageClient {
  1166. return &SopStageClient{config: c}
  1167. }
  1168. // Use adds a list of mutation hooks to the hooks stack.
  1169. // A call to `Use(f, g, h)` equals to `sopstage.Hooks(f(g(h())))`.
  1170. func (c *SopStageClient) Use(hooks ...Hook) {
  1171. c.hooks.SopStage = append(c.hooks.SopStage, hooks...)
  1172. }
  1173. // Intercept adds a list of query interceptors to the interceptors stack.
  1174. // A call to `Intercept(f, g, h)` equals to `sopstage.Intercept(f(g(h())))`.
  1175. func (c *SopStageClient) Intercept(interceptors ...Interceptor) {
  1176. c.inters.SopStage = append(c.inters.SopStage, interceptors...)
  1177. }
  1178. // Create returns a builder for creating a SopStage entity.
  1179. func (c *SopStageClient) Create() *SopStageCreate {
  1180. mutation := newSopStageMutation(c.config, OpCreate)
  1181. return &SopStageCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1182. }
  1183. // CreateBulk returns a builder for creating a bulk of SopStage entities.
  1184. func (c *SopStageClient) CreateBulk(builders ...*SopStageCreate) *SopStageCreateBulk {
  1185. return &SopStageCreateBulk{config: c.config, builders: builders}
  1186. }
  1187. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  1188. // a builder and applies setFunc on it.
  1189. func (c *SopStageClient) MapCreateBulk(slice any, setFunc func(*SopStageCreate, int)) *SopStageCreateBulk {
  1190. rv := reflect.ValueOf(slice)
  1191. if rv.Kind() != reflect.Slice {
  1192. return &SopStageCreateBulk{err: fmt.Errorf("calling to SopStageClient.MapCreateBulk with wrong type %T, need slice", slice)}
  1193. }
  1194. builders := make([]*SopStageCreate, rv.Len())
  1195. for i := 0; i < rv.Len(); i++ {
  1196. builders[i] = c.Create()
  1197. setFunc(builders[i], i)
  1198. }
  1199. return &SopStageCreateBulk{config: c.config, builders: builders}
  1200. }
  1201. // Update returns an update builder for SopStage.
  1202. func (c *SopStageClient) Update() *SopStageUpdate {
  1203. mutation := newSopStageMutation(c.config, OpUpdate)
  1204. return &SopStageUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1205. }
  1206. // UpdateOne returns an update builder for the given entity.
  1207. func (c *SopStageClient) UpdateOne(ss *SopStage) *SopStageUpdateOne {
  1208. mutation := newSopStageMutation(c.config, OpUpdateOne, withSopStage(ss))
  1209. return &SopStageUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1210. }
  1211. // UpdateOneID returns an update builder for the given id.
  1212. func (c *SopStageClient) UpdateOneID(id uint64) *SopStageUpdateOne {
  1213. mutation := newSopStageMutation(c.config, OpUpdateOne, withSopStageID(id))
  1214. return &SopStageUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1215. }
  1216. // Delete returns a delete builder for SopStage.
  1217. func (c *SopStageClient) Delete() *SopStageDelete {
  1218. mutation := newSopStageMutation(c.config, OpDelete)
  1219. return &SopStageDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1220. }
  1221. // DeleteOne returns a builder for deleting the given entity.
  1222. func (c *SopStageClient) DeleteOne(ss *SopStage) *SopStageDeleteOne {
  1223. return c.DeleteOneID(ss.ID)
  1224. }
  1225. // DeleteOneID returns a builder for deleting the given entity by its id.
  1226. func (c *SopStageClient) DeleteOneID(id uint64) *SopStageDeleteOne {
  1227. builder := c.Delete().Where(sopstage.ID(id))
  1228. builder.mutation.id = &id
  1229. builder.mutation.op = OpDeleteOne
  1230. return &SopStageDeleteOne{builder}
  1231. }
  1232. // Query returns a query builder for SopStage.
  1233. func (c *SopStageClient) Query() *SopStageQuery {
  1234. return &SopStageQuery{
  1235. config: c.config,
  1236. ctx: &QueryContext{Type: TypeSopStage},
  1237. inters: c.Interceptors(),
  1238. }
  1239. }
  1240. // Get returns a SopStage entity by its id.
  1241. func (c *SopStageClient) Get(ctx context.Context, id uint64) (*SopStage, error) {
  1242. return c.Query().Where(sopstage.ID(id)).Only(ctx)
  1243. }
  1244. // GetX is like Get, but panics if an error occurs.
  1245. func (c *SopStageClient) GetX(ctx context.Context, id uint64) *SopStage {
  1246. obj, err := c.Get(ctx, id)
  1247. if err != nil {
  1248. panic(err)
  1249. }
  1250. return obj
  1251. }
  1252. // QuerySopTask queries the sop_task edge of a SopStage.
  1253. func (c *SopStageClient) QuerySopTask(ss *SopStage) *SopTaskQuery {
  1254. query := (&SopTaskClient{config: c.config}).Query()
  1255. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1256. id := ss.ID
  1257. step := sqlgraph.NewStep(
  1258. sqlgraph.From(sopstage.Table, sopstage.FieldID, id),
  1259. sqlgraph.To(soptask.Table, soptask.FieldID),
  1260. sqlgraph.Edge(sqlgraph.M2O, true, sopstage.SopTaskTable, sopstage.SopTaskColumn),
  1261. )
  1262. fromV = sqlgraph.Neighbors(ss.driver.Dialect(), step)
  1263. return fromV, nil
  1264. }
  1265. return query
  1266. }
  1267. // QueryStageNodes queries the stage_nodes edge of a SopStage.
  1268. func (c *SopStageClient) QueryStageNodes(ss *SopStage) *SopNodeQuery {
  1269. query := (&SopNodeClient{config: c.config}).Query()
  1270. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1271. id := ss.ID
  1272. step := sqlgraph.NewStep(
  1273. sqlgraph.From(sopstage.Table, sopstage.FieldID, id),
  1274. sqlgraph.To(sopnode.Table, sopnode.FieldID),
  1275. sqlgraph.Edge(sqlgraph.O2M, false, sopstage.StageNodesTable, sopstage.StageNodesColumn),
  1276. )
  1277. fromV = sqlgraph.Neighbors(ss.driver.Dialect(), step)
  1278. return fromV, nil
  1279. }
  1280. return query
  1281. }
  1282. // Hooks returns the client hooks.
  1283. func (c *SopStageClient) Hooks() []Hook {
  1284. hooks := c.hooks.SopStage
  1285. return append(hooks[:len(hooks):len(hooks)], sopstage.Hooks[:]...)
  1286. }
  1287. // Interceptors returns the client interceptors.
  1288. func (c *SopStageClient) Interceptors() []Interceptor {
  1289. inters := c.inters.SopStage
  1290. return append(inters[:len(inters):len(inters)], sopstage.Interceptors[:]...)
  1291. }
  1292. func (c *SopStageClient) mutate(ctx context.Context, m *SopStageMutation) (Value, error) {
  1293. switch m.Op() {
  1294. case OpCreate:
  1295. return (&SopStageCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1296. case OpUpdate:
  1297. return (&SopStageUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1298. case OpUpdateOne:
  1299. return (&SopStageUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1300. case OpDelete, OpDeleteOne:
  1301. return (&SopStageDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  1302. default:
  1303. return nil, fmt.Errorf("ent: unknown SopStage mutation op: %q", m.Op())
  1304. }
  1305. }
  1306. // SopTaskClient is a client for the SopTask schema.
  1307. type SopTaskClient struct {
  1308. config
  1309. }
  1310. // NewSopTaskClient returns a client for the SopTask from the given config.
  1311. func NewSopTaskClient(c config) *SopTaskClient {
  1312. return &SopTaskClient{config: c}
  1313. }
  1314. // Use adds a list of mutation hooks to the hooks stack.
  1315. // A call to `Use(f, g, h)` equals to `soptask.Hooks(f(g(h())))`.
  1316. func (c *SopTaskClient) Use(hooks ...Hook) {
  1317. c.hooks.SopTask = append(c.hooks.SopTask, hooks...)
  1318. }
  1319. // Intercept adds a list of query interceptors to the interceptors stack.
  1320. // A call to `Intercept(f, g, h)` equals to `soptask.Intercept(f(g(h())))`.
  1321. func (c *SopTaskClient) Intercept(interceptors ...Interceptor) {
  1322. c.inters.SopTask = append(c.inters.SopTask, interceptors...)
  1323. }
  1324. // Create returns a builder for creating a SopTask entity.
  1325. func (c *SopTaskClient) Create() *SopTaskCreate {
  1326. mutation := newSopTaskMutation(c.config, OpCreate)
  1327. return &SopTaskCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1328. }
  1329. // CreateBulk returns a builder for creating a bulk of SopTask entities.
  1330. func (c *SopTaskClient) CreateBulk(builders ...*SopTaskCreate) *SopTaskCreateBulk {
  1331. return &SopTaskCreateBulk{config: c.config, builders: builders}
  1332. }
  1333. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  1334. // a builder and applies setFunc on it.
  1335. func (c *SopTaskClient) MapCreateBulk(slice any, setFunc func(*SopTaskCreate, int)) *SopTaskCreateBulk {
  1336. rv := reflect.ValueOf(slice)
  1337. if rv.Kind() != reflect.Slice {
  1338. return &SopTaskCreateBulk{err: fmt.Errorf("calling to SopTaskClient.MapCreateBulk with wrong type %T, need slice", slice)}
  1339. }
  1340. builders := make([]*SopTaskCreate, rv.Len())
  1341. for i := 0; i < rv.Len(); i++ {
  1342. builders[i] = c.Create()
  1343. setFunc(builders[i], i)
  1344. }
  1345. return &SopTaskCreateBulk{config: c.config, builders: builders}
  1346. }
  1347. // Update returns an update builder for SopTask.
  1348. func (c *SopTaskClient) Update() *SopTaskUpdate {
  1349. mutation := newSopTaskMutation(c.config, OpUpdate)
  1350. return &SopTaskUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1351. }
  1352. // UpdateOne returns an update builder for the given entity.
  1353. func (c *SopTaskClient) UpdateOne(st *SopTask) *SopTaskUpdateOne {
  1354. mutation := newSopTaskMutation(c.config, OpUpdateOne, withSopTask(st))
  1355. return &SopTaskUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1356. }
  1357. // UpdateOneID returns an update builder for the given id.
  1358. func (c *SopTaskClient) UpdateOneID(id uint64) *SopTaskUpdateOne {
  1359. mutation := newSopTaskMutation(c.config, OpUpdateOne, withSopTaskID(id))
  1360. return &SopTaskUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1361. }
  1362. // Delete returns a delete builder for SopTask.
  1363. func (c *SopTaskClient) Delete() *SopTaskDelete {
  1364. mutation := newSopTaskMutation(c.config, OpDelete)
  1365. return &SopTaskDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1366. }
  1367. // DeleteOne returns a builder for deleting the given entity.
  1368. func (c *SopTaskClient) DeleteOne(st *SopTask) *SopTaskDeleteOne {
  1369. return c.DeleteOneID(st.ID)
  1370. }
  1371. // DeleteOneID returns a builder for deleting the given entity by its id.
  1372. func (c *SopTaskClient) DeleteOneID(id uint64) *SopTaskDeleteOne {
  1373. builder := c.Delete().Where(soptask.ID(id))
  1374. builder.mutation.id = &id
  1375. builder.mutation.op = OpDeleteOne
  1376. return &SopTaskDeleteOne{builder}
  1377. }
  1378. // Query returns a query builder for SopTask.
  1379. func (c *SopTaskClient) Query() *SopTaskQuery {
  1380. return &SopTaskQuery{
  1381. config: c.config,
  1382. ctx: &QueryContext{Type: TypeSopTask},
  1383. inters: c.Interceptors(),
  1384. }
  1385. }
  1386. // Get returns a SopTask entity by its id.
  1387. func (c *SopTaskClient) Get(ctx context.Context, id uint64) (*SopTask, error) {
  1388. return c.Query().Where(soptask.ID(id)).Only(ctx)
  1389. }
  1390. // GetX is like Get, but panics if an error occurs.
  1391. func (c *SopTaskClient) GetX(ctx context.Context, id uint64) *SopTask {
  1392. obj, err := c.Get(ctx, id)
  1393. if err != nil {
  1394. panic(err)
  1395. }
  1396. return obj
  1397. }
  1398. // QueryTaskStages queries the task_stages edge of a SopTask.
  1399. func (c *SopTaskClient) QueryTaskStages(st *SopTask) *SopStageQuery {
  1400. query := (&SopStageClient{config: c.config}).Query()
  1401. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1402. id := st.ID
  1403. step := sqlgraph.NewStep(
  1404. sqlgraph.From(soptask.Table, soptask.FieldID, id),
  1405. sqlgraph.To(sopstage.Table, sopstage.FieldID),
  1406. sqlgraph.Edge(sqlgraph.O2M, false, soptask.TaskStagesTable, soptask.TaskStagesColumn),
  1407. )
  1408. fromV = sqlgraph.Neighbors(st.driver.Dialect(), step)
  1409. return fromV, nil
  1410. }
  1411. return query
  1412. }
  1413. // Hooks returns the client hooks.
  1414. func (c *SopTaskClient) Hooks() []Hook {
  1415. hooks := c.hooks.SopTask
  1416. return append(hooks[:len(hooks):len(hooks)], soptask.Hooks[:]...)
  1417. }
  1418. // Interceptors returns the client interceptors.
  1419. func (c *SopTaskClient) Interceptors() []Interceptor {
  1420. inters := c.inters.SopTask
  1421. return append(inters[:len(inters):len(inters)], soptask.Interceptors[:]...)
  1422. }
  1423. func (c *SopTaskClient) mutate(ctx context.Context, m *SopTaskMutation) (Value, error) {
  1424. switch m.Op() {
  1425. case OpCreate:
  1426. return (&SopTaskCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1427. case OpUpdate:
  1428. return (&SopTaskUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1429. case OpUpdateOne:
  1430. return (&SopTaskUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1431. case OpDelete, OpDeleteOne:
  1432. return (&SopTaskDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  1433. default:
  1434. return nil, fmt.Errorf("ent: unknown SopTask mutation op: %q", m.Op())
  1435. }
  1436. }
  1437. // WxClient is a client for the Wx schema.
  1438. type WxClient struct {
  1439. config
  1440. }
  1441. // NewWxClient returns a client for the Wx from the given config.
  1442. func NewWxClient(c config) *WxClient {
  1443. return &WxClient{config: c}
  1444. }
  1445. // Use adds a list of mutation hooks to the hooks stack.
  1446. // A call to `Use(f, g, h)` equals to `wx.Hooks(f(g(h())))`.
  1447. func (c *WxClient) Use(hooks ...Hook) {
  1448. c.hooks.Wx = append(c.hooks.Wx, hooks...)
  1449. }
  1450. // Intercept adds a list of query interceptors to the interceptors stack.
  1451. // A call to `Intercept(f, g, h)` equals to `wx.Intercept(f(g(h())))`.
  1452. func (c *WxClient) Intercept(interceptors ...Interceptor) {
  1453. c.inters.Wx = append(c.inters.Wx, interceptors...)
  1454. }
  1455. // Create returns a builder for creating a Wx entity.
  1456. func (c *WxClient) Create() *WxCreate {
  1457. mutation := newWxMutation(c.config, OpCreate)
  1458. return &WxCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1459. }
  1460. // CreateBulk returns a builder for creating a bulk of Wx entities.
  1461. func (c *WxClient) CreateBulk(builders ...*WxCreate) *WxCreateBulk {
  1462. return &WxCreateBulk{config: c.config, builders: builders}
  1463. }
  1464. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  1465. // a builder and applies setFunc on it.
  1466. func (c *WxClient) MapCreateBulk(slice any, setFunc func(*WxCreate, int)) *WxCreateBulk {
  1467. rv := reflect.ValueOf(slice)
  1468. if rv.Kind() != reflect.Slice {
  1469. return &WxCreateBulk{err: fmt.Errorf("calling to WxClient.MapCreateBulk with wrong type %T, need slice", slice)}
  1470. }
  1471. builders := make([]*WxCreate, rv.Len())
  1472. for i := 0; i < rv.Len(); i++ {
  1473. builders[i] = c.Create()
  1474. setFunc(builders[i], i)
  1475. }
  1476. return &WxCreateBulk{config: c.config, builders: builders}
  1477. }
  1478. // Update returns an update builder for Wx.
  1479. func (c *WxClient) Update() *WxUpdate {
  1480. mutation := newWxMutation(c.config, OpUpdate)
  1481. return &WxUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1482. }
  1483. // UpdateOne returns an update builder for the given entity.
  1484. func (c *WxClient) UpdateOne(w *Wx) *WxUpdateOne {
  1485. mutation := newWxMutation(c.config, OpUpdateOne, withWx(w))
  1486. return &WxUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1487. }
  1488. // UpdateOneID returns an update builder for the given id.
  1489. func (c *WxClient) UpdateOneID(id uint64) *WxUpdateOne {
  1490. mutation := newWxMutation(c.config, OpUpdateOne, withWxID(id))
  1491. return &WxUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1492. }
  1493. // Delete returns a delete builder for Wx.
  1494. func (c *WxClient) Delete() *WxDelete {
  1495. mutation := newWxMutation(c.config, OpDelete)
  1496. return &WxDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1497. }
  1498. // DeleteOne returns a builder for deleting the given entity.
  1499. func (c *WxClient) DeleteOne(w *Wx) *WxDeleteOne {
  1500. return c.DeleteOneID(w.ID)
  1501. }
  1502. // DeleteOneID returns a builder for deleting the given entity by its id.
  1503. func (c *WxClient) DeleteOneID(id uint64) *WxDeleteOne {
  1504. builder := c.Delete().Where(wx.ID(id))
  1505. builder.mutation.id = &id
  1506. builder.mutation.op = OpDeleteOne
  1507. return &WxDeleteOne{builder}
  1508. }
  1509. // Query returns a query builder for Wx.
  1510. func (c *WxClient) Query() *WxQuery {
  1511. return &WxQuery{
  1512. config: c.config,
  1513. ctx: &QueryContext{Type: TypeWx},
  1514. inters: c.Interceptors(),
  1515. }
  1516. }
  1517. // Get returns a Wx entity by its id.
  1518. func (c *WxClient) Get(ctx context.Context, id uint64) (*Wx, error) {
  1519. return c.Query().Where(wx.ID(id)).Only(ctx)
  1520. }
  1521. // GetX is like Get, but panics if an error occurs.
  1522. func (c *WxClient) GetX(ctx context.Context, id uint64) *Wx {
  1523. obj, err := c.Get(ctx, id)
  1524. if err != nil {
  1525. panic(err)
  1526. }
  1527. return obj
  1528. }
  1529. // QueryServer queries the server edge of a Wx.
  1530. func (c *WxClient) QueryServer(w *Wx) *ServerQuery {
  1531. query := (&ServerClient{config: c.config}).Query()
  1532. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1533. id := w.ID
  1534. step := sqlgraph.NewStep(
  1535. sqlgraph.From(wx.Table, wx.FieldID, id),
  1536. sqlgraph.To(server.Table, server.FieldID),
  1537. sqlgraph.Edge(sqlgraph.M2O, true, wx.ServerTable, wx.ServerColumn),
  1538. )
  1539. fromV = sqlgraph.Neighbors(w.driver.Dialect(), step)
  1540. return fromV, nil
  1541. }
  1542. return query
  1543. }
  1544. // Hooks returns the client hooks.
  1545. func (c *WxClient) Hooks() []Hook {
  1546. hooks := c.hooks.Wx
  1547. return append(hooks[:len(hooks):len(hooks)], wx.Hooks[:]...)
  1548. }
  1549. // Interceptors returns the client interceptors.
  1550. func (c *WxClient) Interceptors() []Interceptor {
  1551. inters := c.inters.Wx
  1552. return append(inters[:len(inters):len(inters)], wx.Interceptors[:]...)
  1553. }
  1554. func (c *WxClient) mutate(ctx context.Context, m *WxMutation) (Value, error) {
  1555. switch m.Op() {
  1556. case OpCreate:
  1557. return (&WxCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1558. case OpUpdate:
  1559. return (&WxUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1560. case OpUpdateOne:
  1561. return (&WxUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1562. case OpDelete, OpDeleteOne:
  1563. return (&WxDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  1564. default:
  1565. return nil, fmt.Errorf("ent: unknown Wx mutation op: %q", m.Op())
  1566. }
  1567. }
  1568. // hooks and interceptors per client, for fast access.
  1569. type (
  1570. hooks struct {
  1571. Contact, Label, LabelRelationship, Message, MessageRecords, Server, SopNode,
  1572. SopStage, SopTask, Wx []ent.Hook
  1573. }
  1574. inters struct {
  1575. Contact, Label, LabelRelationship, Message, MessageRecords, Server, SopNode,
  1576. SopStage, SopTask, Wx []ent.Interceptor
  1577. }
  1578. )
  1579. // ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it.
  1580. // See, database/sql#DB.ExecContext for more information.
  1581. func (c *config) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error) {
  1582. ex, ok := c.driver.(interface {
  1583. ExecContext(context.Context, string, ...any) (stdsql.Result, error)
  1584. })
  1585. if !ok {
  1586. return nil, fmt.Errorf("Driver.ExecContext is not supported")
  1587. }
  1588. return ex.ExecContext(ctx, query, args...)
  1589. }
  1590. // QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it.
  1591. // See, database/sql#DB.QueryContext for more information.
  1592. func (c *config) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error) {
  1593. q, ok := c.driver.(interface {
  1594. QueryContext(context.Context, string, ...any) (*stdsql.Rows, error)
  1595. })
  1596. if !ok {
  1597. return nil, fmt.Errorf("Driver.QueryContext is not supported")
  1598. }
  1599. return q.QueryContext(ctx, query, args...)
  1600. }