2012-05-12 18:03:14 +02:00
|
|
|
|
2012-12-27 18:01:04 +01:00
|
|
|
#include <string.h>
|
2012-01-21 21:57:41 +01:00
|
|
|
#include "gcard.h"
|
2019-10-25 00:26:17 +02:00
|
|
|
#include "https.h"
|
2012-08-05 15:48:15 +02:00
|
|
|
#include "loader/utils.h"
|
2012-12-08 17:17:35 +01:00
|
|
|
#include "gecko/gecko.hpp"
|
2012-12-27 18:01:04 +01:00
|
|
|
#include "memory/mem2.hpp"
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
#define MAX_URL_SIZE 178 // 128 + 48 + 6
|
|
|
|
|
|
|
|
struct provider
|
|
|
|
{
|
|
|
|
char url[128];
|
|
|
|
char key[48];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct provider *providers = NULL;
|
|
|
|
int amount_of_providers = 0;
|
|
|
|
|
|
|
|
u8 register_card_provider(const char *url, const char *key)
|
|
|
|
{
|
2012-12-27 21:22:40 +01:00
|
|
|
if(strlen(url) > 0 && strlen(key) > 0 && strstr(url, "{KEY}") != NULL && strstr(url, "{ID6}") != NULL)
|
2012-01-21 21:57:41 +01:00
|
|
|
{
|
2012-12-27 18:01:04 +01:00
|
|
|
providers = (struct provider*)MEM2_realloc(providers, (amount_of_providers + 1) * sizeof(struct provider));
|
2012-01-21 21:57:41 +01:00
|
|
|
memset(&providers[amount_of_providers], 0, sizeof(struct provider));
|
2012-12-27 21:22:40 +01:00
|
|
|
strncpy(providers[amount_of_providers].url, url, 128);
|
|
|
|
strncpy(providers[amount_of_providers].key, key, 48);
|
2012-01-21 21:57:41 +01:00
|
|
|
amount_of_providers++;
|
2012-02-18 14:51:55 +01:00
|
|
|
gprintf("Gamercard provider is valid!\n");
|
2012-01-21 21:57:41 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2012-02-18 14:51:55 +01:00
|
|
|
gprintf("Gamertag provider is NOT valid!\n");
|
2012-01-21 21:57:41 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
u8 has_enabled_providers()
|
|
|
|
{
|
2012-02-24 22:08:24 +01:00
|
|
|
if (amount_of_providers != 0 && providers != NULL)
|
|
|
|
return 1;
|
2012-01-21 21:57:41 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void add_game_to_card(const char *gameid)
|
|
|
|
{
|
|
|
|
int i;
|
2012-02-23 20:08:34 +01:00
|
|
|
|
2012-12-27 18:01:04 +01:00
|
|
|
char *url = (char *)MEM2_alloc(MAX_URL_SIZE); // Too much memory, but only like 10 bytes
|
2014-05-25 22:54:39 +02:00
|
|
|
memset(url, 0, MAX_URL_SIZE);
|
2012-02-23 20:08:34 +01:00
|
|
|
|
2012-12-27 18:01:04 +01:00
|
|
|
for(i = 0; i < amount_of_providers && providers != NULL; i++)
|
2012-01-21 21:57:41 +01:00
|
|
|
{
|
2012-12-27 21:22:40 +01:00
|
|
|
strcpy(url, providers[i].url);
|
|
|
|
str_replace(url, "{KEY}", providers[i].key, MAX_URL_SIZE);
|
2012-12-27 18:01:04 +01:00
|
|
|
str_replace(url, "{ID6}", gameid, MAX_URL_SIZE);
|
|
|
|
gprintf("Gamertag URL:\n%s\n", url);
|
2019-10-25 00:26:17 +02:00
|
|
|
struct download file = {};
|
|
|
|
file.skip_response = 1;
|
|
|
|
downloadfile(url, &file);
|
2012-01-21 21:57:41 +01:00
|
|
|
}
|
2012-12-27 18:01:04 +01:00
|
|
|
MEM2_free(url);
|
2012-12-27 21:22:40 +01:00
|
|
|
}
|