Vés al contingut

Mòdul:Authority control: diferència entre les revisions

De la Viquipèdia, l'enciclopèdia lliure
Contingut suprimit Contingut afegit
actualització CANTIC, nou id i nou url
-- Coment el missatge d'error perquè no sé "traduir" el regex, almanco així funcionarà
(Hi ha una revisió intermèdia que no es mostren del mateix usuari)
Línia 63: Línia 63:


local function sbnLink( id )
local function sbnLink( id )
--P396's format regex: IT\\ICCU\\(\d{10}|\D\D[\D\d]\D\\\d{6}) (e.g. IT\ICCU\CFIV\000163)
--P396's format regex: \D{2}[A-Z0-3]V\d{6} (e.g. TO0V164579)
if not id:match( '^IT\\ICCU\\%d%d%d%d%d%d%d%d%d%d$' ) and
-- if not id:match( '^IT\\ICCU\\%d%d%d%d%d%d%d%d%d%d$' ) and
not id:match( '^IT\\ICCU\\%u%u[%u%d]%u\\%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)
-- not id:match( '^IT\\ICCU\\%u%u[%u%d]%u\\%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
-- return false
-- end -- Coment l'error perquè no sé "traduir" el regex
end
return '[http://opac.sbn.it/opacsbn/opac/iccu/scheda_authority.jsp?bid=' .. id .. ' ' .. id .. ']'
return '[https://opac.sbn.it/nome/' .. id .. ' ' .. id .. ']'
end
end



Revisió del 20:43, 15 març 2022

Icona de documentació de mòdul Documentació del mòdul [ mostra ] [ modifica el codi ] [ mostra l'historial ] [ refresca ]

Mòdul Authority control (codi · ús · discussió · proves · tests · casos prova | subpàgines · enllaços)

A continuació es mostra la documentació transclosa de la subpàgina /ús. [salta a la caixa de codi]


Aquest mòdul conté el codi per a la plantilla {{Autoritat}}. Vegeu la seva documentació per a més informació

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 )
	--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 .. ' ' .. id .. ']' .. getCatForId( 'CANTIC' )
end

local function viafLink( id )
	--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 .. ' ' .. id .. ']'
end

local function bneLink( id )
	--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 .. ' ' .. id .. ']'
end

local function mgpLink( id )
    --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 .. ' ' .. id .. ']' 
end

local function rslLink( id )
    --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 ' .. id .. ']'
end

local function leonoreLink( id )
    --P640's format regex: LH/\d{1,4}/\d{1,3}|19800035/\d{1,4}/\d{1,5}(Bis)?|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( '^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 .. ' ' .. id .. ']' 
end

local function sbnLink( id )
    --P396's format regex: \D{2}[A-Z0-3]V\d{6} (e.g. TO0V164579)
--	if not id:match( '^IT\\ICCU\\%d%d%d%d%d%d%d%d%d%d$' ) and
--		not id:match( '^IT\\ICCU\\%u%u[%u%d]%u\\%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 -- Coment l'error perquè no sé "traduir" el regex
    return '[https://opac.sbn.it/nome/' .. id .. ' ' .. id .. ']'
end

local function nkcLink( id )
	--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 ' .. id .. ']' 
end

local function nclLink( id )
    --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 ' .. id .. ']' 
end

local function ndlLink( id )
	--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 .. ' ' .. id .. ']' 
end

local function sudocLink( id )
	--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 .. ' ' .. id .. ']' 
end

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

local function lirLink( id )
	--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 ' .. 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 )
	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..' '..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 )
	id = validateIsni( id ) --e.g. 0000-0000-6653-4145
	if not id then
		return false
	end
	return '[http://isni.org/' .. id .. ' ' .. id:sub( 1, 4 ) .. ' ' .. id:sub( 5, 8 ) .. ' '  .. id:sub( 9, 12 ) .. ' '  .. id:sub( 13, 16 ) .. ']'
end

local function orcidLink( id )
	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 .. ' ' .. id .. ']'
end

local function gndLink( id )
	--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 .. ' ' .. id .. ']'
end

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

local function bnfLink( id )
	--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 .. ' ' .. id .. ']'
end

local function bpnLink( id )
	--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 .. ' ' .. id .. ']'
end

local function ridLink( id )
	--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 .. ' ' .. id .. ']'
end

local function bibsysLink( id )
	--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 ' .. id .. ']'
end

local function ulanLink( id )
	--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 .. ' ' .. id .. ']'
end

local function nlaLink( id )
	--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 .. ' ' .. id .. ']'
end

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

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

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

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

