Mòdul:Autoritats/tèst

Un article de Wikipèdia, l'enciclopèdia liura.

La documentacion d'utilizacion d'aquel modul se pòt crear a Mòdul:Autoritats/tèst/ús

local function getCatForId(id)
	local title = mw.title.getCurrentTitle()
	local namespace = title.namespace
	if namespace == 0 then
		return '[[Category:Articles amb identificador ' .. id .. ']]'
	end
	return ''
end

local function canticLink(id, label)
	--P9984's format regex: \d{18} (e.g.  981058515460906706)
	if not id:match( '^%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d$' ) then
		return false
	end
	return '[https://cantic.bnc.cat/registre/' .. id .. ' ' .. (label or id) .. ']' .. getCatForId( 'CANTIC' )
end

local function viafLink(id, label)
	--P214's format regex: [1-9]\d(\d{0,7}|\d{17,20}) (e.g. 123456789, 1234567890123456789012)
	if not id:match( '^[1-9]%d%d?%d?%d?%d?%d?%d?%d?$' ) and
		not id:match( '^[1-9]%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d?%d?%d?$' ) then
			return false
	end
	return '[http://viaf.org/viaf/' .. id .. ' ' .. (label or id) .. ']'
end

local function bneLink(id, label)
	--P950's format regex: (XX|FF|a)\d{4,7}|(bima|bimo|bica|bis[eo]|bivi|Mise|Mimo|Mima)\d{10} (e.g. XX1234567)
	if not id:match( '^[XF][XF]%d%d%d%d%d?%d?%d?$' ) and
		not id:match( '^a%d%d%d%d%d?%d?%d?$' ) and
		not id:match( '^bi[mcsv][aoei]%d%d%d%d%d%d%d%d%d%d$' ) and
		not id:match( '^Mi[sm][eoa]%d%d%d%d%d%d%d%d%d%d$' ) then
			return false
	end
	return '[http://datos.bne.es/resource/' .. id .. ' ' .. (label or id) .. ']'
end

local function mgpLink(id, label)
    --P549's format regex: \d{1,6} (e.g. 123456)
	if not id:match( '^%d%d?%d?%d?%d?%d?$' ) then
		return false
	end
    return '[http://www.genealogy.ams.org/id.php?id=' .. id .. ' ' .. (label or id) .. ']' 
end

local function rslLink(id, label)
    --P947's format regex: \d{1,9} (e.g. 123456789)
	if not id:match( '^%d%d?%d?%d?%d?%d?%d?%d?%d?$' ) then
		return false
	end
    return '[http://aleph.rsl.ru/F?func=find-b&find_code=SYS&adjacent=Y&local_base=RSL11&request=' .. id .. '&CON_LNG=ENG ' .. (label or id) .. ']'
end

local function leonoreLink(id, label)
    --P640's format regex: LH//\d{1,4}/\d{1,3}|19800035/\d{1,4}/\d{1,5}(bis|ter)?|C/0/\d{1,2} (e.g. LH//2064/18)
	if not id:match( '^LH//%d%d?%d?%d?/%d%d?%d?$' ) and             --IDs from LH//1/1 to LH//2794/54 (legionaries)
		not id:match( '^19800035/%d%d?%d?%d?/%d%d?%d?%d?%d?$' ) and --IDs from 19800035/1/1 to 19800035/385/51670 (legionnaires who died 1954-1977 & some who died < 1954)
		not id:match( '^19800035/%d%d?%d?%d?/%d%d?%d?%d?%d?bis$' ) and
		not id:match( '^19800035/%d%d?%d?%d?/%d%d?%d?%d?%d?ter$' ) and
		not id:match( '^C/0/%d%d?$' ) then                          --IDs from C/0/1 to C/0/84 (84 famous legionaries)
			return false
	end
    return '[http://www.culture.gouv.fr/public/mistral/leonore_fr?ACTION=CHERCHER&FIELD_1=COTE&VALUE_1=' .. id .. ' ' .. (label or id) .. ']' 
end

