feat: 添加搜索收藏微服务
This commit is contained in:
@@ -0,0 +1,258 @@
|
||||
// Code generated by ent, DO NOT EDIT.
|
||||
|
||||
package models
|
||||
|
||||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"fmt"
|
||||
"juwan-backend/app/search/rpc/internal/models/favorites"
|
||||
"time"
|
||||
|
||||
"entgo.io/ent/dialect/sql/sqlgraph"
|
||||
"entgo.io/ent/schema/field"
|
||||
)
|
||||
|
||||
// FavoritesCreate is the builder for creating a Favorites entity.
|
||||
type FavoritesCreate struct {
|
||||
config
|
||||
mutation *FavoritesMutation
|
||||
hooks []Hook
|
||||
}
|
||||
|
||||
// SetUserID sets the "user_id" field.
|
||||
func (_c *FavoritesCreate) SetUserID(v int64) *FavoritesCreate {
|
||||
_c.mutation.SetUserID(v)
|
||||
return _c
|
||||
}
|
||||
|
||||
// SetTargetType sets the "target_type" field.
|
||||
func (_c *FavoritesCreate) SetTargetType(v string) *FavoritesCreate {
|
||||
_c.mutation.SetTargetType(v)
|
||||
return _c
|
||||
}
|
||||
|
||||
// SetTargetID sets the "target_id" field.
|
||||
func (_c *FavoritesCreate) SetTargetID(v int64) *FavoritesCreate {
|
||||
_c.mutation.SetTargetID(v)
|
||||
return _c
|
||||
}
|
||||
|
||||
// SetCreatedAt sets the "created_at" field.
|
||||
func (_c *FavoritesCreate) SetCreatedAt(v time.Time) *FavoritesCreate {
|
||||
_c.mutation.SetCreatedAt(v)
|
||||
return _c
|
||||
}
|
||||
|
||||
// SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
|
||||
func (_c *FavoritesCreate) SetNillableCreatedAt(v *time.Time) *FavoritesCreate {
|
||||
if v != nil {
|
||||
_c.SetCreatedAt(*v)
|
||||
}
|
||||
return _c
|
||||
}
|
||||
|
||||
// SetID sets the "id" field.
|
||||
func (_c *FavoritesCreate) SetID(v int64) *FavoritesCreate {
|
||||
_c.mutation.SetID(v)
|
||||
return _c
|
||||
}
|
||||
|
||||
// Mutation returns the FavoritesMutation object of the builder.
|
||||
func (_c *FavoritesCreate) Mutation() *FavoritesMutation {
|
||||
return _c.mutation
|
||||
}
|
||||
|
||||
// Save creates the Favorites in the database.
|
||||
func (_c *FavoritesCreate) Save(ctx context.Context) (*Favorites, error) {
|
||||
_c.defaults()
|
||||
return withHooks(ctx, _c.sqlSave, _c.mutation, _c.hooks)
|
||||
}
|
||||
|
||||
// SaveX calls Save and panics if Save returns an error.
|
||||
func (_c *FavoritesCreate) SaveX(ctx context.Context) *Favorites {
|
||||
v, err := _c.Save(ctx)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
return v
|
||||
}
|
||||
|
||||
// Exec executes the query.
|
||||
func (_c *FavoritesCreate) Exec(ctx context.Context) error {
|
||||
_, err := _c.Save(ctx)
|
||||
return err
|
||||
}
|
||||
|
||||
// ExecX is like Exec, but panics if an error occurs.
|
||||
func (_c *FavoritesCreate) ExecX(ctx context.Context) {
|
||||
if err := _c.Exec(ctx); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
|
||||
// defaults sets the default values of the builder before save.
|
||||
func (_c *FavoritesCreate) defaults() {
|
||||
if _, ok := _c.mutation.CreatedAt(); !ok {
|
||||
v := favorites.DefaultCreatedAt()
|
||||
_c.mutation.SetCreatedAt(v)
|
||||
}
|
||||
}
|
||||
|
||||
// check runs all checks and user-defined validators on the builder.
|
||||
func (_c *FavoritesCreate) check() error {
|
||||
if _, ok := _c.mutation.UserID(); !ok {
|
||||
return &ValidationError{Name: "user_id", err: errors.New(`models: missing required field "Favorites.user_id"`)}
|
||||
}
|
||||
if _, ok := _c.mutation.TargetType(); !ok {
|
||||
return &ValidationError{Name: "target_type", err: errors.New(`models: missing required field "Favorites.target_type"`)}
|
||||
}
|
||||
if v, ok := _c.mutation.TargetType(); ok {
|
||||
if err := favorites.TargetTypeValidator(v); err != nil {
|
||||
return &ValidationError{Name: "target_type", err: fmt.Errorf(`models: validator failed for field "Favorites.target_type": %w`, err)}
|
||||
}
|
||||
}
|
||||
if _, ok := _c.mutation.TargetID(); !ok {
|
||||
return &ValidationError{Name: "target_id", err: errors.New(`models: missing required field "Favorites.target_id"`)}
|
||||
}
|
||||
if _, ok := _c.mutation.CreatedAt(); !ok {
|
||||
return &ValidationError{Name: "created_at", err: errors.New(`models: missing required field "Favorites.created_at"`)}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (_c *FavoritesCreate) sqlSave(ctx context.Context) (*Favorites, error) {
|
||||
if err := _c.check(); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
_node, _spec := _c.createSpec()
|
||||
if err := sqlgraph.CreateNode(ctx, _c.driver, _spec); err != nil {
|
||||
if sqlgraph.IsConstraintError(err) {
|
||||
err = &ConstraintError{msg: err.Error(), wrap: err}
|
||||
}
|
||||
return nil, err
|
||||
}
|
||||
if _spec.ID.Value != _node.ID {
|
||||
id := _spec.ID.Value.(int64)
|
||||
_node.ID = int64(id)
|
||||
}
|
||||
_c.mutation.id = &_node.ID
|
||||
_c.mutation.done = true
|
||||
return _node, nil
|
||||
}
|
||||
|
||||
func (_c *FavoritesCreate) createSpec() (*Favorites, *sqlgraph.CreateSpec) {
|
||||
var (
|
||||
_node = &Favorites{config: _c.config}
|
||||
_spec = sqlgraph.NewCreateSpec(favorites.Table, sqlgraph.NewFieldSpec(favorites.FieldID, field.TypeInt64))
|
||||
)
|
||||
if id, ok := _c.mutation.ID(); ok {
|
||||
_node.ID = id
|
||||
_spec.ID.Value = id
|
||||
}
|
||||
if value, ok := _c.mutation.UserID(); ok {
|
||||
_spec.SetField(favorites.FieldUserID, field.TypeInt64, value)
|
||||
_node.UserID = value
|
||||
}
|
||||
if value, ok := _c.mutation.TargetType(); ok {
|
||||
_spec.SetField(favorites.FieldTargetType, field.TypeString, value)
|
||||
_node.TargetType = value
|
||||
}
|
||||
if value, ok := _c.mutation.TargetID(); ok {
|
||||
_spec.SetField(favorites.FieldTargetID, field.TypeInt64, value)
|
||||
_node.TargetID = value
|
||||
}
|
||||
if value, ok := _c.mutation.CreatedAt(); ok {
|
||||
_spec.SetField(favorites.FieldCreatedAt, field.TypeTime, value)
|
||||
_node.CreatedAt = value
|
||||
}
|
||||
return _node, _spec
|
||||
}
|
||||
|
||||
// FavoritesCreateBulk is the builder for creating many Favorites entities in bulk.
|
||||
type FavoritesCreateBulk struct {
|
||||
config
|
||||
err error
|
||||
builders []*FavoritesCreate
|
||||
}
|
||||
|
||||
// Save creates the Favorites entities in the database.
|
||||
func (_c *FavoritesCreateBulk) Save(ctx context.Context) ([]*Favorites, error) {
|
||||
if _c.err != nil {
|
||||
return nil, _c.err
|
||||
}
|
||||
specs := make([]*sqlgraph.CreateSpec, len(_c.builders))
|
||||
nodes := make([]*Favorites, len(_c.builders))
|
||||
mutators := make([]Mutator, len(_c.builders))
|
||||
for i := range _c.builders {
|
||||
func(i int, root context.Context) {
|
||||
builder := _c.builders[i]
|
||||
builder.defaults()
|
||||
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
||||
mutation, ok := m.(*FavoritesMutation)
|
||||
if !ok {
|
||||
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
||||
}
|
||||
if err := builder.check(); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
builder.mutation = mutation
|
||||
var err error
|
||||
nodes[i], specs[i] = builder.createSpec()
|
||||
if i < len(mutators)-1 {
|
||||
_, err = mutators[i+1].Mutate(root, _c.builders[i+1].mutation)
|
||||
} else {
|
||||
spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
|
||||
// Invoke the actual operation on the latest mutation in the chain.
|
||||
if err = sqlgraph.BatchCreate(ctx, _c.driver, spec); err != nil {
|
||||
if sqlgraph.IsConstraintError(err) {
|
||||
err = &ConstraintError{msg: err.Error(), wrap: err}
|
||||
}
|
||||
}
|
||||
}
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
mutation.id = &nodes[i].ID
|
||||
if specs[i].ID.Value != nil && nodes[i].ID == 0 {
|
||||
id := specs[i].ID.Value.(int64)
|
||||
nodes[i].ID = int64(id)
|
||||
}
|
||||
mutation.done = true
|
||||
return nodes[i], nil
|
||||
})
|
||||
for i := len(builder.hooks) - 1; i >= 0; i-- {
|
||||
mut = builder.hooks[i](mut)
|
||||
}
|
||||
mutators[i] = mut
|
||||
}(i, ctx)
|
||||
}
|
||||
if len(mutators) > 0 {
|
||||
if _, err := mutators[0].Mutate(ctx, _c.builders[0].mutation); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
return nodes, nil
|
||||
}
|
||||
|
||||
// SaveX is like Save, but panics if an error occurs.
|
||||
func (_c *FavoritesCreateBulk) SaveX(ctx context.Context) []*Favorites {
|
||||
v, err := _c.Save(ctx)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
return v
|
||||
}
|
||||
|
||||
// Exec executes the query.
|
||||
func (_c *FavoritesCreateBulk) Exec(ctx context.Context) error {
|
||||
_, err := _c.Save(ctx)
|
||||
return err
|
||||
}
|
||||
|
||||
// ExecX is like Exec, but panics if an error occurs.
|
||||
func (_c *FavoritesCreateBulk) ExecX(ctx context.Context) {
|
||||
if err := _c.Exec(ctx); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user