mirror of
https://github.com/Theodor-Springmann-Stiftung/musenalm.git
synced 2025-10-28 16:55:32 +00:00
74 lines
2.1 KiB
Go
74 lines
2.1 KiB
Go
package seed
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/Theodor-Springmann-Stiftung/musenalm/dbmodels"
|
|
"github.com/Theodor-Springmann-Stiftung/musenalm/xmlmodels"
|
|
"github.com/pocketbase/pocketbase/core"
|
|
)
|
|
|
|
func RecordsFromRelationBändeReihen(
|
|
app core.App,
|
|
relations xmlmodels.Relationen_Bände_Reihen,
|
|
series map[int]*dbmodels.Series,
|
|
entries map[int]*dbmodels.Entry,
|
|
) ([]*dbmodels.REntriesSeries, error) {
|
|
records := make([]*dbmodels.REntriesSeries, 0, len(relations.Relationen))
|
|
collection, err := app.FindCollectionByNameOrId(dbmodels.RelationTableName(dbmodels.ENTRIES_TABLE, dbmodels.SERIES_TABLE))
|
|
if err != nil {
|
|
app.Logger().Error("Error finding collection", "error", err, "collection", dbmodels.RelationTableName(dbmodels.ENTRIES_TABLE, dbmodels.SERIES_TABLE))
|
|
return nil, err
|
|
}
|
|
|
|
for _, relation := range relations.Relationen {
|
|
entry, ok := entries[relation.Band]
|
|
if !ok {
|
|
app.Logger().Error("Error finding Entry", "error", err, "relation", relation)
|
|
continue
|
|
}
|
|
|
|
series, ok := series[relation.Reihe]
|
|
if !ok {
|
|
app.Logger().Error("Error finding Series", "error", err, "relation", relation)
|
|
continue
|
|
}
|
|
|
|
record := dbmodels.NewREntriesSeries(core.NewRecord(collection))
|
|
record.SetEntry(entry.Id)
|
|
record.SetSeries(series.Id)
|
|
|
|
switch relation.Relation {
|
|
case "1":
|
|
record.SetType("Bevorzugter Reihentitel")
|
|
case "2":
|
|
record.SetType("Alternativer Reihentitel")
|
|
case "3":
|
|
record.SetType("In anderer Sprache")
|
|
case "4":
|
|
entry.SetLanguage([]string{"fre"})
|
|
_ = app.Save(entry)
|
|
record.SetType("In anderer Sprache")
|
|
case "5":
|
|
record.SetType("Alternativer Reihentitel")
|
|
case "6":
|
|
record.SetType("Früherer Reihentitel")
|
|
case "7":
|
|
record.SetType("Späterer Reihentitel")
|
|
}
|
|
|
|
rel := record.Type()
|
|
ent := record.Entry()
|
|
ser := record.Series()
|
|
|
|
if strings.TrimSpace(rel) == "" || strings.TrimSpace(ent) == "" || strings.TrimSpace(ser) == "" {
|
|
entry.SetEditState(dbmodels.EDITORSTATE_VALUES[len(dbmodels.EDITORSTATE_VALUES)-2])
|
|
_ = app.Save(entry)
|
|
}
|
|
|
|
records = append(records, record)
|
|
}
|
|
|
|
return records, nil
|
|
}
|