local function sbnLink(id, label)
    --P396's format regex: \D{2}[A-Z0-3]V\d{6} (e.g. TO0V164579)
	if not id:match( '^%u%u[%u0-3]V%d%d%d%d%d%d$' ) then --legacy: %u used here instead of %D (but the faulty ID cat is empty, out of ~12k uses)
			return false
	end
    return '[https://opac.sbn.it/nome/' .. id .. ' ' .. (label or id) .. ']'
end

local function nkcLink(id, label)
	--P691's format regex: [a-z]{2,4}[0-9]{2,14} (e.g. abcd12345678901234)
	if not id:match( '^[a-z][a-z][a-z]?[a-z]?%d%d%d?%d?%d?%d?%d?%d?%d?%d?%d?%d?%d?%d?$' ) then
		return false
	end
	return '[http://aleph.nkp.cz/F/?func=find-c&local_base=aut&ccl_term=ica=' .. id .. '&CON_LNG=ENG ' .. (label or id) .. ']' 
end

local function nclLink(id, label)
    --P1048's format regex: \d+ (e.g. 1081436)
	if not id:match( '^%d+$' ) then
		return false
	end
    return '[http://aleweb.ncl.edu.tw/F/?func=accref&acc_sequence=' .. id .. '&CON_LNG=ENG ' .. (label or id) .. ']' 
end

local function ndlLink(id, label)
	--P349's format regex: 0?\d{8} (e.g. 012345678)
	if not id:match( '^0?%d%d%d%d%d%d%d%d$' ) then
		return false
	end
	return '[http://id.ndl.go.jp/auth/ndlna/' .. id .. ' ' .. (label or id) .. ']' 
end

local function sudocLink(id, label)
	--P269's format regex: (\d{8}[\dX]|) (e.g. 026927608)
	if not id:match( '^%d%d%d%d%d%d%d%d[%dxX]$' ) then --legacy: allow lowercase 'x'
		return false
	end
	return '[http://www.idref.fr/' .. id .. ' ' .. (label or id) .. ']' 
end

local function hlsLink(id, label)
	if not string.match( id, '^%d+$' ) then
		return false
	end
	return '[http://www.hls-dhs-dss.ch/textes/f/F' .. id .. '.php ' .. (label or id) .. ']'
end

local function lirLink(id, label)
	--P886's format regex: \d+ (e.g. 1)
	if not id:match( '^%d+$' ) then
		return false
	end
	return '[http://www.e-lir.ch/e-LIR___Lexicon.' .. id .. '.450.0.html ' .. (label or id) .. ']'
end

local function splitLccn(id)
	--P244's format regex: (n|nb|nr|no|ns|sh)([4-9][0-9]|00|20[0-1][0-9])[0-9]{6} (e.g. n78039510)
	if id:match( '^%l%l?%l?%d%d%d%d%d%d%d%d%d?%d?$' ) then
		id = id:gsub( '^(%l+)(%d+)(%d%d%d%d%d%d)$', '%1/%2/%3' )
	end
	if id:match( '^%l%l?%l?/%d%d%d?%d?/%d+$' ) then
		return mw.text.split( id, '/' )
	end
	return false
end

local function append(str, c, length)
	while str:len() < length do
		str = c .. str
	end
	return str
end

local function lccnLink(id, label)
	local parts = splitLccn( id ) --e.g. n78039510
	if not parts then
		return false
	end
	local lccnType = parts[1] ~= 'sh' and 'names' or 'subjects'
	id = parts[1] .. parts[2] .. append( parts[3], '0', 6 )
	return '[https://id.loc.gov/authorities/' .. lccnType .. '/' .. id .. ' ' .. (label or id) ..']'
end

--Returns the ISNI check digit isni must be a string where the 15 first elements are digits
local function getIsniCheckDigit(isni)
	local total = 0
	for i = 1, 15 do
		local digit = isni:byte(i) - 48 -- Get integer value
		total = (total + digit) * 2
	end
	local remainder = total % 11
	local result = (12 - remainder) % 11
	if result == 10 then
		return "X"
	end
	return tostring(result)
