aboutsummaryrefslogtreecommitdiff
path: root/lpm.c
diff options
context:
space:
mode:
authorAdam <adamdharrison@gmail.com>2022-09-13 22:39:23 -0400
committerAdam <adamdharrison@gmail.com>2022-09-13 22:39:23 -0400
commitfbb86cf434020c10f03a395a005226fd5bc5e4fb (patch)
tree82aa8319798da08ca73902d1d6efff3ef1ea97b6 /lpm.c
parent9f3234c73907fbf6184314e6c8ea2cf3d5818aa3 (diff)
downloadlite-xl-plugin-manager-fbb86cf434020c10f03a395a005226fd5bc5e4fb.tar.gz
lite-xl-plugin-manager-fbb86cf434020c10f03a395a005226fd5bc5e4fb.zip
Added in curl, and differentiated between the different types of objects in the manifest.
Diffstat (limited to 'lpm.c')
-rw-r--r--lpm.c96
1 files changed, 79 insertions, 17 deletions
diff --git a/lpm.c b/lpm.c
index 11e1373..9d9fafa 100644
--- a/lpm.c
+++ b/lpm.c
@@ -24,14 +24,35 @@ static char hexDigits[] = "0123456789abcdef";
static int lpm_hash(lua_State* L) {
size_t len;
const char* data = luaL_checklstring(L, 1, &len);
+ const char* type = luaL_checkstring(L, 2);
unsigned char buffer[SHA256_DIGEST_LENGTH];
+ SHA256_CTX c
+ SHA256_Init(&c);
+ if (strcmp(type, "file") == 0) {
+ FILE* file = fopen(data, "rb");
+ if (!file) {
+ SHA256_Final(buffer, &c)
+ return luaL_error(L, "can't open %s", data);
+ }
+ while (true) {
+ unsigned char chunk[4096];
+ size_t bytes = fread(chunk, 1, sizeof(chunk), file);
+ SHA256_Update(&c, chunk, bytes);
+ if (bytes < 4096)
+ break;
+ }
+ fclose(file);
+ } else {
+ SHA256_Update(&c, data, len);
+ }
+ SHA256_Final(buffer, &c)
char hexBuffer[SHA256_DIGEST_LENGTH * 2];
SHA256(data, len, buffer);
- for (size_t i = 0; i < len; ++i) {
+ for (size_t i = 0; i < SHA256_DIGEST_LENGTH; ++i) {
hexBuffer[i*2+0] = hexDigits[buffer[i] >> 4];
hexBuffer[i*2+1] = hexDigits[buffer[i] & 0xF];
}
- lua_pushlstring(L, buffer, SHA256_DIGEST_LENGTH * 2);
+ lua_pushlstring(L, hexBuffer, SHA256_DIGEST_LENGTH * 2);
return 1;
}
@@ -363,17 +384,20 @@ static int lpm_fetch(lua_State* L) {
}
+static CURL *curl;
static int lpm_set_certs(lua_State* L) {
const char* type = luaL_checkstring(L, 1);
const char* path = luaL_checkstring(L, 2);
- if (strcmp(type, "dir") == 0)
+ if (strcmp(type, "dir") == 0) {
git_libgit2_opts(GIT_OPT_SET_SSL_CERT_LOCATIONS, NULL, path);
- else
+ curl_easy_setopt(curl, CURLOPT_CAINFO, path);
+ } else {
git_libgit2_opts(GIT_OPT_SET_SSL_CERT_LOCATIONS, path, NULL);
+ curl_easy_setopt(curl, CURLOPT_CAPATH, path);
+ }
return 0;
}
-static CURL *curl;
static int lpm_status(lua_State* L) {
const char* path = luaL_checkstring(L, 1);
git_repository* repository;
@@ -398,17 +422,33 @@ static size_t lpm_curl_write_callback(char *ptr, size_t size, size_t nmemb, void
static int lpm_get(lua_State* L) {
const char* url = luaL_checkstring(L, 1);
- curl_easy_reset(curl);
+ const char* path = luaL_optstring(L, 2, NULL);
+ // curl_easy_reset(curl);
curl_easy_setopt(curl, CURLOPT_URL, url);
- CURLcode res = curl_easy_perform(curl);
- if (res != CURLE_OK)
- return luaL_error(L, "curl error: %d", res);
- luaL_Buffer B;
- luaL_buffinit(L, &B);
- curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, lpm_curl_write_callback);
- curl_easy_setopt(curl, CURLOPT_WRITEDATA, &B);
- luaL_pushresult(&B);
- lua_newtable(L);
+ if (path) {
+ FILE* file = fopen(path, "wb");
+ curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, fwrite);
+ curl_easy_setopt(curl, CURLOPT_WRITEDATA, file);
+ CURLcode res = curl_easy_perform(curl);
+ if (res != CURLE_OK) {
+ fclose(file);
+ return luaL_error(L, "curl error: %d", res);
+ }
+ fclose(file);
+ lua_pushnil(L);
+ lua_newtable(L);
+ return 2;
+ } else {
+ luaL_Buffer B;
+ luaL_buffinit(L, &B);
+ curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, lpm_curl_write_callback);
+ curl_easy_setopt(curl, CURLOPT_WRITEDATA, &B);
+ CURLcode res = curl_easy_perform(curl);
+ if (res != CURLE_OK)
+ return luaL_error(L, "curl error: %d", res);
+ luaL_pushresult(&B);
+ lua_newtable(L);
+ }
return 2;
}
@@ -432,6 +472,26 @@ static const luaL_Reg system_lib[] = {
#define LPM_VERSION "unknown"
#endif
+
+#ifndef LITE_ARCH_TUPLE
+ #if __x86_64__ || _WIN64 || __MINGW64__
+ #define ARCH_PROCESSOR "x86_64"
+ #else
+ #define ARCH_PROCESSOR "x86"
+ #endif
+ #if _WIN32
+ #define ARCH_PLATFORM "windows"
+ #elif __linux__
+ #define ARCH_PLATFORM "linux"
+ #elif __APPLE__
+ #define ARCH_PLATFORM "darwin"
+ #else
+ #error "Please define -DLITE_ARCH_TUPLE."
+ #endif
+ #define LITE_ARCH_TUPLE ARCH_PROCESSOR "-" ARCH_PLATFORM
+#endif
+
+
extern const char lpm_lua[];
extern unsigned int lpm_lua_len;
int main(int argc, char* argv[]) {
@@ -459,8 +519,10 @@ int main(int argc, char* argv[]) {
#endif
lua_setglobal(L, "PATHSEP");
lua_setglobal(L, "PLATFORM");
- // if (luaL_loadbuffer(L, lpm_lua, lpm_lua_len, "lpm.lua")) {
- if (luaL_loadfile(L, "lpm.lua")) {
+ lua_pushliteral(L, LITE_ARCH_TUPLE);
+ lua_setglobal(L, "ARCH");
+ if (luaL_loadbuffer(L, lpm_lua, lpm_lua_len, "lpm.lua")) {
+ //if (luaL_loadfile(L, "lpm.lua")) {
fprintf(stderr, "internal error when starting the application: %s\n", lua_tostring(L, -1));
return -1;
}