mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-22 08:35:43 +00:00
notifier repo
This commit is contained in:
parent
4d744c0e4b
commit
b82fbb01f5
1 changed files with 103 additions and 0 deletions
103
backend/internal/data/repo/repo_notifier.go
Normal file
103
backend/internal/data/repo/repo_notifier.go
Normal file
|
@ -0,0 +1,103 @@
|
|||
package repo
|
||||
|
||||
import (
|
||||
"context"
|
||||
"time"
|
||||
|
||||
"github.com/google/uuid"
|
||||
"github.com/hay-kot/homebox/backend/internal/data/ent"
|
||||
"github.com/hay-kot/homebox/backend/internal/data/ent/notifier"
|
||||
)
|
||||
|
||||
type NotifierRepository struct {
|
||||
db *ent.Client
|
||||
mapper MapFunc[*ent.Notifier, NotifierOut]
|
||||
}
|
||||
|
||||
func NewNotifierRepository(db *ent.Client) *NotifierRepository {
|
||||
return &NotifierRepository{
|
||||
db: db,
|
||||
mapper: func(n *ent.Notifier) NotifierOut {
|
||||
return NotifierOut{
|
||||
ID: n.ID,
|
||||
UserID: n.UserID,
|
||||
GroupID: n.GroupID,
|
||||
CreatedAt: n.CreatedAt,
|
||||
UpdatedAt: n.UpdatedAt,
|
||||
|
||||
Name: n.Name,
|
||||
IsActive: n.IsActive,
|
||||
URL: n.URL,
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
type (
|
||||
NotifierCreate struct {
|
||||
Name string `json:"name" validate:"required,min=1,max=255"`
|
||||
IsActive bool `json:"isEnabled" validate:"required,min=1,max=255"`
|
||||
URL string `json:"url" validate:"required"`
|
||||
}
|
||||
|
||||
NotifierUpdate struct {
|
||||
Name string `json:"name" validate:"required,min=1,max=255"`
|
||||
IsActive bool `json:"isEnabled" validate:"required,min=1,max=255"`
|
||||
URL *string `json:"url" extensions:"x-nullable"`
|
||||
}
|
||||
|
||||
NotifierOut struct {
|
||||
ID uuid.UUID `json:"id"`
|
||||
UserID uuid.UUID `json:"userId"`
|
||||
GroupID uuid.UUID `json:"groupId"`
|
||||
CreatedAt time.Time `json:"createdAt"`
|
||||
UpdatedAt time.Time `json:"updatedAt"`
|
||||
|
||||
Name string `json:"name"`
|
||||
IsActive bool `json:"isEnabled"`
|
||||
URL string `json:"-"` // URL field is not exposed to the client
|
||||
}
|
||||
)
|
||||
|
||||
func (r *NotifierRepository) GetByUser(ctx context.Context, userID uuid.UUID) ([]NotifierOut, error) {
|
||||
notifier, err := r.db.Notifier.Query().Where(notifier.GroupID(userID)).All(ctx)
|
||||
return r.mapper.MapEachErr(notifier, err)
|
||||
}
|
||||
|
||||
func (r *NotifierRepository) GetByGroup(ctx context.Context, groupID uuid.UUID) ([]NotifierOut, error) {
|
||||
notifier, err := r.db.Notifier.Query().Where(notifier.GroupID(groupID)).All(ctx)
|
||||
return r.mapper.MapEachErr(notifier, err)
|
||||
}
|
||||
|
||||
func (r *NotifierRepository) Create(ctx context.Context, groupID, userID uuid.UUID, input NotifierCreate) (NotifierOut, error) {
|
||||
notifier, err := r.db.Notifier.
|
||||
Create().
|
||||
SetGroupID(groupID).
|
||||
SetUserID(userID).
|
||||
SetName(input.Name).
|
||||
SetIsActive(input.IsActive).
|
||||
SetURL(input.URL).
|
||||
Save(ctx)
|
||||
|
||||
return r.mapper.MapErr(notifier, err)
|
||||
}
|
||||
|
||||
func (r *NotifierRepository) Update(ctx context.Context, userID uuid.UUID, id uuid.UUID, input NotifierUpdate) (NotifierOut, error) {
|
||||
q := r.db.Notifier.
|
||||
UpdateOneID(id).
|
||||
SetName(input.Name).
|
||||
SetIsActive(input.IsActive)
|
||||
|
||||
if input.URL != nil {
|
||||
q.SetURL(*input.URL)
|
||||
}
|
||||
|
||||
notifier, err := q.Save(ctx)
|
||||
|
||||
return r.mapper.MapErr(notifier, err)
|
||||
}
|
||||
|
||||
func (r *NotifierRepository) Delete(ctx context.Context, userID uuid.UUID, ID uuid.UUID) error {
|
||||
_, err := r.db.Notifier.Delete().Where(notifier.UserID(userID), notifier.ID(ID)).Exec(ctx)
|
||||
return err
|
||||
}
|
Loading…
Reference in a new issue