end

--Validate ISNI (and ORCID) and retuns it as a 16 characters string or returns false if it's invalid
--See http://support.orcid.org/knowledgebase/articles/116780-structure-of-the-orcid-identifier
local function validateIsni(id)
	--P213 (ISNI) format regex: [0-9]{4} [0-9]{4} [0-9]{4} [0-9]{3}[0-9X] (e.g. 0000-0000-6653-4145)
	--P496 (ORCID) format regex: 0000-000(1-[5-9]|2-[0-9]|3-[0-4])\d{3}-\d{3}[\dX] (e.g. 0000-0002-7398-5483)
	id = id:gsub( '[ %-]', '' ):upper()
	if not id:match( '^%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d[%dX]$' ) then
		return false
	end
	if getIsniCheckDigit(id) ~= string.char(id:byte(16)) then
		return false
	end
	return id
end

local function isniLink(id, label)
	id = validateIsni(id) --e.g. 0000-0000-6653-4145
	if not id then
		return false
	end
	return '[http://isni.org/isni/' .. id .. ' ' .. (label or id) .. ']'
end

local function orcidLink(id, label)
	id = validateIsni(id) --e.g. 0000-0002-7398-5483
	if not id then
		return false
	end
	id = id:sub( 1, 4 ) .. '-' .. id:sub( 5, 8 ) .. '-'  .. id:sub( 9, 12 ) .. '-'  .. id:sub( 13, 16 )
	return '[http://orcid.org/' .. id .. ' ' .. (label or id) .. ']'
end

local function gndLink(id, label)
	--P227's format regex: 1[012]?\d{7}[0-9X]|[47]\d{6}-\d|[1-9]\d{0,7}-[0-9X]|3\d{7}[0-9X] (e.g. 4079154-3)
	if not id:match( '^1[012]?%d%d%d%d%d%d%d[0-9X]$' ) and
		not id:match( '^[47]%d%d%d%d%d%d%-%d$' ) and
		not id:match( '^[1-9]%d?%d?%d?%d?%d?%d?%d?%-[0-9X]$' ) and
		not id:match( '^3%d%d%d%d%d%d%d[0-9X]$' ) then
			return false
	end
	return '[http://d-nb.info/gnd/' .. id .. ' ' .. (label or id) .. ']'
end

local function selibrLink(id, label)
	if not string.match( id, '^%d+$' ) then
		return false
	end
	return '[http://libris.kb.se/auth/' .. id .. ' ' .. (label or id) .. ']'
end

local function bnfLink(id, label)
	--P268's format regex: \d{8}[0-9bcdfghjkmnpqrstvwxz] (e.g. 123456789)
	if not id:match( '^c?b?%d%d%d%d%d%d%d%d[0-9bcdfghjkmnpqrstvwxz]$' ) then
		return false
	end
	--Add cb prefix if it has been removed
	if not id:match( '^cb.+$' ) then
		id = 'cb'..id
	end
	return '[http://catalogue.bnf.fr/ark:/12148/' .. id .. ' ' .. (label or id) .. ']'
end

local function bpnLink(id, label)
	--P651's format regex: \d{6,8} (e.g. 00123456)
	if not id:match( '^%d%d%d%d%d%d%d%d$' ) and --original format regex, changed 8/2019 to
		not id:match( '^0?%d%d%d%d%d%d%d$' ) and --allow 1-2 leading 0s, allowed by the website
		not id:match( '^0?0?%d%d%d%d%d%d$' ) then
			return false
	end
	return '[http://www.biografischportaal.nl/persoon/' .. id .. ' ' .. (label or id) .. ']'
end

local function ridLink(id, label)
	--P1053's format regex: [A-Z]-\d{4}-(19|20)\d\d (e.g. A-1234-1934)
	if not id:match( '^[A-Z]%-%d%d%d%d%-19%d%d$' ) and
		not id:match( '^[A-Z]%-%d%d%d%d%-20%d%d$' ) then
			return false
	end
	return '[http://www.researcherid.com/rid/' .. id .. ' ' .. (label or id) .. ']'
