maps-service/pkg/model/submission.go

39 lines
948 B
Go
Raw Normal View History

2024-11-26 21:36:40 +00:00
package model
import "time"
2024-11-28 01:27:22 +00:00
type Status int32
2024-12-12 22:29:20 +00:00
const (
2024-12-14 12:06:49 +00:00
// Phase: Final Status
StatusReleased Status = 9
StatusRejected Status = 8
2024-11-28 01:27:22 +00:00
2024-12-14 12:06:49 +00:00
// Phase: Testing
StatusUploaded Status = 7 // uploaded to the group, but pending release
StatusUploading Status = 6
2024-12-12 22:29:20 +00:00
StatusValidated Status = 5
StatusValidating Status = 4
StatusAccepted Status = 3
2024-11-28 01:27:22 +00:00
2024-12-14 12:06:49 +00:00
// Phase: Creation
2024-12-12 22:29:20 +00:00
StatusChangesRequested Status = 2
StatusSubmitted Status = 1
StatusUnderConstruction Status = 0
2024-11-28 01:27:22 +00:00
)
2024-11-26 23:30:58 +00:00
type Submission struct {
2024-12-12 22:29:20 +00:00
ID int64 `gorm:"primaryKey"`
DisplayName string
Creator string
GameID int32
CreatedAt time.Time
UpdatedAt time.Time
Submitter uint64 // UserID
AssetID uint64
AssetVersion uint64
Completed bool // Has this version of the map been completed at least once on maptest
TargetAssetID uint64 // where to upload map fix. if the TargetAssetID is 0, it's a new map.
StatusID Status
2024-11-26 21:36:40 +00:00
}