hmn/src/models/project.go

77 lines
1.8 KiB
Go
Raw Normal View History

package models
import (
"reflect"
"time"
)
2021-05-06 04:04:58 +00:00
const (
HMNProjectID = 1
HMNProjectSlug = "hmn"
)
var ProjectType = reflect.TypeOf(Project{})
2021-05-05 20:34:32 +00:00
type ProjectLifecycle int
const (
ProjectLifecycleUnapproved = iota
ProjectLifecycleApprovalRequired
ProjectLifecycleActive
ProjectLifecycleHiatus
ProjectLifecycleDead
ProjectLifecycleLTSRequired
ProjectLifecycleLTS
)
2021-06-06 23:48:43 +00:00
// NOTE(asaf): Just checking the lifecycle is not sufficient. Visible projects also must have flags = 0.
var VisibleProjectLifecycles = []ProjectLifecycle{
ProjectLifecycleActive,
ProjectLifecycleHiatus,
ProjectLifecycleLTSRequired, // NOTE(asaf): LTS means complete
ProjectLifecycleLTS,
}
const RecentProjectUpdateTimespanSec = 60 * 60 * 24 * 28 // NOTE(asaf): Four weeks
type Project struct {
ID int `db:"id"`
2021-05-11 22:53:23 +00:00
ForumID *int `db:"forum_id"`
2021-06-06 23:48:43 +00:00
Slug string `db:"slug"`
Name string `db:"name"`
Blurb string `db:"blurb"`
Description string `db:"description"`
ParsedDescription string `db:"descparsed"`
2021-05-11 22:53:23 +00:00
Lifecycle ProjectLifecycle `db:"lifecycle"` // TODO(asaf): Ensure we only fetch projects in the correct lifecycle phase everywhere.
2021-05-05 20:34:32 +00:00
Color1 string `db:"color_1"`
Color2 string `db:"color_2"`
LogoLight string `db:"logolight"`
LogoDark string `db:"logodark"`
2021-06-06 23:48:43 +00:00
Flags int `db:"flags"` // NOTE(asaf): Flags is currently only used to mark a project as hidden. Flags == 1 means hidden. Flags == 0 means visible.
Featured bool `db:"featured"`
DateApproved time.Time `db:"date_approved"`
AllLastUpdated time.Time `db:"all_last_updated"`
2021-08-28 13:10:26 +00:00
ForumEnabled bool `db:"forum_enabled"`
BlogEnabled bool `db:"blog_enabled"`
LibraryEnabled bool `db:"library_enabled"`
}
func (p *Project) IsHMN() bool {
return p.ID == HMNProjectID
}
2021-04-22 23:02:50 +00:00
func (p *Project) Subdomain() string {
if p.IsHMN() {
return ""
}
2021-05-06 04:04:58 +00:00
return p.Slug
2021-04-22 23:02:50 +00:00
}