mirror of
https://github.com/Kyren223/eko.git
synced 2025-12-28 08:54:45 +00:00
98 lines
2.2 KiB
Go
98 lines
2.2 KiB
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.27.0
|
|
// source: users.sql
|
|
|
|
package data
|
|
|
|
import (
|
|
"context"
|
|
|
|
"crypto/ed25519"
|
|
"github.com/kyren223/eko/pkg/snowflake"
|
|
)
|
|
|
|
const createUser = `-- name: CreateUser :one
|
|
INSERT INTO users (
|
|
id, name, public_key
|
|
) VALUES (
|
|
?, ?, ?
|
|
)
|
|
RETURNING id, name, public_key
|
|
`
|
|
|
|
type CreateUserParams struct {
|
|
ID snowflake.ID
|
|
Name string
|
|
PublicKey ed25519.PublicKey
|
|
}
|
|
|
|
func (q *Queries) CreateUser(ctx context.Context, arg CreateUserParams) (User, error) {
|
|
row := q.db.QueryRowContext(ctx, createUser, arg.ID, arg.Name, arg.PublicKey)
|
|
var i User
|
|
err := row.Scan(&i.ID, &i.Name, &i.PublicKey)
|
|
return i, err
|
|
}
|
|
|
|
const getUserById = `-- name: GetUserById :one
|
|
SELECT id, name, public_key FROM users
|
|
WHERE id = ?
|
|
`
|
|
|
|
func (q *Queries) GetUserById(ctx context.Context, id snowflake.ID) (User, error) {
|
|
row := q.db.QueryRowContext(ctx, getUserById, id)
|
|
var i User
|
|
err := row.Scan(&i.ID, &i.Name, &i.PublicKey)
|
|
return i, err
|
|
}
|
|
|
|
const getUserByPublicKey = `-- name: GetUserByPublicKey :one
|
|
SELECT id, name, public_key FROM users
|
|
WHERE public_key = ?
|
|
`
|
|
|
|
func (q *Queries) GetUserByPublicKey(ctx context.Context, publicKey ed25519.PublicKey) (User, error) {
|
|
row := q.db.QueryRowContext(ctx, getUserByPublicKey, publicKey)
|
|
var i User
|
|
err := row.Scan(&i.ID, &i.Name, &i.PublicKey)
|
|
return i, err
|
|
}
|
|
|
|
const setUserName = `-- name: SetUserName :one
|
|
UPDATE users SET
|
|
name = ?
|
|
WHERE id = ?
|
|
RETURNING id, name, public_key
|
|
`
|
|
|
|
type SetUserNameParams struct {
|
|
Name string
|
|
ID snowflake.ID
|
|
}
|
|
|
|
func (q *Queries) SetUserName(ctx context.Context, arg SetUserNameParams) (User, error) {
|
|
row := q.db.QueryRowContext(ctx, setUserName, arg.Name, arg.ID)
|
|
var i User
|
|
err := row.Scan(&i.ID, &i.Name, &i.PublicKey)
|
|
return i, err
|
|
}
|
|
|
|
const setUserPublicKey = `-- name: SetUserPublicKey :one
|
|
UPDATE users SET
|
|
public_key = ?
|
|
WHERE id = ?
|
|
RETURNING id, name, public_key
|
|
`
|
|
|
|
type SetUserPublicKeyParams struct {
|
|
PublicKey ed25519.PublicKey
|
|
ID snowflake.ID
|
|
}
|
|
|
|
func (q *Queries) SetUserPublicKey(ctx context.Context, arg SetUserPublicKeyParams) (User, error) {
|
|
row := q.db.QueryRowContext(ctx, setUserPublicKey, arg.PublicKey, arg.ID)
|
|
var i User
|
|
err := row.Scan(&i.ID, &i.Name, &i.PublicKey)
|
|
return i, err
|
|
}
|