Jump to content

Module:Pages with authority control identifiers

Wikipedia se
Badlao 21:19, 18 Juun 2018 tak en>Tom.Reding (Consolidate isCat checks) se

Usage

{{#invoke:Pages with authority control identifiers|autoDetect}}

See also

Tracking categories



require('Module:No globals')

local p = {}
local ac = require('Module:Authority control')
local currentTitle = mw.title.getCurrentTitle()
local title = currentTitle.text
local isCat = (currentTitle.namespace == 14)

local function pages( frame, id ) --i.e. [[Category:Pages with VIAF identifiers]]
	for _, conf in pairs( ac.conf ) do
		if conf[1] == id then
			local link = conf[2]
			local texCatMore = frame:expandTemplate{ title = 'Cat more', args = {'Wikipedia:Authority control'} }
			local texWPCat = frame:expandTemplate{ title = 'Wikipedia category' }
			local outString = texCatMore..texWPCat..'\n'..
					'[[Category:Pages with authority control information|'..id..']]'
			return outString
		end
	end
	return 'db2'
end

local function misc( frame, id ) --i.e. [[Category:Miscellaneous pages with VIAF identifiers]]
	for _, conf in pairs( ac.conf ) do
		if conf[1] == id then
			local link = conf[2]
			local texCatExplain = frame:expandTemplate{ title = 'Category explanation', 
					args = { 'pages, other than main user pages or Wikipedia articles, using {{[[Template:Authority control|Authority control]]}} with '..link..' identifiers.' } }
			local texCatMore = frame:expandTemplate{ title = 'Cat more', args = {'Wikipedia:Authority control'} }
			local texEmptyCat = frame:expandTemplate{ title = 'Possibly empty category' }
			local texWPCat = frame:expandTemplate{ title = 'Wikipedia category', args = { hidden = 'yes', tracking = 'yes' } }
			local texTOC = ''
			if mw.site.stats.pagesInCategory(title, 'pages') > 400 then
				texTOC = frame:expandTemplate{ title = 'Category TOC', args = { align = 'center' } }
			end
			local outString = texCatExplain..texCatMore..texEmptyCat..texWPCat..texTOC..'\n'..
					'Pages in this category should only be added by [[Module:Authority control]].'..
					'[[Category:Pages with '..id..' identifiers]]'..
					'[[Category:Miscellaneous pages with authority control information|'..id..']]'
			return outString
		end
	end
	return 'db3'
end

function p.autoDetect( frame )
	if isCat then
		local pagesID    = mw.ustring.match(title, 'Pages with ([%w%.%-]+) identifiers')
		local miscID     = mw.ustring.match(title, 'Miscellaneous pages with ([%w%.%-]+) identifiers')
		local userID     = mw.ustring.match(title, 'User pages with ([%w%.%-]+) identifiers')
		local wpID       = mw.ustring.match(title, 'Wikipedia articles with ([%w%.%-]+) identifiers')
		local wpfaultyID = mw.ustring.match(title, 'Wikipedia articles with faulty authority control identifiers %(([%w%.%-]+)%)')
		if     pagesID    then return pages( frame, pagesID )
		elseif miscID     then return misc( frame, miscID )
		elseif userID     then return user( frame, userID )
		elseif wpID       then return wp( frame, wpID )
		elseif wpfaultyID then return wpfaulty( frame, wpfaultyID )
		else return 'db1'
		end
	end
end

return p