local function gecLink( id )
	return '[http://www.enciclopedia.cat/EC-GEC-' .. id .. '.xml ' .. id .. ']'
end

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

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

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

local function Europeana( id )
	--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 .. ' ' .. 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

--In this order: name of the parameter, label, propertyId in Wikidata, formatting function, fila (1 autoritats, 2 altres)
local conf = {
	-- autoritats, en català
	{ 'CANTIC', '[[CANTIC]]', 9984, canticLink, 1 },
	-- autoritats, altres
	{ 'BNE', "[[Biblioteca Nacional d'Espanya|BNE]]", 950, bneLink, 1 },
	{ 'BNF', '[[Biblioteca Nacional de França|BNF]]', 268, bnfLink, 1 },
	{ 'BPN', '[[Biografisch Portaal|BPN]]', 651, bpnLink, 1 },
	{ 'GND', '[[Gemeinsame Normdatei|GND]]', 227, gndLink, 1 },
	{ 'LCCN', '[[Número de Control de la Biblioteca del Congrés|LCCN]]', 244, lccnLink, 1 },
	{ 'VIAF', '[[Virtual International Authority File|VIAF]]', 214, viafLink, 1 },
	{ 'ISNI', '[[International Standard Name Identifier|ISNI]]', 213, isniLink, 1 },
	{ 'ORCID', '[[ORCID]]', 496, orcidLink, 1 },
	{ 'SELIBR', '[[LIBRIS|SELIBR]]', 906, selibrLink, 1 },
	{ 'SUDOC', '[[Système universitaire de documentation|SUDOC]]', 269, sudocLink, 1 },
	{ 'RID', '[[ResearcherID]]', 1053, ridLink, 1 },
	{ 'BIBSYS', '[[BIBSYS]]', 1015, bibsysLink, 1 },
	{ 'ULAN', '[[Union List of Artist Names|ULAN]]', 245, ulanLink, 1 },
	{ 'NLA', '[[National Library of Australia|NLA]]', 409, nlaLink, 1 },
	{ 'NDL', '[[Biblioteca Nacional de la Dieta del Japó|NDL]]', 349, ndlLink, 1 },
	{ 'NCL', '[[National Central Library|NCL]]', 1048, nclLink, 1 },
	{ 'NKC', '[[Biblioteca Nacional de la República Txeca|NKC]]', 691, nkcLink, 1 },
	{ 'Léonore', '[[Base Léonore|Léonore]]', 640, leonoreLink, 1 },
	{ 'RLS', '[[Russian State Library|RLS]]', 947, rslLink, 1 },
	{ 'SBN', '[[Istituto Centrale per il Catalogo Unico|ICCU]]', 396, sbnLink, 1 },
	-- bases d'informació, català
	{ 'DBD', '[[Diccionari de Dones|DBD]]', 2498, dbdLink, 2 },
	{ 'DLC', '[[Diccionari de la Literatura Catalana (Gran Enciclopèdia Catalana)|DLC]]', 7357, dlcLink, 2 },
	{ 'EEC', '[[Enciclopèdia de l\'Esport Català|EEC]]', 5513, eecLink, 2 },
	{ 'GEC', '[[Gran Enciclopèdia Catalana|GEC]]', 1296, gecLink, 2 },
	{ 'GEMUS', '[[Gran Enciclopèdia de la Música|GEMUS]]', 6412, gemLink, 2 },
	-- bases d'informació, altres
	{ 'Dialnet', '[[Dialnet]]', 1607, dialnetLink, 2 },
	{ 'Europeana', '[[Europeana]]', 7704, Europeana, 2 },
	{ 'HDS', '[[Diccionari Històric de Suïssa|HDS]]', 902, hlsLink, 2 },
	{ 'LIR', '[[Diccionari Històric de Suïssa#Lexicon_Istoric_Retic|LIR]]', 886, lirLink, 2 },
	{ 'MGP', '[[Mathematics Genealogy Project|MGP]]', 549, mgpLink, 2 },
	{ 'OSM', '[[OpenStreetMap|OSM]]', 402, osmLink, 2 },
	{ 'GA', '[[Google Acadèmic|GA]]', 1960, googlescholarLink, 2 },
}

-- 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
	--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[3] ~= 0 then
				local val = parentArgs[params[1]]
				if not val then -- si val=='', paràmetre definit però buit, no el mostrarà
					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[3] )
						if wikidataIds[1] then
							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
			if params[5] == 2 then
				table.insert( elements2, createRow( params[1], params[2] .. ':', val, params[4]( val ), true ) )
			else
				table.insert( elements1, createRow( params[1], params[2] .. ':', val, params[4]( val ), 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