2018-02-22 16:32:05 -08:00

92 lines
3.5 KiB
C

#include <malloc.h>
#include <stdio.h>
#include <string.h>
#include <3ds.h>
#include <jansson.h>
#include "resources.h"
#include "section.h"
#include "action/action.h"
#include "task/uitask.h"
#include "../core/core.h"
static void update_check_update(ui_view* view, void* data, float* progress, char* text) {
bool hasUpdate = false;
char updateURL[DOWNLOAD_URL_MAX];
Result res = 0;
json_t* json = NULL;
if(R_SUCCEEDED(res = task_download_json_sync("https://api.titledb.com/v1/entry?nested=true&only=cia.id&only=cia.version&only=tdsx.id&only=tdsx.version&_filters=%7B%22name%22%3A%20%22FBI%22%7D", &json, 16 * 1024))) {
const char* type = fs_get_3dsx_path() != NULL ? "tdsx" : "cia";
json_t* entry = NULL;
json_t* objs = NULL;
if(json_is_array(json) && json_array_size(json) == 1
&& json_is_object(entry = json_array_get(json, 0))
&& json_is_array(objs = json_object_get(entry, type))) {
if(json_array_size(json) > 0) {
u32 latestId = 0;
u32 latestMajor = 0;
u32 latestMinor = 0;
u32 latestMicro = 0;
for(u32 i = 0; i < json_array_size(objs); i++) {
json_t* obj = json_array_get(objs, i);
if(json_is_object(obj)) {
json_t* idJson = json_object_get(obj, "id");
json_t* versionJson = json_object_get(obj, "version");
if(json_is_integer(idJson) && json_is_string(versionJson)) {
u32 id = (u32) json_integer_value(idJson);
const char* version = json_string_value(versionJson);
u32 major = 0;
u32 minor = 0;
u32 micro = 0;
sscanf(version, "%lu.%lu.%lu", &major, &minor, &micro);
if(major > latestMajor
|| (major == latestMajor && minor > latestMinor)
|| (major == latestMajor && minor == latestMinor && micro > latestMicro)) {
latestId = id;
latestMajor = major;
latestMinor = minor;
latestMicro = micro;
}
}
}
}
if(latestMajor > VERSION_MAJOR
|| (latestMajor == VERSION_MAJOR && latestMinor > VERSION_MINOR)
|| (latestMajor == VERSION_MAJOR && latestMinor == VERSION_MINOR && latestMicro > VERSION_MICRO)) {
snprintf(updateURL, DOWNLOAD_URL_MAX, "https://3ds.titledb.com/v1/%s/%lu/download", type, latestId);
hasUpdate = true;
}
}
} else {
res = R_APP_BAD_DATA;
}
json_decref(json);
}
ui_pop();
info_destroy(view);
if(hasUpdate) {
action_install_url("Update FBI to the latest version?", updateURL, fs_get_3dsx_path(), NULL, NULL, NULL, NULL);
} else {
if(R_FAILED(res)) {
error_display_res(NULL, NULL, res, "Failed to check for update.");
} else {
prompt_display_notify("Success", "No updates available.", COLOR_TEXT, NULL, NULL, NULL);
}
}
}
void update_open() {
info_display("Checking For Updates", "", false, NULL, update_check_update, NULL);
}