137 lines
2.5 KiB
Go
137 lines
2.5 KiB
Go
// Code generated by sqlc. DO NOT EDIT.
|
|||
|
|
// versions:
|
||
|
|
// sqlc v1.31.1
|
||
|
|
// source: posts.sql
|
||
|
|
|
||
|
|
package database
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
"database/sql"
|
||
|
|
"time"
|
||
|
|
|
||
|
|
"github.com/google/uuid"
|
||
|
|
)
|
||
|
|
|
||
|
|
const createPost = `-- name: CreatePost :one
|
||
|
|
INSERT INTO posts (id, created_at, updated_at, title, url, description, published_at, feed_id)
|
||
|
|
VALUES (
|
||
|
|
$1,
|
||
|
|
$2,
|
||
|
|
$3,
|
||
|
|
$4,
|
||
|
|
$5,
|
||
|
|
$6,
|
||
|
|
$7,
|
||
|
|
$8
|
||
|
|
)
|
||
|
|
RETURNING id, created_at, updated_at, title, url, description, published_at, feed_id
|
||
|
|
`
|
||
|
|
|
||
|
|
type CreatePostParams struct {
|
||
|
|
ID uuid.UUID
|
||
|
|
CreatedAt time.Time
|
||
|
|
UpdatedAt time.Time
|
||
|
|
Title string
|
||
|
|
Url string
|
||
|
|
Description string
|
||
|
|
PublishedAt sql.NullTime
|
||
|
|
FeedID uuid.UUID
|
||
|
|
}
|
||
|
|
|
||
|
|
func (q *Queries) CreatePost(ctx context.Context, arg CreatePostParams) (Post, error) {
|
||
|
|
row := q.db.QueryRowContext(ctx, createPost,
|
||
|
|
arg.ID,
|
||
|
|
arg.CreatedAt,
|
||
|
|
arg.UpdatedAt,
|
||
|
|
arg.Title,
|
||
|
|
arg.Url,
|
||
|
|
arg.Description,
|
||
|
|
arg.PublishedAt,
|
||
|
|
arg.FeedID,
|
||
|
|
)
|
||
|
|
var i Post
|
||
|
|
err := row.Scan(
|
||
|
|
&i.ID,
|
||
|
|
&i.CreatedAt,
|
||
|
|
&i.UpdatedAt,
|
||
|
|
&i.Title,
|
||
|
|
&i.Url,
|
||
|
|
&i.Description,
|
||
|
|
&i.PublishedAt,
|
||
|
|
&i.FeedID,
|
||
|
|
)
|
||
|
|
return i, err
|
||
|
|
}
|
||
|
|
|
||
|
|
const getPostsForUser = `-- name: GetPostsForUser :many
|
||
|
|
SELECT
|
||
|
|
posts.id,
|
||
|
|
posts.created_at,
|
||
|
|
posts.updated_at,
|
||
|
|
posts.title,
|
||
|
|
posts.url,
|
||
|
|
posts.description,
|
||
|
|
posts.published_at,
|
||
|
|
posts.feed_id,
|
||
|
|
feeds.name as feed_name
|
||
|
|
FROM posts
|
||
|
|
INNER JOIN feeds
|
||
|
|
ON posts.feed_id = feeds.id
|
||
|
|
INNER JOIN follows
|
||
|
|
ON posts.feed_id = follows.feed_id
|
||
|
|
WHERE follows.user_id = $1
|
||
|
|
ORDER BY posts.published_at DESC, posts.title ASC
|
||
|
|
LIMIT $2
|
||
|
|
`
|
||
|
|
|
||
|
|
type GetPostsForUserParams struct {
|
||
|
|
UserID uuid.UUID
|
||
|
|
Limit int32
|
||
|
|
}
|
||
|
|
|
||
|
|
type GetPostsForUserRow struct {
|
||
|
|
ID uuid.UUID
|
||
|
|
CreatedAt time.Time
|
||
|
|
UpdatedAt time.Time
|
||
|
|
Title string
|
||
|
|
Url string
|
||
|
|
Description string
|
||
|
|
PublishedAt sql.NullTime
|
||
|
|
FeedID uuid.UUID
|
||
|
|
FeedName string
|
||
|
|
}
|
||
|
|
|
||
|
|
func (q *Queries) GetPostsForUser(ctx context.Context, arg GetPostsForUserParams) ([]GetPostsForUserRow, error) {
|
||
|
|
rows, err := q.db.QueryContext(ctx, getPostsForUser, arg.UserID, arg.Limit)
|
||
|
|
if err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
defer rows.Close()
|
||
|
|
var items []GetPostsForUserRow
|
||
|
|
for rows.Next() {
|
||
|
|
var i GetPostsForUserRow
|
||
|
|
if err := rows.Scan(
|
||
|
|
&i.ID,
|
||
|
|
&i.CreatedAt,
|
||
|
|
&i.UpdatedAt,
|
||
|
|
&i.Title,
|
||
|
|
&i.Url,
|
||
|
|
&i.Description,
|
||
|
|
&i.PublishedAt,
|
||
|
|
&i.FeedID,
|
||
|
|
&i.FeedName,
|
||
|
|
); 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
|
||
|
|
}
|