datamodel done without validators

This commit is contained in:
2025-04-17 12:33:53 +02:00
parent 284a40fac2
commit 5337da219e
58 changed files with 575 additions and 227 deletions

Binary file not shown.

View File

@@ -1,28 +0,0 @@
package asset
import (
"wagfarm-api/asset/fertilizer"
"wagfarm-api/asset/land"
"wagfarm-api/asset/machine"
"wagfarm-api/asset/pesticide"
"wagfarm-api/asset/plant"
"wagfarm-api/asset/product"
"wagfarm-api/asset/seed"
"github.com/gin-gonic/gin"
)
const Models []interface{} {
}
func RegisterRoutes(rg *gin.RouterGroup) {
group := rg.Group("/asset")
fertilizer.RegisterRoutes(group)
land.RegisterRoutes(group)
machine.RegisterRoutes(group)
pesticide.RegisterRoutes(group)
plant.RegisterRoutes(group)
product.RegisterRoutes(group)
seed.RegisterRoutes(group)
}

View File

@@ -1,20 +0,0 @@
package fertilizer
import "wagfarm-api/asset/base"
type Fertilizer struct {
base.BoughtResource
FertilizerTypeID uint `gorm:"not null"`
FertilizerType FertilizerType `gorm:"not null; constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`
// Association to the ingredients. This represents the composition.
Ingredients []FertilizerIngredient `gorm:"not null; many2many:fertilizer_ingredient"`
}
type FertilizerIngredient struct {
FertilizerAssetID uint `gorm:"primaryKey"` // foreign key to the fertilizer asset
IngredientID uint `gorm:"primaryKey"` // foreign key to the ingredient
Amount float64 `gorm:"not null"` // amount of the ingredient
// Preload the ingredient details if needed.
Ingredient Ingredient `gorm:"not null"`
}

View File

@@ -1,9 +0,0 @@
package machine
import (
"wagfarm-api/asset/base"
)
type Machine struct {
base.Resource
}

View File

@@ -1,9 +0,0 @@
package pesticide
import "wagfarm-api/asset/base"
type Pesticide struct {
base.BoughtResource
PesticideTypeID uint `gorm:"not null"`
PesticideType PesticideType `gorm:"not null; constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`
}

View File

@@ -1,9 +0,0 @@
package product
import "wagfarm-api/asset/base"
type Product struct {
base.SoldResource
ProductTypeID uint `gorm:"not null"`
ProductType ProductType `gorm:"not null; constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`
}

View File

@@ -1,11 +0,0 @@
package seed
import (
"wagfarm-api/asset/base"
)
type Seed struct {
base.BoughtResource
SeedTypeID uint `gorm:"not null"`
SeedType SeedType `gorm:"not null; constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`
}

View File

@@ -0,0 +1,36 @@
package assets
import (
"wagfarm-api/assets/fertilizer"
"wagfarm-api/assets/land"
"wagfarm-api/assets/machine"
"wagfarm-api/assets/pesticide"
"wagfarm-api/assets/plant"
"wagfarm-api/assets/product"
"wagfarm-api/assets/seed"
"github.com/gin-gonic/gin"
)
var Models = []any{}
func RegisterModels() {
fertilizer.RegisterModels()
land.RegisterModels()
machine.RegisterModels()
pesticide.RegisterModels()
plant.RegisterModels()
product.RegisterModels()
seed.RegisterModels()
}
func RegisterRoutes(rg *gin.RouterGroup) {
group := rg.Group("/assets")
fertilizer.RegisterRoutes(group)
land.RegisterRoutes(group)
machine.RegisterRoutes(group)
pesticide.RegisterRoutes(group)
plant.RegisterRoutes(group)
product.RegisterRoutes(group)
seed.RegisterRoutes(group)
}

View File

