apollo-backend/internal/repository/postgres_watcher.go

166 lines
3.9 KiB
Go
Raw Normal View History

2021-09-25 16:56:01 +00:00
package repository
import (
"context"
"fmt"
2021-09-25 18:02:00 +00:00
"time"
2021-09-25 16:56:01 +00:00
"github.com/jackc/pgx/v4/pgxpool"
"github.com/christianselig/apollo-backend/internal/domain"
)
type postgresWatcherRepository struct {
pool *pgxpool.Pool
}
func NewPostgresWatcher(pool *pgxpool.Pool) domain.WatcherRepository {
return &postgresWatcherRepository{pool: pool}
}
func (p *postgresWatcherRepository) fetch(ctx context.Context, query string, args ...interface{}) ([]domain.Watcher, error) {
rows, err := p.pool.Query(ctx, query, args...)
if err != nil {
return nil, err
}
defer rows.Close()
var watchers []domain.Watcher
for rows.Next() {
var watcher domain.Watcher
if err := rows.Scan(
&watcher.ID,
2021-09-25 18:02:00 +00:00
&watcher.CreatedAt,
2021-09-25 16:56:01 +00:00
&watcher.DeviceID,
&watcher.AccountID,
&watcher.SubredditID,
&watcher.Upvotes,
&watcher.Keyword,
&watcher.Flair,
&watcher.Domain,
2021-09-25 18:27:58 +00:00
&watcher.Hits,
2021-09-25 16:56:01 +00:00
); err != nil {
return nil, err
}
watchers = append(watchers, watcher)
}
return watchers, nil
}
func (p *postgresWatcherRepository) GetByID(ctx context.Context, id int64) (domain.Watcher, error) {
query := `
2021-09-25 18:27:58 +00:00
SELECT id, created_at, device_id, account_id, subreddit_id, upvotes, keyword, flair, domain, hits
2021-09-25 16:56:01 +00:00
FROM watchers
WHERE id = $1`
watchers, err := p.fetch(ctx, query, id)
if err != nil {
return domain.Watcher{}, err
}
if len(watchers) == 0 {
return domain.Watcher{}, domain.ErrNotFound
}
return watchers[0], nil
}
func (p *postgresWatcherRepository) GetBySubredditID(ctx context.Context, id int64) ([]domain.Watcher, error) {
query := `
2021-09-25 18:27:58 +00:00
SELECT id, created_at, device_id, account_id, subreddit_id, upvotes, keyword, flair, domain, hits
2021-09-25 16:56:01 +00:00
FROM watchers
WHERE subreddit_id = $1`
return p.fetch(ctx, query, id)
}
2021-09-25 18:17:23 +00:00
func (p *postgresWatcherRepository) GetByDeviceAPNSTokenAndAccountRedditID(ctx context.Context, apns string, rid string) ([]domain.Watcher, error) {
query := `
SELECT
watchers.id,
watchers.created_at,
watchers.device_id,
watchers.account_id,
watchers.subreddit_id,
watchers.upvotes,
watchers.keyword,
watchers.flair,
2021-09-25 18:27:58 +00:00
watchers.domain,
watchers.hits
2021-09-25 18:17:23 +00:00
FROM watchers
INNER JOIN accounts ON watchers.account_id = accounts.id
INNER JOIN devices ON watchers.device_id = devices.id
WHERE
devices.apns_token = $1 AND
accounts.account_id = $2`
return p.fetch(ctx, query, apns, rid)
}
2021-09-25 16:56:01 +00:00
func (p *postgresWatcherRepository) Create(ctx context.Context, watcher *domain.Watcher) error {
2021-09-25 18:02:00 +00:00
now := float64(time.Now().UTC().Unix())
2021-09-25 16:56:01 +00:00
query := `
INSERT INTO watchers
2021-09-25 18:02:00 +00:00
(created_at, device_id, account_id, subreddit_id, upvotes, keyword, flair, domain)
VALUES ($1, $2, $3, $4, $5, $6, $7, $8)
2021-09-25 16:56:01 +00:00
RETURNING id`
return p.pool.QueryRow(
ctx,
query,
2021-09-25 18:02:00 +00:00
now,
watcher.DeviceID,
watcher.AccountID,
watcher.SubredditID,
watcher.Upvotes,
watcher.Keyword,
watcher.Flair,
watcher.Domain,
2021-09-25 16:56:01 +00:00
).Scan(&watcher.ID)
}
func (p *postgresWatcherRepository) Update(ctx context.Context, watcher *domain.Watcher) error {
query := `
UPDATE watchers
SET upvotes = $2,
keyword = $3,
flair = $4,
domain = $5,
WHERE id = $1`
res, err := p.pool.Exec(
ctx,
query,
watcher.ID,
watcher.Upvotes,
watcher.Keyword,
watcher.Flair,
watcher.Domain,
)
if res.RowsAffected() != 1 {
return fmt.Errorf("weird behaviour, total rows affected: %d", res.RowsAffected())
}
return err
}
2021-09-25 18:27:58 +00:00
func (p *postgresWatcherRepository) IncrementHits(ctx context.Context, id int64) error {
query := `UPDATE watchers SET hits = hits + 1 WHERE id = $1`
res, err := p.pool.Exec(ctx, query, id)
if res.RowsAffected() != 1 {
return fmt.Errorf("weird behaviour, total rows affected: %d", res.RowsAffected())
}
return err
}
2021-09-25 16:56:01 +00:00
func (p *postgresWatcherRepository) Delete(ctx context.Context, id int64) error {
query := `DELETE FROM watchers WHERE id = $1`
res, err := p.pool.Exec(ctx, query, id)
if res.RowsAffected() != 1 {
return fmt.Errorf("weird behaviour, total rows affected: %d", res.RowsAffected())
}
return err
}