Compare commits

..

No commits in common. "d873fce12a665cfa9390dc6f6c995c8a29788e49" and "dfb6be1fba6d86275cbc7339edfbdc819b1240a8" have entirely different histories.

5 changed files with 11 additions and 13 deletions

View File

@ -7,7 +7,7 @@ var garrysmodGame = SteamGame{
Platforms: map[string]bool{"linux": true}, Platforms: map[string]bool{"linux": true},
Assets: GameInterfaceAssets{ Assets: GameInterfaceAssets{
Title: "Garry's Mod", Title: "Garry's Mod",
Icon: "icon.png", Image: "gmod.png",
Description: "", Description: "",
}, },
} }
@ -19,7 +19,7 @@ var openarena = SteamGame{
Args: []string{}, Args: []string{},
Assets: GameInterfaceAssets{ Assets: GameInterfaceAssets{
Title: "Open Arena", Title: "Open Arena",
Icon: "icon.jpg", Image: "openarena.jpg",
Description: "asdadasd", Description: "asdadasd",
}, },
} }

View File

@ -10,7 +10,7 @@ type SteamGame struct {
type GameInterfaceAssets struct { type GameInterfaceAssets struct {
Title string Title string
Icon string Image string
Description string Description string
} }
@ -21,6 +21,6 @@ type Games struct {
type JSGameInterface struct { type JSGameInterface struct {
GameID string `json:"gameId"` GameID string `json:"gameId"`
Title string `json:"title"` Title string `json:"title"`
Icon string `json:"icon"` Image string `json:"image"`
Description string `json:"description"` Description string `json:"description"`
} }

View File

@ -28,7 +28,7 @@ func GetJSGameInterface(game SteamGame) JSGameInterface {
newInterface := JSGameInterface{ newInterface := JSGameInterface{
GameID: game.GameId, GameID: game.GameId,
Title: game.Assets.Title, Title: game.Assets.Title,
Icon: game.Assets.Icon, Image: game.Assets.Image,
Description: game.Assets.Description, Description: game.Assets.Description,
} }
return newInterface return newInterface

View File

@ -5,12 +5,8 @@ import (
) )
type Session struct { type Session struct {
GameId string
Icon string
Title string
Status string
Version string
Expires time.Time Expires time.Time
GameId string
} }
type JSSessionInterface struct { type JSSessionInterface struct {

View File

@ -1,11 +1,13 @@
package sessionUtils package sessionUtils
import ( import "encoding/json"
"encoding/json"
)
func ConvertServerSessionsToJSON(s Session) []byte { func ConvertServerSessionsToJSON(s Session) []byte {
s_json, err := json.Marshal(s) s_json, err := json.Marshal(s)
_ = err //TODO: Check Errors _ = err //TODO: Check Errors
return s_json return s_json
} }
func GetJSSessionInterface(s Session) JSSessionInterface {
return JSSessionInterface{}
}