2020-04-10 04:40:22 +02:00
|
|
|
// Code generated by sqlc. DO NOT EDIT.
|
|
|
|
// source: team.sql
|
|
|
|
|
2020-07-05 01:02:57 +02:00
|
|
|
package db
|
2020-04-10 04:40:22 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/google/uuid"
|
|
|
|
)
|
|
|
|
|
|
|
|
const createTeam = `-- name: CreateTeam :one
|
2020-07-05 01:02:57 +02:00
|
|
|
INSERT INTO team (organization_id, created_at, name, owner) VALUES ($1, $2, $3, $4) RETURNING team_id, created_at, name, organization_id, owner
|
2020-04-10 04:40:22 +02:00
|
|
|
`
|
|
|
|
|
|
|
|
type CreateTeamParams struct {
|
|
|
|
OrganizationID uuid.UUID `json:"organization_id"`
|
|
|
|
CreatedAt time.Time `json:"created_at"`
|
|
|
|
Name string `json:"name"`
|
2020-07-05 01:02:57 +02:00
|
|
|
Owner uuid.UUID `json:"owner"`
|
2020-04-10 04:40:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (q *Queries) CreateTeam(ctx context.Context, arg CreateTeamParams) (Team, error) {
|
2020-07-05 01:02:57 +02:00
|
|
|
row := q.db.QueryRowContext(ctx, createTeam,
|
|
|
|
arg.OrganizationID,
|
|
|
|
arg.CreatedAt,
|
|
|
|
arg.Name,
|
|
|
|
arg.Owner,
|
|
|
|
)
|
2020-04-10 04:40:22 +02:00
|
|
|
var i Team
|
|
|
|
err := row.Scan(
|
|
|
|
&i.TeamID,
|
|
|
|
&i.CreatedAt,
|
|
|
|
&i.Name,
|
|
|
|
&i.OrganizationID,
|
2020-07-05 01:02:57 +02:00
|
|
|
&i.Owner,
|
2020-04-10 04:40:22 +02:00
|
|
|
)
|
|
|
|
return i, err
|
|
|
|
}
|
|
|
|
|
|
|
|
const deleteTeamByID = `-- name: DeleteTeamByID :exec
|
|
|
|
DELETE FROM team WHERE team_id = $1
|
|
|
|
`
|
|
|
|
|
|
|
|
func (q *Queries) DeleteTeamByID(ctx context.Context, teamID uuid.UUID) error {
|
|
|
|
_, err := q.db.ExecContext(ctx, deleteTeamByID, teamID)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
const getAllTeams = `-- name: GetAllTeams :many
|
2020-07-05 01:02:57 +02:00
|
|
|
SELECT team_id, created_at, name, organization_id, owner FROM team
|
2020-04-10 04:40:22 +02:00
|
|
|
`
|
|
|
|
|
|
|
|
func (q *Queries) GetAllTeams(ctx context.Context) ([]Team, error) {
|
|
|
|
rows, err := q.db.QueryContext(ctx, getAllTeams)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
var items []Team
|
|
|
|
for rows.Next() {
|
|
|
|
var i Team
|
|
|
|
if err := rows.Scan(
|
|
|
|
&i.TeamID,
|
|
|
|
&i.CreatedAt,
|
|
|
|
&i.Name,
|
|
|
|
&i.OrganizationID,
|
2020-07-05 01:02:57 +02:00
|
|
|
&i.Owner,
|
2020-04-10 04:40:22 +02:00
|
|
|
); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
items = append(items, i)
|
|
|
|
}
|
|
|
|
if err := rows.Close(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if err := rows.Err(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return items, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
const getTeamByID = `-- name: GetTeamByID :one
|
2020-07-05 01:02:57 +02:00
|
|
|
SELECT team_id, created_at, name, organization_id, owner FROM team WHERE team_id = $1
|
2020-04-10 04:40:22 +02:00
|
|
|
`
|
|
|
|
|
|
|
|
func (q *Queries) GetTeamByID(ctx context.Context, teamID uuid.UUID) (Team, error) {
|
|
|
|
row := q.db.QueryRowContext(ctx, getTeamByID, teamID)
|
|
|
|
var i Team
|
|
|
|
err := row.Scan(
|
|
|
|
&i.TeamID,
|
|
|
|
&i.CreatedAt,
|
|
|
|
&i.Name,
|
|
|
|
&i.OrganizationID,
|
2020-07-05 01:02:57 +02:00
|
|
|
&i.Owner,
|
2020-04-10 04:40:22 +02:00
|
|
|
)
|
|
|
|
return i, err
|
|
|
|
}
|
|
|
|
|
|
|
|
const getTeamsForOrganization = `-- name: GetTeamsForOrganization :many
|
2020-07-05 01:02:57 +02:00
|
|
|
SELECT team_id, created_at, name, organization_id, owner FROM team WHERE organization_id = $1
|
2020-04-10 04:40:22 +02:00
|
|
|
`
|
|
|
|
|
|
|
|
func (q *Queries) GetTeamsForOrganization(ctx context.Context, organizationID uuid.UUID) ([]Team, error) {
|
|
|
|
rows, err := q.db.QueryContext(ctx, getTeamsForOrganization, organizationID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
var items []Team
|
|
|
|
for rows.Next() {
|
|
|
|
var i Team
|
|
|
|
if err := rows.Scan(
|
|
|
|
&i.TeamID,
|
|
|
|
&i.CreatedAt,
|
|
|
|
&i.Name,
|
|
|
|
&i.OrganizationID,
|
2020-07-05 01:02:57 +02:00
|
|
|
&i.Owner,
|
2020-04-10 04:40:22 +02:00
|
|
|
); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
items = append(items, i)
|
|
|
|
}
|
|
|
|
if err := rows.Close(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if err := rows.Err(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return items, nil
|
|
|
|
}
|
2020-07-05 01:02:57 +02:00
|
|
|
|
|
|
|
const setTeamOwner = `-- name: SetTeamOwner :one
|
|
|
|
UPDATE team SET owner = $2 WHERE team_id = $1 RETURNING team_id, created_at, name, organization_id, owner
|
|
|
|
`
|
|
|
|
|
|
|
|
type SetTeamOwnerParams struct {
|
|
|
|
TeamID uuid.UUID `json:"team_id"`
|
|
|
|
Owner uuid.UUID `json:"owner"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (q *Queries) SetTeamOwner(ctx context.Context, arg SetTeamOwnerParams) (Team, error) {
|
|
|
|
row := q.db.QueryRowContext(ctx, setTeamOwner, arg.TeamID, arg.Owner)
|
|
|
|
var i Team
|
|
|
|
err := row.Scan(
|
|
|
|
&i.TeamID,
|
|
|
|
&i.CreatedAt,
|
|
|
|
&i.Name,
|
|
|
|
&i.OrganizationID,
|
|
|
|
&i.Owner,
|
|
|
|
)
|
|
|
|
return i, err
|
|
|
|
}
|