Compare commits
2 Commits
e2502298a9
...
e0905ef578
Author | SHA1 | Date | |
---|---|---|---|
e0905ef578 | |||
4319b1e1b3 |
@ -7,10 +7,7 @@ import (
|
|||||||
type Session struct {
|
type Session struct {
|
||||||
SessionId string
|
SessionId string
|
||||||
GameId string
|
GameId string
|
||||||
Icon string
|
Assets GameInterfaceAssets
|
||||||
Title string
|
|
||||||
Status string
|
|
||||||
Version string
|
|
||||||
Expires time.Time
|
Expires time.Time
|
||||||
Arguments []Argument
|
Arguments []Argument
|
||||||
}
|
}
|
||||||
@ -20,10 +17,8 @@ type Sessions struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type JSSessionInterface struct {
|
type JSSessionInterface struct {
|
||||||
GameID string `json:"gameId"`
|
GameID string `json:"gameId"`
|
||||||
Icon string `json:"icon"`
|
SessionId string `json:"sessionId"`
|
||||||
Title string `json:"title"`
|
Expires time.Time `json:"expires"`
|
||||||
Status string `json:"status"`
|
Assets GameInterfaceAssets `json:"assets"`
|
||||||
Version string `json:"version"`
|
|
||||||
Expires time.Time `json:"expires"`
|
|
||||||
}
|
}
|
||||||
|
@ -11,16 +11,31 @@ func ConvertServerSessionsToJSON(s Session) []byte {
|
|||||||
return s_json
|
return s_json
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func FindSessionByID(sessionId string, sessions []Session) Session {
|
||||||
|
for _, session := range sessions {
|
||||||
|
if session.SessionId == sessionId {
|
||||||
|
return session
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Session{ //TODO: Return Errors
|
||||||
|
SessionId: sessionId,
|
||||||
|
GameId: "",
|
||||||
|
Assets: GameInterfaceAssets{},
|
||||||
|
Expires: time.Time{},
|
||||||
|
Arguments: []Argument{},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
var FakeSessions = Sessions{
|
var FakeSessions = Sessions{
|
||||||
Sessions: []Session{
|
Sessions: []Session{
|
||||||
{
|
{
|
||||||
GameId: "garrysmod",
|
GameId: "garrysmod",
|
||||||
SessionId: "gmod-test",
|
SessionId: "gmod-test",
|
||||||
Icon: "",
|
// Icon: "",
|
||||||
Title: "Regular Skirda Gmod server",
|
// Title: "Regular Skirda Gmod server",
|
||||||
Status: "Super fake session",
|
// Status: "Super fake session",
|
||||||
Version: "",
|
// Version: "",
|
||||||
Expires: time.Time{},
|
Expires: time.Time{},
|
||||||
Arguments: []Argument{
|
Arguments: []Argument{
|
||||||
{
|
{
|
||||||
Body: "+connect",
|
Body: "+connect",
|
||||||
@ -29,27 +44,17 @@ var FakeSessions = Sessions{
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
GameId: "half-lide-1",
|
// GameId: "half-lide-1",
|
||||||
Title: "Half-Life 1 МЯСО",
|
// Title: "Half-Life 1 МЯСО",
|
||||||
Status: "Retro shit",
|
// Status: "Retro shit",
|
||||||
Expires: time.Time{},
|
Expires: time.Time{},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
GameId: "minecraft",
|
GameId: "minecraft",
|
||||||
Title: "Test 3",
|
// Title: "Test 3",
|
||||||
Status: "Testing session",
|
// Status: "Testing session",
|
||||||
Version: "1.54.7",
|
// Version: "1.54.7",
|
||||||
Expires: time.Time{},
|
Expires: time.Time{},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
func FindSessionByID(sessionId string, sessions []Session) Session {
|
|
||||||
for _, session := range sessions {
|
|
||||||
if session.SessionId == sessionId {
|
|
||||||
return session
|
|
||||||
}
|
|
||||||
}
|
|
||||||
var temp Session = Session{}
|
|
||||||
return temp
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user