2013-08-11 04:09:45 +02:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2017-08-17 22:19:39 +02:00
|
|
|
#pragma once
|
2013-08-11 04:09:45 +02:00
|
|
|
|
|
|
|
#include "lua_api/l_base.h"
|
|
|
|
|
2013-11-26 18:15:31 +01:00
|
|
|
class AsyncEngine;
|
|
|
|
|
2017-04-07 08:50:17 +02:00
|
|
|
class ModApiUtil : public ModApiBase
|
|
|
|
{
|
2013-08-11 04:09:45 +02:00
|
|
|
private:
|
|
|
|
/*
|
|
|
|
NOTE:
|
2014-04-28 03:02:48 +02:00
|
|
|
The functions in this module are available in the in-game API
|
|
|
|
as well as in the mainmenu API.
|
2013-08-11 04:09:45 +02:00
|
|
|
|
|
|
|
All functions that don't require either a Server or
|
|
|
|
GUIEngine instance should be in here.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// log([level,] text)
|
|
|
|
// Writes a line to the logger.
|
|
|
|
// The one-argument version logs to infostream.
|
2015-07-25 07:43:32 +02:00
|
|
|
// The two-argument version accepts a log level.
|
2013-08-11 04:09:45 +02:00
|
|
|
static int l_log(lua_State *L);
|
|
|
|
|
2015-10-26 08:45:55 +01:00
|
|
|
// get us precision time
|
|
|
|
static int l_get_us_time(lua_State *L);
|
|
|
|
|
2013-09-02 02:01:49 +02:00
|
|
|
// parse_json(str[, nullvalue])
|
|
|
|
static int l_parse_json(lua_State *L);
|
|
|
|
|
2013-12-18 22:46:53 +01:00
|
|
|
// write_json(data[, styled])
|
|
|
|
static int l_write_json(lua_State *L);
|
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
// get_dig_params(groups, tool_capabilities[, time_from_last_punch])
|
|
|
|
static int l_get_dig_params(lua_State *L);
|
|
|
|
|
|
|
|
// get_hit_params(groups, tool_capabilities[, time_from_last_punch])
|
|
|
|
static int l_get_hit_params(lua_State *L);
|
|
|
|
|
Add minetest.check_password_entry callback
Gives a convenient way to check a player's password.
This entirely bypasses the SRP protocol, so should be used
with great care.
This function is not intended to be used
in-game, but solely by external protocols, where no
authentication of the minetest engine is provided, and
also only for protocols, in which the user already gives the
server the plaintext password.
Examples for good use are the classical http form, or irc,
an example for a bad use is a password change dialog inside
formspec.
Users should be aware that they lose the advantages of the SRP
protocol if they enter their passwords for servers outside the
normal entry box, like in in-game formspec menus,
or through irc /msg s,
This patch also fixes an auth.h mistake which has mixed up the
order of params inside the decode_srp_verifier_and_salt function.
Zeno-: Added errorstream message for invalid format when I committed
2016-05-30 15:27:48 +02:00
|
|
|
// check_password_entry(name, entry, password)
|
|
|
|
static int l_check_password_entry(lua_State *L);
|
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
// get_password_hash(name, raw_password)
|
|
|
|
static int l_get_password_hash(lua_State *L);
|
|
|
|
|
2013-09-10 19:24:17 +02:00
|
|
|
// is_yes(arg)
|
2013-09-09 22:50:25 +02:00
|
|
|
static int l_is_yes(lua_State *L);
|
|
|
|
|
2018-05-31 22:52:08 +02:00
|
|
|
// is_nan(arg)
|
|
|
|
static int l_is_nan(lua_State *L);
|
|
|
|
|
2014-09-09 21:17:01 +02:00
|
|
|
// get_builtin_path()
|
2014-04-27 23:55:49 +02:00
|
|
|
static int l_get_builtin_path(lua_State *L);
|
|
|
|
|
2014-09-14 23:42:08 +02:00
|
|
|
// compress(data, method, ...)
|
|
|
|
static int l_compress(lua_State *L);
|
|
|
|
|
|
|
|
// decompress(data, method, ...)
|
|
|
|
static int l_decompress(lua_State *L);
|
|
|
|
|
2014-09-09 21:17:01 +02:00
|
|
|
// mkdir(path)
|
|
|
|
static int l_mkdir(lua_State *L);
|
|
|
|
|
2015-05-04 20:59:13 +02:00
|
|
|
// get_dir_list(path, is_dir)
|
|
|
|
static int l_get_dir_list(lua_State *L);
|
|
|
|
|
2017-11-07 11:46:06 +01:00
|
|
|
// safe_file_write(path, content)
|
|
|
|
static int l_safe_file_write(lua_State *L);
|
|
|
|
|
2014-09-10 03:52:07 +02:00
|
|
|
// request_insecure_environment()
|
|
|
|
static int l_request_insecure_environment(lua_State *L);
|
|
|
|
|
2016-05-28 05:37:28 +02:00
|
|
|
// encode_base64(string)
|
|
|
|
static int l_encode_base64(lua_State *L);
|
|
|
|
|
|
|
|
// decode_base64(string)
|
|
|
|
static int l_decode_base64(lua_State *L);
|
|
|
|
|
2014-05-07 04:31:35 +02:00
|
|
|
// get_version()
|
|
|
|
static int l_get_version(lua_State *L);
|
|
|
|
|
2017-10-30 08:18:18 +01:00
|
|
|
// sha1(string, raw)
|
|
|
|
static int l_sha1(lua_State *L);
|
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
public:
|
2014-12-12 20:49:19 +01:00
|
|
|
static void Initialize(lua_State *L, int top);
|
|
|
|
static void InitializeAsync(lua_State *L, int top);
|
2017-01-21 22:44:37 +01:00
|
|
|
static void InitializeClient(lua_State *L, int top);
|
|
|
|
|
2017-04-07 08:50:17 +02:00
|
|
|
static void InitializeAsync(AsyncEngine &engine);
|
2013-08-11 04:09:45 +02:00
|
|
|
};
|