]> git.lizzy.rs Git - minetest.git/blob - src/script/lua_api/l_http.cpp
Fix curl_timeout being ignored for Lua HTTP fetches
[minetest.git] / src / script / lua_api / l_http.cpp
1 /*
2 Minetest
3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "lua_api/l_internal.h"
21 #include "common/c_converter.h"
22 #include "common/c_content.h"
23 #include "lua_api/l_http.h"
24 #include "httpfetch.h"
25 #include "settings.h"
26 #include "debug.h"
27 #include "log.h"
28
29 #include <algorithm>
30 #include <iomanip>
31 #include <cctype>
32
33 #define HTTP_API(name) \
34         lua_pushstring(L, #name); \
35         lua_pushcfunction(L, l_http_##name); \
36         lua_settable(L, -3);
37
38 #if USE_CURL
39 void ModApiHttp::read_http_fetch_request(lua_State *L, HTTPFetchRequest &req)
40 {
41         luaL_checktype(L, 1, LUA_TTABLE);
42
43         req.caller = httpfetch_caller_alloc_secure();
44         getstringfield(L, 1, "url", req.url);
45         getstringfield(L, 1, "user_agent", req.useragent);
46         req.multipart = getboolfield_default(L, 1, "multipart", false);
47         if (getintfield(L, 1, "timeout", req.timeout))
48                 req.timeout *= 1000;
49
50         lua_getfield(L, 1, "method");
51         if (lua_isstring(L, -1)) {
52                 std::string mth = getstringfield_default(L, 1, "method", "");
53                 if (mth == "GET")
54                         req.method = HTTP_GET;
55                 else if (mth == "POST")
56                         req.method = HTTP_POST;
57                 else if (mth == "PUT")
58                         req.method = HTTP_PUT;
59                 else if (mth == "DELETE")
60                         req.method = HTTP_DELETE;
61         }
62         lua_pop(L, 1);
63
64         // post_data: if table, post form data, otherwise raw data DEPRECATED use data and method instead
65         lua_getfield(L, 1, "post_data");
66         if (lua_isnil(L, 2)) {
67                 lua_pop(L, 1);
68                 lua_getfield(L, 1, "data");
69         }
70         else {
71                 req.method = HTTP_POST;
72         }
73
74         if (lua_istable(L, 2)) {
75                 lua_pushnil(L);
76                 while (lua_next(L, 2) != 0) {
77                         req.fields[readParam<std::string>(L, -2)] = readParam<std::string>(L, -1);
78                         lua_pop(L, 1);
79                 }
80         } else if (lua_isstring(L, 2)) {
81                 req.raw_data = readParam<std::string>(L, 2);
82         }
83
84         lua_pop(L, 1);
85
86         lua_getfield(L, 1, "extra_headers");
87         if (lua_istable(L, 2)) {
88                 lua_pushnil(L);
89                 while (lua_next(L, 2) != 0) {
90                         req.extra_headers.emplace_back(readParam<std::string>(L, -1));
91                         lua_pop(L, 1);
92                 }
93         }
94         lua_pop(L, 1);
95 }
96
97 void ModApiHttp::push_http_fetch_result(lua_State *L, HTTPFetchResult &res, bool completed)
98 {
99         lua_newtable(L);
100         setboolfield(L, -1, "succeeded", res.succeeded);
101         setboolfield(L, -1, "timeout", res.timeout);
102         setboolfield(L, -1, "completed", completed);
103         setintfield(L, -1, "code", res.response_code);
104         setstringfield(L, -1, "data", res.data);
105 }
106
107 // http_api.fetch_sync(HTTPRequest definition)
108 int ModApiHttp::l_http_fetch_sync(lua_State *L)
109 {
110         NO_MAP_LOCK_REQUIRED;
111
112         HTTPFetchRequest req;
113         read_http_fetch_request(L, req);
114
115         infostream << "Mod performs HTTP request with URL " << req.url << std::endl;
116
117         HTTPFetchResult res;
118         httpfetch_sync(req, res);
119
120         push_http_fetch_result(L, res, true);
121
122         return 1;
123 }
124
125 // http_api.fetch_async(HTTPRequest definition)
126 int ModApiHttp::l_http_fetch_async(lua_State *L)
127 {
128         NO_MAP_LOCK_REQUIRED;
129
130         HTTPFetchRequest req;
131         read_http_fetch_request(L, req);
132
133         infostream << "Mod performs HTTP request with URL " << req.url << std::endl;
134         httpfetch_async(req);
135
136         // Convert handle to hex string since lua can't handle 64-bit integers
137         std::stringstream handle_conversion_stream;
138         handle_conversion_stream << std::hex << req.caller;
139         std::string caller_handle(handle_conversion_stream.str());
140
141         lua_pushstring(L, caller_handle.c_str());
142         return 1;
143 }
144
145 // http_api.fetch_async_get(handle)
146 int ModApiHttp::l_http_fetch_async_get(lua_State *L)
147 {
148         NO_MAP_LOCK_REQUIRED;
149
150         std::string handle_str = luaL_checkstring(L, 1);
151
152         // Convert hex string back to 64-bit handle
153         u64 handle;
154         std::stringstream handle_conversion_stream;
155         handle_conversion_stream << std::hex << handle_str;
156         handle_conversion_stream >> handle;
157
158         HTTPFetchResult res;
159         bool completed = httpfetch_async_get(handle, res);
160
161         push_http_fetch_result(L, res, completed);
162
163         return 1;
164 }
165
166 int ModApiHttp::l_request_http_api(lua_State *L)
167 {
168         NO_MAP_LOCK_REQUIRED;
169
170         // We have to make sure that this function is being called directly by
171         // a mod, otherwise a malicious mod could override this function and
172         // steal its return value.
173         lua_Debug info;
174
175         // Make sure there's only one item below this function on the stack...
176         if (lua_getstack(L, 2, &info)) {
177                 return 0;
178         }
179         FATAL_ERROR_IF(!lua_getstack(L, 1, &info), "lua_getstack() failed");
180         FATAL_ERROR_IF(!lua_getinfo(L, "S", &info), "lua_getinfo() failed");
181
182         // ...and that that item is the main file scope.
183         if (strcmp(info.what, "main") != 0) {
184                 return 0;
185         }
186
187         // Mod must be listed in secure.http_mods or secure.trusted_mods
188         lua_rawgeti(L, LUA_REGISTRYINDEX, CUSTOM_RIDX_CURRENT_MOD_NAME);
189         if (!lua_isstring(L, -1)) {
190                 return 0;
191         }
192
193         std::string mod_name = readParam<std::string>(L, -1);
194         std::string http_mods = g_settings->get("secure.http_mods");
195         http_mods.erase(std::remove(http_mods.begin(), http_mods.end(), ' '), http_mods.end());
196         std::vector<std::string> mod_list_http = str_split(http_mods, ',');
197
198         std::string trusted_mods = g_settings->get("secure.trusted_mods");
199         trusted_mods.erase(std::remove(trusted_mods.begin(), trusted_mods.end(), ' '), trusted_mods.end());
200         std::vector<std::string> mod_list_trusted = str_split(trusted_mods, ',');
201
202         mod_list_http.insert(mod_list_http.end(), mod_list_trusted.begin(), mod_list_trusted.end());
203         if (std::find(mod_list_http.begin(), mod_list_http.end(), mod_name) == mod_list_http.end()) {
204                 lua_pushnil(L);
205                 return 1;
206         }
207
208         lua_getglobal(L, "core");
209         lua_getfield(L, -1, "http_add_fetch");
210
211         lua_newtable(L);
212         HTTP_API(fetch_async);
213         HTTP_API(fetch_async_get);
214
215         // Stack now looks like this:
216         // <core.http_add_fetch> <table with fetch_async, fetch_async_get>
217         // Now call core.http_add_fetch to append .fetch(request, callback) to table
218         lua_call(L, 1, 1);
219
220         return 1;
221 }
222
223 int ModApiHttp::l_get_http_api(lua_State *L)
224 {
225         NO_MAP_LOCK_REQUIRED;
226
227         lua_newtable(L);
228         HTTP_API(fetch_async);
229         HTTP_API(fetch_async_get);
230         HTTP_API(fetch_sync);
231
232         return 1;
233 }
234
235 #endif
236
237 void ModApiHttp::Initialize(lua_State *L, int top)
238 {
239 #if USE_CURL
240
241         bool isMainmenu = false;
242 #ifndef SERVER
243         isMainmenu = ModApiBase::getGuiEngine(L) != nullptr;
244 #endif
245
246         if (isMainmenu) {
247                 API_FCT(get_http_api);
248         } else {
249                 API_FCT(request_http_api);
250         }
251
252 #endif
253 }
254
255 void ModApiHttp::InitializeAsync(lua_State *L, int top)
256 {
257 #if USE_CURL
258         API_FCT(get_http_api);
259 #endif
260 }