@@ -1,5 +1,14 @@
package base
import (
"time"
"wagfarm-api/taxonomy/customer"
"wagfarm-api/taxonomy/seller"
"wagfarm-api/taxonomy/unit"
"github.com/shopspring/decimal"
)
type Asset struct {
ID uint `gorm:"primaryKey`
Name string `gorm:"not null"`
@@ -17,14 +26,14 @@ type Resource struct {
type BoughtResource struct {
Resource
BuyDate Datetime.Time `gorm:"type:date;default:CURRENT_DATE"`
BuyDate time.Time `gorm:"not null"`
BoughtFromID uint `gorm:"not null"`
BoughtFrom Seller `gorm:"not null; constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`
BoughtFrom seller.Seller `gorm:"not null; constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`
}
type SoldResource struct {
Resource
SaleDate Datetime.Time `gorm:"type:date;default:CURRENT_DATE"`
SaleDate time.Time `gorm:"not null"`
SoldToID uint `gorm:"not null"`
SoldTo Customer `gorm:"not null; constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`
SoldTo customer.Customer `gorm:"not null; constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`
}

View File

@@ -0,0 +1,30 @@
package fertilizer
import (
"wagfarm-api/assets/base"
"wagfarm-api/database"
"wagfarm-api/taxonomy/fertilizertype"
"wagfarm-api/taxonomy/ingredient"
)
type Fertilizer struct {
base.BoughtResource
FertilizerTypeID uint `gorm:"not null"`
FertilizerType fertilizertype.FertilizerType `gorm:"not null; constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`
// Association to the ingredients. This represents the composition.
Ingredients []FertilizerIngredient `gorm:"not null; many2many:fertilizer_ingredient"`
}
type FertilizerIngredient struct {
FertilizerAssetID uint `gorm:"primaryKey"` // foreign key to the fertilizer assets
IngredientID uint `gorm:"primaryKey"` // foreign key to the ingredient
Amount float64 `gorm:"not null"` // amount of the ingredient
// Preload the ingredient details if needed.
Ingredient ingredient.Ingredient `gorm:"not null"`
}
func RegisterModels() {
database.RegisterModel(&Fertilizer{})
database.RegisterJoinTable(&Fertilizer{}, "Ingredients", &FertilizerIngredient{})
}

View File

@@ -1,6 +1,9 @@
package land
import "wagfarm-api/asset/base"
import (
"wagfarm-api/assets/base"
"wagfarm-api/database"
)
type Land struct {
base.Asset
@@ -9,3 +12,5 @@ type Land struct {
IsRedArea bool `gorm:"not null"`
Area float64 `gorm:"not null"`
}
func RegisterModels() { database.RegisterModel(&Land{}) }

View File

@@ -0,0 +1,12 @@
package machine
import (
"wagfarm-api/assets/base"
"wagfarm-api/database"
)
type Machine struct {
base.Resource
}
func RegisterModels() { database.RegisterModel(&Machine{}) }

View File

@@ -0,0 +1,15 @@
package pesticide
import (
"wagfarm-api/assets/base"
"wagfarm-api/database"
"wagfarm-api/taxonomy/pesticidetype"
)
type Pesticide struct {
base.BoughtResource
PesticideTypeID uint `gorm:"not null"`
PesticideType pesticidetype.PesticideType `gorm:"not null; constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`
}
func RegisterModels() { database.RegisterModel(&Pesticide{}) }

View File

@@ -1,8 +1,10 @@
package plant
import (
"wagfarm-api/asset/base"
"wagfarm-api/asset/land"
"wagfarm-api/assets/base"
"wagfarm-api/assets/land"
"wagfarm-api/database"
"wagfarm-api/taxonomy/crop"
)
type Plant struct {
@@ -16,3 +18,5 @@ type Plant struct {
Year uint `gorm:"not null"`
AreaPercentage float64 `gorm:"not null"`
}
func RegisterModels() { database.RegisterModel(&Plant{}) }

View File

@@ -0,0 +1,15 @@
package product
import (
"wagfarm-api/assets/base"
"wagfarm-api/database"
"wagfarm-api/taxonomy/producttype"
)
type Product struct {
base.SoldResource
ProductTypeID uint `gorm:"not null"`
ProductType producttype.ProductType `gorm:"not null; constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`
}
func RegisterModels() { database.RegisterModel(&Product{}) }

View File

@@ -0,0 +1,15 @@
package seed
import (
"wagfarm-api/assets/base"
"wagfarm-api/database"
"wagfarm-api/taxonomy/seedtype"
)
type Seed struct {
base.BoughtResource
SeedTypeID uint `gorm:"not null"`
SeedType seedtype.SeedType `gorm:"not null; constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`
}
func RegisterModels() { database.RegisterModel(&Seed{}) }

View File

@@ -3,8 +3,6 @@ package database
import (
"fmt"
"os"
"slices"
"wagfarm-api/models"
"gorm.io/driver/mysql"
"gorm.io/gorm"
@@ -35,17 +33,40 @@ func Connect() error {
DB = db
return nil
}
var allModels []any
func RegisterModel(model any) {
allModels = append(allModels, model)
}
type JoinTable struct {
model any
field string
joinTable any
}
var allJoinTables []JoinTable
func RegisterJoinTable(model any, field string, joinTable any) {
newJoin := JoinTable{
model: model,
field: field,
joinTable: joinTable,
}
allJoinTables = append(allJoinTables, newJoin)
}
func Migrate() error {
var err error
err = DB.AutoMigrate(slices.Concat(
log.Models, asset.Models, taxonomy.Models))
if err != nil {
// Run migrations
if err := DB.AutoMigrate(allModels...); err != nil {
return fmt.Errorf("auto migration failed: %w", err)
}
err = DB.SetupJoinTable(&models.Fertilizer{}, "Ingredients", &models.FertilizerIngredient{})
if err != nil {
return fmt.Errorf("failed to setup join table for FertilizerAsset and Ingredients: %w", err)
for _, table := range allJoinTables {
if err := DB.SetupJoinTable(table.model, table.field, table.joinTable); err != nil {
return fmt.Errorf("creating custom join tables failed: %w", err)
}
}
return nil

View File

@@ -36,99 +36,99 @@ func DefaultCRUDController[T Model]() CRUDController {
}
}
// GetLogs handles GET /logs and returns all log records.
// GetLogs handles GET /records and returns all record records.
func GetAll[T Model](c *gin.Context) {
var logs []T
var records []T
if err := database.Preload().Find(&logs).Error; err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": "Error fetching logs: " + err.Error()})
if err := database.Preload().Find(&records).Error; err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": "Error fetching records: " + err.Error()})
return
}
c.JSON(http.StatusOK, logs)
c.JSON(http.StatusOK, records)
}
// GetLog handles GET /logs/:id and returns a single log record.
// GetLog handles GET /records/:id and returns a single record record.
func GetOne[T Model](c *gin.Context) {
idParam := c.Param("id")
id, err := strconv.Atoi(idParam)
if err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": "Invalid log ID"})
c.JSON(http.StatusBadRequest, gin.H{"error": "Invalid record ID"})
return
}
var log T
if err := database.Preload().First(&log, id).Error; err != nil {
c.JSON(http.StatusNotFound, gin.H{"error": "Log not found"})
var record T
if err := database.Preload().First(&record, id).Error; err != nil {
c.JSON(http.StatusNotFound, gin.H{"error": "Record not found"})
return
}
c.JSON(http.StatusOK, log)
c.JSON(http.StatusOK, record)
}
// CreateLog handles POST /logs and creates a new log record.
// CreateLog handles POST /records and creates a new record record.
func Create[T Model](c *gin.Context) {
var log T
if err := c.ShouldBindJSON(&log); err != nil {
var record T
if err := c.ShouldBindJSON(&record); err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}
if err := database.DB.Create(&log).Error; err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": "Failed to create log: " + err.Error()})
if err := database.DB.Create(&record).Error; err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": "Failed to create record: " + err.Error()})
return
}
// Optionally preload visibility before returning.
database.Preload().First(&log, log.GetID())
c.JSON(http.StatusCreated, log)
database.Preload().First(&record, record.GetID())
c.JSON(http.StatusCreated, record)
}
// UpdateLog handles PUT /logs/:id and updates an existing log record.
// UpdateLog handles PUT /records/:id and updates an existing record record.
func Update[T Model](c *gin.Context) {
idParam := c.Param("id")
id, err := strconv.Atoi(idParam)
if err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": "Invalid log ID"})
c.JSON(http.StatusBadRequest, gin.H{"error": "Invalid record ID"})
return
}
var existing T
if err := database.DB.First(&existing, id).Error; err != nil {
c.JSON(http.StatusNotFound, gin.H{"error": "Log not found"})
c.JSON(http.StatusNotFound, gin.H{"error": "Record not found"})
return
}
var log T
if err := c.ShouldBindJSON(&log); err != nil {
var record T
if err := c.ShouldBindJSON(&record); err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}
if err := database.DB.Model(&existing).Updates(log).Error; err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": "Failed to update log: " + err.Error()})
if err := database.DB.Model(&existing).Updates(record).Error; err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": "Failed to update record: " + err.Error()})
return
}
database.Preload().First(&existing, log.GetID())
database.Preload().First(&existing, record.GetID())
c.JSON(http.StatusOK, existing)
}
// DeleteLog handles DELETE /logs/:id and deletes a log record.
// DeleteLog handles DELETE /records/:id and deletes a record record.
func Delete[T Model](c *gin.Context) {
idParam := c.Param("id")
id, err := strconv.Atoi(idParam)
if err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": "Invalid log ID"})
c.JSON(http.StatusBadRequest, gin.H{"error": "Invalid record ID"})
return
}
var log T
if err := database.DB.First(&log, id).Error; err != nil {
c.JSON(http.StatusNotFound, gin.H{"error": "Log not found"})
var record T
if err := database.DB.First(&record, id).Error; err != nil {
c.JSON(http.StatusNotFound, gin.H{"error": "Record not found"})
return
}
if err := database.DB.Delete(&log).Error; err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": "Failed to delete log: " + err.Error()})
if err := database.DB.Delete(&record).Error; err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": "Failed to delete record: " + err.Error()})
return
}
c.JSON(http.StatusOK, gin.H{"message": "Log deleted successfully"})
c.JSON(http.StatusOK, gin.H{"message": "Record deleted successfully"})
}

View File

@@ -6,6 +6,7 @@ require (
github.com/gin-gonic/gin v1.10.0
gorm.io/driver/mysql v1.5.7
gorm.io/gorm v1.25.12
github.com/shopspring/decimal v1.4.0
)
require (

View File

@@ -47,6 +47,8 @@ github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjY
github.com/pelletier/go-toml/v2 v2.2.2 h1:aYUidT7k73Pcl9nb2gScu7NSrKCSHIDE89b3+6Wq+LM=
github.com/pelletier/go-toml/v2 v2.2.2/go.mod h1:1t835xjRzz80PqgE6HHgN2JOsmgYu/h4qDAS4n929Rs=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/shopspring/decimal v1.4.0 h1:bxl37RwXBklmTi0C79JfXCEBD1cqqHt0bbgBAGFp81k=
github.com/shopspring/decimal v1.4.0/go.mod h1:gawqmDU56v4yIKSwfBSFip1HdCCXN8/+DMd9qYNcwME=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=

View File

@@ -1,31 +0,0 @@
package base
import "time"
type BaseLog struct {
ID uint `gorm:"primaryKey"`
Name string `gorm:"not null"`
Notes string `gorm:"not null"`
LogType string `gorm:"not null"`
Date time.Time `gorm:"default:CURRENT_TIME"`
Duration float64 `gorm:"not null"` // in hours
VisibiltyID uint `gorm:"not null"`
Visibility taxonomy.Visibility `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
}
func (l BaseLog) GetID() uint { return l.ID }
type ExtendedLog struct {
ID uint `gorm:"primaryKey"`
LogID uint `gorm:"not null"`
BaseLog BaseLog `gorm:"foreignKey:LogID;constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
}
func (l ExtendedLog) GetID() uint { return l.ID }
type FieldWorkLog struct {
ExtendedLog
WorkedAreaPercentage float64 `gorm:"not null"`
MachineID uint `gorm:"not null"`
Machine asset.Machine `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
}

View File

@@ -1,12 +0,0 @@
package cropprotection
import "wagfarm-api/log/base"
type CropProtectionLog struct {
base.FieldWorkLog
PesticideID uint `gorm:"not null"`
Pesticide taxonomy.Pesticide `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
Amount float64 `gorm:"not null"` // in units of the pesticide
PerformedByID uint `gorm:"not null"`
PerformedBy taxonomy.Worker `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
}

View File

@@ -1,12 +0,0 @@
package fertilizing
import (
"wagfarm-api/log/base"
)
type FertilizingLog struct {
base.ExtendedLog
FertilizerID uint `gorm:"not null"`
Fertilizer asset.Fertilizer `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
Amount float64 `gorm:"not null"` // in units of the fertilizer
}

View File

@@ -1,9 +0,0 @@
package harvest
import base "wagfarm-api/log/seeding"
type HarvestLog struct {
base.FieldWorkLog
Product asset.Product `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
Amount float64 `gorm:"not null"` // in units of the product
}

View File

@@ -1,14 +0,0 @@
package seeding
import "wagfarm-api/log/base"
type SeedingLog struct {
base.FieldWorkLog
SeedID uint `gorm:"not null"`
Seed asset.Seed `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
TechniqueID uint `gorm:"not null"`
Technique taxonomy.SeedingTechnique `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
Amount float64 `gorm:"not null"` // in units/ha
ConditionsID uint `gorm:"not null"`
Conditions taxonomy.SeedingCondition `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
}

View File

@@ -0,0 +1,48 @@
package base
import (
"time"
"wagfarm-api/assets/machine"
"wagfarm-api/database"
"wagfarm-api/taxonomy/visibility"
"github.com/shopspring/decimal"
"gorm.io/gorm"
)
type BaseLog struct {
ID uint `gorm:"primaryKey"`
Name string `gorm:"not null"`
Notes string `gorm:"not null"`
LogType string `gorm:"not null"`
Date time.Time `gorm:"not null"`
Duration float64 `gorm:"not null"` // in hours
VisibiltyID uint `gorm:"not null"`
Visibility visibility.Visibility `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
Cost decimal.Decimal `gorm:"not null;type:decimal(10,2);"` // in euro
}
func (l BaseLog) GetID() uint { return l.ID }
type ExtendedLog struct {
ID uint `gorm:"primaryKey"`
BaseLogID uint `gorm:"not null"`
BaseLog BaseLog `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
}
func (l ExtendedLog) GetID() uint { return l.ID }
func (l *ExtendedLog) UpdateCost(db *gorm.DB, newCost decimal.Decimal) (err error) {
err = db.Model(&BaseLog{}).
Where("id = ?", l.BaseLogID).
Update("cost", newCost).Error
return
}
type FieldWorkLog struct {
ExtendedLog
WorkedAreaPercentage float64 `gorm:"not null"`
MachineID uint `gorm:"not null"`
Machine machine.Machine `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
}
func RegisterModels() { database.RegisterModel(&BaseLog{}) }

View File

@@ -0,0 +1,36 @@
package cropprotection
import (
"wagfarm-api/assets/pesticide"
"wagfarm-api/database"
"wagfarm-api/logs/base"
"wagfarm-api/taxonomy/worker"
"github.com/shopspring/decimal"
"gorm.io/gorm"
)
type CropProtectionLog struct {
base.FieldWorkLog
PesticideID uint `gorm:"not null"`
Pesticide pesticide.Pesticide `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
Amount float64 `gorm:"not null"` // in units of the pesticide
PerformedByID uint `gorm:"not null"`
PerformedBy worker.Worker `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
}
func (l *CropProtectionLog) AfterSave(db *gorm.DB) (err error) {
// Example: compute cost as Amount * UnitPrice
if l.Pesticide.ID == 0 {
if err := db.First(&l.Pesticide, l.PesticideID).Error; err != nil {
return err
}
}
unitPrice := l.Pesticide.Cost
totalCost := unitPrice.Mul(decimal.NewFromFloat(l.Amount))
l.UpdateCost(db, totalCost)
return
}
func RegisterModels() { database.RegisterModel(&CropProtectionLog{}) }

View File

@@ -0,0 +1,34 @@
package fertilizing
import (
"wagfarm-api/assets/fertilizer"
"wagfarm-api/database"
"wagfarm-api/logs/base"
"github.com/shopspring/decimal"
"gorm.io/gorm"
)
type FertilizingLog struct {
base.ExtendedLog
FertilizerID uint `gorm:"not null"`
Fertilizer fertilizer.Fertilizer `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
Amount float64 `gorm:"not null"` // in units of the fertilizer
}
func (l *FertilizingLog) AfterSave(db *gorm.DB) (err error) {
// Example: compute cost as Amount * UnitPrice
if l.FertilizerID == 0 {
if err := db.First(&l.Fertilizer, l.FertilizerID).Error; err != nil {
return err
}
}
unitPrice := l.Fertilizer.Cost
totalCost := unitPrice.Mul(decimal.NewFromFloat(l.Amount))
l.UpdateCost(db, totalCost)
return
}
func RegisterModels() { database.RegisterModel(&FertilizingLog{}) }

View File

@@ -0,0 +1,34 @@
package harvest
import (
"wagfarm-api/assets/product"
"wagfarm-api/database"
"wagfarm-api/logs/base"
"github.com/shopspring/decimal"
"gorm.io/gorm"
)
type HarvestLog struct {
base.FieldWorkLog
ProductID uint `gorm:"not null"`
Product product.Product `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
Amount float64 `gorm:"not null"` // in units of the product
}
func (l *HarvestLog) AfterSave(db *gorm.DB) (err error) {
// Example: compute cost as Amount * UnitPrice
if l.ProductID == 0 {
if err := db.First(&l.Product, l.ProductID).Error; err != nil {
return err
}
}
unitPrice := l.Product.Cost
totalCost := unitPrice.Mul(decimal.NewFromFloat(l.Amount))
l.UpdateCost(db, totalCost)
return
}
func RegisterModels() { database.RegisterModel(&HarvestLog{}) }

28
wagfarm-api/logs/logs.go Normal file
View File

@@ -0,0 +1,28 @@
package logs
import (
"wagfarm-api/logs/base"
"wagfarm-api/logs/cropprotection"
"wagfarm-api/logs/fertilizing"
"wagfarm-api/logs/harvest"
"wagfarm-api/logs/seeding"
"github.com/gin-gonic/gin"
)
func RegisterModels() {
base.RegisterModels()
cropprotection.RegisterModels()
fertilizing.RegisterModels()
harvest.RegisterModels()
seeding.RegisterModels()
}
func RegisterRoutes(rg *gin.RouterGroup) {
group := rg.Group("/logs")
base.RegisterRoutes(group)
cropprotection.RegisterRoutes(group)
fertilizing.RegisterRoutes(group)
harvest.RegisterRoutes(group)
seeding.RegisterRoutes(group)
}

View File

@@ -0,0 +1,40 @@
package seeding
import (
"wagfarm-api/assets/seed"
"wagfarm-api/database"
"wagfarm-api/logs/base"
"wagfarm-api/taxonomy/seedingcondition"
"wagfarm-api/taxonomy/seedingtechnique"
"github.com/shopspring/decimal"
"gorm.io/gorm"
)
type SeedingLog struct {
base.FieldWorkLog
SeedID uint `gorm:"not null"`
Seed seed.Seed `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
TechniqueID uint `gorm:"not null"`
Technique seedingtechnique.SeedingTechnique `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
Amount float64 `gorm:"not null"` // in units/ha
ConditionsID uint `gorm:"not null"`
Conditions seedingcondition.SeedingCondition `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
}
func (l *SeedingLog) AfterSave(db *gorm.DB) (err error) {
// Example: compute cost as Amount * UnitPrice
if l.SeedID == 0 {
if err := db.First(&l.Seed, l.SeedID).Error; err != nil {
return err
}
}
unitPrice := l.Seed.Cost
totalCost := unitPrice.Mul(decimal.NewFromFloat(l.Amount))
l.UpdateCost(db, totalCost)
return
}
func RegisterModels() { database.RegisterModel(&SeedingLog{}) }

View File

@@ -3,7 +3,10 @@ package main
import (
"log"
"os"
"wagfarm-api/assets"
"wagfarm-api/database"
"wagfarm-api/logs"
"wagfarm-api/taxonomy"
"github.com/gin-gonic/gin"
)
@@ -25,8 +28,17 @@ func initLogging() {
gin.DefaultWriter = f // capture Gin logs too
}
func RegisterRoutes(r *gin.Engine) {
func RegisterModels() {
assets.RegisterModels()
logs.RegisterModels()
taxonomy.RegisterModels()
}
func RegisterRoutes(r *gin.Engine) {
group := r.Group("/v1")
assets.RegisterRoutes(group)
logs.RegisterRoutes(group)
taxonomy.RegisterRoutes(group)
}
func main() {
@@ -39,6 +51,8 @@ func main() {
log.Fatalf("Database connection error: %v", err)
}
RegisterModels()
// Run migrations.
if err := database.Migrate(); err != nil {
log.Fatalf("Migration failed: %v", err)

View File

@@ -1,5 +1,10 @@
package crop
import "wagfarm-api/taxonomy/base"
import (
"wagfarm-api/database"
"wagfarm-api/taxonomy/base"
)
type Crop struct{ base.Taxonomy }
func RegisterModels() { database.RegisterModel(&Crop{}) }

View File

@@ -1,5 +1,10 @@
package customer
import "wagfarm-api/taxonomy/base"
import (
"wagfarm-api/database"
"wagfarm-api/taxonomy/base"
)
type Customer struct{ base.Taxonomy }
func RegisterModels() { database.RegisterModel(&Customer{}) }

View File

@@ -1,5 +1,10 @@
package fertilizertype
import "wagfarm-api/taxonomy/base"
import (
"wagfarm-api/database"
"wagfarm-api/taxonomy/base"
)
type FertilizerType struct{ base.Taxonomy }
func RegisterModels() { database.RegisterModel(&FertilizerType{}) }

View File

@@ -1,6 +1,7 @@
package ingredient
import (
"wagfarm-api/database"
"wagfarm-api/taxonomy/base"
"wagfarm-api/taxonomy/unit"
)
@@ -10,3 +11,5 @@ type Ingredient struct {
UnitID uint `gorm:"not null"`
Unit unit.Unit `gorm:"not null"`
}
func RegisterModels() { database.RegisterModel(&Ingredient{}) }

View File

@@ -1,5 +1,10 @@
package pesticidetype
import "wagfarm-api/taxonomy/base"
import (
"wagfarm-api/database"
"wagfarm-api/taxonomy/base"
)
type PesticideType struct{ base.Taxonomy }
func RegisterModels() { database.RegisterModel(&PesticideType{}) }

View File

@@ -1,5 +1,10 @@
package producttype
import "wagfarm-api/taxonomy/base"
import (
"wagfarm-api/database"
"wagfarm-api/taxonomy/base"
)
type ProductType struct{ base.Taxonomy }
func RegisterModels() { database.RegisterModel(&ProductType{}) }

View File

@@ -1,5 +1,10 @@
package seedingcondition
import "wagfarm-api/taxonomy/base"
import (
"wagfarm-api/database"
"wagfarm-api/taxonomy/base"
)
type SeedingCondition struct{ base.Taxonomy }
func RegisterModels() { database.RegisterModel(&SeedingCondition{}) }

View File

@@ -1,5 +1,10 @@
package seedingtechnique
import "wagfarm-api/taxonomy/base"
import (
"wagfarm-api/database"
"wagfarm-api/taxonomy/base"
)
type SeedingTechnique struct{ base.Taxonomy }
func RegisterModels() { database.RegisterModel(&SeedingTechnique{}) }

View File

@@ -1,6 +1,7 @@
package seedtype
import (
"wagfarm-api/database"
"wagfarm-api/taxonomy/base"
"wagfarm-api/taxonomy/crop"
)
@@ -10,3 +11,5 @@ type SeedType struct {
CropID uint `gorm:"not null"`
Crop crop.Crop `gorm:"not null; constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`
}
func RegisterModels() { database.RegisterModel(&SeedType{}) }

View File

@@ -1,5 +1,10 @@
package seller
import "wagfarm-api/taxonomy/base"
import (
"wagfarm-api/database"
"wagfarm-api/taxonomy/base"
)
type Seller struct{ base.Taxonomy }
func RegisterModels() { database.RegisterModel(&Seller{}) }

View File

@@ -0,0 +1,52 @@
package taxonomy
import (
"wagfarm-api/taxonomy/crop"
"wagfarm-api/taxonomy/customer"
"wagfarm-api/taxonomy/fertilizertype"
"wagfarm-api/taxonomy/ingredient"
"wagfarm-api/taxonomy/pesticidetype"
"wagfarm-api/taxonomy/producttype"
"wagfarm-api/taxonomy/seedingcondition"
"wagfarm-api/taxonomy/seedingtechnique"
"wagfarm-api/taxonomy/seedtype"
"wagfarm-api/taxonomy/seller"
"wagfarm-api/taxonomy/unit"
"wagfarm-api/taxonomy/visibility"
"wagfarm-api/taxonomy/worker"
"github.com/gin-gonic/gin"
)
func RegisterModels() {
crop.RegisterModels()
customer.RegisterModels()
fertilizertype.RegisterModels()
ingredient.RegisterModels()
pesticidetype.RegisterModels()
producttype.RegisterModels()
seedingcondition.RegisterModels()
seedingtechnique.RegisterModels()
seedtype.RegisterModels()
seller.RegisterModels()
unit.RegisterModels()
visibility.RegisterModels()
worker.RegisterModels()
}
func RegisterRoutes(rg *gin.RouterGroup) {
group := rg.Group("/taxonomy")
crop.RegisterRoutes(group)
customer.RegisterRoutes(group)
fertilizertype.RegisterRoutes(group)
ingredient.RegisterRoutes(group)
pesticidetype.RegisterRoutes(group)
producttype.RegisterRoutes(group)
seedingcondition.RegisterRoutes(group)
seedingtechnique.RegisterRoutes(group)
seedtype.RegisterRoutes(group)
seller.RegisterRoutes(group)
unit.RegisterRoutes(group)
visibility.RegisterRoutes(group)
worker.RegisterRoutes(group)
}

View File

@@ -1,5 +1,10 @@
package unit
import "wagfarm-api/taxonomy/base"
import (
"wagfarm-api/database"
"wagfarm-api/taxonomy/base"
)
type Unit struct{ base.Taxonomy }
func RegisterModels() { database.RegisterModel(&Unit{}) }

View File

@@ -1,5 +1,10 @@
package visibility
import "wagfarm-api/taxonomy/base"
import (
"wagfarm-api/database"
"wagfarm-api/taxonomy/base"
)
type Visibility struct{ base.Taxonomy }
func RegisterModels() { database.RegisterModel(&Visibility{}) }

View File

@@ -1,5 +1,10 @@
package worker
import "wagfarm-api/taxonomy/base"
import (
"wagfarm-api/database"
"wagfarm-api/taxonomy/base"
)
type Worker struct{ base.Taxonomy }
func RegisterModels() { database.RegisterModel(&Worker{}) }