end

local function bibsysLink(id, label)
	--P1015's format regex: [1-9]\d* or [1-9](\d{0,8}|\d{12}) (e.g. 1234567890123)
	if not id:match( '^[1-9]%d?%d?%d?%d?%d?%d?%d?%d?$' ) and
		not id:match( '^[1-9]%d%d%d%d%d%d%d%d%d%d%d%d$' ) then
			return false
	end
	return '[http://ask.bibsys.no/ask/action/result?cmd=&kilde=biblio&cql=bs.autid+%3D+' .. id .. '&feltselect=bs.autid ' .. (label or id) .. ']'
end

local function ulanLink(id, label)
	--P245's format regex: 500\d{6} (e.g. 500123456)
	if not id:match( '^500%d%d%d%d%d%d$' ) then
		return false
	end
	return '[http://www.getty.edu/vow/ULANFullDisplay?find=&role=&nation=&subjectid=' .. id .. ' ' .. (label or id) .. ']'
end

local function nlaLink(id, label)
	--P409's format regex: [1-9][0-9]{0,11} (e.g. 123456789012)
	if not id:match( '^[1-9]%d?%d?%d?%d?%d?%d?%d?%d?%d?%d?%d?$' ) then
		return false
	end
	return '[http://nla.gov.au/anbd.aut-an' .. id .. ' ' .. (label or id) .. ']'
end

local function eecLink(id, label)
	return '[https://www.enciclopedia.cat/EC-EEC-' .. id .. '.xml ' .. (label or id) .. ']'
end

local function dlcLink(id, label)
	return '[https://www.enciclopedia.cat/EC-DLC-' .. id .. '.xml ' .. (label or id) .. ']'
end

local function dbdLink(id, label)
	return '[https://dbd.vives.org/fitxa_biografies.php?id=' .. id .. ' ' .. (label or id) .. ']'
end

local function osmLink(id, label)
	return '[http://www.openstreetmap.org/browse/relation/' .. id .. ' ' .. (label or id) .. ']'
end

local function gecLink(id, label)
	return '[https://www.enciclopedia.cat/gran-enciclopedia-catalana/' .. id .. ' ' .. (label or id) .. ']'
end

local function gemLink(id, label)
	return '[http://www.enciclopedia.cat/EC-GEM-' .. id .. '.xml ' .. (label or id) .. ']'
end

local function dialnetLink(id, label)
	return '[http://dialnet.unirioja.es/servlet/autor?codigo=' .. id .. ' ' .. (label or id) .. ']'
end

local function googlescholarLink(id, label)
	return '[https://scholar.google.com/citations?user=' .. id .. ' ' .. (label or id) .. ']'
end

local function Europeana(id, label)
	--P7704's format regex: (place|agent|concept|organisation)/.* (e.g. agent/base/59832)
	local s1, s2, s3 = string.match(id, '([^/]+)([^%d]+)(%d+)')
	if not (s1 and s2 and s3) and not (s1 == 'place' or s1 == 'agent' or s1 == 'concept' or s1 == 'organisation') then
		return false
	else
		return '[http://data.europeana.eu/' .. s1 .. s2 .. s3 .. ' ' .. (label or s3) .. ']' .. getCatForId('Europeana')
	end
end

local function getIdsFromWikidata( item, property )
	local ids = {}
	if not item.claims[property] then
		return ids
	end
	for _, statement in pairs( item.claims[property] ) do
		if statement.mainsnak.datavalue then
			table.insert( ids, statement.mainsnak.datavalue.value )
		end
	end
	return ids
end

local function matchesWikidataRequirements( item, reqs )
	for _, group in pairs( reqs ) do
		local property = 'p' .. group[1]
		local qid = group[2]
		if item.claims[property] ~= nil then
			for _, statement in pairs ( item.claims[property] ) do
				if statement.mainsnak.datavalue ~= nil then
					if statement.mainsnak.datavalue.value['numeric-id'] == qid then
						return true
					end
				end
			end
		end
	end
	return false
