2022-09-03 09:17:48 +00:00
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-09-27 23:52:13 +00:00
|
|
|
"time"
|
2022-09-03 09:17:48 +00:00
|
|
|
|
|
|
|
"github.com/google/uuid"
|
2022-09-24 19:33:38 +00:00
|
|
|
"github.com/hay-kot/homebox/backend/ent"
|
|
|
|
"github.com/hay-kot/homebox/backend/ent/group"
|
|
|
|
"github.com/hay-kot/homebox/backend/ent/item"
|
2022-10-16 05:41:27 +00:00
|
|
|
"github.com/hay-kot/homebox/backend/ent/itemfield"
|
2022-10-13 05:13:07 +00:00
|
|
|
"github.com/hay-kot/homebox/backend/ent/label"
|
|
|
|
"github.com/hay-kot/homebox/backend/ent/location"
|
2022-09-27 23:52:13 +00:00
|
|
|
"github.com/hay-kot/homebox/backend/ent/predicate"
|
2022-09-03 09:17:48 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type ItemsRepository struct {
|
|
|
|
db *ent.Client
|
|
|
|
}
|
|
|
|
|
2022-09-27 23:52:13 +00:00
|
|
|
type (
|
2022-10-13 05:13:07 +00:00
|
|
|
ItemQuery struct {
|
|
|
|
Page int
|
|
|
|
PageSize int
|
|
|
|
Search string `json:"search"`
|
|
|
|
LocationIDs []uuid.UUID `json:"locationIds"`
|
|
|
|
LabelIDs []uuid.UUID `json:"labelIds"`
|
2022-10-15 21:29:33 +00:00
|
|
|
SortBy string `json:"sortBy"`
|
2022-10-13 05:13:07 +00:00
|
|
|
}
|
|
|
|
|
2022-10-16 05:41:27 +00:00
|
|
|
ItemField struct {
|
|
|
|
ID uuid.UUID `json:"id,omitempty"`
|
|
|
|
Type string `json:"type"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
TextValue string `json:"textValue"`
|
|
|
|
NumberValue int `json:"numberValue"`
|
|
|
|
BooleanValue bool `json:"booleanValue"`
|
|
|
|
TimeValue time.Time `json:"timeValue,omitempty"`
|
|
|
|
}
|
|
|
|
|
2022-09-27 23:52:13 +00:00
|
|
|
ItemCreate struct {
|
|
|
|
ImportRef string `json:"-"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
|
|
|
|
// Edges
|
|
|
|
LocationID uuid.UUID `json:"locationId"`
|
|
|
|
LabelIDs []uuid.UUID `json:"labelIds"`
|
|
|
|
}
|
|
|
|
ItemUpdate struct {
|
|
|
|
ID uuid.UUID `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
Quantity int `json:"quantity"`
|
|
|
|
Insured bool `json:"insured"`
|
|
|
|
|
|
|
|
// Edges
|
|
|
|
LocationID uuid.UUID `json:"locationId"`
|
|
|
|
LabelIDs []uuid.UUID `json:"labelIds"`
|
|
|
|
|
|
|
|
// Identifications
|
|
|
|
SerialNumber string `json:"serialNumber"`
|
|
|
|
ModelNumber string `json:"modelNumber"`
|
|
|
|
Manufacturer string `json:"manufacturer"`
|
|
|
|
|
|
|
|
// Warranty
|
|
|
|
LifetimeWarranty bool `json:"lifetimeWarranty"`
|
|
|
|
WarrantyExpires time.Time `json:"warrantyExpires"`
|
|
|
|
WarrantyDetails string `json:"warrantyDetails"`
|
|
|
|
|
|
|
|
// Purchase
|
|
|
|
PurchaseTime time.Time `json:"purchaseTime"`
|
|
|
|
PurchaseFrom string `json:"purchaseFrom"`
|
|
|
|
PurchasePrice float64 `json:"purchasePrice,string"`
|
|
|
|
|
|
|
|
// Sold
|
|
|
|
SoldTime time.Time `json:"soldTime"`
|
|
|
|
SoldTo string `json:"soldTo"`
|
|
|
|
SoldPrice float64 `json:"soldPrice,string"`
|
|
|
|
SoldNotes string `json:"soldNotes"`
|
|
|
|
|
|
|
|
// Extras
|
2022-10-16 05:41:27 +00:00
|
|
|
Notes string `json:"notes"`
|
|
|
|
Fields []ItemField `json:"fields"`
|
2022-09-27 23:52:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ItemSummary struct {
|
|
|
|
ImportRef string `json:"-"`
|
|
|
|
ID uuid.UUID `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
Quantity int `json:"quantity"`
|
|
|
|
Insured bool `json:"insured"`
|
|
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
|
|
|
|
|
|
// Edges
|
|
|
|
Location LocationSummary `json:"location"`
|
|
|
|
Labels []LabelSummary `json:"labels"`
|
|
|
|
}
|
|
|
|
|
|
|
|
ItemOut struct {
|
|
|
|
ItemSummary
|
|
|
|
|
|
|
|
SerialNumber string `json:"serialNumber"`
|
|
|
|
ModelNumber string `json:"modelNumber"`
|
|
|
|
Manufacturer string `json:"manufacturer"`
|
|
|
|
|
|
|
|
// Warranty
|
|
|
|
LifetimeWarranty bool `json:"lifetimeWarranty"`
|
|
|
|
WarrantyExpires time.Time `json:"warrantyExpires"`
|
|
|
|
WarrantyDetails string `json:"warrantyDetails"`
|
|
|
|
|
|
|
|
// Purchase
|
|
|
|
PurchaseTime time.Time `json:"purchaseTime"`
|
|
|
|
PurchaseFrom string `json:"purchaseFrom"`
|
|
|
|
PurchasePrice float64 `json:"purchasePrice,string"`
|
|
|
|
|
|
|
|
// Sold
|
|
|
|
SoldTime time.Time `json:"soldTime"`
|
|
|
|
SoldTo string `json:"soldTo"`
|
|
|
|
SoldPrice float64 `json:"soldPrice,string"`
|
|
|
|
SoldNotes string `json:"soldNotes"`
|
|
|
|
|
|
|
|
// Extras
|
|
|
|
Notes string `json:"notes"`
|
|
|
|
|
|
|
|
Attachments []ItemAttachment `json:"attachments"`
|
|
|
|
// Future
|
2022-10-16 05:41:27 +00:00
|
|
|
Fields []ItemField `json:"fields"`
|
2022-09-27 23:52:13 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
mapItemsSummaryErr = mapTEachErrFunc(mapItemSummary)
|
|
|
|
)
|
|
|
|
|
|
|
|
func mapItemSummary(item *ent.Item) ItemSummary {
|
|
|
|
var location LocationSummary
|
|
|
|
if item.Edges.Location != nil {
|
|
|
|
location = mapLocationSummary(item.Edges.Location)
|
|
|
|
}
|
|
|
|
|
|
|
|
var labels []LabelSummary
|
|
|
|
if item.Edges.Label != nil {
|
|
|
|
labels = mapEach(item.Edges.Label, mapLabelSummary)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ItemSummary{
|
|
|
|
ID: item.ID,
|
|
|
|
Name: item.Name,
|
|
|
|
Description: item.Description,
|
|
|
|
Quantity: item.Quantity,
|
|
|
|
CreatedAt: item.CreatedAt,
|
|
|
|
UpdatedAt: item.UpdatedAt,
|
|
|
|
|
|
|
|
// Edges
|
|
|
|
Location: location,
|
|
|
|
Labels: labels,
|
|
|
|
|
|
|
|
// Warranty
|
|
|
|
Insured: item.Insured,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
mapItemOutErr = mapTErrFunc(mapItemOut)
|
|
|
|
)
|
|
|
|
|
2022-10-16 05:41:27 +00:00
|
|
|
func mapFields(fields []*ent.ItemField) []ItemField {
|
|
|
|
result := make([]ItemField, len(fields))
|
|
|
|
for i, f := range fields {
|
|
|
|
result[i] = ItemField{
|
|
|
|
ID: f.ID,
|
|
|
|
Type: f.Type.String(),
|
|
|
|
Name: f.Name,
|
|
|
|
TextValue: f.TextValue,
|
|
|
|
NumberValue: f.NumberValue,
|
|
|
|
BooleanValue: f.BooleanValue,
|
|
|
|
TimeValue: f.TimeValue,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2022-09-27 23:52:13 +00:00
|
|
|
func mapItemOut(item *ent.Item) ItemOut {
|
|
|
|
var attachments []ItemAttachment
|
|
|
|
if item.Edges.Attachments != nil {
|
|
|
|
attachments = mapEach(item.Edges.Attachments, ToItemAttachment)
|
|
|
|
}
|
|
|
|
|
2022-10-16 05:41:27 +00:00
|
|
|
var fields []ItemField
|
|
|
|
if item.Edges.Fields != nil {
|
|
|
|
fields = mapFields(item.Edges.Fields)
|
|
|
|
}
|
|
|
|
|
2022-09-27 23:52:13 +00:00
|
|
|
return ItemOut{
|
|
|
|
ItemSummary: mapItemSummary(item),
|
|
|
|
LifetimeWarranty: item.LifetimeWarranty,
|
|
|
|
WarrantyExpires: item.WarrantyExpires,
|
|
|
|
WarrantyDetails: item.WarrantyDetails,
|
|
|
|
|
|
|
|
// Identification
|
|
|
|
SerialNumber: item.SerialNumber,
|
|
|
|
ModelNumber: item.ModelNumber,
|
|
|
|
Manufacturer: item.Manufacturer,
|
|
|
|
|
|
|
|
// Purchase
|
|
|
|
PurchaseTime: item.PurchaseTime,
|
|
|
|
PurchaseFrom: item.PurchaseFrom,
|
|
|
|
PurchasePrice: item.PurchasePrice,
|
|
|
|
|
|
|
|
// Sold
|
|
|
|
SoldTime: item.SoldTime,
|
|
|
|
SoldTo: item.SoldTo,
|
|
|
|
SoldPrice: item.SoldPrice,
|
|
|
|
SoldNotes: item.SoldNotes,
|
|
|
|
|
|
|
|
// Extras
|
|
|
|
Notes: item.Notes,
|
|
|
|
Attachments: attachments,
|
2022-10-16 05:41:27 +00:00
|
|
|
Fields: fields,
|
2022-09-27 23:52:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *ItemsRepository) getOne(ctx context.Context, where ...predicate.Item) (ItemOut, error) {
|
|
|
|
q := e.db.Item.Query().Where(where...)
|
|
|
|
|
|
|
|
return mapItemOutErr(q.
|
2022-09-03 09:17:48 +00:00
|
|
|
WithFields().
|
|
|
|
WithLabel().
|
|
|
|
WithLocation().
|
|
|
|
WithGroup().
|
2022-09-12 22:47:27 +00:00
|
|
|
WithAttachments(func(aq *ent.AttachmentQuery) {
|
|
|
|
aq.WithDocument()
|
|
|
|
}).
|
2022-09-27 23:52:13 +00:00
|
|
|
Only(ctx),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetOne returns a single item by ID. If the item does not exist, an error is returned.
|
|
|
|
// See also: GetOneByGroup to ensure that the item belongs to a specific group.
|
|
|
|
func (e *ItemsRepository) GetOne(ctx context.Context, id uuid.UUID) (ItemOut, error) {
|
|
|
|
return e.getOne(ctx, item.ID(id))
|
|
|
|
}
|
|
|
|
|
2022-10-16 01:46:57 +00:00
|
|
|
func (e *ItemsRepository) CheckRef(ctx context.Context, GID uuid.UUID, ref string) (bool, error) {
|
|
|
|
q := e.db.Item.Query().Where(item.HasGroupWith(group.ID(GID)))
|
|
|
|
return q.Where(item.ImportRef(ref)).Exist(ctx)
|
|
|
|
}
|
|
|
|
|
2022-09-27 23:52:13 +00:00
|
|
|
// GetOneByGroup returns a single item by ID. If the item does not exist, an error is returned.
|
|
|
|
// GetOneByGroup ensures that the item belongs to a specific group.
|
|
|
|
func (e *ItemsRepository) GetOneByGroup(ctx context.Context, gid, id uuid.UUID) (ItemOut, error) {
|
|
|
|
return e.getOne(ctx, item.ID(id), item.HasGroupWith(group.ID(gid)))
|
2022-09-03 09:17:48 +00:00
|
|
|
}
|
|
|
|
|
2022-10-13 05:13:07 +00:00
|
|
|
// QueryByGroup returns a list of items that belong to a specific group based on the provided query.
|
|
|
|
func (e *ItemsRepository) QueryByGroup(ctx context.Context, gid uuid.UUID, q ItemQuery) (PaginationResult[ItemSummary], error) {
|
|
|
|
qb := e.db.Item.Query().Where(item.HasGroupWith(group.ID(gid)))
|
|
|
|
|
|
|
|
if len(q.LabelIDs) > 0 {
|
|
|
|
labels := make([]predicate.Item, 0, len(q.LabelIDs))
|
|
|
|
for _, l := range q.LabelIDs {
|
|
|
|
labels = append(labels, item.HasLabelWith(label.ID(l)))
|
|
|
|
}
|
|
|
|
qb = qb.Where(item.Or(labels...))
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(q.LocationIDs) > 0 {
|
|
|
|
locations := make([]predicate.Item, 0, len(q.LocationIDs))
|
|
|
|
for _, l := range q.LocationIDs {
|
|
|
|
locations = append(locations, item.HasLocationWith(location.ID(l)))
|
|
|
|
}
|
|
|
|
qb = qb.Where(item.Or(locations...))
|
|
|
|
}
|
|
|
|
|
|
|
|
if q.Search != "" {
|
|
|
|
qb.Where(
|
|
|
|
item.Or(
|
|
|
|
item.NameContainsFold(q.Search),
|
|
|
|
item.DescriptionContainsFold(q.Search),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
if q.Page != -1 || q.PageSize != -1 {
|
|
|
|
qb = qb.
|
|
|
|
Offset(calculateOffset(q.Page, q.PageSize)).
|
|
|
|
Limit(q.PageSize)
|
|
|
|
}
|
|
|
|
|
|
|
|
items, err := mapItemsSummaryErr(
|
2022-10-15 21:29:33 +00:00
|
|
|
qb.Order(ent.Asc(item.FieldName)).
|
|
|
|
WithLabel().
|
2022-10-13 05:13:07 +00:00
|
|
|
WithLocation().
|
|
|
|
All(ctx),
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return PaginationResult[ItemSummary]{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
count, err := qb.Count(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return PaginationResult[ItemSummary]{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return PaginationResult[ItemSummary]{
|
|
|
|
Page: q.Page,
|
|
|
|
PageSize: q.PageSize,
|
|
|
|
Total: count,
|
|
|
|
Items: items,
|
|
|
|
}, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-09-12 22:47:27 +00:00
|
|
|
// GetAll returns all the items in the database with the Labels and Locations eager loaded.
|
2022-09-27 23:52:13 +00:00
|
|
|
func (e *ItemsRepository) GetAll(ctx context.Context, gid uuid.UUID) ([]ItemSummary, error) {
|
|
|
|
return mapItemsSummaryErr(e.db.Item.Query().
|
2022-09-03 09:17:48 +00:00
|
|
|
Where(item.HasGroupWith(group.ID(gid))).
|
|
|
|
WithLabel().
|
|
|
|
WithLocation().
|
2022-09-27 23:52:13 +00:00
|
|
|
All(ctx))
|
2022-09-03 09:17:48 +00:00
|
|
|
}
|
|
|
|
|
2022-09-27 23:52:13 +00:00
|
|
|
func (e *ItemsRepository) Create(ctx context.Context, gid uuid.UUID, data ItemCreate) (ItemOut, error) {
|
2022-09-05 08:26:21 +00:00
|
|
|
q := e.db.Item.Create().
|
2022-10-16 01:46:57 +00:00
|
|
|
SetImportRef(data.ImportRef).
|
2022-09-03 09:17:48 +00:00
|
|
|
SetName(data.Name).
|
|
|
|
SetDescription(data.Description).
|
|
|
|
SetGroupID(gid).
|
2022-09-05 08:26:21 +00:00
|
|
|
SetLocationID(data.LocationID)
|
|
|
|
|
|
|
|
if data.LabelIDs != nil && len(data.LabelIDs) > 0 {
|
|
|
|
q.AddLabelIDs(data.LabelIDs...)
|
|
|
|
}
|
|
|
|
|
|
|
|
result, err := q.Save(ctx)
|
|
|
|
if err != nil {
|
2022-09-27 23:52:13 +00:00
|
|
|
return ItemOut{}, err
|
2022-09-05 08:26:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return e.GetOne(ctx, result.ID)
|
2022-09-03 09:17:48 +00:00
|
|
|
}
|
|
|
|
|
2022-09-05 08:26:21 +00:00
|
|
|
func (e *ItemsRepository) Delete(ctx context.Context, id uuid.UUID) error {
|
|
|
|
return e.db.Item.DeleteOneID(id).Exec(ctx)
|
2022-09-03 09:17:48 +00:00
|
|
|
}
|
|
|
|
|
2022-09-27 23:52:13 +00:00
|
|
|
func (e *ItemsRepository) DeleteByGroup(ctx context.Context, gid, id uuid.UUID) error {
|
|
|
|
_, err := e.db.Item.
|
|
|
|
Delete().
|
|
|
|
Where(
|
|
|
|
item.ID(id),
|
|
|
|
item.HasGroupWith(group.ID(gid)),
|
|
|
|
).Exec(ctx)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *ItemsRepository) UpdateByGroup(ctx context.Context, gid uuid.UUID, data ItemUpdate) (ItemOut, error) {
|
|
|
|
q := e.db.Item.Update().Where(item.ID(data.ID), item.HasGroupWith(group.ID(gid))).
|
2022-09-05 08:26:21 +00:00
|
|
|
SetName(data.Name).
|
|
|
|
SetDescription(data.Description).
|
|
|
|
SetLocationID(data.LocationID).
|
|
|
|
SetSerialNumber(data.SerialNumber).
|
|
|
|
SetModelNumber(data.ModelNumber).
|
|
|
|
SetManufacturer(data.Manufacturer).
|
|
|
|
SetPurchaseTime(data.PurchaseTime).
|
|
|
|
SetPurchaseFrom(data.PurchaseFrom).
|
|
|
|
SetPurchasePrice(data.PurchasePrice).
|
|
|
|
SetSoldTime(data.SoldTime).
|
|
|
|
SetSoldTo(data.SoldTo).
|
|
|
|
SetSoldPrice(data.SoldPrice).
|
|
|
|
SetSoldNotes(data.SoldNotes).
|
2022-09-09 18:20:38 +00:00
|
|
|
SetNotes(data.Notes).
|
|
|
|
SetLifetimeWarranty(data.LifetimeWarranty).
|
2022-09-12 22:47:27 +00:00
|
|
|
SetInsured(data.Insured).
|
2022-09-09 18:20:38 +00:00
|
|
|
SetWarrantyExpires(data.WarrantyExpires).
|
2022-09-12 22:47:27 +00:00
|
|
|
SetWarrantyDetails(data.WarrantyDetails).
|
|
|
|
SetQuantity(data.Quantity)
|
2022-09-05 08:26:21 +00:00
|
|
|
|
2022-09-12 22:47:27 +00:00
|
|
|
currentLabels, err := e.db.Item.Query().Where(item.ID(data.ID)).QueryLabel().All(ctx)
|
|
|
|
if err != nil {
|
2022-09-27 23:52:13 +00:00
|
|
|
return ItemOut{}, err
|
2022-09-12 22:47:27 +00:00
|
|
|
}
|
|
|
|
|
2022-09-27 23:52:13 +00:00
|
|
|
set := newIDSet(currentLabels)
|
2022-09-12 22:47:27 +00:00
|
|
|
|
|
|
|
for _, l := range data.LabelIDs {
|
2022-09-27 23:52:13 +00:00
|
|
|
if set.Contains(l) {
|
2022-09-12 22:47:27 +00:00
|
|
|
set.Remove(l)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
q.AddLabelIDs(l)
|
|
|
|
}
|
|
|
|
|
|
|
|
if set.Len() > 0 {
|
|
|
|
q.RemoveLabelIDs(set.Slice()...)
|
|
|
|
}
|
2022-09-05 08:26:21 +00:00
|
|
|
|
2022-09-12 22:47:27 +00:00
|
|
|
err = q.Exec(ctx)
|
2022-09-05 08:26:21 +00:00
|
|
|
if err != nil {
|
2022-09-27 23:52:13 +00:00
|
|
|
return ItemOut{}, err
|
2022-09-05 08:26:21 +00:00
|
|
|
}
|
|
|
|
|
2022-10-16 05:41:27 +00:00
|
|
|
fields, err := e.db.ItemField.Query().Where(itemfield.HasItemWith(item.ID(data.ID))).All(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return ItemOut{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldIds := newIDSet(fields)
|
|
|
|
|
|
|
|
// Update Existing Fields
|
|
|
|
for _, f := range data.Fields {
|
|
|
|
if f.ID == uuid.Nil {
|
|
|
|
// Create New Field
|
|
|
|
_, err = e.db.ItemField.Create().
|
|
|
|
SetItemID(data.ID).
|
|
|
|
SetType(itemfield.Type(f.Type)).
|
|
|
|
SetName(f.Name).
|
|
|
|
SetTextValue(f.TextValue).
|
|
|
|
SetNumberValue(f.NumberValue).
|
|
|
|
SetBooleanValue(f.BooleanValue).
|
|
|
|
SetTimeValue(f.TimeValue).
|
|
|
|
Save(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return ItemOut{}, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
opt := e.db.ItemField.Update().
|
|
|
|
Where(
|
|
|
|
itemfield.ID(f.ID),
|
|
|
|
itemfield.HasItemWith(item.ID(data.ID)),
|
|
|
|
).
|
|
|
|
SetType(itemfield.Type(f.Type)).
|
|
|
|
SetName(f.Name).
|
|
|
|
SetTextValue(f.TextValue).
|
|
|
|
SetNumberValue(f.NumberValue).
|
|
|
|
SetBooleanValue(f.BooleanValue).
|
|
|
|
SetTimeValue(f.TimeValue)
|
|
|
|
|
|
|
|
_, err = opt.Save(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return ItemOut{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldIds.Remove(f.ID)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete Fields that are no longer present
|
|
|
|
if fieldIds.Len() > 0 {
|
|
|
|
_, err = e.db.ItemField.Delete().
|
|
|
|
Where(
|
|
|
|
itemfield.IDIn(fieldIds.Slice()...),
|
|
|
|
itemfield.HasItemWith(item.ID(data.ID)),
|
|
|
|
).Exec(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return ItemOut{}, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-05 08:26:21 +00:00
|
|
|
return e.GetOne(ctx, data.ID)
|
2022-09-03 09:17:48 +00:00
|
|
|
}
|