wisski-cloud-distillery/internal/dis/component/server/list/list.go
2024-04-08 22:50:42 +02:00

131 lines
2.8 KiB
Go

package list
import (
"context"
"net/http"
"github.com/FAU-CDI/wisski-distillery/internal/dis/component"
"github.com/FAU-CDI/wisski-distillery/internal/dis/component/auth"
"github.com/FAU-CDI/wisski-distillery/internal/dis/component/instances"
"github.com/FAU-CDI/wisski-distillery/internal/status"
"github.com/tkw1536/pkglib/lazy"
"golang.org/x/sync/errgroup"
)
// ListInstances holds information about all instances
type ListInstances struct {
component.Base
names lazy.Lazy[map[string]struct{}] // instance names
infos lazy.Lazy[[]status.WissKI] // list of home instances (updated via cron)
dependencies struct {
Auth *auth.Auth
Instances *instances.Instances
}
}
func (li *ListInstances) Names() map[string]struct{} {
return li.names.Get(nil)
}
func (li *ListInstances) Infos() []status.WissKI {
return li.infos.Get(nil)
}
// ShouldShowList determines if a list should be shown for the given request
func (li *ListInstances) ShouldShowList(r *http.Request) bool {
config := component.GetStill(li).Config.Home.List
allowPrivate := config.Private.Value
allowPublic := config.Public.Value
if allowPrivate == allowPublic {
return allowPrivate
}
_, user, _ := li.dependencies.Auth.SessionOf(r)
if user == nil {
return allowPublic
} else {
return allowPrivate
}
}
var (
_ component.Cronable = (*ListInstances)(nil)
)
func (li *ListInstances) TaskName() string {
return "instance list and status"
}
func (li *ListInstances) Cron(ctx context.Context) (err error) {
{
names, e := li.getNames(ctx)
if e == nil {
li.names.Set(names)
} else {
err = e
}
}
{
infos, e := li.getInfos(ctx)
if err == nil {
li.infos.Set(infos)
} else {
err = e
}
}
return
}
// getNames returns the names of the given instances
func (li *ListInstances) getNames(ctx context.Context) (map[string]struct{}, error) {
wissKIs, err := li.dependencies.Instances.All(ctx)
if err != nil {
return nil, err
}
names := make(map[string]struct{}, len(wissKIs))
for _, w := range wissKIs {
names[w.Slug] = struct{}{}
}
return names, nil
}
// getInfos returns the names of the given instances
func (li *ListInstances) getInfos(ctx context.Context) ([]status.WissKI, error) {
// find all the WissKIs
wissKIs, err := li.dependencies.Instances.All(ctx)
if err != nil {
return nil, err
}
infos := make([]status.WissKI, len(wissKIs))
// determine their infos
var eg errgroup.Group
for i, instance := range wissKIs {
i := i
wissKI := instance
eg.Go(func() (err error) {
infos[i], err = wissKI.Info().Information(ctx, false)
return
})
}
eg.Wait()
// filter them by those that are running and do not have prefixes excluded
infosF := infos[:0]
for _, info := range infos {
if info.NoPrefixes || !info.Running {
continue
}
infosF = append(infosF, info)
}
// and return them
return infos[:len(infosF):len(infosF)], nil
}