]> git.lizzy.rs Git - dragonfireclient.git/blob - builtin/game/chatcommands.lua
Window size: use 1024x600 to avoid a smaller UI
[dragonfireclient.git] / builtin / game / chatcommands.lua
1 -- Minetest: builtin/game/chatcommands.lua
2
3 --
4 -- Chat command handler
5 --
6
7 core.chatcommands = core.registered_chatcommands -- BACKWARDS COMPATIBILITY
8
9 core.register_on_chat_message(function(name, message)
10         if message:sub(1,1) ~= "/" then
11                 return
12         end
13
14         local cmd, param = string.match(message, "^/([^ ]+) *(.*)")
15         if not cmd then
16                 core.chat_send_player(name, "-!- Empty command")
17                 return true
18         end
19
20         param = param or ""
21
22         local cmd_def = core.registered_chatcommands[cmd]
23         if not cmd_def then
24                 core.chat_send_player(name, "-!- Invalid command: " .. cmd)
25                 return true
26         end
27         local has_privs, missing_privs = core.check_player_privs(name, cmd_def.privs)
28         if has_privs then
29                 core.set_last_run_mod(cmd_def.mod_origin)
30                 local success, message = cmd_def.func(name, param)
31                 if message then
32                         core.chat_send_player(name, message)
33                 end
34         else
35                 core.chat_send_player(name, "You don't have permission"
36                                 .. " to run this command (missing privileges: "
37                                 .. table.concat(missing_privs, ", ") .. ")")
38         end
39         return true  -- Handled chat message
40 end)
41
42 if core.settings:get_bool("profiler.load") then
43         -- Run after register_chatcommand and its register_on_chat_message
44         -- Before any chattcommands that should be profiled
45         profiler.init_chatcommand()
46 end
47
48 -- Parses a "range" string in the format of "here (number)" or
49 -- "(x1, y1, z1) (x2, y2, z2)", returning two position vectors
50 local function parse_range_str(player_name, str)
51         local p1, p2
52         local args = str:split(" ")
53
54         if args[1] == "here" then
55                 p1, p2 = core.get_player_radius_area(player_name, tonumber(args[2]))
56                 if p1 == nil then
57                         return false, "Unable to get player " .. player_name .. " position"
58                 end
59         else
60                 p1, p2 = core.string_to_area(str)
61                 if p1 == nil then
62                         return false, "Incorrect area format. Expected: (x1,y1,z1) (x2,y2,z2)"
63                 end
64         end
65
66         return p1, p2
67 end
68
69 --
70 -- Chat commands
71 --
72 core.register_chatcommand("me", {
73         params = "<action>",
74         description = "Display chat action (e.g., '/me orders a pizza' displays"
75                         .. " '<player name> orders a pizza')",
76         privs = {shout=true},
77         func = function(name, param)
78                 core.chat_send_all("* " .. name .. " " .. param)
79         end,
80 })
81
82 core.register_chatcommand("admin", {
83         description = "Show the name of the server owner",
84         func = function(name)
85                 local admin = minetest.settings:get("name")
86                 if admin then
87                         return true, "The administrator of this server is "..admin.."."
88                 else
89                         return false, "There's no administrator named in the config file."
90                 end
91         end,
92 })
93
94 core.register_chatcommand("privs", {
95         params = "[<name>]",
96         description = "Print privileges of player",
97         func = function(caller, param)
98                 param = param:trim()
99                 local name = (param ~= "" and param or caller)
100                 return true, "Privileges of " .. name .. ": "
101                         .. core.privs_to_string(
102                                 core.get_player_privs(name), ' ')
103         end,
104 })
105
106 local function handle_grant_command(caller, grantname, grantprivstr)
107         local caller_privs = minetest.get_player_privs(caller)
108         if not (caller_privs.privs or caller_privs.basic_privs) then
109                 return false, "Your privileges are insufficient."
110         end
111
112         if not core.get_auth_handler().get_auth(grantname) then
113                 return false, "Player " .. grantname .. " does not exist."
114         end
115         local grantprivs = core.string_to_privs(grantprivstr)
116         if grantprivstr == "all" then
117                 grantprivs = core.registered_privileges
118         end
119         local privs = core.get_player_privs(grantname)
120         local privs_unknown = ""
121         local basic_privs =
122                 core.string_to_privs(core.settings:get("basic_privs") or "interact,shout")
123         for priv, _ in pairs(grantprivs) do
124                 if not basic_privs[priv] and not caller_privs.privs then
125                         return false, "Your privileges are insufficient."
126                 end
127                 if not core.registered_privileges[priv] then
128                         privs_unknown = privs_unknown .. "Unknown privilege: " .. priv .. "\n"
129                 end
130                 privs[priv] = true
131         end
132         if privs_unknown ~= "" then
133                 return false, privs_unknown
134         end
135         core.set_player_privs(grantname, privs)
136         core.log("action", caller..' granted ('..core.privs_to_string(grantprivs, ', ')..') privileges to '..grantname)
137         if grantname ~= caller then
138                 core.chat_send_player(grantname, caller
139                                 .. " granted you privileges: "
140                                 .. core.privs_to_string(grantprivs, ' '))
141         end
142         return true, "Privileges of " .. grantname .. ": "
143                 .. core.privs_to_string(
144                         core.get_player_privs(grantname), ' ')
145 end
146
147 core.register_chatcommand("grant", {
148         params = "<name> (<privilege> | all)",
149         description = "Give privilege to player",
150         func = function(name, param)
151                 local grantname, grantprivstr = string.match(param, "([^ ]+) (.+)")
152                 if not grantname or not grantprivstr then
153                         return false, "Invalid parameters (see /help grant)"
154                 end
155                 return handle_grant_command(name, grantname, grantprivstr)
156         end,
157 })
158
159 core.register_chatcommand("grantme", {
160         params = "<privilege> | all",
161         description = "Grant privileges to yourself",
162         func = function(name, param)
163                 if param == "" then
164                         return false, "Invalid parameters (see /help grantme)"
165                 end
166                 return handle_grant_command(name, name, param)
167         end,
168 })
169
170 core.register_chatcommand("revoke", {
171         params = "<name> (<privilege> | all)",
172         description = "Remove privilege from player",
173         privs = {},
174         func = function(name, param)
175                 if not core.check_player_privs(name, {privs=true}) and
176                                 not core.check_player_privs(name, {basic_privs=true}) then
177                         return false, "Your privileges are insufficient."
178                 end
179                 local revoke_name, revoke_priv_str = string.match(param, "([^ ]+) (.+)")
180                 if not revoke_name or not revoke_priv_str then
181                         return false, "Invalid parameters (see /help revoke)"
182                 elseif not core.get_auth_handler().get_auth(revoke_name) then
183                         return false, "Player " .. revoke_name .. " does not exist."
184                 end
185                 local revoke_privs = core.string_to_privs(revoke_priv_str)
186                 local privs = core.get_player_privs(revoke_name)
187                 local basic_privs =
188                         core.string_to_privs(core.settings:get("basic_privs") or "interact,shout")
189                 for priv, _ in pairs(revoke_privs) do
190                         if not basic_privs[priv] and
191                                         not core.check_player_privs(name, {privs=true}) then
192                                 return false, "Your privileges are insufficient."
193                         end
194                 end
195                 if revoke_priv_str == "all" then
196                         privs = {}
197                 else
198                         for priv, _ in pairs(revoke_privs) do
199                                 privs[priv] = nil
200                         end
201                 end
202                 core.set_player_privs(revoke_name, privs)
203                 core.log("action", name..' revoked ('
204                                 ..core.privs_to_string(revoke_privs, ', ')
205                                 ..') privileges from '..revoke_name)
206                 if revoke_name ~= name then
207                         core.chat_send_player(revoke_name, name
208                                         .. " revoked privileges from you: "
209                                         .. core.privs_to_string(revoke_privs, ' '))
210                 end
211                 return true, "Privileges of " .. revoke_name .. ": "
212                         .. core.privs_to_string(
213                                 core.get_player_privs(revoke_name), ' ')
214         end,
215 })
216
217 core.register_chatcommand("setpassword", {
218         params = "<name> <password>",
219         description = "Set player's password",
220         privs = {password=true},
221         func = function(name, param)
222                 local toname, raw_password = string.match(param, "^([^ ]+) +(.+)$")
223                 if not toname then
224                         toname = param:match("^([^ ]+) *$")
225                         raw_password = nil
226                 end
227                 if not toname then
228                         return false, "Name field required"
229                 end
230                 local act_str_past = "?"
231                 local act_str_pres = "?"
232                 if not raw_password then
233                         core.set_player_password(toname, "")
234                         act_str_past = "cleared"
235                         act_str_pres = "clears"
236                 else
237                         core.set_player_password(toname,
238                                         core.get_password_hash(toname,
239                                                         raw_password))
240                         act_str_past = "set"
241                         act_str_pres = "sets"
242                 end
243                 if toname ~= name then
244                         core.chat_send_player(toname, "Your password was "
245                                         .. act_str_past .. " by " .. name)
246                 end
247
248                 core.log("action", name .. " " .. act_str_pres
249                 .. " password of " .. toname .. ".")
250
251                 return true, "Password of player \"" .. toname .. "\" " .. act_str_past
252         end,
253 })
254
255 core.register_chatcommand("clearpassword", {
256         params = "<name>",
257         description = "Set empty password",
258         privs = {password=true},
259         func = function(name, param)
260                 local toname = param
261                 if toname == "" then
262                         return false, "Name field required"
263                 end
264                 core.set_player_password(toname, '')
265
266                 core.log("action", name .. " clears password of " .. toname .. ".")
267
268                 return true, "Password of player \"" .. toname .. "\" cleared"
269         end,
270 })
271
272 core.register_chatcommand("auth_reload", {
273         params = "",
274         description = "Reload authentication data",
275         privs = {server=true},
276         func = function(name, param)
277                 local done = core.auth_reload()
278                 return done, (done and "Done." or "Failed.")
279         end,
280 })
281
282 core.register_chatcommand("remove_player", {
283         params = "<name>",
284         description = "Remove player data",
285         privs = {server=true},
286         func = function(name, param)
287                 local toname = param
288                 if toname == "" then
289                         return false, "Name field required"
290                 end
291
292                 local rc = core.remove_player(toname)
293
294                 if rc == 0 then
295                         core.log("action", name .. " removed player data of " .. toname .. ".")
296                         return true, "Player \"" .. toname .. "\" removed."
297                 elseif rc == 1 then
298                         return true, "No such player \"" .. toname .. "\" to remove."
299                 elseif rc == 2 then
300                         return true, "Player \"" .. toname .. "\" is connected, cannot remove."
301                 end
302
303                 return false, "Unhandled remove_player return code " .. rc .. ""
304         end,
305 })
306
307 core.register_chatcommand("teleport", {
308         params = "<X>,<Y>,<Z> | <to_name> | (<name> <X>,<Y>,<Z>) | (<name> <to_name>)",
309         description = "Teleport to player or position",
310         privs = {teleport=true},
311         func = function(name, param)
312                 -- Returns (pos, true) if found, otherwise (pos, false)
313                 local function find_free_position_near(pos)
314                         local tries = {
315                                 {x=1,y=0,z=0},
316                                 {x=-1,y=0,z=0},
317                                 {x=0,y=0,z=1},
318                                 {x=0,y=0,z=-1},
319                         }
320                         for _, d in ipairs(tries) do
321                                 local p = {x = pos.x+d.x, y = pos.y+d.y, z = pos.z+d.z}
322                                 local n = core.get_node_or_nil(p)
323                                 if n and n.name then
324                                         local def = core.registered_nodes[n.name]
325                                         if def and not def.walkable then
326                                                 return p, true
327                                         end
328                                 end
329                         end
330                         return pos, false
331                 end
332
333                 local teleportee = nil
334                 local p = {}
335                 p.x, p.y, p.z = string.match(param, "^([%d.-]+)[, ] *([%d.-]+)[, ] *([%d.-]+)$")
336                 p.x = tonumber(p.x)
337                 p.y = tonumber(p.y)
338                 p.z = tonumber(p.z)
339                 if p.x and p.y and p.z then
340                         local lm = 31000
341                         if p.x < -lm or p.x > lm or p.y < -lm or p.y > lm or p.z < -lm or p.z > lm then
342                                 return false, "Cannot teleport out of map bounds!"
343                         end
344                         teleportee = core.get_player_by_name(name)
345                         if teleportee then
346                                 teleportee:setpos(p)
347                                 return true, "Teleporting to "..core.pos_to_string(p)
348                         end
349                 end
350
351                 local teleportee = nil
352                 local p = nil
353                 local target_name = nil
354                 target_name = param:match("^([^ ]+)$")
355                 teleportee = core.get_player_by_name(name)
356                 if target_name then
357                         local target = core.get_player_by_name(target_name)
358                         if target then
359                                 p = target:getpos()
360                         end
361                 end
362                 if teleportee and p then
363                         p = find_free_position_near(p)
364                         teleportee:setpos(p)
365                         return true, "Teleporting to " .. target_name
366                                         .. " at "..core.pos_to_string(p)
367                 end
368
369                 if not core.check_player_privs(name, {bring=true}) then
370                         return false, "You don't have permission to teleport other players (missing bring privilege)"
371                 end
372
373                 local teleportee = nil
374                 local p = {}
375                 local teleportee_name = nil
376                 teleportee_name, p.x, p.y, p.z = param:match(
377                                 "^([^ ]+) +([%d.-]+)[, ] *([%d.-]+)[, ] *([%d.-]+)$")
378                 p.x, p.y, p.z = tonumber(p.x), tonumber(p.y), tonumber(p.z)
379                 if teleportee_name then
380                         teleportee = core.get_player_by_name(teleportee_name)
381                 end
382                 if teleportee and p.x and p.y and p.z then
383                         teleportee:setpos(p)
384                         return true, "Teleporting " .. teleportee_name
385                                         .. " to " .. core.pos_to_string(p)
386                 end
387
388                 local teleportee = nil
389                 local p = nil
390                 local teleportee_name = nil
391                 local target_name = nil
392                 teleportee_name, target_name = string.match(param, "^([^ ]+) +([^ ]+)$")
393                 if teleportee_name then
394                         teleportee = core.get_player_by_name(teleportee_name)
395                 end
396                 if target_name then
397                         local target = core.get_player_by_name(target_name)
398                         if target then
399                                 p = target:getpos()
400                         end
401                 end
402                 if teleportee and p then
403                         p = find_free_position_near(p)
404                         teleportee:setpos(p)
405                         return true, "Teleporting " .. teleportee_name
406                                         .. " to " .. target_name
407                                         .. " at " .. core.pos_to_string(p)
408                 end
409
410                 return false, 'Invalid parameters ("' .. param
411                                 .. '") or player not found (see /help teleport)'
412         end,
413 })
414
415 core.register_chatcommand("set", {
416         params = "([-n] <name> <value>) | <name>",
417         description = "Set or read server configuration setting",
418         privs = {server=true},
419         func = function(name, param)
420                 local arg, setname, setvalue = string.match(param, "(-[n]) ([^ ]+) (.+)")
421                 if arg and arg == "-n" and setname and setvalue then
422                         core.settings:set(setname, setvalue)
423                         return true, setname .. " = " .. setvalue
424                 end
425                 local setname, setvalue = string.match(param, "([^ ]+) (.+)")
426                 if setname and setvalue then
427                         if not core.settings:get(setname) then
428                                 return false, "Failed. Use '/set -n <name> <value>' to create a new setting."
429                         end
430                         core.settings:set(setname, setvalue)
431                         return true, setname .. " = " .. setvalue
432                 end
433                 local setname = string.match(param, "([^ ]+)")
434                 if setname then
435                         local setvalue = core.settings:get(setname)
436                         if not setvalue then
437                                 setvalue = "<not set>"
438                         end
439                         return true, setname .. " = " .. setvalue
440                 end
441                 return false, "Invalid parameters (see /help set)."
442         end,
443 })
444
445 local function emergeblocks_callback(pos, action, num_calls_remaining, ctx)
446         if ctx.total_blocks == 0 then
447                 ctx.total_blocks   = num_calls_remaining + 1
448                 ctx.current_blocks = 0
449         end
450         ctx.current_blocks = ctx.current_blocks + 1
451
452         if ctx.current_blocks == ctx.total_blocks then
453                 core.chat_send_player(ctx.requestor_name,
454                         string.format("Finished emerging %d blocks in %.2fms.",
455                         ctx.total_blocks, (os.clock() - ctx.start_time) * 1000))
456         end
457 end
458
459 local function emergeblocks_progress_update(ctx)
460         if ctx.current_blocks ~= ctx.total_blocks then
461                 core.chat_send_player(ctx.requestor_name,
462                         string.format("emergeblocks update: %d/%d blocks emerged (%.1f%%)",
463                         ctx.current_blocks, ctx.total_blocks,
464                         (ctx.current_blocks / ctx.total_blocks) * 100))
465
466                 core.after(2, emergeblocks_progress_update, ctx)
467         end
468 end
469
470 core.register_chatcommand("emergeblocks", {
471         params = "(here [<radius>]) | (<pos1> <pos2>)",
472         description = "Load (or, if nonexistent, generate) map blocks "
473                 .. "contained in area pos1 to pos2 (<pos1> and <pos2> must be in parentheses)",
474         privs = {server=true},
475         func = function(name, param)
476                 local p1, p2 = parse_range_str(name, param)
477                 if p1 == false then
478                         return false, p2
479                 end
480
481                 local context = {
482                         current_blocks = 0,
483                         total_blocks   = 0,
484                         start_time     = os.clock(),
485                         requestor_name = name
486                 }
487
488                 core.emerge_area(p1, p2, emergeblocks_callback, context)
489                 core.after(2, emergeblocks_progress_update, context)
490
491                 return true, "Started emerge of area ranging from " ..
492                         core.pos_to_string(p1, 1) .. " to " .. core.pos_to_string(p2, 1)
493         end,
494 })
495
496 core.register_chatcommand("deleteblocks", {
497         params = "(here [<radius>]) | (<pos1> <pos2>)",
498         description = "Delete map blocks contained in area pos1 to pos2 "
499                 .. "(<pos1> and <pos2> must be in parentheses)",
500         privs = {server=true},
501         func = function(name, param)
502                 local p1, p2 = parse_range_str(name, param)
503                 if p1 == false then
504                         return false, p2
505                 end
506
507                 if core.delete_area(p1, p2) then
508                         return true, "Successfully cleared area ranging from " ..
509                                 core.pos_to_string(p1, 1) .. " to " .. core.pos_to_string(p2, 1)
510                 else
511                         return false, "Failed to clear one or more blocks in area"
512                 end
513         end,
514 })
515
516 core.register_chatcommand("fixlight", {
517         params = "(here [<radius>]) | (<pos1> <pos2>)",
518         description = "Resets lighting in the area between pos1 and pos2 "
519                 .. "(<pos1> and <pos2> must be in parentheses)",
520         privs = {server = true},
521         func = function(name, param)
522                 local p1, p2 = parse_range_str(name, param)
523                 if p1 == false then
524                         return false, p2
525                 end
526
527                 if core.fix_light(p1, p2) then
528                         return true, "Successfully reset light in the area ranging from " ..
529                                 core.pos_to_string(p1, 1) .. " to " .. core.pos_to_string(p2, 1)
530                 else
531                         return false, "Failed to load one or more blocks in area"
532                 end
533         end,
534 })
535
536 core.register_chatcommand("mods", {
537         params = "",
538         description = "List mods installed on the server",
539         privs = {},
540         func = function(name, param)
541                 return true, table.concat(core.get_modnames(), ", ")
542         end,
543 })
544
545 local function handle_give_command(cmd, giver, receiver, stackstring)
546         core.log("action", giver .. " invoked " .. cmd
547                         .. ', stackstring="' .. stackstring .. '"')
548         local itemstack = ItemStack(stackstring)
549         if itemstack:is_empty() then
550                 return false, "Cannot give an empty item"
551         elseif not itemstack:is_known() then
552                 return false, "Cannot give an unknown item"
553         end
554         local receiverref = core.get_player_by_name(receiver)
555         if receiverref == nil then
556                 return false, receiver .. " is not a known player"
557         end
558         local leftover = receiverref:get_inventory():add_item("main", itemstack)
559         local partiality
560         if leftover:is_empty() then
561                 partiality = ""
562         elseif leftover:get_count() == itemstack:get_count() then
563                 partiality = "could not be "
564         else
565                 partiality = "partially "
566         end
567         -- The actual item stack string may be different from what the "giver"
568         -- entered (e.g. big numbers are always interpreted as 2^16-1).
569         stackstring = itemstack:to_string()
570         if giver == receiver then
571                 return true, ("%q %sadded to inventory.")
572                                 :format(stackstring, partiality)
573         else
574                 core.chat_send_player(receiver, ("%q %sadded to inventory.")
575                                 :format(stackstring, partiality))
576                 return true, ("%q %sadded to %s's inventory.")
577                                 :format(stackstring, partiality, receiver)
578         end
579 end
580
581 core.register_chatcommand("give", {
582         params = "<name> <ItemString>",
583         description = "Give item to player",
584         privs = {give=true},
585         func = function(name, param)
586                 local toname, itemstring = string.match(param, "^([^ ]+) +(.+)$")
587                 if not toname or not itemstring then
588                         return false, "Name and ItemString required"
589                 end
590                 return handle_give_command("/give", name, toname, itemstring)
591         end,
592 })
593
594 core.register_chatcommand("giveme", {
595         params = "<ItemString>",
596         description = "Give item to yourself",
597         privs = {give=true},
598         func = function(name, param)
599                 local itemstring = string.match(param, "(.+)$")
600                 if not itemstring then
601                         return false, "ItemString required"
602                 end
603                 return handle_give_command("/giveme", name, name, itemstring)
604         end,
605 })
606
607 core.register_chatcommand("spawnentity", {
608         params = "<EntityName> [<X>,<Y>,<Z>]",
609         description = "Spawn entity at given (or your) position",
610         privs = {give=true, interact=true},
611         func = function(name, param)
612                 local entityname, p = string.match(param, "^([^ ]+) *(.*)$")
613                 if not entityname then
614                         return false, "EntityName required"
615                 end
616                 core.log("action", ("%s invokes /spawnentity, entityname=%q")
617                                 :format(name, entityname))
618                 local player = core.get_player_by_name(name)
619                 if player == nil then
620                         core.log("error", "Unable to spawn entity, player is nil")
621                         return false, "Unable to spawn entity, player is nil"
622                 end
623                 if p == "" then
624                         p = player:getpos()
625                 else
626                         p = core.string_to_pos(p)
627                         if p == nil then
628                                 return false, "Invalid parameters ('" .. param .. "')"
629                         end
630                 end
631                 p.y = p.y + 1
632                 core.add_entity(p, entityname)
633                 return true, ("%q spawned."):format(entityname)
634         end,
635 })
636
637 core.register_chatcommand("pulverize", {
638         params = "",
639         description = "Destroy item in hand",
640         func = function(name, param)
641                 local player = core.get_player_by_name(name)
642                 if not player then
643                         core.log("error", "Unable to pulverize, no player.")
644                         return false, "Unable to pulverize, no player."
645                 end
646                 if player:get_wielded_item():is_empty() then
647                         return false, "Unable to pulverize, no item in hand."
648                 end
649                 player:set_wielded_item(nil)
650                 return true, "An item was pulverized."
651         end,
652 })
653
654 -- Key = player name
655 core.rollback_punch_callbacks = {}
656
657 core.register_on_punchnode(function(pos, node, puncher)
658         local name = puncher:get_player_name()
659         if core.rollback_punch_callbacks[name] then
660                 core.rollback_punch_callbacks[name](pos, node, puncher)
661                 core.rollback_punch_callbacks[name] = nil
662         end
663 end)
664
665 core.register_chatcommand("rollback_check", {
666         params = "[<range>] [<seconds>] [<limit>]",
667         description = "Check who last touched a node or a node near it"
668                         .. " within the time specified by <seconds>. Default: range = 0,"
669                         .. " seconds = 86400 = 24h, limit = 5",
670         privs = {rollback=true},
671         func = function(name, param)
672                 if not core.settings:get_bool("enable_rollback_recording") then
673                         return false, "Rollback functions are disabled."
674                 end
675                 local range, seconds, limit =
676                         param:match("(%d+) *(%d*) *(%d*)")
677                 range = tonumber(range) or 0
678                 seconds = tonumber(seconds) or 86400
679                 limit = tonumber(limit) or 5
680                 if limit > 100 then
681                         return false, "That limit is too high!"
682                 end
683
684                 core.rollback_punch_callbacks[name] = function(pos, node, puncher)
685                         local name = puncher:get_player_name()
686                         core.chat_send_player(name, "Checking " .. core.pos_to_string(pos) .. "...")
687                         local actions = core.rollback_get_node_actions(pos, range, seconds, limit)
688                         if not actions then
689                                 core.chat_send_player(name, "Rollback functions are disabled")
690                                 return
691                         end
692                         local num_actions = #actions
693                         if num_actions == 0 then
694                                 core.chat_send_player(name, "Nobody has touched"
695                                                 .. " the specified location in "
696                                                 .. seconds .. " seconds")
697                                 return
698                         end
699                         local time = os.time()
700                         for i = num_actions, 1, -1 do
701                                 local action = actions[i]
702                                 core.chat_send_player(name,
703                                         ("%s %s %s -> %s %d seconds ago.")
704                                                 :format(
705                                                         core.pos_to_string(action.pos),
706                                                         action.actor,
707                                                         action.oldnode.name,
708                                                         action.newnode.name,
709                                                         time - action.time))
710                         end
711                 end
712
713                 return true, "Punch a node (range=" .. range .. ", seconds="
714                                 .. seconds .. "s, limit=" .. limit .. ")"
715         end,
716 })
717
718 core.register_chatcommand("rollback", {
719         params = "(<name> [<seconds>]) | (:<actor> [<seconds>])",
720         description = "Revert actions of a player. Default for <seconds> is 60",
721         privs = {rollback=true},
722         func = function(name, param)
723                 if not core.settings:get_bool("enable_rollback_recording") then
724                         return false, "Rollback functions are disabled."
725                 end
726                 local target_name, seconds = string.match(param, ":([^ ]+) *(%d*)")
727                 if not target_name then
728                         local player_name = nil
729                         player_name, seconds = string.match(param, "([^ ]+) *(%d*)")
730                         if not player_name then
731                                 return false, "Invalid parameters. See /help rollback"
732                                                 .. " and /help rollback_check."
733                         end
734                         target_name = "player:"..player_name
735                 end
736                 seconds = tonumber(seconds) or 60
737                 core.chat_send_player(name, "Reverting actions of "
738                                 .. target_name .. " since "
739                                 .. seconds .. " seconds.")
740                 local success, log = core.rollback_revert_actions_by(
741                                 target_name, seconds)
742                 local response = ""
743                 if #log > 100 then
744                         response = "(log is too long to show)\n"
745                 else
746                         for _, line in pairs(log) do
747                                 response = response .. line .. "\n"
748                         end
749                 end
750                 response = response .. "Reverting actions "
751                                 .. (success and "succeeded." or "FAILED.")
752                 return success, response
753         end,
754 })
755
756 core.register_chatcommand("status", {
757         description = "Print server status",
758         func = function(name, param)
759                 return true, core.get_server_status()
760         end,
761 })
762
763 core.register_chatcommand("time", {
764         params = "<0..23>:<0..59> | <0..24000>",
765         description = "Set time of day",
766         privs = {},
767         func = function(name, param)
768                 if param == "" then
769                         local current_time = math.floor(core.get_timeofday() * 1440)
770                         local minutes = current_time % 60
771                         local hour = (current_time - minutes) / 60
772                         return true, ("Current time is %d:%02d"):format(hour, minutes)
773                 end
774                 local player_privs = core.get_player_privs(name)
775                 if not player_privs.settime then
776                         return false, "You don't have permission to run this command " ..
777                                 "(missing privilege: settime)."
778                 end
779                 local hour, minute = param:match("^(%d+):(%d+)$")
780                 if not hour then
781                         local new_time = tonumber(param)
782                         if not new_time then
783                                 return false, "Invalid time."
784                         end
785                         -- Backward compatibility.
786                         core.set_timeofday((new_time % 24000) / 24000)
787                         core.log("action", name .. " sets time to " .. new_time)
788                         return true, "Time of day changed."
789                 end
790                 hour = tonumber(hour)
791                 minute = tonumber(minute)
792                 if hour < 0 or hour > 23 then
793                         return false, "Invalid hour (must be between 0 and 23 inclusive)."
794                 elseif minute < 0 or minute > 59 then
795                         return false, "Invalid minute (must be between 0 and 59 inclusive)."
796                 end
797                 core.set_timeofday((hour * 60 + minute) / 1440)
798                 core.log("action", ("%s sets time to %d:%02d"):format(name, hour, minute))
799                 return true, "Time of day changed."
800         end,
801 })
802
803 core.register_chatcommand("days", {
804         description = "Display day count",
805         func = function(name, param)
806                 return true, "Current day is " .. core.get_day_count()
807         end
808 })
809
810 core.register_chatcommand("shutdown", {
811         params = "[<delay_in_seconds> | -1] [reconnect] [<message>]",
812         description = "Shutdown server (-1 cancels a delayed shutdown)",
813         privs = {server=true},
814         func = function(name, param)
815                 local delay, reconnect, message = param:match("([^ ][-]?[0-9]+)([^ ]+)(.*)")
816                 message = message or ""
817
818                 if delay ~= "" then
819                         delay = tonumber(param) or 0
820                 else
821                         delay = 0
822                         core.log("action", name .. " shuts down server")
823                         core.chat_send_all("*** Server shutting down (operator request).")
824                 end
825                 core.request_shutdown(message:trim(), core.is_yes(reconnect), delay)
826         end,
827 })
828
829 core.register_chatcommand("ban", {
830         params = "<name>",
831         description = "Ban IP of player",
832         privs = {ban=true},
833         func = function(name, param)
834                 if param == "" then
835                         return true, "Ban list: " .. core.get_ban_list()
836                 end
837                 if not core.get_player_by_name(param) then
838                         return false, "No such player."
839                 end
840                 if not core.ban_player(param) then
841                         return false, "Failed to ban player."
842                 end
843                 local desc = core.get_ban_description(param)
844                 core.log("action", name .. " bans " .. desc .. ".")
845                 return true, "Banned " .. desc .. "."
846         end,
847 })
848
849 core.register_chatcommand("unban", {
850         params = "<name> | <IP_address>",
851         description = "Remove IP ban",
852         privs = {ban=true},
853         func = function(name, param)
854                 if not core.unban_player_or_ip(param) then
855                         return false, "Failed to unban player/IP."
856                 end
857                 core.log("action", name .. " unbans " .. param)
858                 return true, "Unbanned " .. param
859         end,
860 })
861
862 core.register_chatcommand("kick", {
863         params = "<name> [<reason>]",
864         description = "Kick a player",
865         privs = {kick=true},
866         func = function(name, param)
867                 local tokick, reason = param:match("([^ ]+) (.+)")
868                 tokick = tokick or param
869                 if not core.kick_player(tokick, reason) then
870                         return false, "Failed to kick player " .. tokick
871                 end
872                 local log_reason = ""
873                 if reason then
874                         log_reason = " with reason \"" .. reason .. "\""
875                 end
876                 core.log("action", name .. " kicks " .. tokick .. log_reason)
877                 return true, "Kicked " .. tokick
878         end,
879 })
880
881 core.register_chatcommand("clearobjects", {
882         params = "[full | quick]",
883         description = "Clear all objects in world",
884         privs = {server=true},
885         func = function(name, param)
886                 local options = {}
887                 if param == "" or param == "full" then
888                         options.mode = "full"
889                 elseif param == "quick" then
890                         options.mode = "quick"
891                 else
892                         return false, "Invalid usage, see /help clearobjects."
893                 end
894
895                 core.log("action", name .. " clears all objects ("
896                                 .. options.mode .. " mode).")
897                 core.chat_send_all("Clearing all objects.  This may take long."
898                                 .. "  You may experience a timeout.  (by "
899                                 .. name .. ")")
900                 core.clear_objects(options)
901                 core.log("action", "Object clearing done.")
902                 core.chat_send_all("*** Cleared all objects.")
903         end,
904 })
905
906 core.register_chatcommand("msg", {
907         params = "<name> <message>",
908         description = "Send a private message",
909         privs = {shout=true},
910         func = function(name, param)
911                 local sendto, message = param:match("^(%S+)%s(.+)$")
912                 if not sendto then
913                         return false, "Invalid usage, see /help msg."
914                 end
915                 if not core.get_player_by_name(sendto) then
916                         return false, "The player " .. sendto
917                                         .. " is not online."
918                 end
919                 core.log("action", "PM from " .. name .. " to " .. sendto
920                                 .. ": " .. message)
921                 core.chat_send_player(sendto, "PM from " .. name .. ": "
922                                 .. message)
923                 return true, "Message sent."
924         end,
925 })
926
927 core.register_chatcommand("last-login", {
928         params = "[<name>]",
929         description = "Get the last login time of a player",
930         func = function(name, param)
931                 if param == "" then
932                         param = name
933                 end
934                 local pauth = core.get_auth_handler().get_auth(param)
935                 if pauth and pauth.last_login then
936                         -- Time in UTC, ISO 8601 format
937                         return true, "Last login time was " ..
938                                 os.date("!%Y-%m-%dT%H:%M:%SZ", pauth.last_login)
939                 end
940                 return false, "Last login time is unknown"
941         end,
942 })
943
944 core.register_chatcommand("clearinv", {
945         params = "[<name>]",
946         description = "Clear the inventory of yourself or another player",
947         func = function(name, param)
948                 local player
949                 if param and param ~= "" and param ~= name then
950                         if not core.check_player_privs(name, {server=true}) then
951                                 return false, "You don't have permission"
952                                                 .. " to run this command (missing privilege: server)"
953                         end
954                         player = core.get_player_by_name(param)
955                         core.chat_send_player(param, name.." cleared your inventory.")
956                 else
957                         player = core.get_player_by_name(name)
958                 end
959
960                 if player then
961                         player:get_inventory():set_list("main", {})
962                         player:get_inventory():set_list("craft", {})
963                         player:get_inventory():set_list("craftpreview", {})
964                         core.log("action", name.." clears "..player:get_player_name().."'s inventory")
965                         return true, "Cleared "..player:get_player_name().."'s inventory."
966                 else
967                         return false, "Player must be online to clear inventory!"
968                 end
969         end,
970 })