fake sessions and arguments in sessions

This commit is contained in:
cyber-dream 2022-11-04 02:22:51 +03:00
parent a8dbeb6865
commit 948e31d4e3
2 changed files with 23 additions and 10 deletions

View File

@ -2,6 +2,8 @@ package sessionUtils
import (
"time"
"git.gregbrzezinski.com/Skirda/skirdaGoBackend/skirdagoutils/gameUtils"
)
type Session struct {
@ -11,6 +13,7 @@ type Session struct {
Status string
Version string
Expires time.Time
Arguments []gameUtils.Argument
}
type JSSessionInterface struct {

View File

@ -3,6 +3,8 @@ package sessionUtils
import (
"encoding/json"
"time"
"git.gregbrzezinski.com/Skirda/skirdaGoBackend/skirdagoutils/gameUtils"
)
func ConvertServerSessionsToJSON(s Session) []byte {
@ -14,14 +16,22 @@ func ConvertServerSessionsToJSON(s Session) []byte {
var FakeSessions = []Session{
{
GameId: "garrysmod",
Title: "Test 1",
Icon: "",
Title: "Regular Skirda Gmod server",
Status: "Super fake session",
Version: "",
Expires: time.Time{},
Arguments: []gameUtils.Argument{
{
Body: "+connect",
Value: "127.0.0.1:27015",
},
},
},
{
GameId: "beamng",
Title: "Test 2",
Status: "Super fake session 2",
GameId: "half-lide-1",
Title: "Half-Life 1 МЯСО",
Status: "Retro shit",
Expires: time.Time{},
},
{