2017-09-26 08:59:34 +02:00
|
|
|
// MIT License
|
|
|
|
|
|
|
|
// Copyright (c) 2017 Vadim Grigoruk @nesbox // grigoruk@gmail.com
|
|
|
|
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
// SOFTWARE.
|
|
|
|
|
|
|
|
#include "net.h"
|
|
|
|
#include "tic.h"
|
2018-01-10 15:36:49 +01:00
|
|
|
#include "SDL_net.h"
|
2017-09-26 08:59:34 +02:00
|
|
|
|
|
|
|
#include <lua.h>
|
|
|
|
#include <lauxlib.h>
|
|
|
|
#include <lualib.h>
|
|
|
|
|
|
|
|
struct Net
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
u8* buffer;
|
|
|
|
s32 size;
|
|
|
|
char path[FILENAME_MAX];
|
|
|
|
} cache;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
typedef void(*NetResponse)(u8* buffer, s32 size, void* data);
|
|
|
|
|
|
|
|
#if defined(__EMSCRIPTEN__)
|
|
|
|
|
|
|
|
static void getRequest(Net* net, const char* path, NetResponse callback, void* data)
|
|
|
|
{
|
|
|
|
callback(NULL, 0, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
static void netClearCache(Net* net)
|
|
|
|
{
|
|
|
|
if(net->cache.buffer)
|
|
|
|
SDL_free(net->cache.buffer);
|
|
|
|
|
|
|
|
net->cache.buffer = NULL;
|
|
|
|
net->cache.size = 0;
|
|
|
|
memset(net->cache.path, 0, sizeof net->cache.path);
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
u8* data;
|
|
|
|
s32 size;
|
|
|
|
}Buffer;
|
|
|
|
|
|
|
|
static Buffer httpRequest(const char* path, s32 timeout)
|
|
|
|
{
|
|
|
|
Buffer buffer = {.data = NULL, .size = 0};
|
|
|
|
|
|
|
|
{
|
|
|
|
IPaddress ip;
|
|
|
|
|
|
|
|
if (SDLNet_ResolveHost(&ip, TIC_HOST, 80) >= 0)
|
|
|
|
{
|
|
|
|
TCPsocket sock = SDLNet_TCP_Open(&ip);
|
|
|
|
|
|
|
|
if (sock)
|
|
|
|
{
|
|
|
|
SDLNet_SocketSet set = SDLNet_AllocSocketSet(1);
|
|
|
|
|
|
|
|
if(set)
|
|
|
|
{
|
|
|
|
SDLNet_TCP_AddSocket(set, sock);
|
|
|
|
|
|
|
|
{
|
|
|
|
char message[FILENAME_MAX];
|
|
|
|
memset(message, 0, sizeof message);
|
|
|
|
sprintf(message, "GET %s HTTP/1.0\r\nHost: " TIC_HOST "\r\n\r\n", path);
|
|
|
|
SDLNet_TCP_Send(sock, message, (s32)strlen(message) + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(SDLNet_CheckSockets(set, timeout) == 1 && SDLNet_SocketReady(sock))
|
|
|
|
{
|
|
|
|
enum {Size = 4*1024+1};
|
|
|
|
buffer.data = SDL_malloc(Size);
|
|
|
|
s32 size = 0;
|
|
|
|
|
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
size = SDLNet_TCP_Recv(sock, buffer.data + buffer.size, Size-1);
|
|
|
|
|
|
|
|
if(size > 0)
|
|
|
|
{
|
|
|
|
buffer.size += size;
|
|
|
|
buffer.data = SDL_realloc(buffer.data, buffer.size + Size);
|
|
|
|
}
|
|
|
|
else break;
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer.data[buffer.size] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
SDLNet_FreeSocketSet(set);
|
|
|
|
}
|
|
|
|
|
|
|
|
SDLNet_TCP_Close(sock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void getRequest(Net* net, const char* path, NetResponse callback, void* data)
|
|
|
|
{
|
|
|
|
if(strcmp(net->cache.path, path) == 0)
|
|
|
|
{
|
|
|
|
callback(net->cache.buffer, net->cache.size, data);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
netClearCache(net);
|
|
|
|
|
|
|
|
bool done = false;
|
|
|
|
|
|
|
|
enum {Timeout = 3000};
|
|
|
|
Buffer buffer = httpRequest(path, Timeout);
|
|
|
|
|
|
|
|
if(buffer.data && buffer.size)
|
|
|
|
{
|
|
|
|
if(SDL_strstr((char*)buffer.data, "200 OK"))
|
|
|
|
{
|
|
|
|
s32 contentLength = 0;
|
|
|
|
|
|
|
|
{
|
|
|
|
static const char ContentLength[] = "Content-Length:";
|
|
|
|
|
|
|
|
char* start = SDL_strstr((char*)buffer.data, ContentLength);
|
|
|
|
|
|
|
|
if(start)
|
|
|
|
contentLength = SDL_atoi(start + sizeof(ContentLength));
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char Start[] = "\r\n\r\n";
|
|
|
|
u8* start = (u8*)SDL_strstr((char*)buffer.data, Start);
|
|
|
|
|
|
|
|
if(start)
|
|
|
|
{
|
|
|
|
strcpy(net->cache.path, path);
|
|
|
|
net->cache.size = contentLength ? contentLength : buffer.size - (s32)(start - buffer.data);
|
|
|
|
net->cache.buffer = (u8*)SDL_malloc(net->cache.size);
|
|
|
|
SDL_memcpy(net->cache.buffer, start + sizeof Start - 1, net->cache.size);
|
|
|
|
callback(net->cache.buffer, net->cache.size, data);
|
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_free(buffer.data);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!done)
|
|
|
|
callback(NULL, 0, data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static lua_State* netLuaInit(u8* buffer, s32 size)
|
|
|
|
{
|
|
|
|
if (buffer && size)
|
|
|
|
{
|
|
|
|
lua_State* lua = luaL_newstate();
|
|
|
|
|
|
|
|
if(lua)
|
|
|
|
{
|
|
|
|
if(luaL_loadstring(lua, (char*)buffer) == LUA_OK && lua_pcall(lua, 0, LUA_MULTRET, 0) == LUA_OK)
|
|
|
|
return lua;
|
|
|
|
|
|
|
|
else lua_close(lua);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
ListCallback callback;
|
|
|
|
void* data;
|
|
|
|
} NetDirData;
|
|
|
|
|
|
|
|
static void onDirResponse(u8* buffer, s32 size, void* data)
|
|
|
|
{
|
|
|
|
NetDirData* netDirData = (NetDirData*)data;
|
|
|
|
|
|
|
|
lua_State* lua = netLuaInit(buffer, size);
|
|
|
|
|
|
|
|
if(lua)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
lua_getglobal(lua, "folders");
|
|
|
|
|
|
|
|
if(lua_type(lua, -1) == LUA_TTABLE)
|
|
|
|
{
|
|
|
|
s32 count = (s32)lua_rawlen(lua, -1);
|
|
|
|
|
|
|
|
for(s32 i = 1; i <= count; i++)
|
|
|
|
{
|
|
|
|
lua_geti(lua, -1, i);
|
|
|
|
|
|
|
|
{
|
|
|
|
lua_getfield(lua, -1, "name");
|
|
|
|
if(lua_isstring(lua, -1))
|
|
|
|
netDirData->callback(lua_tostring(lua, -1), NULL, 0, netDirData->data, true);
|
|
|
|
|
|
|
|
lua_pop(lua, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
lua_pop(lua, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lua_pop(lua, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
lua_getglobal(lua, "files");
|
|
|
|
|
|
|
|
if(lua_type(lua, -1) == LUA_TTABLE)
|
|
|
|
{
|
|
|
|
s32 count = (s32)lua_rawlen(lua, -1);
|
|
|
|
|
|
|
|
for(s32 i = 1; i <= count; i++)
|
|
|
|
{
|
|
|
|
lua_geti(lua, -1, i);
|
|
|
|
|
|
|
|
char hash[FILENAME_MAX] = {0};
|
|
|
|
char name[FILENAME_MAX] = {0};
|
|
|
|
|
|
|
|
{
|
|
|
|
lua_getfield(lua, -1, "hash");
|
|
|
|
if(lua_isstring(lua, -1))
|
|
|
|
strcpy(hash, lua_tostring(lua, -1));
|
|
|
|
|
|
|
|
lua_pop(lua, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
lua_getfield(lua, -1, "name");
|
|
|
|
|
|
|
|
if(lua_isstring(lua, -1))
|
|
|
|
strcpy(name, lua_tostring(lua, -1));
|
|
|
|
|
|
|
|
lua_pop(lua, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
lua_getfield(lua, -1, "id");
|
|
|
|
|
|
|
|
if(lua_isinteger(lua, -1))
|
|
|
|
netDirData->callback(name, hash, lua_tointeger(lua, -1), netDirData->data, false);
|
|
|
|
|
|
|
|
lua_pop(lua, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
lua_pop(lua, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lua_pop(lua, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
lua_close(lua);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void netDirRequest(Net* net, const char* path, ListCallback callback, void* data)
|
|
|
|
{
|
|
|
|
char request[FILENAME_MAX] = {'\0'};
|
|
|
|
sprintf(request, "/api?fn=dir&path=%s", path);
|
|
|
|
|
|
|
|
NetDirData netDirData = {callback, data};
|
|
|
|
getRequest(net, request, onDirResponse, &netDirData);
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
void* buffer;
|
|
|
|
s32* size;
|
|
|
|
} NetGetData;
|
|
|
|
|
|
|
|
static void onGetResponse(u8* buffer, s32 size, void* data)
|
|
|
|
{
|
|
|
|
NetGetData* netGetData = (NetGetData*)data;
|
|
|
|
|
|
|
|
netGetData->buffer = SDL_malloc(size);
|
|
|
|
*netGetData->size = size;
|
|
|
|
SDL_memcpy(netGetData->buffer, buffer, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
void* netGetRequest(Net* net, const char* path, s32* size)
|
|
|
|
{
|
|
|
|
NetGetData netGetData = {NULL, size};
|
|
|
|
getRequest(net, path, onGetResponse, &netGetData);
|
|
|
|
|
|
|
|
return netGetData.buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
NetVersion netVersionRequest(Net* net)
|
|
|
|
{
|
|
|
|
NetVersion version =
|
|
|
|
{
|
|
|
|
.major = TIC_VERSION_MAJOR,
|
|
|
|
.minor = TIC_VERSION_MINOR,
|
|
|
|
.patch = TIC_VERSION_PATCH,
|
|
|
|
};
|
|
|
|
|
|
|
|
s32 size = 0;
|
|
|
|
void* buffer = netGetRequest(net, "/api?fn=version", &size);
|
|
|
|
|
|
|
|
if(buffer && size)
|
|
|
|
{
|
|
|
|
lua_State* lua = netLuaInit(buffer, size);
|
|
|
|
|
|
|
|
if(lua)
|
|
|
|
{
|
|
|
|
static const char* Fields[] = {"major", "minor", "patch"};
|
|
|
|
|
|
|
|
for(s32 i = 0; i < COUNT_OF(Fields); i++)
|
|
|
|
{
|
|
|
|
lua_getglobal(lua, Fields[i]);
|
|
|
|
|
|
|
|
if(lua_isinteger(lua, -1))
|
|
|
|
((s32*)&version)[i] = (s32)lua_tointeger(lua, -1);
|
|
|
|
|
|
|
|
lua_pop(lua, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
lua_close(lua);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
|
|
|
Net* createNet()
|
|
|
|
{
|
2018-01-10 15:36:49 +01:00
|
|
|
SDLNet_Init();
|
|
|
|
|
2017-09-26 08:59:34 +02:00
|
|
|
Net* net = (Net*)SDL_malloc(sizeof(Net));
|
|
|
|
|
|
|
|
*net = (Net)
|
|
|
|
{
|
|
|
|
.cache =
|
|
|
|
{
|
|
|
|
.buffer = NULL,
|
|
|
|
.size = 0,
|
|
|
|
.path = {0},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
return net;
|
2018-01-10 15:36:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void closeNet(Net* net)
|
|
|
|
{
|
|
|
|
SDL_free(net);
|
|
|
|
|
|
|
|
SDLNet_Quit();
|
2017-09-26 08:59:34 +02:00
|
|
|
}
|