mirror of
https://github.com/ent/ent.git
synced 2026-04-28 05:30:56 +03:00
Reviewed By: alexsn Differential Revision: D16692962 fbshipit-source-id: 2502b74bf57ae63577fd3232303fc5f51de6d0fb
146 lines
4.2 KiB
Cheetah
146 lines
4.2 KiB
Cheetah
{{ define "client" }}
|
|
|
|
{{ $pkg := base $.Config.Package }}
|
|
{{ template "header" $ }}
|
|
|
|
import (
|
|
"log"
|
|
|
|
"{{ $.Config.Package }}/migrate"
|
|
{{ range $_, $n := $.Nodes }}
|
|
"{{ $n.Config.Package }}/{{ $n.Package }}"
|
|
{{- end }}
|
|
|
|
"fbc/ent/dialect"
|
|
{{ range $_, $storage := $.Storage -}}
|
|
{{ range $_, $import := $storage.Imports -}}
|
|
"{{ $import }}"
|
|
{{ end -}}
|
|
{{ end -}}
|
|
)
|
|
|
|
// Client is the client that holds all ent builders.
|
|
type Client struct {
|
|
config
|
|
// Schema is the client for creating, migrating and dropping schema.
|
|
Schema *migrate.Schema
|
|
{{ range $_, $n := $.Nodes -}}
|
|
// {{ $n.Name }} is the client for interacting with the {{ $n.Name }} builders.
|
|
{{ $n.Name }} *{{ $n.Name }}Client
|
|
{{ end }}
|
|
}
|
|
|
|
// NewClient creates a new client configured with the given options.
|
|
func NewClient(opts ...Option) *Client {
|
|
c := config{log: log.Println}
|
|
c.options(opts...)
|
|
return &Client{
|
|
config: c,
|
|
Schema: migrate.NewSchema(c.driver),
|
|
{{ range $_, $n := $.Nodes -}}
|
|
{{ $n.Name }}: New{{ $n.Name }}Client(c),
|
|
{{ end -}}
|
|
}
|
|
}
|
|
|
|
// Tx returns a new transactional client.
|
|
func (c *Client) Tx(ctx context.Context) (*Tx, error) {
|
|
if _, ok := c.driver.(*txDriver); ok {
|
|
return nil, fmt.Errorf("{{ $pkg }}: cannot start a transaction within a transaction")
|
|
}
|
|
tx, err := newTx(ctx, c.driver)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("{{ $pkg }}: starting a transaction: %v", err)
|
|
}
|
|
cfg := config{driver: tx, log: c.log, verbose: c.verbose}
|
|
return &Tx{
|
|
config: cfg,
|
|
{{ range $_, $n := $.Nodes -}}
|
|
{{ $n.Name }}: New{{ $n.Name }}Client(cfg),
|
|
{{ end -}}
|
|
}, nil
|
|
}
|
|
|
|
{{ range $_, $n := $.Nodes -}}
|
|
{{ $client := print $n.Name "Client" }}
|
|
// {{ $client }} is a client for the {{ $n.Name }} schema.
|
|
type {{ $client }} struct {
|
|
config
|
|
}
|
|
|
|
{{ $rec := $n.Receiver }}{{ if eq $rec "c" }}{{ $rec = printf "%.2s" $n.Name | lower }}{{ end }}
|
|
|
|
// New{{ $client }} returns a client for the {{ $n.Name }} from the given config.
|
|
func New{{ $client }}(c config) *{{ $client }} {
|
|
return &{{ $client }}{config: c}
|
|
}
|
|
|
|
// Create returns a create builder for {{ $n.Name }}.
|
|
func (c *{{ $client }}) Create() *{{ $n.Name }}Create {
|
|
return &{{ $n.Name }}Create{config: c.config}
|
|
}
|
|
|
|
// Update returns an update builder for {{ $n.Name }}.
|
|
func (c *{{ $client }}) Update() *{{ $n.Name }}Update {
|
|
return &{{ $n.Name }}Update{config: c.config}
|
|
}
|
|
|
|
// UpdateOne returns an update builder for the given entity.
|
|
func (c *{{ $client }}) UpdateOne({{ $rec }} *{{ $n.Name }}) *{{ $n.Name }}UpdateOne {
|
|
return c.UpdateOneID({{ $rec }}.ID)
|
|
}
|
|
|
|
// UpdateOneID returns an update builder for the given id.
|
|
func (c *{{ $client }}) UpdateOneID(id {{ $n.ID.Type }}) *{{ $n.Name }}UpdateOne {
|
|
return &{{ $n.Name }}UpdateOne{config: c.config, id: id}
|
|
}
|
|
|
|
// Delete returns a delete builder for {{ $n.Name }}.
|
|
func (c *{{ $client }}) Delete() *{{ $n.Name }}Delete {
|
|
return &{{ $n.Name }}Delete{config: c.config}
|
|
}
|
|
|
|
// DeleteOne returns a delete builder for the given entity.
|
|
func (c *{{ $client }}) DeleteOne({{ $rec }} *{{ $n.Name }}) *{{ $n.Name }}DeleteOne {
|
|
return c.DeleteOneID({{ $rec }}.ID)
|
|
}
|
|
|
|
// DeleteOneID returns a delete builder for the given id.
|
|
func (c *{{ $client }}) DeleteOneID(id {{ $n.ID.Type }}) *{{ $n.Name }}DeleteOne {
|
|
return &{{ $n.Name }}DeleteOne{c.Delete().Where({{ $n.Package }}.ID(id))}
|
|
}
|
|
|
|
// Create returns a query builder for {{ $n.Name }}.
|
|
func (c *{{ $client }}) Query() *{{ $n.Name }}Query {
|
|
return &{{ $n.Name }}Query{config: c.config}
|
|
}
|
|
|
|
{{ range $_, $e := $n.Edges }}
|
|
{{ $builder := print (pascal $e.Type.Name) "Query" }}
|
|
// Query{{ pascal $e.Name }} queries the {{ $e.Name }} edge of a {{ $n.Name }}.
|
|
func (c *{{ $client }}) Query{{ pascal $e.Name }}({{ $rec }} *{{ $n.Name }}) *{{ $builder }} {
|
|
query := &{{ $e.Type.Name }}Query{config: c.config}
|
|
{{ if gt (len $.Storage) 1 -}}
|
|
switch c.driver.Dialect() {
|
|
{{- range $_, $storage := $.Storage }}
|
|
case {{ join $storage.Dialects ", " }}:
|
|
{{- with extend $n "Receiver" $rec "Edge" $e -}}
|
|
{{ $tmpl := printf "dialect/%s/query/from" $storage }}
|
|
{{- xtemplate $tmpl . -}}
|
|
{{ end -}}
|
|
{{- end }}
|
|
}
|
|
{{- else -}}
|
|
{{- with extend $n "Receiver" $rec "Edge" $e -}}
|
|
{{ $tmpl := printf "dialect/%s/query/from" (index $.Storage 0) }}
|
|
{{- xtemplate $tmpl . -}}
|
|
{{ end -}}
|
|
{{- end }}
|
|
return query
|
|
}
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
{{ end }}
|
|
|