weiro/models/sites.go

53 lines
839 B
Go
Raw Normal View History

2026-02-18 11:07:18 +00:00
package models
import "time"
2026-02-19 11:29:44 +00:00
type PublishTargetType int
2026-02-19 10:21:27 +00:00
const (
2026-02-19 11:29:44 +00:00
PublishTargetTypeNone PublishTargetType = 0
PublishTargetTypeLocalFS PublishTargetType = 1
PublishTargetTypeNetlify PublishTargetType = 2
2026-02-19 10:21:27 +00:00
)
2026-02-18 11:07:18 +00:00
type Site struct {
2026-02-19 10:21:27 +00:00
ID int64
OwnerID int64
Created time.Time
2026-02-19 10:21:27 +00:00
Title string
Tagline string
2026-02-18 11:07:18 +00:00
}
2026-02-19 10:21:27 +00:00
type SitePublishTarget struct {
ID int64
SiteID int64
Enabled bool
2026-02-19 11:29:44 +00:00
BaseURL string
2026-02-20 06:39:58 +00:00
TargetType string
2026-02-19 11:29:44 +00:00
TargetRef string
TargetKey string
2026-02-19 10:21:27 +00:00
}
/*
2026-02-18 11:07:18 +00:00
type SiteMeta struct {
Title string `yaml:"title"`
Tagline string `yaml:"tagline"`
BaseURL string `yaml:"base_url"`
2026-02-18 11:07:18 +00:00
}
type PostMeta struct {
ID string `yaml:"id"`
Title string `yaml:"title"`
Date time.Time `yaml:"date"`
Tags []string `yaml:"tags"`
Slug string `yaml:"slug"`
}
type Post struct {
Meta PostMeta
Content string
}
2026-02-19 10:21:27 +00:00
*/