rogueserver/api/stats.go

69 lines
1.5 KiB
Go
Raw Normal View History

2024-04-29 17:26:46 -04:00
/*
Copyright (C) 2024 Pagefault Games
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2024-04-29 15:32:58 -04:00
2024-03-23 21:34:18 -04:00
package api
import (
"log"
2024-04-17 19:03:25 -04:00
"time"
2024-03-23 21:34:18 -04:00
2024-04-29 15:22:27 -04:00
"github.com/pagefaultgames/rogueserver/db"
2024-04-16 21:01:24 -04:00
"github.com/robfig/cron/v3"
2024-03-23 21:34:18 -04:00
)
var (
2024-04-17 19:03:25 -04:00
scheduler = cron.New(cron.WithLocation(time.UTC))
2024-04-06 18:15:47 -04:00
playerCount int
battleCount int
classicSessionCount int
)
2024-03-23 21:34:18 -04:00
2024-05-11 14:06:47 +02:00
func scheduleStatRefresh() error {
_, err := scheduler.AddFunc("@every 30s", func() {
2024-04-16 21:01:24 -04:00
err := updateStats()
if err != nil {
log.Printf("failed to update stats: %s", err)
}
})
2024-05-11 14:06:47 +02:00
if err != nil {
return err
}
2024-04-16 21:01:24 -04:00
scheduler.Start()
2024-05-11 14:06:47 +02:00
return nil
}
2024-04-16 21:01:24 -04:00
func updateStats() error {
var err error
playerCount, err = db.FetchPlayerCount()
2024-03-23 21:34:18 -04:00
if err != nil {
2024-04-16 21:01:24 -04:00
return err
2024-03-23 21:34:18 -04:00
}
2024-04-08 20:44:36 -04:00
2024-04-06 18:15:47 -04:00
battleCount, err = db.FetchBattleCount()
if err != nil {
2024-04-16 21:01:24 -04:00
return err
2024-04-06 18:15:47 -04:00
}
2024-04-08 20:44:36 -04:00
2024-04-06 18:15:47 -04:00
classicSessionCount, err = db.FetchClassicSessionCount()
if err != nil {
2024-04-16 21:01:24 -04:00
return err
2024-04-06 18:15:47 -04:00
}
2024-04-16 21:01:24 -04:00
return nil
}