mirror of
https://github.com/yanislav-igonin/micrach
synced 2024-12-22 06:12:33 +03:00
92 lines
1.7 KiB
Go
92 lines
1.7 KiB
Go
package repositories
|
|
|
|
import (
|
|
"context"
|
|
Db "micrach/db"
|
|
|
|
"github.com/jackc/pgtype"
|
|
"github.com/jackc/pgx/v4"
|
|
)
|
|
|
|
type FilesRepository struct{}
|
|
|
|
var Files FilesRepository
|
|
|
|
func (r *FilesRepository) Create(f File) error {
|
|
sql := `
|
|
INSERT INTO files (post_id, name, ext, size)
|
|
VALUES ($1, $2, $3, $4)
|
|
`
|
|
|
|
row := Db.Pool.QueryRow(
|
|
context.TODO(), sql, f.PostID, f.Name, f.Ext, f.Size,
|
|
)
|
|
|
|
err := row.Scan()
|
|
if err != nil && err != pgx.ErrNoRows {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (r *FilesRepository) GetByPostIDs(postIDs []int) (map[int][]File, error) {
|
|
sql := `
|
|
SELECT id, post_id, name, size, ext
|
|
FROM files
|
|
WHERE post_id = ANY ($1)
|
|
ORDER BY id ASC
|
|
`
|
|
|
|
ids := &pgtype.Int4Array{}
|
|
ids.Set(postIDs)
|
|
|
|
rows, err := Db.Pool.Query(context.TODO(), sql, ids)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if rows.Err() != nil {
|
|
return nil, rows.Err()
|
|
}
|
|
|
|
filesMapByPostId := make(map[int][]File)
|
|
for rows.Next() {
|
|
var file File
|
|
err = rows.Scan(&file.ID, &file.PostID, &file.Name, &file.Size, &file.Ext)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if filesMapByPostId[file.PostID] == nil {
|
|
filesMapByPostId[file.PostID] = []File{}
|
|
}
|
|
|
|
filesMapByPostId[file.PostID] = append(
|
|
filesMapByPostId[file.PostID],
|
|
file,
|
|
)
|
|
}
|
|
|
|
return filesMapByPostId, nil
|
|
}
|
|
|
|
func (r *FilesRepository) CreateInTx(tx pgx.Tx, f File) (int, error) {
|
|
sql := `
|
|
INSERT INTO files (post_id, name, ext, size)
|
|
VALUES ($1, $2, $3, $4)
|
|
RETURNING id
|
|
`
|
|
|
|
row := tx.QueryRow(
|
|
context.TODO(), sql, f.PostID, f.Name, f.Ext, f.Size,
|
|
)
|
|
|
|
createdFile := new(File)
|
|
err := row.Scan(&createdFile.ID)
|
|
if err != nil && err != pgx.ErrNoRows {
|
|
return 0, err
|
|
}
|
|
|
|
return createdFile.ID, nil
|
|
}
|