forked from Glimesh/janus-ftl-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGlimeshServiceConnection.cpp
416 lines (369 loc) · 13 KB
/
GlimeshServiceConnection.cpp
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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
/**
* @file GlimeshServiceConnection.cpp
* @author Hayden McAfee (hayden@outlook.com)
* @version 0.1
* @date 2020-09-15
*
* @copyright Copyright (c) 2020 Hayden McAfee
*
*/
#include "GlimeshServiceConnection.h"
#include "FtlExceptions.h"
#include <jansson.h>
extern "C"
{
#include <debug.h>
}
#pragma region Constructor/Destructor
GlimeshServiceConnection::GlimeshServiceConnection(
std::string hostname,
uint16_t port,
bool useHttps,
std::string clientId,
std::string clientSecret) :
hostname(hostname),
port(port),
useHttps(useHttps),
clientId(clientId),
clientSecret(clientSecret)
{ }
#pragma endregion
#pragma region ServiceConnection
void GlimeshServiceConnection::Init()
{
std::stringstream baseUri;
baseUri << (useHttps ? "https" : "http") << "://" << hostname << ":" << port;
JANUS_LOG(LOG_INFO, "FTL: Using Glimesh Service Connection @ %s\n", baseUri.str().c_str());
// Try to auth
ensureAuth();
}
std::string GlimeshServiceConnection::GetHmacKey(uint32_t channelId)
{
std::stringstream query;
query << "query { channel(id: \"" << channelId << "\") { streamKey } }";
JsonPtr queryResult = runGraphQlQuery(query.str());
json_t* jsonData = json_object_get(queryResult.get(), "data");
if (jsonData != nullptr)
{
json_t* jsonChannel = json_object_get(jsonData, "channel");
if (jsonChannel != nullptr)
{
json_t* jsonStreamKey = json_object_get(jsonChannel, "streamKey");
if (jsonStreamKey != nullptr && json_is_string(jsonStreamKey))
{
return std::string(json_string_value(jsonStreamKey));
}
}
}
return std::string(); // Empty string means we couldn't find one
}
ftl_stream_id_t GlimeshServiceConnection::StartStream(ftl_channel_id_t channelId)
{
std::stringstream query;
query << "mutation { startStream(channelId: " << channelId << ") { id } }";
JsonPtr queryResult = runGraphQlQuery(query.str());
json_t* jsonData = json_object_get(queryResult.get(), "data");
if (jsonData != nullptr)
{
json_t* jsonStream = json_object_get(jsonData, "startStream");
if (jsonStream != nullptr)
{
json_t* jsonStreamId = json_object_get(jsonStream, "id");
if (jsonStreamId != nullptr && json_is_string(jsonStreamId))
{
ftl_stream_id_t streamId = std::stoi(json_string_value(jsonStreamId));
return streamId;
}
}
}
return 0;
}
void GlimeshServiceConnection::UpdateStreamMetadata(ftl_stream_id_t streamId, StreamMetadata metadata)
{
// TODO: channelId -> streamId
std::stringstream query;
query << "mutation($streamId: ID!, $streamMetadata: StreamMetadataInput!) " <<
"{ logStreamMetadata(streamId: $streamId, metadata: $streamMetadata) { id } }";
// Create a json object to contain query variables
JsonPtr queryVariables(json_pack(
"{s:i, s:{s:s, s:s, s:i, s:i, s:i, s:i, s:i, s:i, s:i, s:s, s:s, s:s, s:i, s:i}}",
"streamId", streamId,
"streamMetadata",
"audioCodec", metadata.audioCodec.c_str(),
"ingestServer", metadata.ingestServerHostname.c_str(),
"ingestViewers", metadata.numActiveViewers,
"lostPackets", metadata.numPacketsLost,
"nackPackets", metadata.numPacketsNacked,
"recvPackets", metadata.numPacketsReceived,
"sourceBitrate", metadata.currentSourceBitrateBps,
"sourcePing", metadata.streamerToIngestPingMs,
"streamTimeSeconds", metadata.streamTimeSeconds,
"vendorName", metadata.streamerClientVendorName.c_str(),
"vendorVersion", metadata.streamerClientVendorVersion.c_str(),
"videoCodec", metadata.videoCodec.c_str(),
"videoHeight", metadata.videoHeight,
"videoWidth", metadata.videoWidth
));
JsonPtr queryResult = runGraphQlQuery(query.str(), std::move(queryVariables));
json_t* jsonData = json_object_get(queryResult.get(), "data");
if (jsonData != nullptr)
{
json_t* jsonStream = json_object_get(jsonData, "logStreamMetadata");
if (jsonStream != nullptr)
{
json_t* jsonStreamId = json_object_get(jsonStream, "id");
if (jsonStreamId != nullptr)
{
// uint32_t updatedStreamId = json_integer_value(jsonStreamId);
// TOTO: Handle error case
}
}
}
}
void GlimeshServiceConnection::EndStream(ftl_stream_id_t streamId)
{
std::stringstream query;
query << "mutation { endStream(streamId: " << streamId << ") { id } }";
JsonPtr queryResult = runGraphQlQuery(query.str());
json_t* jsonData = json_object_get(queryResult.get(), "data");
if (jsonData != nullptr)
{
json_t* jsonStream = json_object_get(jsonData, "endStream");
if (jsonStream != nullptr)
{
json_t* jsonStreamId = json_object_get(jsonStream, "id");
if (jsonStreamId != nullptr)
{
// uint32_t endedStreamId = json_integer_value(jsonStreamId);
// TODO: Handle error case
}
}
}
}
void GlimeshServiceConnection::SendJpegPreviewImage(
ftl_stream_id_t streamId,
std::vector<uint8_t> jpegData)
{
std::stringstream query;
query << "mutation { uploadStreamThumbnail(streamId: " << streamId << ", thumbnail: \"thumbdata\") { id } }";
std::string fileContents(jpegData.begin(), jpegData.end());
httplib::MultipartFormDataItems files
{
{
.name = "thumbdata",
.content = fileContents,
.filename = "preview.jpg",
.content_type = "image/jpeg"
}
};
runGraphQlQuery(query.str(), nullptr, files);
}
#pragma endregion
#pragma region Private methods
httplib::Client GlimeshServiceConnection::getHttpClient()
{
std::stringstream baseUri;
baseUri << (useHttps ? "https" : "http") << "://" << hostname << ":" << port;
httplib::Client client = httplib::Client(baseUri.str().c_str());
if (accessToken.length() > 0)
{
httplib::Headers headers
{
{"Authorization", "Bearer " + accessToken}
};
client.set_default_headers(headers);
}
return client;
}
void GlimeshServiceConnection::ensureAuth()
{
std::lock_guard<std::mutex> lock(authMutex);
// Do we already have an access token that hasn't expired?
// TODO: Check expiration
if (accessToken.length() > 0)
{
std::time_t currentTime = std::time(nullptr);
if (currentTime < accessTokenExpirationTime)
{
return;
}
}
// No? Let's fetch one.
httplib::Params params
{
{ "client_id", clientId },
{ "client_secret", clientSecret },
{ "grant_type", "client_credentials" },
{ "scope", "streamkey" }
};
httplib::Client httpClient = getHttpClient();
if (httplib::Result res = httpClient.Post("/api/oauth/token", params))
{
if (res->status == 200)
{
// Try to parse out the access token
// TODO: Parse out expiration time
json_error_t error;
JsonPtr jsonBody(json_loads(res->body.c_str(), 0, &error));
if (jsonBody.get() != nullptr)
{
// Extract access token
json_t* accessTokenJson = json_object_get(jsonBody.get(), "access_token");
accessToken = std::string(json_string_value(accessTokenJson));
// Extract time to expiration
json_t* expiresInJson = json_object_get(jsonBody.get(), "expires_in");
uint32_t expiresIn = json_integer_value(expiresInJson);
// Extract creation time
json_t* createdAtJson = json_object_get(jsonBody.get(), "created_at");
std::string createdAtStr = std::string(json_string_value(createdAtJson));
tm createdAtTime = parseIso8601DateTime(createdAtStr);
// Calculate expiration time
std::time_t expirationTime = std::mktime(&createdAtTime);
expirationTime += expiresIn;
accessTokenExpirationTime = expirationTime;
std::time_t currentTime = std::time(nullptr);
JANUS_LOG(
LOG_INFO,
"FTL: Received new access token: %s, expires in %ld - %ld = %ld seconds\n",
accessToken.c_str(),
expirationTime,
currentTime,
(expirationTime - currentTime));
return;
}
}
}
// TODO: Retry logic based on failure/status code
throw std::runtime_error("Access token request failed!");
}
JsonPtr GlimeshServiceConnection::runGraphQlQuery(
std::string query,
JsonPtr variables,
httplib::MultipartFormDataItems fileData)
{
// Make sure we have a valid access token
ensureAuth();
std::string queryString;
// If we're doing a file upload, we pack this all into a multipart request
if (fileData.size() > 0)
{
fileData.push_back(httplib::MultipartFormData {
.name = "query",
.content = query,
.filename = "",
.content_type = "application/json"
});
}
// Otherwise, create a JSON blob for our GraphQL query to put into POST body
else
{
JsonPtr queryJson(json_pack("{s:s, s:O?}", "query", query.c_str(), "variables", variables.get()));
char* queryStr = json_dumps(queryJson.get(), 0);
queryString = std::string(queryStr);
free(queryStr);
}
// Make the request, and retry if necessary
int numRetries = 0;
while (true)
{
httplib::Client httpClient = getHttpClient();
JsonPtr result = nullptr;
// If we're doing files, use a multipart http request
if (fileData.size() > 0)
{
httplib::Result response = httpClient.Post("/api", fileData);
result = processGraphQlResponse(response);
}
// otherwise, stick with post body
else
{
httplib::Result response = httpClient.Post("/api", queryString, "application/json");
result = processGraphQlResponse(response);
}
if (result != nullptr)
{
return result;
}
if (numRetries < MAX_RETRIES)
{
JANUS_LOG(
LOG_WARN,
"FTL: Attempt %d / %d: Glimesh file upload GraphQL query failed. Retrying in %d ms...\n",
(numRetries + 1),
MAX_RETRIES,
TIME_BETWEEN_RETRIES_MS);
std::this_thread::sleep_for(std::chrono::milliseconds(TIME_BETWEEN_RETRIES_MS));
++numRetries;
}
else
{
break;
}
}
// We've exceeded our retry limit
JANUS_LOG(
LOG_ERR,
"FTL: Aborting Glimesh file upload GraphQL query after %d failed attempts.\n",
MAX_RETRIES);
throw ServiceConnectionCommunicationFailedException("Glimesh GraphQL query failed.");
}
JsonPtr GlimeshServiceConnection::processGraphQlResponse(httplib::Result result)
{
if (result)
{
if (result->status == 200)
{
// Try to parse out the response
json_error_t error;
JsonPtr jsonBody(json_loads(result->body.c_str(), 0, &error));
if (jsonBody.get() == nullptr)
{
// If we can't parse the JSON of a successful request, retrying won't help,
// so we throw here.
std::stringstream errStr;
errStr << "Could not parse GraphQL JSON response from Glimesh Service Connection: \n"
<< result->body.c_str();
throw ServiceConnectionCommunicationFailedException(errStr.str().c_str());
}
return jsonBody;
}
else
{
JANUS_LOG(
LOG_WARN,
"FTL: Glimesh service connection received status code %d when processing GraphQL query.\n",
result->status);
return nullptr;
}
}
else
{
JANUS_LOG(
LOG_WARN,
"FTL: Glimesh service connection HTTP request failed.\n");
return nullptr;
}
}
// Thanks StackOverflow friends
// https://stackoverflow.com/a/26896792/2874534
tm GlimeshServiceConnection::parseIso8601DateTime(std::string dateTimeString)
{
int y, M, d, h, m, tzh, tzm;
float s;
if (6 < sscanf(dateTimeString.c_str(), "%d-%d-%dT%d:%d:%f%d:%dZ", &y, &M, &d, &h, &m, &s, &tzh, &tzm))
{
if (tzh < 0)
{
tzm = -tzm; // Fix the sign on minutes.
}
}
tm time { 0 };
time.tm_year = y - 1900; // Year since 1900
time.tm_mon = M - 1; // 0-11
time.tm_mday = d; // 1-31
time.tm_hour = h; // 0-23
time.tm_min = m; // 0-59
time.tm_sec = (int)s; // 0-60
return time;
}
#pragma endregion