apollo-backend/internal/repository/postgres_device.go

160 lines
3.6 KiB
Go
Raw Normal View History

2021-07-26 16:34:26 +00:00
package repository
import (
"context"
"fmt"
"github.com/jackc/pgx/v4/pgxpool"
"github.com/christianselig/apollo-backend/internal/domain"
)
type postgresDeviceRepository struct {
pool *pgxpool.Pool
}
func NewPostgresDevice(pool *pgxpool.Pool) domain.DeviceRepository {
return &postgresDeviceRepository{pool: pool}
}
func (p *postgresDeviceRepository) fetch(ctx context.Context, query string, args ...interface{}) ([]domain.Device, error) {
rows, err := p.pool.Query(ctx, query, args...)
if err != nil {
return nil, err
}
defer rows.Close()
var devs []domain.Device
for rows.Next() {
var dev domain.Device
if err := rows.Scan(
&dev.ID,
&dev.APNSToken,
&dev.Sandbox,
2021-09-11 14:53:19 +00:00
&dev.ActiveUntil,
2021-07-26 16:34:26 +00:00
); err != nil {
return nil, err
}
devs = append(devs, dev)
}
return devs, nil
}
2021-09-25 16:56:01 +00:00
func (p *postgresDeviceRepository) GetByID(ctx context.Context, id int64) (domain.Device, error) {
query := `
SELECT id, apns_token, sandbox, active_until
FROM devices
WHERE id = $1`
devs, err := p.fetch(ctx, query, id)
if err != nil {
return domain.Device{}, err
}
if len(devs) == 0 {
return domain.Device{}, domain.ErrNotFound
}
return devs[0], nil
}
2021-07-26 16:34:26 +00:00
func (p *postgresDeviceRepository) GetByAPNSToken(ctx context.Context, token string) (domain.Device, error) {
query := `
2021-09-11 14:53:19 +00:00
SELECT id, apns_token, sandbox, active_until
2021-07-26 16:34:26 +00:00
FROM devices
2021-08-08 18:19:47 +00:00
WHERE apns_token = $1`
2021-07-26 16:34:26 +00:00
devs, err := p.fetch(ctx, query, token)
if err != nil {
return domain.Device{}, err
}
if len(devs) == 0 {
return domain.Device{}, domain.ErrNotFound
}
return devs[0], nil
}
2021-08-14 17:42:28 +00:00
func (p *postgresDeviceRepository) GetByAccountID(ctx context.Context, id int64) ([]domain.Device, error) {
query := `
2021-09-11 14:53:19 +00:00
SELECT devices.id, apns_token, sandbox, active_until
2021-08-14 17:42:28 +00:00
FROM devices
INNER JOIN devices_accounts ON devices.id = devices_accounts.device_id
WHERE devices_accounts.account_id = $1`
return p.fetch(ctx, query, id)
}
2021-07-26 16:34:26 +00:00
func (p *postgresDeviceRepository) CreateOrUpdate(ctx context.Context, dev *domain.Device) error {
query := `
2021-09-11 14:53:19 +00:00
INSERT INTO devices (apns_token, sandbox, active_until)
2021-07-26 16:34:26 +00:00
VALUES ($1, $2, $3)
2021-08-08 18:19:47 +00:00
ON CONFLICT(apns_token) DO
2021-09-11 14:53:19 +00:00
UPDATE SET active_until = $3
2021-07-26 16:34:26 +00:00
RETURNING id`
2021-08-08 18:19:47 +00:00
return p.pool.QueryRow(
2021-07-26 16:34:26 +00:00
ctx,
query,
dev.APNSToken,
dev.Sandbox,
2021-09-11 14:53:19 +00:00
dev.ActiveUntil,
2021-08-08 18:19:47 +00:00
).Scan(&dev.ID)
2021-07-26 16:34:26 +00:00
}
func (p *postgresDeviceRepository) Create(ctx context.Context, dev *domain.Device) error {
2021-10-12 14:18:40 +00:00
if err := dev.Validate(); err != nil {
return err
}
2021-07-26 16:34:26 +00:00
query := `
INSERT INTO devices
2021-09-11 14:53:19 +00:00
(apns_token, sandbox, active_until)
2021-07-26 16:34:26 +00:00
VALUES ($1, $2, $3)
RETURNING id`
2021-08-08 18:19:47 +00:00
return p.pool.QueryRow(
2021-07-26 16:34:26 +00:00
ctx,
query,
dev.APNSToken,
dev.Sandbox,
2021-09-11 14:53:19 +00:00
dev.ActiveUntil,
2021-08-08 18:19:47 +00:00
).Scan(&dev.ID)
2021-07-26 16:34:26 +00:00
}
func (p *postgresDeviceRepository) Update(ctx context.Context, dev *domain.Device) error {
2021-10-12 14:18:40 +00:00
if err := dev.Validate(); err != nil {
return err
}
2021-07-26 16:34:26 +00:00
query := `
UPDATE devices
2021-09-11 14:53:19 +00:00
SET active_until = $2
2021-07-26 16:34:26 +00:00
WHERE id = $1`
2021-09-11 14:53:19 +00:00
res, err := p.pool.Exec(ctx, query, dev.ID, dev.ActiveUntil)
2021-07-26 16:34:26 +00:00
if res.RowsAffected() != 1 {
return fmt.Errorf("weird behaviour, total rows affected: %d", res.RowsAffected())
}
return err
}
func (p *postgresDeviceRepository) Delete(ctx context.Context, token string) error {
query := `DELETE FROM devices WHERE apns_token = $1`
res, err := p.pool.Exec(ctx, query, token)
if res.RowsAffected() != 1 {
return fmt.Errorf("weird behaviour, total rows affected: %d", res.RowsAffected())
}
return err
}
2021-08-14 16:08:17 +00:00
func (p *postgresDeviceRepository) PruneStale(ctx context.Context, before int64) (int64, error) {
2021-09-25 18:56:14 +00:00
query := `DELETE FROM devices WHERE active_until < $1`
2021-08-14 16:08:17 +00:00
res, err := p.pool.Exec(ctx, query, before)
return res.RowsAffected(), err
}