source: binary-improvements/MapRendering/Web/API/GetServerInfo.cs@ 359

Last change on this file since 359 was 351, checked in by alloc, 6 years ago

Fixed game version compatibility of GamePrefs
Code style cleanup (mostly argument names)

File size: 1.6 KB
Line 
1using System;
2using System.Net;
3using AllocsFixes.JSON;
4
5namespace AllocsFixes.NetConnections.Servers.Web.API {
6 public class GetServerInfo : WebAPI {
7 public override void HandleRequest (HttpListenerRequest _req, HttpListenerResponse _resp, WebConnection _user,
8 int _permissionLevel) {
9 JSONObject serverInfo = new JSONObject ();
10
11 GameServerInfo gsi = Steam.Masterserver.Server.LocalGameInfo;
12
13 foreach (string stringGamePref in Enum.GetNames (typeof (GameInfoString))) {
14 string value = gsi.GetValue ((GameInfoString) Enum.Parse (typeof (GameInfoString), stringGamePref));
15
16 JSONObject singleStat = new JSONObject ();
17 singleStat.Add ("type", new JSONString ("string"));
18 singleStat.Add ("value", new JSONString (value));
19
20 serverInfo.Add (stringGamePref, singleStat);
21 }
22
23 foreach (string intGamePref in Enum.GetNames (typeof (GameInfoInt))) {
24 int value = gsi.GetValue ((GameInfoInt) Enum.Parse (typeof (GameInfoInt), intGamePref));
25
26 JSONObject singleStat = new JSONObject ();
27 singleStat.Add ("type", new JSONString ("int"));
28 singleStat.Add ("value", new JSONNumber (value));
29
30 serverInfo.Add (intGamePref, singleStat);
31 }
32
33 foreach (string boolGamePref in Enum.GetNames (typeof (GameInfoBool))) {
34 bool value = gsi.GetValue ((GameInfoBool) Enum.Parse (typeof (GameInfoBool), boolGamePref));
35
36 JSONObject singleStat = new JSONObject ();
37 singleStat.Add ("type", new JSONString ("bool"));
38 singleStat.Add ("value", new JSONBoolean (value));
39
40 serverInfo.Add (boolGamePref, singleStat);
41 }
42
43
44 WriteJSON (_resp, serverInfo);
45 }
46 }
47}
Note: See TracBrowser for help on using the repository browser.