2023-03-28 20:43:45 +02:00
|
|
|
package spec
|
2023-03-03 20:37:09 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"forge.cadoles.com/Cadoles/emissary/internal/spec"
|
2023-03-21 15:21:19 +01:00
|
|
|
edgeAuth "forge.cadoles.com/arcad/edge/pkg/module/auth/http"
|
2023-03-03 20:37:09 +01:00
|
|
|
)
|
|
|
|
|
2023-03-28 20:43:45 +02:00
|
|
|
const Name spec.Name = "app.emissary.cadoles.com"
|
2023-03-03 20:37:09 +01:00
|
|
|
|
|
|
|
type Spec struct {
|
2023-03-21 15:21:19 +01:00
|
|
|
Revision int `json:"revision"`
|
2023-03-21 13:28:41 +01:00
|
|
|
Apps map[string]AppEntry `json:"apps"`
|
2023-03-28 20:43:45 +02:00
|
|
|
Config *Config `json:"config"`
|
2023-03-03 20:37:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type AppEntry struct {
|
|
|
|
URL string `json:"url"`
|
|
|
|
SHA256Sum string `json:"sha256sum"`
|
|
|
|
Address string `json:"address"`
|
|
|
|
Format string `json:"format"`
|
|
|
|
}
|
|
|
|
|
2023-03-21 13:28:41 +01:00
|
|
|
type Auth struct {
|
2023-03-21 15:21:19 +01:00
|
|
|
Local *LocalAuth `json:"local,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type LocalAuth struct {
|
2023-03-28 20:43:45 +02:00
|
|
|
Key any `json:"key"`
|
|
|
|
Accounts []edgeAuth.LocalAccount `json:"accounts"`
|
|
|
|
CookieDomain string `json:"cookieDomain"`
|
|
|
|
CookieDuration string `json:"cookieDuration"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
Auth *Auth `json:"auth"`
|
|
|
|
AppURLTemplate string `json:"appUrlTemplate"`
|
2023-03-21 13:28:41 +01:00
|
|
|
}
|
|
|
|
|
2023-03-03 20:37:09 +01:00
|
|
|
func (s *Spec) SpecName() spec.Name {
|
2023-03-28 20:43:45 +02:00
|
|
|
return Name
|
2023-03-03 20:37:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Spec) SpecRevision() int {
|
|
|
|
return s.Revision
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Spec) SpecData() map[string]any {
|
|
|
|
return map[string]any{
|
2023-03-28 20:43:45 +02:00
|
|
|
"apps": s.Apps,
|
|
|
|
"config": s.Config,
|
2023-03-03 20:37:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewSpec() *Spec {
|
2023-03-13 10:44:58 +01:00
|
|
|
return &Spec{
|
|
|
|
Revision: -1,
|
|
|
|
}
|
2023-03-03 20:37:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ spec.Spec = &Spec{}
|