mirror of
https://github.com/1f349/lavender.git
synced 2024-11-09 22:32:48 +00:00
91 lines
2.0 KiB
Go
91 lines
2.0 KiB
Go
|
// Code generated by sqlc. DO NOT EDIT.
|
||
|
// versions:
|
||
|
// sqlc v1.25.0
|
||
|
// source: manage-users.sql
|
||
|
|
||
|
package database
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
const getUserList = `-- name: GetUserList :many
|
||
|
SELECT subject,
|
||
|
email,
|
||
|
email_verified,
|
||
|
roles,
|
||
|
updated_at,
|
||
|
active
|
||
|
FROM users
|
||
|
LIMIT 25 OFFSET ?
|
||
|
`
|
||
|
|
||
|
type GetUserListRow struct {
|
||
|
Subject string `json:"subject"`
|
||
|
Email string `json:"email"`
|
||
|
EmailVerified bool `json:"email_verified"`
|
||
|
Roles string `json:"roles"`
|
||
|
UpdatedAt time.Time `json:"updated_at"`
|
||
|
Active bool `json:"active"`
|
||
|
}
|
||
|
|
||
|
func (q *Queries) GetUserList(ctx context.Context, offset int64) ([]GetUserListRow, error) {
|
||
|
rows, err := q.db.QueryContext(ctx, getUserList, offset)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
defer rows.Close()
|
||
|
var items []GetUserListRow
|
||
|
for rows.Next() {
|
||
|
var i GetUserListRow
|
||
|
if err := rows.Scan(
|
||
|
&i.Subject,
|
||
|
&i.Email,
|
||
|
&i.EmailVerified,
|
||
|
&i.Roles,
|
||
|
&i.UpdatedAt,
|
||
|
&i.Active,
|
||
|
); 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 updateUser = `-- name: UpdateUser :exec
|
||
|
UPDATE users
|
||
|
SET active = ?,
|
||
|
roles=?
|
||
|
WHERE subject = ?
|
||
|
`
|
||
|
|
||
|
type UpdateUserParams struct {
|
||
|
Active bool `json:"active"`
|
||
|
Roles string `json:"roles"`
|
||
|
Subject string `json:"subject"`
|
||
|
}
|
||
|
|
||
|
func (q *Queries) UpdateUser(ctx context.Context, arg UpdateUserParams) error {
|
||
|
_, err := q.db.ExecContext(ctx, updateUser, arg.Active, arg.Roles, arg.Subject)
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
const userEmailExists = `-- name: UserEmailExists :one
|
||
|
SELECT EXISTS(SELECT 1 FROM users WHERE email = ? AND email_verified = 1) == 1 AS email_exists
|
||
|
`
|
||
|
|
||
|
func (q *Queries) UserEmailExists(ctx context.Context, email string) (bool, error) {
|
||
|
row := q.db.QueryRowContext(ctx, userEmailExists, email)
|
||
|
var email_exists bool
|
||
|
err := row.Scan(&email_exists)
|
||
|
return email_exists, err
|
||
|
}
|