rogueserver/api/stats.go

65 lines
1.4 KiB
Go
Raw Normal View History

2024-04-29 14:26:46 -07: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 12:32:58 -07:00
2024-03-23 18:34:18 -07:00
package api
import (
"log"
2024-04-17 16:03:25 -07:00
"time"
2024-03-23 18:34:18 -07:00
2024-04-29 12:22:27 -07:00
"github.com/pagefaultgames/rogueserver/db"
2024-04-16 18:01:24 -07:00
"github.com/robfig/cron/v3"
2024-03-23 18:34:18 -07:00
)
var (
2024-04-17 16:03:25 -07:00
scheduler = cron.New(cron.WithLocation(time.UTC))
2024-04-06 15:15:47 -07:00
playerCount int
battleCount int
classicSessionCount int
)
2024-03-23 18:34:18 -07:00
func scheduleStatRefresh() {
scheduler.AddFunc("@every 30s", func() {
2024-04-16 18:01:24 -07:00
err := updateStats()
if err != nil {
log.Printf("failed to update stats: %s", err)
}
})
scheduler.Start()
}
2024-04-16 18:01:24 -07:00
func updateStats() error {
var err error
playerCount, err = db.FetchPlayerCount()
2024-03-23 18:34:18 -07:00
if err != nil {
2024-04-16 18:01:24 -07:00
return err
2024-03-23 18:34:18 -07:00
}
2024-04-08 17:44:36 -07:00
2024-04-06 15:15:47 -07:00
battleCount, err = db.FetchBattleCount()
if err != nil {
2024-04-16 18:01:24 -07:00
return err
2024-04-06 15:15:47 -07:00
}
2024-04-08 17:44:36 -07:00
2024-04-06 15:15:47 -07:00
classicSessionCount, err = db.FetchClassicSessionCount()
if err != nil {
2024-04-16 18:01:24 -07:00
return err
2024-04-06 15:15:47 -07:00
}
2024-04-16 18:01:24 -07:00
return nil
}