end

local function createRow( id, label, rawValue, link, withUid )
	if link then
		if withUid then
			return '* ' .. label .. ' <span class="uid">' .. link .. '</span>\n'
		else
			return '* ' .. label .. ' ' .. link .. '\n'
		end
	else
		return '* <span class="error">Identificador ' .. id .. rawValue .. ' no vàlid.</span>\n'
	end
end

--[[==========================================================================]]
--[[                              Configuration                               ]]
--[[==========================================================================]]

-- conf table basic format: { 'parameter name', propertyId # in Wikidata, formatting/validation function, section}
--      section values: 1 autoritats, 2 altres
-- conf table optional named parameters:
--      prefix: to include a prefix (usually a wikilink explaining what the identifier is) before the external link itself
--            Please use identifier redirects rather than linking directly to the target page.
--            This reduces clutter in "What links here" on both the redirect and the target,
--            and improves reverse lookup of articles where a manifestation of each identifier is used.

local conf = {
	-- autoritats, en català
	{ 'CANTIC', 9984, canticLink, 1, prefix='[[CANTIC]]' },
	-- autoritats, altres
	{ 'BNE', 950, bneLink, 1, prefix="[[Biblioteca Nacional de España|BNE]]" },
	{ 'BNF', 268, bnfLink, 1, prefix='[[Bibliothèque nationale de France|BNF]]' },
	{ 'BPN', 651, bpnLink, 1, prefix='[[BPN]]' },
	{ 'GND', 227, gndLink, 1, prefix='[[Gemeinsame Normdatei|GND]]' },
	{ 'LCCN', 244, lccnLink, 1, prefix='[[LCCN]]' },
	{ 'VIAF', 214, viafLink, 1, prefix='[[VIAF]]' },
	{ 'ISNI', 213, isniLink, 1, prefix='[[ISNI]]' },
	{ 'ORCID', 496, orcidLink, 1, prefix='[[ORCID]]' },
	{ 'SELIBR', 906, selibrLink, 1, prefix='[[LIBRIS|SELIBR]]' },
	{ 'SUDOC', 269, sudocLink, 1, prefix='[[SUDOC]]' },
	{ 'RID', 1053, ridLink, 1, prefix='[[ResearcherID]]' },
	{ 'BIBSYS', 1015, bibsysLink, 1, prefix='[[BIBSYS]]' },
	{ 'ULAN', 245, ulanLink, 1, prefix='[[Union List of Artist Names|ULAN]]' },
	{ 'NLA', 409, nlaLink, 1, prefix='[[National Library of Australia|NLA]]' },
	{ 'NDL', 349, ndlLink, 1, prefix='[[National Diet Library|NDL]]' },
	{ 'NCL', 1048, nclLink, 1 },
	{ 'NKC', 691, nkcLink, 1, prefix='[[Biblioteca Nacional de la República Txeca|NKC]]' },
	--{ 'Léonore', 640, leonoreLink, 1, prefix='[[Base Léonore|Léonore]]' }, broken link [[d:Property talk:P640]]
	{ 'RLS', 947, rslLink, 1, prefix='[[Russian State Library|RLS]]' },
	{ 'SBN', 396, sbnLink, 1, prefix='[[Istituto Centrale per il Catalogo Unico|ICCU]]' },
	-- bases d'informació, català
	{ 'DBD', 2498, dbdLink, 2, prefix='[[Diccionari de Dones|DBD]]' },
	{ 'DLC', 7357, dlcLink, 2, prefix='[[Diccionari de la Literatura Catalana (Gran Enciclopèdia Catalana)|DLC]]' },
	{ 'EEC', 5513, eecLink, 2, prefix="[[EEC]]" },
	{ 'GEC', 12385, gecLink, 2, prefix='[[GEC]]' },
	{ 'GEMUS', 6412, gemLink, 2, prefix='[[Gran Enciclopèdia de la Música|GEMUS]]' },
	-- bases d'informació, altres
	{ 'Dialnet', 1607, dialnetLink, 2, prefix='[[Dialnet]]' },
	{ 'Europeana', 7704, Europeana, 2, prefix='[[Europeana]]' },
	{ 'HDS', 902, hlsLink, 2, prefix='[[Diccionari Històric de Suïssa|HDS]]' },
	{ 'LIR', 886, lirLink, 2, prefix='[[Lexicon Istoric Retic|LIR]]' },
	{ 'MGP', 549, mgpLink, 2, prefix='[[MGP]]' },
	{ 'OSM', 402, osmLink, 2, prefix='[[OpenStreetMap|OSM]]' },
	{ 'GA', 1960, googlescholarLink, 2, prefix='[[Google Acadèmic|GA]]' },
}

-- Check that the Wikidata item has this property-->value before adding it
local reqs = {}

local p = {}

function p.authorityControl( frame )
	local parentArgs = frame:getParent().args
	local differentOnWDCat = ''
	--Create rows
	local elements1 = {}
	local elements2 = {}

	--redirect PND to GND
	if (parentArgs.GND == nil or parentArgs.GND == '') and parentArgs.PND ~= nil and parentArgs.PND ~= '' then
		parentArgs.GND = parentArgs.PND
	end

	--Wikidata fallback if requested
	local item = mw.wikibase.getEntityObject()
	if item ~= nil and item.claims ~= nil then
		for _, params in pairs( conf ) do
			if params[2] ~= 0 then
				local val = parentArgs[params[1]]
				local canUseWikidata = nil
				if reqs[params[1]] ~= nil then
					canUseWikidata = matchesWikidataRequirements( item, reqs[params[1]] )
				else
					canUseWikidata = true
				end
				if canUseWikidata then
					local wikidataIds = getIdsFromWikidata( item, 'P' .. params[2] )
					if wikidataIds[1] then
						if val and val ~= '' and val ~= wikidataIds[1] then
							differentOnWDCat = "[[Categoria:Pàgines amb paràmetres d'autoritat diferents de Wikidata]]"
						elseif not val then -- si val=='', paràmetre definit però buit, no el mostrarà
							parentArgs[params[1]] = wikidataIds[1]
						end
					end
				end
			end
		end
	end
	
	--Worldcat
	if parentArgs['WORLDCATID'] and parentArgs['WORLDCATID'] ~= '' then
		table.insert( elements1, createRow( 'WORLDCATID', '', parentArgs['WORLDCATID'], '[http://www.worldcat.org/identities/' .. parentArgs['WORLDCATID'] .. ' WorldCat]', false ) ) --Validation?
	elseif parentArgs['LCCN'] and parentArgs['LCCN'] ~= '' then
		local lccnParts = splitLccn( parentArgs['LCCN'] )
		if lccnParts and lccnParts[1] ~= 'sh' then
			table.insert( elements1, createRow( 'LCCN', '', parentArgs['LCCN'], '[http://www.worldcat.org/identities/lccn-' .. lccnParts[1] .. lccnParts[2] .. '-' .. lccnParts[3] .. ' WorldCat]', false ) )
		end
	end

	--Configured rows
	for k, params in pairs( conf ) do
		local val = parentArgs[params[1]]
		if val and val ~= '' then
			local link
			if params.prefix then
				link = params[3](val, '1')
				if link then
					link = ' (' .. link .. ')'
				end
			else
				link = params[3](val, params[1])
			end
			if link then
				table.insert( (params[4] == 2 and elements2 or elements1), createRow( params[1], params.prefix or '', val, link .. differentOnWDCat, true ) )
			end
		end
	end
	if #elements1 ~= 0 or #elements2 ~= 0 then
		local Navbox = require('Module:Navbox')
		return Navbox._navbox( {
			name  = 'Autoritat',
			bodyclass = 'hlist',
			group1 = "[[Control d'autoritats|Registres d'autoritat]]",
			list1 = table.concat( elements1 ),
			group2 = "Bases d'informació",
			list2 = table.concat( elements2 )
		} )
	end
	return ''

end

return p