Simplify deleteblocks chat command argument parsing
[oweals/minetest.git] / builtin / game / chatcommands.lua
1 -- Minetest: builtin/chatcommands.lua
2
3 --
4 -- Chat command handler
5 --
6
7 core.chatcommands = {}
8 function core.register_chatcommand(cmd, def)
9         def = def or {}
10         def.params = def.params or ""
11         def.description = def.description or ""
12         def.privs = def.privs or {}
13         core.chatcommands[cmd] = def
14 end
15
16 if core.setting_getbool("mod_profiling") then
17         local tracefct = profiling_print_log
18         profiling_print_log = nil
19         core.register_chatcommand("save_mod_profile",
20                         {
21                                 params      = "",
22                                 description = "save mod profiling data to logfile " ..
23                                                 "(depends on default loglevel)",
24                                 func        = tracefct,
25                                 privs       = { server=true }
26                         })
27 end
28
29 core.register_on_chat_message(function(name, message)
30         local cmd, param = string.match(message, "^/([^ ]+) *(.*)")
31         if not param then
32                 param = ""
33         end
34         local cmd_def = core.chatcommands[cmd]
35         if not cmd_def then
36                 return false
37         end
38         local has_privs, missing_privs = core.check_player_privs(name, cmd_def.privs)
39         if has_privs then
40                 local success, message = cmd_def.func(name, param)
41                 if message then
42                         core.chat_send_player(name, message)
43                 end
44         else
45                 core.chat_send_player(name, "You don't have permission"
46                                 .. " to run this command (missing privileges: "
47                                 .. table.concat(missing_privs, ", ") .. ")")
48         end
49         return true  -- Handled chat message
50 end)
51
52 --
53 -- Chat commands
54 --
55 core.register_chatcommand("me", {
56         params = "<action>",
57         description = "chat action (eg. /me orders a pizza)",
58         privs = {shout=true},
59         func = function(name, param)
60                 core.chat_send_all("* " .. name .. " " .. param)
61         end,
62 })
63
64 core.register_chatcommand("help", {
65         privs = {},
66         params = "[all/privs/<cmd>]",
67         description = "Get help for commands or list privileges",
68         func = function(name, param)
69                 local function format_help_line(cmd, def)
70                         local msg = "/"..cmd
71                         if def.params and def.params ~= "" then
72                                 msg = msg .. " " .. def.params
73                         end
74                         if def.description and def.description ~= "" then
75                                 msg = msg .. ": " .. def.description
76                         end
77                         return msg
78                 end
79                 if param == "" then
80                         local msg = ""
81                         local cmds = {}
82                         for cmd, def in pairs(core.chatcommands) do
83                                 if core.check_player_privs(name, def.privs) then
84                                         table.insert(cmds, cmd)
85                                 end
86                         end
87                         table.sort(cmds)
88                         return true, "Available commands: " .. table.concat(cmds, " ") .. "\n"
89                                         .. "Use '/help <cmd>' to get more information,"
90                                         .. " or '/help all' to list everything."
91                 elseif param == "all" then
92                         local cmds = {}
93                         for cmd, def in pairs(core.chatcommands) do
94                                 if core.check_player_privs(name, def.privs) then
95                                         table.insert(cmds, format_help_line(cmd, def))
96                                 end
97                         end
98                         table.sort(cmds)
99                         return true, "Available commands:\n"..table.concat(cmds, "\n")
100                 elseif param == "privs" then
101                         local privs = {}
102                         for priv, def in pairs(core.registered_privileges) do
103                                 table.insert(privs, priv .. ": " .. def.description)
104                         end
105                         table.sort(privs)
106                         return true, "Available privileges:\n"..table.concat(privs, "\n")
107                 else
108                         local cmd = param
109                         local def = core.chatcommands[cmd]
110                         if not def then
111                                 return false, "Command not available: "..cmd
112                         else
113                                 return true, format_help_line(cmd, def)
114                         end
115                 end
116         end,
117 })
118
119 core.register_chatcommand("privs", {
120         params = "<name>",
121         description = "print out privileges of player",
122         func = function(name, param)
123                 param = (param ~= "" and param or name)
124                 return true, "Privileges of " .. param .. ": "
125                         .. core.privs_to_string(
126                                 core.get_player_privs(param), ' ')
127         end,
128 })
129 core.register_chatcommand("grant", {
130         params = "<name> <privilege>|all",
131         description = "Give privilege to player",
132         func = function(name, param)
133                 if not core.check_player_privs(name, {privs=true}) and
134                                 not core.check_player_privs(name, {basic_privs=true}) then
135                         return false, "Your privileges are insufficient."
136                 end
137                 local grantname, grantprivstr = string.match(param, "([^ ]+) (.+)")
138                 if not grantname or not grantprivstr then
139                         return false, "Invalid parameters (see /help grant)"
140                 elseif not core.auth_table[grantname] then
141                         return false, "Player " .. grantname .. " does not exist."
142                 end
143                 local grantprivs = core.string_to_privs(grantprivstr)
144                 if grantprivstr == "all" then
145                         grantprivs = core.registered_privileges
146                 end
147                 local privs = core.get_player_privs(grantname)
148                 local privs_unknown = ""
149                 for priv, _ in pairs(grantprivs) do
150                         if priv ~= "interact" and priv ~= "shout" and
151                                         not core.check_player_privs(name, {privs=true}) then
152                                 return false, "Your privileges are insufficient."
153                         end
154                         if not core.registered_privileges[priv] then
155                                 privs_unknown = privs_unknown .. "Unknown privilege: " .. priv .. "\n"
156                         end
157                         privs[priv] = true
158                 end
159                 if privs_unknown ~= "" then
160                         return false, privs_unknown
161                 end
162                 core.set_player_privs(grantname, privs)
163                 core.log("action", name..' granted ('..core.privs_to_string(grantprivs, ', ')..') privileges to '..grantname)
164                 if grantname ~= name then
165                         core.chat_send_player(grantname, name
166                                         .. " granted you privileges: "
167                                         .. core.privs_to_string(grantprivs, ' '))
168                 end
169                 return true, "Privileges of " .. grantname .. ": "
170                         .. core.privs_to_string(
171                                 core.get_player_privs(grantname), ' ')
172         end,
173 })
174 core.register_chatcommand("revoke", {
175         params = "<name> <privilege>|all",
176         description = "Remove privilege from player",
177         privs = {},
178         func = function(name, param)
179                 if not core.check_player_privs(name, {privs=true}) and
180                                 not core.check_player_privs(name, {basic_privs=true}) then
181                         return false, "Your privileges are insufficient."
182                 end
183                 local revoke_name, revoke_priv_str = string.match(param, "([^ ]+) (.+)")
184                 if not revoke_name or not revoke_priv_str then
185                         return false, "Invalid parameters (see /help revoke)"
186                 elseif not core.auth_table[revoke_name] then
187                         return false, "Player " .. revoke_name .. " does not exist."
188                 end
189                 local revoke_privs = core.string_to_privs(revoke_priv_str)
190                 local privs = core.get_player_privs(revoke_name)
191                 for priv, _ in pairs(revoke_privs) do
192                         if priv ~= "interact" and priv ~= "shout" and priv ~= "interact_extra" and
193                                         not core.check_player_privs(name, {privs=true}) then
194                                 return false, "Your privileges are insufficient."
195                         end
196                 end
197                 if revoke_priv_str == "all" then
198                         privs = {}
199                 else
200                         for priv, _ in pairs(revoke_privs) do
201                                 privs[priv] = nil
202                         end
203                 end
204                 core.set_player_privs(revoke_name, privs)
205                 core.log("action", name..' revoked ('
206                                 ..core.privs_to_string(revoke_privs, ', ')
207                                 ..') privileges from '..revoke_name)
208                 if revoke_name ~= name then
209                         core.chat_send_player(revoke_name, name
210                                         .. " revoked privileges from you: "
211                                         .. core.privs_to_string(revoke_privs, ' '))
212                 end
213                 return true, "Privileges of " .. revoke_name .. ": "
214                         .. core.privs_to_string(
215                                 core.get_player_privs(revoke_name), ' ')
216         end,
217 })
218
219 core.register_chatcommand("setpassword", {
220         params = "<name> <password>",
221         description = "set given password",
222         privs = {password=true},
223         func = function(name, param)
224                 local toname, raw_password = string.match(param, "^([^ ]+) +(.+)$")
225                 if not toname then
226                         toname = param:match("^([^ ]+) *$")
227                         raw_password = nil
228                 end
229                 if not toname then
230                         return false, "Name field required"
231                 end
232                 local actstr = "?"
233                 if not raw_password then
234                         core.set_player_password(toname, "")
235                         actstr = "cleared"
236                 else
237                         core.set_player_password(toname,
238                                         core.get_password_hash(toname,
239                                                         raw_password))
240                         actstr = "set"
241                 end
242                 if toname ~= name then
243                         core.chat_send_player(toname, "Your password was "
244                                         .. actstr .. " by " .. name)
245                 end
246                 return true, "Password of player \"" .. toname .. "\" " .. actstr
247         end,
248 })
249
250 core.register_chatcommand("clearpassword", {
251         params = "<name>",
252         description = "set empty password",
253         privs = {password=true},
254         func = function(name, param)
255                 local toname = param
256                 if toname == "" then
257                         return false, "Name field required"
258                 end
259                 core.set_player_password(toname, '')
260                 return true, "Password of player \"" .. toname .. "\" cleared"
261         end,
262 })
263
264 core.register_chatcommand("auth_reload", {
265         params = "",
266         description = "reload authentication data",
267         privs = {server=true},
268         func = function(name, param)
269                 local done = core.auth_reload()
270                 return done, (done and "Done." or "Failed.")
271         end,
272 })
273
274 core.register_chatcommand("teleport", {
275         params = "<X>,<Y>,<Z> | <to_name> | <name> <X>,<Y>,<Z> | <name> <to_name>",
276         description = "teleport to given position",
277         privs = {teleport=true},
278         func = function(name, param)
279                 -- Returns (pos, true) if found, otherwise (pos, false)
280                 local function find_free_position_near(pos)
281                         local tries = {
282                                 {x=1,y=0,z=0},
283                                 {x=-1,y=0,z=0},
284                                 {x=0,y=0,z=1},
285                                 {x=0,y=0,z=-1},
286                         }
287                         for _, d in ipairs(tries) do
288                                 local p = {x = pos.x+d.x, y = pos.y+d.y, z = pos.z+d.z}
289                                 local n = core.get_node_or_nil(p)
290                                 if n and n.name then
291                                         local def = core.registered_nodes[n.name]
292                                         if def and not def.walkable then
293                                                 return p, true
294                                         end
295                                 end
296                         end
297                         return pos, false
298                 end
299
300                 local teleportee = nil
301                 local p = {}
302                 p.x, p.y, p.z = string.match(param, "^([%d.-]+)[, ] *([%d.-]+)[, ] *([%d.-]+)$")
303                 p.x = tonumber(p.x)
304                 p.y = tonumber(p.y)
305                 p.z = tonumber(p.z)
306                 teleportee = core.get_player_by_name(name)
307                 if teleportee and p.x and p.y and p.z then
308                         teleportee:setpos(p)
309                         return true, "Teleporting to "..core.pos_to_string(p)
310                 end
311                 
312                 local teleportee = nil
313                 local p = nil
314                 local target_name = nil
315                 target_name = param:match("^([^ ]+)$")
316                 teleportee = core.get_player_by_name(name)
317                 if target_name then
318                         local target = core.get_player_by_name(target_name)
319                         if target then
320                                 p = target:getpos()
321                         end
322                 end
323                 if teleportee and p then
324                         p = find_free_position_near(p)
325                         teleportee:setpos(p)
326                         return true, "Teleporting to " .. target_name
327                                         .. " at "..core.pos_to_string(p)
328                 end
329
330                 if not core.check_player_privs(name, {bring=true}) then
331                         return false, "You don't have permission to teleport other players (missing bring privilege)"
332                 end
333
334                 local teleportee = nil
335                 local p = {}
336                 local teleportee_name = nil
337                 teleportee_name, p.x, p.y, p.z = param:match(
338                                 "^([^ ]+) +([%d.-]+)[, ] *([%d.-]+)[, ] *([%d.-]+)$")
339                 p.x, p.y, p.z = tonumber(p.x), tonumber(p.y), tonumber(p.z)
340                 if teleportee_name then
341                         teleportee = core.get_player_by_name(teleportee_name)
342                 end
343                 if teleportee and p.x and p.y and p.z then
344                         teleportee:setpos(p)
345                         return true, "Teleporting " .. teleportee_name
346                                         .. " to " .. core.pos_to_string(p)
347                 end
348                 
349                 local teleportee = nil
350                 local p = nil
351                 local teleportee_name = nil
352                 local target_name = nil
353                 teleportee_name, target_name = string.match(param, "^([^ ]+) +([^ ]+)$")
354                 if teleportee_name then
355                         teleportee = core.get_player_by_name(teleportee_name)
356                 end
357                 if target_name then
358                         local target = core.get_player_by_name(target_name)
359                         if target then
360                                 p = target:getpos()
361                         end
362                 end
363                 if teleportee and p then
364                         p = find_free_position_near(p)
365                         teleportee:setpos(p)
366                         return true, "Teleporting " .. teleportee_name
367                                         .. " to " .. target_name
368                                         .. " at " .. core.pos_to_string(p)
369                 end
370                 
371                 return false, 'Invalid parameters ("' .. param
372                                 .. '") or player not found (see /help teleport)'
373         end,
374 })
375
376 core.register_chatcommand("set", {
377         params = "[-n] <name> <value> | <name>",
378         description = "set or read server configuration setting",
379         privs = {server=true},
380         func = function(name, param)
381                 local arg, setname, setvalue = string.match(param, "(-[n]) ([^ ]+) (.+)")
382                 if arg and arg == "-n" and setname and setvalue then
383                         core.setting_set(setname, setvalue)
384                         return true, setname .. " = " .. setvalue
385                 end
386                 local setname, setvalue = string.match(param, "([^ ]+) (.+)")
387                 if setname and setvalue then
388                         if not core.setting_get(setname) then
389                                 return false, "Failed. Use '/set -n <name> <value>' to create a new setting."
390                         end
391                         core.setting_set(setname, setvalue)
392                         return true, setname .. " = " .. setvalue
393                 end
394                 local setname = string.match(param, "([^ ]+)")
395                 if setname then
396                         local setvalue = core.setting_get(setname)
397                         if not setvalue then
398                                 setvalue = "<not set>"
399                         end
400                         return true, setname .. " = " .. setvalue
401                 end
402                 return false, "Invalid parameters (see /help set)."
403         end,
404 })
405
406 core.register_chatcommand("deleteblocks", {
407         params = "[here] [<pos1> <pos2>]",
408         description = "delete map blocks contained in area pos1 to pos2",
409         privs = {server=true},
410         func = function(name, param)
411                 local p1 = {}
412                 local p2 = {}
413                 if param == "here" then
414                         local player = core.get_player_by_name(name)
415                         if player == nil then
416                                 core.log("error", "player is nil")
417                                 return false, "Unable to get current position; player is nil"
418                         end
419                         p1 = player:getpos()
420                         p2 = p1
421                 else
422                         local pos1, pos2 = unpack(param:split(") ("))
423                         p1 = core.string_to_pos(pos1 .. ")")
424                         p2 = core.string_to_pos("(" .. pos2)
425
426                         if p1 == nil or p2 == nil then
427                                 return false, "Incorrect area format. Expected: (x1,y1,z1) (x2,y2,z2)"
428                         end
429                 end
430
431                 if core.delete_area(p1, p2) then
432                         return true, "Successfully cleared area ranging from " ..
433                                 core.pos_to_string(p1, 1) .. " to " .. core.pos_to_string(p2, 1)
434                 else
435                         return false, "Failed to clear one or more blocks in area"
436                 end
437         end,
438 })
439
440 core.register_chatcommand("mods", {
441         params = "",
442         description = "List mods installed on the server",
443         privs = {},
444         func = function(name, param)
445                 return true, table.concat(core.get_modnames(), ", ")
446         end,
447 })
448
449 local function handle_give_command(cmd, giver, receiver, stackstring)
450         core.log("action", giver .. " invoked " .. cmd
451                         .. ', stackstring="' .. stackstring .. '"')
452         local itemstack = ItemStack(stackstring)
453         if itemstack:is_empty() then
454                 return false, "Cannot give an empty item"
455         elseif not itemstack:is_known() then
456                 return false, "Cannot give an unknown item"
457         end
458         local receiverref = core.get_player_by_name(receiver)
459         if receiverref == nil then
460                 return false, receiver .. " is not a known player"
461         end
462         local leftover = receiverref:get_inventory():add_item("main", itemstack)
463         local partiality
464         if leftover:is_empty() then
465                 partiality = ""
466         elseif leftover:get_count() == itemstack:get_count() then
467                 partiality = "could not be "
468         else
469                 partiality = "partially "
470         end
471         -- The actual item stack string may be different from what the "giver"
472         -- entered (e.g. big numbers are always interpreted as 2^16-1).
473         stackstring = itemstack:to_string()
474         if giver == receiver then
475                 return true, ("%q %sadded to inventory.")
476                                 :format(stackstring, partiality)
477         else
478                 core.chat_send_player(receiver, ("%q %sadded to inventory.")
479                                 :format(stackstring, partiality))
480                 return true, ("%q %sadded to %s's inventory.")
481                                 :format(stackstring, partiality, receiver)
482         end
483 end
484
485 core.register_chatcommand("give", {
486         params = "<name> <ItemString>",
487         description = "give item to player",
488         privs = {give=true},
489         func = function(name, param)
490                 local toname, itemstring = string.match(param, "^([^ ]+) +(.+)$")
491                 if not toname or not itemstring then
492                         return false, "Name and ItemString required"
493                 end
494                 return handle_give_command("/give", name, toname, itemstring)
495         end,
496 })
497
498 core.register_chatcommand("giveme", {
499         params = "<ItemString>",
500         description = "give item to yourself",
501         privs = {give=true},
502         func = function(name, param)
503                 local itemstring = string.match(param, "(.+)$")
504                 if not itemstring then
505                         return false, "ItemString required"
506                 end
507                 return handle_give_command("/giveme", name, name, itemstring)
508         end,
509 })
510
511 core.register_chatcommand("spawnentity", {
512         params = "<EntityName>",
513         description = "Spawn entity at your position",
514         privs = {give=true, interact=true},
515         func = function(name, param)
516                 local entityname = string.match(param, "(.+)$")
517                 if not entityname then
518                         return false, "EntityName required"
519                 end
520                 core.log("action", ("/spawnentity invoked, entityname=%q")
521                                 :format(entityname))
522                 local player = core.get_player_by_name(name)
523                 if player == nil then
524                         core.log("error", "Unable to spawn entity, player is nil")
525                         return false, "Unable to spawn entity, player is nil"
526                 end
527                 local p = player:getpos()
528                 p.y = p.y + 1
529                 core.add_entity(p, entityname)
530                 return true, ("%q spawned."):format(entityname)
531         end,
532 })
533
534 core.register_chatcommand("pulverize", {
535         params = "",
536         description = "Destroy item in hand",
537         func = function(name, param)
538                 local player = core.get_player_by_name(name)
539                 if not player then
540                         core.log("error", "Unable to pulverize, no player.")
541                         return false, "Unable to pulverize, no player."
542                 end
543                 if player:get_wielded_item():is_empty() then
544                         return false, "Unable to pulverize, no item in hand."
545                 end
546                 player:set_wielded_item(nil)
547                 return true, "An item was pulverized."
548         end,
549 })
550
551 -- Key = player name
552 core.rollback_punch_callbacks = {}
553
554 core.register_on_punchnode(function(pos, node, puncher)
555         local name = puncher:get_player_name()
556         if core.rollback_punch_callbacks[name] then
557                 core.rollback_punch_callbacks[name](pos, node, puncher)
558                 core.rollback_punch_callbacks[name] = nil
559         end
560 end)
561
562 core.register_chatcommand("rollback_check", {
563         params = "[<range>] [<seconds>] [limit]",
564         description = "Check who has last touched a node or near it,"
565                         .. " max. <seconds> ago (default range=0,"
566                         .. " seconds=86400=24h, limit=5)",
567         privs = {rollback=true},
568         func = function(name, param)
569                 local range, seconds, limit =
570                         param:match("(%d+) *(%d*) *(%d*)")
571                 range = tonumber(range) or 0
572                 seconds = tonumber(seconds) or 86400
573                 limit = tonumber(limit) or 5
574                 if limit > 100 then
575                         return false, "That limit is too high!"
576                 end
577
578                 core.rollback_punch_callbacks[name] = function(pos, node, puncher)
579                         local name = puncher:get_player_name()
580                         core.chat_send_player(name, "Checking " .. core.pos_to_string(pos) .. "...")
581                         local actions = core.rollback_get_node_actions(pos, range, seconds, limit)
582                         local num_actions = #actions
583                         if num_actions == 0 then
584                                 core.chat_send_player(name, "Nobody has touched"
585                                                 .. " the specified location in "
586                                                 .. seconds .. " seconds")
587                                 return
588                         end
589                         local time = os.time()
590                         for i = num_actions, 1, -1 do
591                                 local action = actions[i]
592                                 core.chat_send_player(name,
593                                         ("%s %s %s -> %s %d seconds ago.")
594                                                 :format(
595                                                         core.pos_to_string(action.pos),
596                                                         action.actor,
597                                                         action.oldnode.name,
598                                                         action.newnode.name,
599                                                         time - action.time))
600                         end
601                 end
602
603                 return true, "Punch a node (range=" .. range .. ", seconds="
604                                 .. seconds .. "s, limit=" .. limit .. ")"
605         end,
606 })
607
608 core.register_chatcommand("rollback", {
609         params = "<player name> [<seconds>] | :<actor> [<seconds>]",
610         description = "revert actions of a player; default for <seconds> is 60",
611         privs = {rollback=true},
612         func = function(name, param)
613                 local target_name, seconds = string.match(param, ":([^ ]+) *(%d*)")
614                 if not target_name then
615                         local player_name = nil
616                         player_name, seconds = string.match(param, "([^ ]+) *(%d*)")
617                         if not player_name then
618                                 return false, "Invalid parameters. See /help rollback"
619                                                 .. " and /help rollback_check."
620                         end
621                         target_name = "player:"..player_name
622                 end
623                 seconds = tonumber(seconds) or 60
624                 core.chat_send_player(name, "Reverting actions of "
625                                 .. target_name .. " since "
626                                 .. seconds .. " seconds.")
627                 local success, log = core.rollback_revert_actions_by(
628                                 target_name, seconds)
629                 local response = ""
630                 if #log > 100 then
631                         response = "(log is too long to show)\n"
632                 else
633                         for _, line in pairs(log) do
634                                 response = response .. line .. "\n"
635                         end
636                 end
637                 response = response .. "Reverting actions "
638                                 .. (success and "succeeded." or "FAILED.")
639                 return success, response
640         end,
641 })
642
643 core.register_chatcommand("status", {
644         description = "Print server status",
645         func = function(name, param)
646                 return true, core.get_server_status()
647         end,
648 })
649
650 core.register_chatcommand("time", {
651         params = "<0...24000>",
652         description = "set time of day",
653         privs = {settime=true},
654         func = function(name, param)
655                 if param == "" then
656                         return false, "Missing time."
657                 end
658                 local newtime = tonumber(param)
659                 if newtime == nil then
660                         return false, "Invalid time."
661                 end
662                 core.set_timeofday((newtime % 24000) / 24000)
663                 core.log("action", name .. " sets time " .. newtime)
664                 return true, "Time of day changed."
665         end,
666 })
667
668 core.register_chatcommand("shutdown", {
669         description = "shutdown server",
670         privs = {server=true},
671         func = function(name, param)
672                 core.log("action", name .. " shuts down server")
673                 core.request_shutdown()
674                 core.chat_send_all("*** Server shutting down (operator request).")
675         end,
676 })
677
678 core.register_chatcommand("ban", {
679         params = "<name>",
680         description = "Ban IP of player",
681         privs = {ban=true},
682         func = function(name, param)
683                 if param == "" then
684                         return true, "Ban list: " .. core.get_ban_list()
685                 end
686                 if not core.get_player_by_name(param) then
687                         return false, "No such player."
688                 end
689                 if not core.ban_player(param) then
690                         return false, "Failed to ban player."
691                 end
692                 local desc = core.get_ban_description(param)
693                 core.log("action", name .. " bans " .. desc .. ".")
694                 return true, "Banned " .. desc .. "."
695         end,
696 })
697
698 core.register_chatcommand("unban", {
699         params = "<name/ip>",
700         description = "remove IP ban",
701         privs = {ban=true},
702         func = function(name, param)
703                 if not core.unban_player_or_ip(param) then
704                         return false, "Failed to unban player/IP."
705                 end
706                 core.log("action", name .. " unbans " .. param)
707                 return true, "Unbanned " .. param
708         end,
709 })
710
711 core.register_chatcommand("kick", {
712         params = "<name> [reason]",
713         description = "kick a player",
714         privs = {kick=true},
715         func = function(name, param)
716                 local tokick, reason = param:match("([^ ]+) (.+)")
717                 tokick = tokick or param
718                 if not core.kick_player(tokick, reason) then
719                         return false, "Failed to kick player " .. tokick
720                 end
721                 core.log("action", name .. " kicked " .. tokick)
722                 return true, "Kicked " .. tokick
723         end,
724 })
725
726 core.register_chatcommand("clearobjects", {
727         description = "clear all objects in world",
728         privs = {server=true},
729         func = function(name, param)
730                 core.log("action", name .. " clears all objects.")
731                 core.chat_send_all("Clearing all objects.  This may take long."
732                                 .. "  You may experience a timeout.  (by "
733                                 .. name .. ")")
734                 core.clear_objects()
735                 core.log("action", "Object clearing done.")
736                 core.chat_send_all("*** Cleared all objects.")
737         end,
738 })
739
740 core.register_chatcommand("msg", {
741         params = "<name> <message>",
742         description = "Send a private message",
743         privs = {shout=true},
744         func = function(name, param)
745                 local sendto, message = param:match("^(%S+)%s(.+)$")
746                 if not sendto then
747                         return false, "Invalid usage, see /help msg."
748                 end
749                 if not core.get_player_by_name(sendto) then
750                         return false, "The player " .. sendto
751                                         .. " is not online."
752                 end
753                 core.log("action", "PM from " .. name .. " to " .. sendto
754                                 .. ": " .. message)
755                 core.chat_send_player(sendto, "PM from " .. name .. ": "
756                                 .. message)
757                 return true, "Message sent."
758         end,
759 })
760
761 core.register_chatcommand("last-login", {
762         params = "[name]",
763         description = "Get the last login time of a player",
764         func = function(name, param)
765                 if param == "" then
766                         param = name
767                 end
768                 local pauth = core.get_auth_handler().get_auth(param)
769                 if pauth and pauth.last_login then
770                         -- Time in UTC, ISO 8601 format
771                         return true, "Last login time was " ..
772                                 os.date("!%Y-%m-%dT%H:%M:%SZ", pauth.last_login)
773                 end
774                 return false, "Last login time is unknown"
775         end,
776 })
777