Jump to content

Module:Check for clobbered parameters: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
generic clobbered parameter checker based on the one I made for infobox school (probably has some bugs)
 
No edit summary
Line 13: Line 13:
local pargs = frame:getParent().args
local pargs = frame:getParent().args
local checknested = isnotempty(args['nested'])
local checknested = isnotempty(args['nested'])
local delimiter = isnotempty(args['delimiter']) and args['delimiter'] or '='
local delimiter = isnotempty(args['delimiter']) and args['delimiter'] or ';'
local cat = ''
local cat = ''
if args['cat'] and mw.ustring.match(args['cat'],'^[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]:') then
if args['cat'] and mw.ustring.match(args['cat'],'^[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]:') then

Revision as of 20:51, 15 November 2019

local p = {}

local function trim(s)
	return s:match('^%s*(.-)%s*$')
end

local function isnotempty(s)
	return s and s:match('%S')
end

function p.check(frame)
	local args = frame.args
	local pargs = frame:getParent().args
	local checknested = isnotempty(args['nested'])
	local delimiter = isnotempty(args['delimiter']) and args['delimiter'] or ';'
	local cat = ''
	if args['cat'] and mw.ustring.match(args['cat'],'^[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]:') then
		cat = args['cat']
	end
	local res = ''

	local argpairs = {}
	for k, v in pairs(args) do
		if type(k) == 'number' then
			local plist = mw.text.split(v, '[\s]*' .. delimiter .. '[\s]*')
			local pfound = {}
			for ii, vv in ipairs(plist) do
				if checknested and pargs[vv] or isnotempty(pargs[vv]) then
					table.insert(pfound, vv)
				end
			end
			if pfound.length > 1 then
				table.insert(argpairs, pfound)
			end
		end
	end
	
	local warnmsg = {}
	if #argpairs > 0 then
		local nocat = isnotblank(args['nocat'])
		for i, v in ipairs( argpairs ) do
			table.insert(warnmsg, 'Using more than one of the following parameters: <code>' ..
				table.concat(v, '</code>, <code>') .. '</code>')
			if not nocat and cat ~= '' then
				res = res .. '[[' .. cat .. '|' .. (v[1] == '' and ' ' or '') .. v[1] .. ']]'
			end	
		end
	end
	
	if #warnmsg > 0 then
		if frame:preprocess( "{{REVISIONID}}" ) == "" then
			local p = args['template'] and args['template'] .. ' warning' or 'Warning'
			res = '<div class="hatnote" style="color:red"><strong>' .. p .. ':</strong> ' .. table.concat(warnmsg, '<br>') .. '</div>' .. res
		end
	end
	
	return res
end

return p