ed330fa6be
commitf5baab4e88
Author: DaneEveritt <dane@daneeveritt.com> Date: Sat Jul 9 17:50:53 2022 -0400 Finalize activity event sending logic and cron config commit9830387f21
Author: DaneEveritt <dane@daneeveritt.com> Date: Sat Jul 9 16:26:13 2022 -0400 Send power events in a more usable format commit49f3a61d16
Author: DaneEveritt <dane@daneeveritt.com> Date: Sat Jul 9 15:47:24 2022 -0400 Configure cron to actually send to endpoint commit28137c4c14
Author: DaneEveritt <dane@daneeveritt.com> Date: Sat Jul 9 15:42:29 2022 -0400 Copy the body buffer otherwise subsequent backoff attempts will not have a buffer to send commit20e44bdc55
Author: DaneEveritt <dane@daneeveritt.com> Date: Sat Jul 9 14:38:41 2022 -0400 Add internal logic to process activity events and send them to the panel commit0380488cd2
Author: DaneEveritt <dane@daneeveritt.com> Date: Mon Jul 4 17:55:17 2022 -0400 Track power events commit9eab08b92f
Author: DaneEveritt <dane@daneeveritt.com> Date: Mon Jul 4 17:36:03 2022 -0400 Initial logic to support logging activity on Wings to send back to the panel
39 lines
717 B
Go
39 lines
717 B
Go
package database
|
|
|
|
import (
|
|
"emperror.dev/errors"
|
|
"github.com/apex/log"
|
|
"github.com/pterodactyl/wings/config"
|
|
"github.com/xujiajun/nutsdb"
|
|
"path/filepath"
|
|
"sync"
|
|
)
|
|
|
|
var db *nutsdb.DB
|
|
var syncer sync.Once
|
|
|
|
const (
|
|
ServerActivityBucket = "server_activity"
|
|
)
|
|
|
|
func initialize() error {
|
|
opt := nutsdb.DefaultOptions
|
|
opt.Dir = filepath.Join(config.Get().System.RootDirectory, "db")
|
|
|
|
instance, err := nutsdb.Open(opt)
|
|
if err != nil {
|
|
return errors.WithStack(err)
|
|
}
|
|
db = instance
|
|
return nil
|
|
}
|
|
|
|
func DB() *nutsdb.DB {
|
|
syncer.Do(func() {
|
|
if err := initialize(); err != nil {
|
|
log.WithField("error", err).Fatal("database: failed to initialize instance, this is an unrecoverable error")
|
|
}
|
|
})
|
|
return db
|
|
}
|