mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-22 16:45:43 +00:00
03df23d97c
* fix inaccruate 401 error on SQL db error
* init golangci-lint config
* linter autofix
* testify auto fixes
* fix sqlite busy errors
* fix naming
* more linter errors
* fix rest of linter issues
Former-commit-id: e8449b3a73
157 lines
4.1 KiB
Go
157 lines
4.1 KiB
Go
package repo
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
"github.com/hay-kot/homebox/backend/internal/core/services/reporting/eventbus"
|
|
"github.com/hay-kot/homebox/backend/internal/data/ent"
|
|
"github.com/hay-kot/homebox/backend/internal/data/ent/group"
|
|
"github.com/hay-kot/homebox/backend/internal/data/ent/label"
|
|
"github.com/hay-kot/homebox/backend/internal/data/ent/predicate"
|
|
)
|
|
|
|
type LabelRepository struct {
|
|
db *ent.Client
|
|
bus *eventbus.EventBus
|
|
}
|
|
|
|
type (
|
|
LabelCreate struct {
|
|
Name string `json:"name" validate:"required,min=1,max=255"`
|
|
Description string `json:"description" validate:"max=255"`
|
|
Color string `json:"color"`
|
|
}
|
|
|
|
LabelUpdate struct {
|
|
ID uuid.UUID `json:"id"`
|
|
Name string `json:"name" validate:"required,min=1,max=255"`
|
|
Description string `json:"description" validate:"max=255"`
|
|
Color string `json:"color"`
|
|
}
|
|
|
|
LabelSummary struct {
|
|
ID uuid.UUID `json:"id"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
}
|
|
|
|
LabelOut struct {
|
|
LabelSummary
|
|
}
|
|
)
|
|
|
|
func mapLabelSummary(label *ent.Label) LabelSummary {
|
|
return LabelSummary{
|
|
ID: label.ID,
|
|
Name: label.Name,
|
|
Description: label.Description,
|
|
CreatedAt: label.CreatedAt,
|
|
UpdatedAt: label.UpdatedAt,
|
|
}
|
|
}
|
|
|
|
var (
|
|
mapLabelOutErr = mapTErrFunc(mapLabelOut)
|
|
mapLabelsOut = mapTEachErrFunc(mapLabelSummary)
|
|
)
|
|
|
|
func mapLabelOut(label *ent.Label) LabelOut {
|
|
return LabelOut{
|
|
LabelSummary: mapLabelSummary(label),
|
|
}
|
|
}
|
|
|
|
func (r *LabelRepository) publishMutationEvent(GID uuid.UUID) {
|
|
if r.bus != nil {
|
|
r.bus.Publish(eventbus.EventLabelMutation, eventbus.GroupMutationEvent{GID: GID})
|
|
}
|
|
}
|
|
|
|
func (r *LabelRepository) getOne(ctx context.Context, where ...predicate.Label) (LabelOut, error) {
|
|
return mapLabelOutErr(r.db.Label.Query().
|
|
Where(where...).
|
|
WithGroup().
|
|
Only(ctx),
|
|
)
|
|
}
|
|
|
|
func (r *LabelRepository) GetOne(ctx context.Context, ID uuid.UUID) (LabelOut, error) {
|
|
return r.getOne(ctx, label.ID(ID))
|
|
}
|
|
|
|
func (r *LabelRepository) GetOneByGroup(ctx context.Context, gid, ld uuid.UUID) (LabelOut, error) {
|
|
return r.getOne(ctx, label.ID(ld), label.HasGroupWith(group.ID(gid)))
|
|
}
|
|
|
|
func (r *LabelRepository) GetAll(ctx context.Context, groupID uuid.UUID) ([]LabelSummary, error) {
|
|
return mapLabelsOut(r.db.Label.Query().
|
|
Where(label.HasGroupWith(group.ID(groupID))).
|
|
Order(ent.Asc(label.FieldName)).
|
|
WithGroup().
|
|
All(ctx),
|
|
)
|
|
}
|
|
|
|
func (r *LabelRepository) Create(ctx context.Context, groupID uuid.UUID, data LabelCreate) (LabelOut, error) {
|
|
label, err := r.db.Label.Create().
|
|
SetName(data.Name).
|
|
SetDescription(data.Description).
|
|
SetColor(data.Color).
|
|
SetGroupID(groupID).
|
|
Save(ctx)
|
|
if err != nil {
|
|
return LabelOut{}, err
|
|
}
|
|
|
|
label.Edges.Group = &ent.Group{ID: groupID} // bootstrap group ID
|
|
r.publishMutationEvent(groupID)
|
|
return mapLabelOut(label), err
|
|
}
|
|
|
|
func (r *LabelRepository) update(ctx context.Context, data LabelUpdate, where ...predicate.Label) (int, error) {
|
|
if len(where) == 0 {
|
|
panic("empty where not supported empty")
|
|
}
|
|
|
|
return r.db.Label.Update().
|
|
Where(where...).
|
|
SetName(data.Name).
|
|
SetDescription(data.Description).
|
|
SetColor(data.Color).
|
|
Save(ctx)
|
|
}
|
|
|
|
func (r *LabelRepository) UpdateByGroup(ctx context.Context, GID uuid.UUID, data LabelUpdate) (LabelOut, error) {
|
|
_, err := r.update(ctx, data, label.ID(data.ID), label.HasGroupWith(group.ID(GID)))
|
|
if err != nil {
|
|
return LabelOut{}, err
|
|
}
|
|
|
|
r.publishMutationEvent(GID)
|
|
return r.GetOne(ctx, data.ID)
|
|
}
|
|
|
|
// delete removes the label from the database. This should only be used when
|
|
// the label's ownership is already confirmed/validated.
|
|
func (r *LabelRepository) delete(ctx context.Context, id uuid.UUID) error {
|
|
return r.db.Label.DeleteOneID(id).Exec(ctx)
|
|
}
|
|
|
|
func (r *LabelRepository) DeleteByGroup(ctx context.Context, gid, id uuid.UUID) error {
|
|
_, err := r.db.Label.Delete().
|
|
Where(
|
|
label.ID(id),
|
|
label.HasGroupWith(group.ID(gid)),
|
|
).Exec(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
r.publishMutationEvent(gid)
|
|
|
|
return nil
|
|
}
|