feat: implement get session by user

This commit is contained in:
2026-01-02 23:00:13 +07:00
parent f7a1044343
commit d864027c31
8 changed files with 277 additions and 198 deletions

View File

@@ -0,0 +1,4 @@
DROP TABLE IF EXISTS public.verification;
DROP TABLE IF EXISTS public.session;
DROP TABLE IF EXISTS public.account;
DROP TABLE IF EXISTS public."user";

View File

@@ -0,0 +1,52 @@
CREATE EXTENSION IF NOT EXISTS pgcrypto;
CREATE TABLE IF NOT EXISTS public."user" (
id text NOT NULL,
identifier text UNIQUE NOT NULL DEFAULT substr(encode(gen_random_bytes(16), 'hex'), 1, 32),
name text NOT NULL,
email text NOT NULL,
email_verified boolean DEFAULT false NOT NULL,
image text,
created_at timestamp without time zone DEFAULT now() NOT NULL,
updated_at timestamp without time zone DEFAULT now() NOT NULL,
CONSTRAINT user_pkey PRIMARY KEY (id)
);
CREATE TABLE IF NOT EXISTS public.account (
id text NOT NULL,
account_id text NOT NULL,
provider_id text NOT NULL,
user_id text NOT NULL,
access_token text,
refresh_token text,
id_token text,
access_token_expires_at timestamp without time zone,
refresh_token_expires_at timestamp without time zone,
scope text,
password text,
created_at timestamp without time zone DEFAULT now() NOT NULL,
updated_at timestamp without time zone NOT NULL,
CONSTRAINT account_pkey PRIMARY KEY (id)
);
CREATE TABLE IF NOT EXISTS public.session (
id text NOT NULL,
expires_at timestamp without time zone NOT NULL,
token text NOT NULL,
created_at timestamp without time zone DEFAULT now() NOT NULL,
updated_at timestamp without time zone NOT NULL,
ip_address text,
user_agent text,
user_id text NOT NULL,
CONSTRAINT session_pkey PRIMARY KEY (id)
);
CREATE TABLE IF NOT EXISTS public.verification (
id text NOT NULL,
identifier text NOT NULL,
value text NOT NULL,
expires_at timestamp without time zone NOT NULL,
created_at timestamp without time zone DEFAULT now() NOT NULL,
updated_at timestamp without time zone DEFAULT now() NOT NULL,
CONSTRAINT verification_pkey PRIMARY KEY (id)
);

View File

@@ -1,5 +0,0 @@
DROP INDEX IF EXISTS idx_identifiers_created_at;
DROP INDEX IF EXISTS idx_identifiers_slug;
DROP TABLE IF EXISTS identifiers;

View File

@@ -1,12 +0,0 @@
CREATE TABLE identifiers (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
slug VARCHAR(255) UNIQUE NOT NULL,
created_at TIMESTAMP NOT NULL DEFAULT NOW(),
updated_at TIMESTAMP NOT NULL DEFAULT NOW()
);
CREATE INDEX idx_identifiers_created_at
ON identifiers(created_at);
CREATE INDEX idx_identifiers_slug
ON identifiers(slug);

View File

@@ -1,34 +1,6 @@
-- name: CreateIdentifier :one
INSERT INTO identifiers (slug)
VALUES ($1)
RETURNING id, slug, created_at, updated_at;
-- name: GetIdentifierById :one
SELECT id, slug, created_at, updated_at
FROM identifiers
WHERE id = $1;
-- name: GetIdentifierBySlug :one
SELECT id, slug, created_at, updated_at
FROM identifiers
WHERE slug = $1;
-- name: ListIdentifiers :many
SELECT id, slug, created_at, updated_at
FROM identifiers
ORDER BY created_at DESC
LIMIT $1 OFFSET $2;
-- name: DeleteIdentifier :exec
DELETE FROM identifiers
WHERE id = $1;
-- name: UpdateIdentifierSlug :one
UPDATE identifiers
SET slug = $2, updated_at = NOW()
WHERE id = $1
RETURNING id, slug, created_at, updated_at;
-- name: CountIdentifiers :one
SELECT COUNT(*) FROM identifiers;
-- name: UserExistsByIdentifier :one
SELECT EXISTS (
SELECT 1
FROM public."user"
WHERE identifier = $1
) AS exists;

View File

