mirror of https://github.com/statping/statping
136 lines
2.5 KiB
Go
136 lines
2.5 KiB
Go
package core
|
|
|
|
import (
|
|
"github.com/GeertJohan/go.rice"
|
|
"github.com/hunterlong/statup/notifiers"
|
|
"github.com/hunterlong/statup/types"
|
|
"github.com/pkg/errors"
|
|
"os"
|
|
"time"
|
|
)
|
|
|
|
type PluginJSON types.PluginJSON
|
|
type PluginRepos types.PluginRepos
|
|
|
|
type Core struct {
|
|
*types.Core
|
|
Services []*Service
|
|
}
|
|
|
|
var (
|
|
Configs *types.Config
|
|
CoreApp *Core
|
|
SqlBox *rice.Box
|
|
CssBox *rice.Box
|
|
ScssBox *rice.Box
|
|
JsBox *rice.Box
|
|
TmplBox *rice.Box
|
|
SetupMode bool
|
|
UsingAssets bool
|
|
VERSION string
|
|
)
|
|
|
|
func init() {
|
|
CoreApp = NewCore()
|
|
}
|
|
|
|
func NewCore() *Core {
|
|
CoreApp = new(Core)
|
|
CoreApp.Core = new(types.Core)
|
|
CoreApp.Started = time.Now()
|
|
return CoreApp
|
|
}
|
|
|
|
func InsertCore(c *Core) error {
|
|
col := DbSession.Collection("core")
|
|
_, err := col.Insert(c.Core)
|
|
return err
|
|
}
|
|
|
|
func (c *Core) ToCore() *types.Core {
|
|
return c.Core
|
|
}
|
|
|
|
func InitApp() {
|
|
SelectCore()
|
|
notifiers.Collections = DbSession.Collection("communication")
|
|
SelectAllServices()
|
|
CheckServices()
|
|
CoreApp.Communications = notifiers.Load()
|
|
go DatabaseMaintence()
|
|
}
|
|
|
|
func UpdateCore(c *Core) (*Core, error) {
|
|
res := DbSession.Collection("core").Find().Limit(1)
|
|
err := res.Update(c.Core)
|
|
return c, err
|
|
}
|
|
|
|
func (c Core) UsingAssets() bool {
|
|
return UsingAssets
|
|
}
|
|
|
|
func (c Core) SassVars() string {
|
|
if !UsingAssets {
|
|
return ""
|
|
}
|
|
return OpenAsset("scss/variables.scss")
|
|
}
|
|
|
|
func (c Core) BaseSASS() string {
|
|
if !UsingAssets {
|
|
return ""
|
|
}
|
|
return OpenAsset("scss/base.scss")
|
|
}
|
|
|
|
func (c Core) MobileSASS() string {
|
|
if !UsingAssets {
|
|
return ""
|
|
}
|
|
return OpenAsset("scss/mobile.scss")
|
|
}
|
|
|
|
func (c Core) AllOnline() bool {
|
|
for _, ser := range CoreApp.Services {
|
|
s := ser.ToService()
|
|
if !s.Online {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
func SelectLastMigration() (int64, error) {
|
|
var c *types.Core
|
|
if DbSession == nil {
|
|
return 0, errors.New("Database connection has not been created yet")
|
|
}
|
|
err := DbSession.Collection("core").Find().One(&c)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return c.MigrationId, err
|
|
}
|
|
|
|
func SelectCore() (*Core, error) {
|
|
var c *types.Core
|
|
exists := DbSession.Collection("core").Exists()
|
|
if !exists {
|
|
return nil, errors.New("core database has not been setup yet.")
|
|
}
|
|
err := DbSession.Collection("core").Find().One(&c)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
CoreApp.Core = c
|
|
CoreApp.DbConnection = Configs.Connection
|
|
CoreApp.Version = VERSION
|
|
CoreApp.Services, _ = SelectAllServices()
|
|
if os.Getenv("USE_CDN") == "true" {
|
|
CoreApp.UseCdn = true
|
|
}
|
|
//store = sessions.NewCookieStore([]byte(core.ApiSecret))
|
|
return CoreApp, err
|
|
}
|