onasty/internal/store/psql/noterepo/noterepo.go(view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 |
package noterepo
import (
"context"
"errors"
"time"
"github.com/gofrs/uuid/v5"
"github.com/henvic/pgq"
"github.com/jackc/pgx/v5"
"github.com/olexsmir/onasty/internal/dtos"
"github.com/olexsmir/onasty/internal/models"
"github.com/olexsmir/onasty/internal/store/psqlutil"
)
type NoteStorer interface {
// Create creates a note.
Create(ctx context.Context, note models.Note) error
// GetBySlug gets a note by slug.
// Returns [models.ErrNoteNotFound] if note is not found.
GetBySlug(ctx context.Context, slug dtos.NoteSlug) (models.Note, error)
// GetMetadataBySlug gets note's metadata by its slug.
// Returns [models.ErrNoteNotFound] if note is not found OR read.
GetMetadataBySlug(ctx context.Context, slug dtos.NoteSlug) (dtos.NoteMetadata, error)
// GetAllByAuthorID returns all notes with specified author.
GetAllByAuthorID(ctx context.Context, authorID uuid.UUID) ([]models.Note, error)
// GetCountOfNotesByAuthorID returns count of notes created by specified author.
GetCountOfNotesByAuthorID(ctx context.Context, authorID uuid.UUID) (int64, error)
// GetBySlugAndPassword gets a note by slug and password.
// the "password" should be hashed.
//
// Returns [models.ErrNoteNotFound] if note is not found.
GetBySlugAndPassword(
ctx context.Context,
slug dtos.NoteSlug,
password string,
) (models.Note, error)
// UpdateExpirationTimeSettingsBySlug patches note by updating expiresAt and burnBeforeExpiration if one is passwd
// Returns [models.ErrNoteNotFound] if note is not found.
UpdateExpirationTimeSettingsBySlug(
ctx context.Context,
slug dtos.NoteSlug,
patch dtos.PatchNote,
authorID uuid.UUID,
) error
// RemoveBySlug marks note as read, deletes it's content, and keeps meta data
// Returns [models.ErrNoteNotFound] if note is not found.
RemoveBySlug(ctx context.Context, slug dtos.NoteSlug, readAt time.Time) error
// DeleteNoteBySlug deletes(unlike [RemoveBySlug]) note by slug.
// Returns [models.ErrNoteNotFound] if note is not found.
DeleteNoteBySlug(ctx context.Context, slug dtos.NoteSlug, authorID uuid.UUID) error
// SetAuthorIDBySlug assigns author to note by slug.
// Returns [models.ErrNoteNotFound] if note is not found.
SetAuthorIDBySlug(ctx context.Context, slug dtos.NoteSlug, authorID uuid.UUID) error
// UpdatePasswordBySlug updates or sets password on a note.
UpdatePasswordBySlug(
ctx context.Context,
slug dtos.NoteSlug,
authorID uuid.UUID,
passwd string,
) error
}
var _ NoteStorer = (*NoteRepo)(nil)
type NoteRepo struct {
db *psqlutil.DB
}
func New(db *psqlutil.DB) *NoteRepo {
return &NoteRepo{db}
}
func (s *NoteRepo) Create(ctx context.Context, inp models.Note) error {
query, args, err := pgq.
Insert("notes").
Columns("content", "slug", "password", "burn_before_expiration", "created_at", "expires_at").
Values(inp.Content, inp.Slug, inp.Password, inp.BurnBeforeExpiration, inp.CreatedAt, inp.ExpiresAt).
SQL()
if err != nil {
return err
}
_, err = s.db.Exec(ctx, query, args...)
if psqlutil.IsDuplicateErr(err, "notes_slug_key") {
return models.ErrNoteSlugIsAlreadyInUse
}
return err
}
func (s *NoteRepo) GetBySlug(ctx context.Context, slug dtos.NoteSlug) (models.Note, error) {
query, args, err := pgq.
Select("content", "slug", "burn_before_expiration", "read_at", "created_at", "expires_at").
From("notes").
Where("(password is null or password = '')").
Where(pgq.Eq{"slug": slug}).
SQL()
if err != nil {
return models.Note{}, err
}
var note models.Note
err = s.db.QueryRow(ctx, query, args...).
Scan(¬e.Content, ¬e.Slug, ¬e.BurnBeforeExpiration, ¬e.ReadAt, ¬e.CreatedAt, ¬e.ExpiresAt)
if errors.Is(err, pgx.ErrNoRows) {
return models.Note{}, models.ErrNoteNotFound
}
return note, err
}
func (s *NoteRepo) GetMetadataBySlug(
ctx context.Context,
slug dtos.NoteSlug,
) (dtos.NoteMetadata, error) {
query := `--sql
select n.created_at, (n.password is not null and n.password <> '') has_password, n.read_at
from notes n
where slug = $1
`
var readAt time.Time
var metadata dtos.NoteMetadata
err := s.db.QueryRow(ctx, query, slug).Scan(&metadata.CreatedAt, &metadata.HasPassword, &readAt)
if errors.Is(err, pgx.ErrNoRows) {
return dtos.NoteMetadata{}, models.ErrNoteNotFound
}
if !readAt.IsZero() {
return dtos.NoteMetadata{}, models.ErrNoteNotFound
}
return metadata, err
}
func (s *NoteRepo) GetAllByAuthorID(
ctx context.Context,
authorID uuid.UUID,
) ([]models.Note, error) {
query := `--sql
select n.content, n.slug, n.burn_before_expiration, n.password, n.read_at, n.created_at, n.expires_at
from notes n
right join notes_authors na on n.id = na.note_id
where na.user_id = $1`
rows, err := s.db.Query(ctx, query, authorID.String())
if err != nil {
return nil, err
}
defer rows.Close()
var notes []models.Note
for rows.Next() {
var note models.Note
if err := rows.Scan(¬e.Content, ¬e.Slug, ¬e.BurnBeforeExpiration, ¬e.Password,
¬e.ReadAt, ¬e.CreatedAt, ¬e.ExpiresAt); err != nil {
return nil, err
}
notes = append(notes, note)
}
return notes, rows.Err()
}
func (s *NoteRepo) GetCountOfNotesByAuthorID(
ctx context.Context,
authorID uuid.UUID,
) (int64, error) {
var count int64
err := s.db.QueryRow(
ctx,
`select count(*) from notes_authors where user_id = $1`,
authorID.String(),
).Scan(&count)
return count, err
}
func (s *NoteRepo) GetBySlugAndPassword(
ctx context.Context,
slug dtos.NoteSlug,
passwd string,
) (models.Note, error) {
query, args, err := pgq.
Select("content", "slug", "burn_before_expiration", "read_at", "created_at", "expires_at").
From("notes").
Where(pgq.Eq{
"slug": slug,
"password": passwd,
}).
SQL()
if err != nil {
return models.Note{}, err
}
var note models.Note
err = s.db.QueryRow(ctx, query, args...).
Scan(¬e.Content, ¬e.Slug, ¬e.BurnBeforeExpiration, ¬e.ReadAt, ¬e.CreatedAt, ¬e.ExpiresAt)
if errors.Is(err, pgx.ErrNoRows) {
return models.Note{}, models.ErrNoteNotFound
}
return note, err
}
func (s *NoteRepo) UpdateExpirationTimeSettingsBySlug(
ctx context.Context,
slug dtos.NoteSlug,
patch dtos.PatchNote,
authorID uuid.UUID,
) error {
query := `--sql
update notes n
set burn_before_expiration = COALESCE($1, n.burn_before_expiration),
expires_at = COALESCE($2, n.expires_at)
from notes_authors na
where n.slug = $3
and na.user_id = $4
and na.note_id = n.id`
ct, err := s.db.Exec(ctx, query,
patch.BurnBeforeExpiration, patch.ExpiresAt,
slug, authorID.String())
if err != nil {
return err
}
if ct.RowsAffected() == 0 {
return models.ErrNoteNotFound
}
return nil
}
func (s *NoteRepo) RemoveBySlug(
ctx context.Context,
slug dtos.NoteSlug,
readAt time.Time,
) error {
query, args, err := pgq.
Update("notes").
Set("content", "").
Set("read_at", readAt).
Where(pgq.Eq{
"slug": slug,
"read_at": time.Time{}, // check if time is null
}).
SQL()
if err != nil {
return err
}
_, err = s.db.Exec(ctx, query, args...)
if errors.Is(err, pgx.ErrNoRows) {
return models.ErrNoteNotFound
}
return err
}
func (s *NoteRepo) DeleteNoteBySlug(
ctx context.Context,
slug dtos.NoteSlug,
authorID uuid.UUID,
) error {
query := `--sql
delete from notes n
using notes_authors na
where n.slug = $1
and na.user_id = $2`
ct, err := s.db.Exec(ctx, query, slug, authorID.String())
if err != nil {
return err
}
if ct.RowsAffected() == 0 {
return models.ErrNoteNotFound
}
return nil
}
func (s *NoteRepo) SetAuthorIDBySlug(
ctx context.Context,
slug dtos.NoteSlug,
authorID uuid.UUID,
) error {
tx, err := s.db.Begin(ctx)
if err != nil {
return err
}
defer tx.Rollback(ctx) //nolint:errcheck
var noteID uuid.UUID
err = tx.QueryRow(ctx, "select id from notes where slug = $1", slug).Scan(¬eID)
if err != nil {
if errors.Is(err, pgx.ErrNoRows) {
return models.ErrNoteNotFound
}
return err
}
_, err = tx.Exec(
ctx,
"insert into notes_authors (note_id, user_id) values ($1, $2)",
noteID, authorID,
)
if err != nil {
return err
}
return tx.Commit(ctx)
}
func (s *NoteRepo) UpdatePasswordBySlug(
ctx context.Context,
slug dtos.NoteSlug,
authorID uuid.UUID,
passwd string,
) error {
query := `--sql
update notes n
set password = $1
from notes_authors na
where n.slug = $2
and na.user_id = $3
and na.note_id = n.id`
ct, err := s.db.Exec(ctx, query, passwd, slug, authorID.String())
if err != nil {
return err
}
if ct.RowsAffected() == 0 {
return models.ErrNoteNotFound
}
return nil
}
|