@@ -5,13 +5,52 @@
package repository
import (
"github.com/google/uuid"
"github.com/jackc/pgx/v5/pgtype"
)
type Identifier struct {
ID uuid.UUID
Slug string
type Account struct {
ID string
AccountID string
ProviderID string
UserID string
AccessToken pgtype.Text
RefreshToken pgtype.Text
IDToken pgtype.Text
AccessTokenExpiresAt pgtype.Timestamp
RefreshTokenExpiresAt pgtype.Timestamp
Scope pgtype.Text
Password pgtype.Text
CreatedAt pgtype.Timestamp
UpdatedAt pgtype.Timestamp
}
type Session struct {
ID string
ExpiresAt pgtype.Timestamp
Token string
CreatedAt pgtype.Timestamp
UpdatedAt pgtype.Timestamp
IpAddress pgtype.Text
UserAgent pgtype.Text
UserID string
}
type User struct {
ID string
Identifier string
Name string
Email string
EmailVerified bool
Image pgtype.Text
CreatedAt pgtype.Timestamp
UpdatedAt pgtype.Timestamp
}
type Verification struct {
ID string
Identifier string
Value string
ExpiresAt pgtype.Timestamp
CreatedAt pgtype.Timestamp
UpdatedAt pgtype.Timestamp
}

View File

@@ -7,142 +7,19 @@ package repository
import (
"context"
"github.com/google/uuid"
)
const countIdentifiers = `-- name: CountIdentifiers :one
SELECT COUNT(*) FROM identifiers
const userExistsByIdentifier = `-- name: UserExistsByIdentifier :one
SELECT EXISTS (
SELECT 1
FROM public."user"
WHERE identifier = $1
) AS exists
`
func (q *Queries) CountIdentifiers(ctx context.Context) (int64, error) {
row := q.db.QueryRow(ctx, countIdentifiers)
var count int64
err := row.Scan(&count)
return count, err
}
const createIdentifier = `-- name: CreateIdentifier :one
INSERT INTO identifiers (slug)
VALUES ($1)
RETURNING id, slug, created_at, updated_at
`
func (q *Queries) CreateIdentifier(ctx context.Context, slug string) (Identifier, error) {
row := q.db.QueryRow(ctx, createIdentifier, slug)
var i Identifier
err := row.Scan(
&i.ID,
&i.Slug,
&i.CreatedAt,
&i.UpdatedAt,
)
return i, err
}
const deleteIdentifier = `-- name: DeleteIdentifier :exec
DELETE FROM identifiers
WHERE id = $1
`
func (q *Queries) DeleteIdentifier(ctx context.Context, id uuid.UUID) error {
_, err := q.db.Exec(ctx, deleteIdentifier, id)
return err
}
const getIdentifierById = `-- name: GetIdentifierById :one
SELECT id, slug, created_at, updated_at
FROM identifiers
WHERE id = $1
`
func (q *Queries) GetIdentifierById(ctx context.Context, id uuid.UUID) (Identifier, error) {
row := q.db.QueryRow(ctx, getIdentifierById, id)
var i Identifier
err := row.Scan(
&i.ID,
&i.Slug,
&i.CreatedAt,
&i.UpdatedAt,
)
return i, err
}
const getIdentifierBySlug = `-- name: GetIdentifierBySlug :one
SELECT id, slug, created_at, updated_at
FROM identifiers
WHERE slug = $1
`
func (q *Queries) GetIdentifierBySlug(ctx context.Context, slug string) (Identifier, error) {
row := q.db.QueryRow(ctx, getIdentifierBySlug, slug)
var i Identifier
err := row.Scan(
&i.ID,
&i.Slug,
&i.CreatedAt,
&i.UpdatedAt,
)
return i, err
}
const listIdentifiers = `-- name: ListIdentifiers :many
SELECT id, slug, created_at, updated_at
FROM identifiers
ORDER BY created_at DESC
LIMIT $1 OFFSET $2
`
type ListIdentifiersParams struct {
Limit int32
Offset int32
}
func (q *Queries) ListIdentifiers(ctx context.Context, arg ListIdentifiersParams) ([]Identifier, error) {
rows, err := q.db.Query(ctx, listIdentifiers, arg.Limit, arg.Offset)
if err != nil {
return nil, err
}
defer rows.Close()
var items []Identifier
for rows.Next() {
var i Identifier
if err := rows.Scan(
&i.ID,
&i.Slug,
&i.CreatedAt,
&i.UpdatedAt,
); err != nil {
return nil, err
}
items = append(items, i)
}
if err := rows.Err(); err != nil {
return nil, err
}
return items, nil
}
const updateIdentifierSlug = `-- name: UpdateIdentifierSlug :one
UPDATE identifiers
SET slug = $2, updated_at = NOW()
WHERE id = $1
RETURNING id, slug, created_at, updated_at
`
type UpdateIdentifierSlugParams struct {
ID uuid.UUID
Slug string
}
func (q *Queries) UpdateIdentifierSlug(ctx context.Context, arg UpdateIdentifierSlugParams) (Identifier, error) {
row := q.db.QueryRow(ctx, updateIdentifierSlug, arg.ID, arg.Slug)
var i Identifier
err := row.Scan(
&i.ID,
&i.Slug,
&i.CreatedAt,
&i.UpdatedAt,
)
return i, err
func (q *Queries) UserExistsByIdentifier(ctx context.Context, identifier string) (bool, error) {
row := q.db.QueryRow(ctx, userExistsByIdentifier, identifier)
var exists bool
err := row.Scan(&exists)
return exists, err
}