モジュール:ping user

出典: フリー多機能辞典『ウィクショナリー日本語版(Wiktionary)』
ナビゲーションに移動 検索に移動

このモジュールについての説明文ページを モジュール:ping user/doc に作成できます

local export = {}

local match = string.match

local function link(username, link_text)
	if type(username) ~= "string" then
		error('The function "link" requires a string argument.')
	end
	
	local namespace = match(username, "^(.+):")
	local userpage
	if namespace and namespace ~= "User" then
		if match(username, "^%x%x?%x?%x?:%x%x?%x?%x?:%x%x?%x?%x?:%x%x?%x?%x?:%x%x?%x?%x?:%x%x?%x?%x?:%x%x?%x?%x?:%x%x?%x?%x?$") then
			userpage = username
		else
			error('The username "' .. username .. '" contains the incorrect namespace "' .. tostring(namespace) .. '".')
		end
	else
		userpage = match(username, ":(.+)$") or username
	end
	
	if not link_text then
		link_text = userpage
	end
	
	return "[[利用者:" .. userpage .. "|" .. link_text .. "]]"
end

function export.reply_to(frame)
	local params = {
		[1] = { list = true, allow_holes = true },
		["alt"] = { list = true, allow_holes = true },
		["p"] = { allow_empty = true },
	}
	
	local args = require("モジュール:parameters").process(frame:getParent().args, params)
	local usernames = args[1]
	local link_text = args["alt"]
	local prefix = "@"
	local postfix = args.p or ":"
	local namespace = mw.title.getCurrentTitle().nsText
	
	local output = {}
	
	if #usernames == 0 then
		if namespace == "テンプレート" then
			usernames = { "Example~jawiktionary", maxindex = 1 }
		else
			error("Error in replyto template: Username not given.")
		end
	end
	
	for i = 1, math.max(usernames.maxindex, link_text.maxindex) do
		table.insert(output, link(usernames[i], link_text[i]))
	end
	
	output = prefix .. table.concat(output, ", ") .. postfix
	
	return output
end

return export