forked from splewis/get5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
get5_apistats.sp
374 lines (309 loc) · 11.4 KB
/
get5_apistats.sp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
/**
* =============================================================================
* Get5 web API integration
* Copyright (C) 2016. Sean Lewis. All rights reserved.
* =============================================================================
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "include/get5.inc"
#include "include/logdebug.inc"
#include <cstrike>
#include <sourcemod>
#include "get5/util.sp"
#include "get5/version.sp"
#include <SteamWorks>
#include <json> // github.com/clugg/sm-json
#include "get5/jsonhelpers.sp"
#pragma semicolon 1
#pragma newdecls required
int g_MatchID = -1;
ConVar g_APIKeyCvar;
char g_APIKey[128];
ConVar g_APIURLCvar;
char g_APIURL[128];
#define LOGO_DIR "resource/flash/econ/tournaments/teams"
// clang-format off
public Plugin myinfo = {
name = "Get5 Web API Integration",
author = "splewis",
description = "Records match stats to a get5-web api",
version = PLUGIN_VERSION,
url = "https://github.com/splewis/get5"
};
// clang-format on
public void OnPluginStart() {
InitDebugLog("get5_debug", "get5_api");
LogDebug("OnPluginStart version=%s", PLUGIN_VERSION);
g_APIKeyCvar =
CreateConVar("get5_web_api_key", "", "Match API key, this is automatically set through rcon");
HookConVarChange(g_APIKeyCvar, ApiInfoChanged);
g_APIURLCvar = CreateConVar("get5_web_api_url", "", "URL the get5 api is hosted at");
HookConVarChange(g_APIURLCvar, ApiInfoChanged);
RegConsoleCmd("get5_web_avaliable",
Command_Avaliable); // legacy version since I'm bad at spelling
RegConsoleCmd("get5_web_available", Command_Avaliable);
}
public Action Command_Avaliable(int client, int args) {
char versionString[64] = "unknown";
ConVar versionCvar = FindConVar("get5_version");
if (versionCvar != null) {
versionCvar.GetString(versionString, sizeof(versionString));
}
JSON_Object json = new JSON_Object();
json.SetInt("gamestate", view_as<int>(Get5_GetGameState()));
json.SetInt("avaliable", 1); // legacy version since I'm bad at spelling
json.SetInt("available", 1);
json.SetString("plugin_version", versionString);
char buffer[128];
json.Encode(buffer, sizeof(buffer));
ReplyToCommand(client, buffer);
delete json;
return Plugin_Handled;
}
public void ApiInfoChanged(ConVar convar, const char[] oldValue, const char[] newValue) {
g_APIKeyCvar.GetString(g_APIKey, sizeof(g_APIKey));
g_APIURLCvar.GetString(g_APIURL, sizeof(g_APIURL));
// Add a trailing backslash to the api url if one is missing.
int len = strlen(g_APIURL);
if (len > 0 && g_APIURL[len - 1] != '/') {
StrCat(g_APIURL, sizeof(g_APIURL), "/");
}
LogDebug("get5_web_api_url now set to %s", g_APIURL);
}
static Handle CreateRequest(EHTTPMethod httpMethod, const char[] apiMethod, any:...) {
char url[1024];
Format(url, sizeof(url), "%s%s", g_APIURL, apiMethod);
char formattedUrl[1024];
VFormat(formattedUrl, sizeof(formattedUrl), url, 3);
LogDebug("Trying to create request to url %s", formattedUrl);
Handle req = SteamWorks_CreateHTTPRequest(httpMethod, formattedUrl);
if (StrEqual(g_APIKey, "")) {
// Not using a web interface.
return INVALID_HANDLE;
} else if (req == INVALID_HANDLE) {
LogError("Failed to create request to %s", formattedUrl);
return INVALID_HANDLE;
} else {
SteamWorks_SetHTTPCallbacks(req, RequestCallback);
AddStringParam(req, "key", g_APIKey);
return req;
}
}
public int RequestCallback(Handle request, bool failure, bool requestSuccessful,
EHTTPStatusCode statusCode) {
if (failure || !requestSuccessful) {
LogError("API request failed, HTTP status code = %d", statusCode);
char response[1024];
SteamWorks_GetHTTPResponseBodyData(request, response, sizeof(response));
LogError(response);
return;
}
}
public void Get5_OnBackupRestore() {
char matchid[64];
Get5_GetMatchID(matchid, sizeof(matchid));
g_MatchID = StringToInt(matchid);
}
public void Get5_OnSeriesInit() {
char matchid[64];
Get5_GetMatchID(matchid, sizeof(matchid));
g_MatchID = StringToInt(matchid);
// Handle new logos.
if (!DirExists(LOGO_DIR)) {
if (!CreateDirectory(LOGO_DIR, 755)) {
LogError("Failed to create logo directory: %s", LOGO_DIR);
}
}
char logo1[32];
char logo2[32];
GetConVarStringSafe("mp_teamlogo_1", logo1, sizeof(logo1));
GetConVarStringSafe("mp_teamlogo_2", logo2, sizeof(logo2));
CheckForLogo(logo1);
CheckForLogo(logo2);
}
public void CheckForLogo(const char[] logo) {
if (StrEqual(logo, "")) {
return;
}
char logoPath[PLATFORM_MAX_PATH + 1];
Format(logoPath, sizeof(logoPath), "%s/%s.png", LOGO_DIR, logo);
// Try to fetch the file if we don't have it.
if (!FileExists(logoPath)) {
LogDebug("Fetching logo for %s", logo);
Handle req = CreateRequest(k_EHTTPMethodGET, "/static/img/logos/%s.png", logo);
if (req == INVALID_HANDLE) {
return;
}
Handle pack = CreateDataPack();
WritePackString(pack, logo);
SteamWorks_SetHTTPRequestContextValue(req, view_as<int>(pack));
SteamWorks_SetHTTPCallbacks(req, LogoCallback);
SteamWorks_SendHTTPRequest(req);
}
}
public int LogoCallback(Handle request, bool failure, bool successful, EHTTPStatusCode status, int data) {
if (failure || !successful) {
LogError("Logo request failed, status code = %d", status);
return;
}
DataPack pack = view_as<DataPack>(data);
pack.Reset();
char logo[32];
pack.ReadString(logo, sizeof(logo));
char logoPath[PLATFORM_MAX_PATH + 1];
Format(logoPath, sizeof(logoPath), "%s/%s.png", LOGO_DIR, logo);
LogMessage("Saved logo for %s to %s", logo, logoPath);
SteamWorks_WriteHTTPResponseBodyToFile(request, logoPath);
}
public void Get5_OnGoingLive(int mapNumber) {
char mapName[64];
GetCurrentMap(mapName, sizeof(mapName));
Handle req = CreateRequest(k_EHTTPMethodPOST, "match/%d/map/%d/start", g_MatchID, mapNumber);
if (req != INVALID_HANDLE) {
AddStringParam(req, "mapname", mapName);
SteamWorks_SendHTTPRequest(req);
}
Get5_AddLiveCvar("get5_web_api_key", g_APIKey);
Get5_AddLiveCvar("get5_web_api_url", g_APIURL);
}
public void UpdateRoundStats(int mapNumber) {
int t1score = CS_GetTeamScore(Get5_MatchTeamToCSTeam(MatchTeam_Team1));
int t2score = CS_GetTeamScore(Get5_MatchTeamToCSTeam(MatchTeam_Team2));
Handle req = CreateRequest(k_EHTTPMethodPOST, "match/%d/map/%d/update", g_MatchID, mapNumber);
if (req != INVALID_HANDLE) {
AddIntParam(req, "team1score", t1score);
AddIntParam(req, "team2score", t2score);
SteamWorks_SendHTTPRequest(req);
}
// Update player stats
KeyValues kv = new KeyValues("Stats");
Get5_GetMatchStats(kv);
char mapKey[32];
Format(mapKey, sizeof(mapKey), "map%d", mapNumber);
if (kv.JumpToKey(mapKey)) {
if (kv.JumpToKey("team1")) {
UpdatePlayerStats(kv, MatchTeam_Team1);
kv.GoBack();
}
if (kv.JumpToKey("team2")) {
UpdatePlayerStats(kv, MatchTeam_Team2);
kv.GoBack();
}
kv.GoBack();
}
delete kv;
}
public void Get5_OnMapResult(const char[] map, MatchTeam mapWinner, int team1Score, int team2Score,
int mapNumber) {
char winnerString[64];
GetTeamString(mapWinner, winnerString, sizeof(winnerString));
Handle req = CreateRequest(k_EHTTPMethodPOST, "match/%d/map/%d/finish", g_MatchID, mapNumber);
if (req != INVALID_HANDLE) {
AddIntParam(req, "team1score", team1Score);
AddIntParam(req, "team2score", team2Score);
AddStringParam(req, "winner", winnerString);
SteamWorks_SendHTTPRequest(req);
}
}
static void AddIntStat(Handle req, KeyValues kv, const char[] field) {
AddIntParam(req, field, kv.GetNum(field));
}
public void UpdatePlayerStats(KeyValues kv, MatchTeam team) {
char name[MAX_NAME_LENGTH];
char auth[AUTH_LENGTH];
int mapNumber = MapNumber();
if (kv.GotoFirstSubKey()) {
do {
kv.GetSectionName(auth, sizeof(auth));
kv.GetString("name", name, sizeof(name));
char teamString[16];
GetTeamString(team, teamString, sizeof(teamString));
Handle req = CreateRequest(k_EHTTPMethodPOST, "match/%d/map/%d/player/%s/update", g_MatchID,
mapNumber, auth);
if (req != INVALID_HANDLE) {
AddStringParam(req, "team", teamString);
AddStringParam(req, "name", name);
AddIntStat(req, kv, STAT_KILLS);
AddIntStat(req, kv, STAT_DEATHS);
AddIntStat(req, kv, STAT_ASSISTS);
AddIntStat(req, kv, STAT_FLASHBANG_ASSISTS);
AddIntStat(req, kv, STAT_TEAMKILLS);
AddIntStat(req, kv, STAT_SUICIDES);
AddIntStat(req, kv, STAT_DAMAGE);
AddIntStat(req, kv, STAT_HEADSHOT_KILLS);
AddIntStat(req, kv, STAT_ROUNDSPLAYED);
AddIntStat(req, kv, STAT_BOMBPLANTS);
AddIntStat(req, kv, STAT_BOMBDEFUSES);
AddIntStat(req, kv, STAT_1K);
AddIntStat(req, kv, STAT_2K);
AddIntStat(req, kv, STAT_3K);
AddIntStat(req, kv, STAT_4K);
AddIntStat(req, kv, STAT_5K);
AddIntStat(req, kv, STAT_V1);
AddIntStat(req, kv, STAT_V2);
AddIntStat(req, kv, STAT_V3);
AddIntStat(req, kv, STAT_V4);
AddIntStat(req, kv, STAT_V5);
AddIntStat(req, kv, STAT_FIRSTKILL_T);
AddIntStat(req, kv, STAT_FIRSTKILL_CT);
AddIntStat(req, kv, STAT_FIRSTDEATH_T);
AddIntStat(req, kv, STAT_FIRSTDEATH_CT);
AddIntStat(req, kv, STAT_TRADEKILL);
SteamWorks_SendHTTPRequest(req);
}
} while (kv.GotoNextKey());
kv.GoBack();
}
}
static void AddStringParam(Handle request, const char[] key, const char[] value) {
if (!SteamWorks_SetHTTPRequestGetOrPostParameter(request, key, value)) {
LogError("Failed to add http param %s=%s", key, value);
} else {
LogDebug("Added param %s=%s to request", key, value);
}
}
static void AddIntParam(Handle request, const char[] key, int value) {
char buffer[32];
IntToString(value, buffer, sizeof(buffer));
AddStringParam(request, key, buffer);
}
public void Get5_OnSeriesResult(MatchTeam seriesWinner, int team1MapScore, int team2MapScore) {
char winnerString[64];
GetTeamString(seriesWinner, winnerString, sizeof(winnerString));
KeyValues kv = new KeyValues("Stats");
Get5_GetMatchStats(kv);
bool forfeit = kv.GetNum(STAT_SERIES_FORFEIT, 0) != 0;
delete kv;
Handle req = CreateRequest(k_EHTTPMethodPOST, "match/%d/finish", g_MatchID);
if (req != INVALID_HANDLE) {
AddStringParam(req, "winner", winnerString);
AddIntParam(req, "forfeit", forfeit);
SteamWorks_SendHTTPRequest(req);
}
g_APIKeyCvar.SetString("");
}
public void Get5_OnRoundStatsUpdated() {
if (Get5_GetGameState() == Get5State_Live) {
UpdateRoundStats(MapNumber());
}
}
static int MapNumber() {
int t1, t2, n;
int buf;
Get5_GetTeamScores(MatchTeam_Team1, t1, buf);
Get5_GetTeamScores(MatchTeam_Team2, t2, buf);
Get5_GetTeamScores(MatchTeam_TeamNone, n, buf);
return t1 + t2 + n;
}