Ҷаҳиш ба мӯҳтаво

Модул:ping user

Аз Wiktionary

Documentation for this module may be created at Модул:ping user/doc

export = {}

local m_params = require("Module:parameters")

local match = mw.ustring.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, "(.+):")
	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) .. '".')
			--	[[Special:WhatLinksHere/Template:tracking/reply-to/incorrect-namespace]]
			require("Module:debug").track("reply-to/incorrect-namespace")
		end
	else
		userpage = match(username, ":(.+)") or username
	end
	
	if not link_text then
		link_text = userpage
	end
	
	return "[[User:" .. userpage .. "|" .. link_text .. "]]"
end
function export.reply_to(frame)
	params = {
		[1] = { list = true, allow_holes = true },
		["alt"] = { list = true, allow_holes = true },
		["p"] = { allow_empty = true },
	}
	
	args = m_params.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 == "Template" then
			usernames = { "Example~enwiktionary", 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