132 lines
2.8 KiB
Go
132 lines
2.8 KiB
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.21.0
|
|
// source: session.sql
|
|
|
|
package db
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
const blockSession = `-- name: BlockSession :exec
|
|
UPDATE sessions
|
|
SET
|
|
"is_blocked" = true
|
|
WHERE "id" = $1
|
|
`
|
|
|
|
func (q *Queries) BlockSession(ctx context.Context, id uuid.UUID) error {
|
|
_, err := q.db.ExecContext(ctx, blockSession, id)
|
|
return err
|
|
}
|
|
|
|
const createSession = `-- name: CreateSession :one
|
|
INSERT INTO sessions (
|
|
id,
|
|
account_id,
|
|
refresh_token,
|
|
user_agent,
|
|
client_ip,
|
|
is_blocked,
|
|
expires_at
|
|
) VALUES (
|
|
$1, $2, $3, $4, $5, $6, $7
|
|
) RETURNING id, account_id, user_agent, client_ip, refresh_token, is_blocked, expires_at, created_at
|
|
`
|
|
|
|
type CreateSessionParams struct {
|
|
ID uuid.UUID `json:"id"`
|
|
AccountID uint64 `json:"account_id"`
|
|
RefreshToken string `json:"refresh_token"`
|
|
UserAgent string `json:"user_agent"`
|
|
ClientIp string `json:"client_ip"`
|
|
IsBlocked bool `json:"is_blocked"`
|
|
ExpiresAt time.Time `json:"expires_at"`
|
|
}
|
|
|
|
func (q *Queries) CreateSession(ctx context.Context, arg CreateSessionParams) (Session, error) {
|
|
row := q.db.QueryRowContext(ctx, createSession,
|
|
arg.ID,
|
|
arg.AccountID,
|
|
arg.RefreshToken,
|
|
arg.UserAgent,
|
|
arg.ClientIp,
|
|
arg.IsBlocked,
|
|
arg.ExpiresAt,
|
|
)
|
|
var i Session
|
|
err := row.Scan(
|
|
&i.ID,
|
|
&i.AccountID,
|
|
&i.UserAgent,
|
|
&i.ClientIp,
|
|
&i.RefreshToken,
|
|
&i.IsBlocked,
|
|
&i.ExpiresAt,
|
|
&i.CreatedAt,
|
|
)
|
|
return i, err
|
|
}
|
|
|
|
const getSession = `-- name: GetSession :one
|
|
SELECT id, account_id, user_agent, client_ip, refresh_token, is_blocked, expires_at, created_at FROM sessions
|
|
WHERE id = $1 LIMIT 1
|
|
`
|
|
|
|
func (q *Queries) GetSession(ctx context.Context, id uuid.UUID) (Session, error) {
|
|
row := q.db.QueryRowContext(ctx, getSession, id)
|
|
var i Session
|
|
err := row.Scan(
|
|
&i.ID,
|
|
&i.AccountID,
|
|
&i.UserAgent,
|
|
&i.ClientIp,
|
|
&i.RefreshToken,
|
|
&i.IsBlocked,
|
|
&i.ExpiresAt,
|
|
&i.CreatedAt,
|
|
)
|
|
return i, err
|
|
}
|
|
|
|
const listSessions = `-- name: ListSessions :many
|
|
SELECT id, account_id, user_agent, client_ip, refresh_token, is_blocked, expires_at, created_at FROM sessions
|
|
WHERE account_id = $1 AND is_blocked = false AND expires_at > now()
|
|
`
|
|
|
|
func (q *Queries) ListSessions(ctx context.Context, accountID uint64) ([]Session, error) {
|
|
rows, err := q.db.QueryContext(ctx, listSessions, accountID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer rows.Close()
|
|
items := []Session{}
|
|
for rows.Next() {
|
|
var i Session
|
|
if err := rows.Scan(
|
|
&i.ID,
|
|
&i.AccountID,
|
|
&i.UserAgent,
|
|
&i.ClientIp,
|
|
&i.RefreshToken,
|
|
&i.IsBlocked,
|
|
&i.ExpiresAt,
|
|
&i.CreatedAt,
|
|
); 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
|
|
}
|