মডিউল:কর্তৃপক্ষ নিয়ন্ত্রণ

উইকিসংকলন থেকে

-- বাংলায় ফলাফল দিতে এই মডিউলে কিছু পরিবর্তন করা হয়েছে। হালনাগাদের সময় সতর্কতা অবলম্বন করুন।
local bnSongkha = require('মডিউল:ConvertDigit')
function getCatForId( id )
    local title = mw.title.getCurrentTitle()
    local namespace = title.namespace
    if namespace == 0 then
        return '[[বিষয়শ্রেণী:কর্তৃপক্ষ নিয়ন্ত্রণ উপাত্ত সহ প্রধান পাতা]]'
    elseif namespace == 2 and not title.isSubpage then
        return '[[বিষয়শ্রেণী:' .. id .. ' শনাক্তকারী সহ ব্যবহারকারী পাতা]]'
    elseif namespace == 106 and not title.isSubpage then
        return '[[বিষয়শ্রেণী:কর্তৃপক্ষ নিয়ন্ত্রণ উপাত্ত সহ প্রবেশদ্বারের পাতা]]'
    elseif namespace == 100 and not title.isSubpage then
        return '[[বিষয়শ্রেণী:কর্তৃপক্ষ নিয়ন্ত্রণ উপাত্ত সহ লেখকের পাতা]]'
    else
        return '[[বিষয়শ্রেণী:কর্তৃপক্ষ নিয়ন্ত্রণ উপাত্ত সহ বিবিধ পাতা]]'
    end
end

-- ** Author related authority controls follow **

function viafLink( id )
    if not string.match( id, '^%d+$' ) then
        return false
    end
    return '[http://viaf.org/viaf/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'ভিআইএএফ' )
end

function nkcLink( id )
	return '[http://aleph.nkp.cz/F/?func=find-c&local_base=aut&ccl_term=ica=' .. id .. '&CON_LNG=ENG ' .. bnSongkha._main(id) .. ']' 
end

function nclLink( id )
    if not string.match( id, '^%d+$' ) then
        return false
    end
    return '[http://aleweb.ncl.edu.tw/F/?func=accref&acc_sequence=' .. id .. '&CON_LNG=ENG ' .. bnSongkha._main(id) .. ']' 
end

function ndlLink( id )
	return '[http://id.ndl.go.jp/auth/ndlna/' .. id .. ' ' .. bnSongkha._main(id) .. ']' 
end

function sudocLink( id )
    if not string.match( id, '^%d%d%d%d%d%d%d%d[%dxX]$' ) then
        return false
    end
    return '[http://www.idref.fr/' .. id .. ' ' .. bnSongkha._main(id) .. ']' 
end

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 ' .. bnSongkha._main(id) .. ']'
end

function lirLink( id )
    if not string.match( id, '^%d+$' ) then
        return false
    end
    return '[http://www.e-lir.ch/e-LIR___Lexicon.' .. id .. '.450.0.html ' .. bnSongkha._main(id) .. ']'
end

function lccnLink( id )
    local parts = splitLccn( id )
    if not parts then
        return false
    end
    id = parts[1] .. parts[2] .. append( parts[3], '0', 6 )
    return '[http://id.loc.gov/authorities/names/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'এলসিসিএন' )
end

function splitLccn( id )
    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

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

function isniLink( id )
    id = validateIsni( id )
    if not id then
        return false
    end
    return '[http://isni.org/' .. id .. ' ' .. bnSongkha._main(id:sub( 1, 4 )) .. ' ' .. bnSongkha._main(id:sub( 5, 8 )) .. ' '  .. bnSongkha._main(id:sub( 9, 12 )) .. ' '  .. bnSongkha._main(id:sub( 13, 16 )) .. ']' .. getCatForId( 'আইএসএনআই' )
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
function validateIsni( id )
    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

--Returns the ISNI check digit isni must be a string where the 15 first elements are digits
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

function orcidLink( id )
    id = validateIsni( id )
    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 .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'ওআরসিআইডি' )
end

function gndLink( id )
    return '[http://d-nb.info/gnd/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'জিএনডি' )
end

function selibrLink( id )
	if not string.match( id, '^%d+$' ) then
        return false
    end
    return '[http://libris.kb.se/auth/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'এসইএলআইবিআর' )
end

function bnfLink( id )
    --Add cb prefix if it has been removed
    if not string.match( id, '^cb.+$' ) then
        id = 'cb' .. id
    end

    return '[http://catalogue.bnf.fr/ark:/12148/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'বিএনএফ' )
end

function bpnLink( id )
    if not string.match( id, '^%d+$' ) then
        return false
    end
    return '[http://www.biografischportaal.nl/persoon/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'বিপিএন' )
end

function ridLink( id )
    return '[http://www.researcherid.com/rid/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'আরআইডি' )
end

function bibsysLink( id )
    return '[http://ask.bibsys.no/ask/action/result?cmd=&kilde=biblio&cql=bs.autid+%3D+' .. id .. '&feltselect=bs.autid ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'BIBSYS' )
end

function ulanLink( id )
    return '[http://www.getty.edu/vow/ULANFullDisplay?find=&role=&nation=&subjectid=' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'ULAN' )
end

function nlaLink( id )
	return '[http://nla.gov.au/anbd.aut-an' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'NLA' )
end
function banglapediaBengaliLink( id )
	return '[http://bn.banglapedia.org/index.php?title=' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'বাংলাপিডিয়া' )
end

function mbLink( id )
    -- TODO Implement some sanity checking regex
    return '[//musicbrainz.org/artist/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'MusicBrainz' )
end

function calisLink( id )
	return '[http://opac.calis.edu.cn/aopac/ajsp/detail.jsp?actionfrom=1&actl=CAL++' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'CALIS' )
end

function ciniiLink( id )
	return '[http://ci.nii.ac.jp/author/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'CiNii' )
end

function sbnLink( id )
	return '[http://id.sbn.it/af/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'SBN' )
end

function cbdbLink( id )
	return '[http://db1.ihp.sinica.edu.tw/cbdbc/cbdbkmeng?~~AAA' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'CBDB' )
end

function leonoreLink( id )
	return '[http://www.culture.gouv.fr/public/mistral/leonore_fr?ACTION=CHERCHER&FIELD_1=COTE&VALUE_1=' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'Léonore' )
end

function dbnlLink( id )
	return '[http://www.dbnl.org/auteurs/auteur.php?id=' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'DBNL' )
end

function rslLink( id )
	return '[http://aleph.rsl.ru/F?func=find-b&find_code=SYS&adjacent=Y&local_base=RSL11&request=' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'RSL' )
end

function ptbnpLink( id )
	return '[http://purl.pt/index/geral/aut/PT/' .. id .. '.html ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'PTBNP' )
end

function ntaLink( id )
	-- Nationale Thesaurus Auteursnamen
	return '[http://opc4.kb.nl/PPN?PPN=' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'NTA' )
end

function bavLink( id )
	return id .. getCatForId( 'BAV' )
	-- there may not be an online catalogue for the Vatican Library (Wikidata is not currently linking to anything)
end

function nliLink( id )
	return '[http://a20.libnet.ac.il/F?func=find-b&REQUEST=' .. id .. '&find_code=SYS&local_base=NNL10 ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'NLI' )
end

function nlcLink( id )
	return '[http://opac.nlc.gov.cn/F/?func=accref&acc_sequence=' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'NLC' )
end

function nukatLink( id )
	return id .. getCatForId( 'NUKAT' )
	-- linking format not currently available on Wikidata and cannot find anything suitable as http://www.nukat.edu.pl/
end

function botanistLink( id )
	id2 = mw.ustring.gsub(id, '%s', function(s) return mw.uri.encode(s, 'PATH') end)
    return '[http://www.ipni.org/ipni/advAuthorSearch.do?find_abbreviation=' .. id2 .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'IPNI' )
end

function naraIdLink( id )
	return '[http://research.archives.gov/person/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'NARA' )
end

function ibdbLink( id )
	return '[http://www.ibdb.com/person.php?id=' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'IBDB' )
end

function isfdbIdLink( id )
	return '[http://www.isfdb.org/cgi-bin/ea.cgi?' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'ISFDB' )
end

function findGraveLink( id )
	return '[http://www.findagrave.com/cgi-bin/fg.cgi?page=gr&GRid=' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'Find a Grave' )
end

function mgpLink( id )
	return '[http://genealogy.math.ndsu.nodak.edu/id.php?id=' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'MGP' )
end

function rkdLink( id )
	return '[http://explore.rkd.nl/nl/artists/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'RKD' )
end

function bneLink( id )
	return '[http://catalogo.bne.es/uhtbin/authoritybrowse.cgi?action=display&authority_id=' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'BNE' )
end

function nlrLink( id )
	return '[http://alephnew.bibnat.ro:8991/F?func=find-b&request=' .. id .. '&find_code=SYS&adjacent=Y&local_base=NLR10 ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'NLR' )
end

function chLink( id )
	-- Catholic Hierarchy (database of bishops)
	return '[http://www.catholic-hierarchy.org/bishop/b' .. id .. '.html ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'Catholic Hierarchy' )
end

function sycomoreLink( id )
	return '[http://www.assemblee-nationale.fr/sycomore/fiche.asp?num_dept=' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'Sycomore' )
end

function uscongressLink( id )
    return '[http://bioguide.congress.gov/scripts/biodisplay.pl?index=' .. id .. ' ' .. bnSongkha._main(id) .. ']' 
end

function kulturnavLink( id )
    return '[http://kulturnav.org/language/en/' .. id .. ' id]' 
end
 
function sikartLink( id )
    return '[http://www.sikart.ch/KuenstlerInnen.aspx?id=' .. id .. '&lng=en ' .. bnSongkha._main(id) .. ']' 
end
 
function tlsLink( id )
	id2 = mw.ustring.gsub(id, '%s', function(s) return mw.uri.encode(s, 'WIKI') end)
    return '[http://tls.theaterwissenschaft.ch/wiki/' .. id2 .. ' ' .. bnSongkha._main(id) .. ']' 
end

function PrdlLink( id )
	return '[http://prdl.org/author_view.php?a_id=' .. id .. ' ' .. bnSongkha._main(id) .. ']' 
end

function NupillALink( id )
	return '[http://www.literaturabrasileira.ufsc.br/autores/?id=' .. id .. ' ' .. bnSongkha._main(id) .. ']' 
end

function MacTutorBLink( id )
	return '[http://www-history.mcs.st-andrews.ac.uk/Biographies/' .. id .. '.html ' .. bnSongkha._main(id) .. ']' 
end

function AtclLink( id )
	return '[http://www.victorianresearch.org/atcl/show_author.php?aid=' .. id .. ' ' .. bnSongkha._main(id) .. ']' 
end

function ElemLink( id )
	return '[http://www.elem.mx/autor/datos/' .. id .. ' ' .. bnSongkha._main(id) .. ']' 
end

function ImslpLink( id )
	return '[http://imslp.org/wiki/' .. id .. ' ' .. bnSongkha._main(id) .. ']' 
end

function OdnbLink( id )
	return '[http://www.oxforddnb.com/index/' .. id .. '/ ' .. bnSongkha._main(id) .. ']' 
end

function GecLink( id )
	return '[http://www.enciclopedia.cat/enciclop%C3%A8dies/gran-enciclop%C3%A8dia-catalana/EC-GEC-' .. id .. '.xml ' .. bnSongkha._main(id) .. ']' 
end

-- ** Subject related or general authority controls follow **

function imdbLink( id )
	return '[http://www.imdb.com/Name?' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'IMDB' )
end

function freebaseLink( id )
	return '[http://www.freebase.com' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'Freebase' )
end

function naraOrgLink( id )
	return '[http://research.archives.gov/organization/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'NARA' )
end

function naraGeoLink( id )
	return '[http://research.archives.gov/geographic-reference/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'NARA' )
end

function naraSubLink( id )
	return '[http://research.archives.gov/topical-subject/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'NARA' )
end

function naraTypeLink( id )
	return '[http://research.archives.gov/specific-records-type/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'NARA' )
end

function isfdbPubLink( id )
	return '[http://www.isfdb.org/cgi-bin/publisher.cgi?' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'ISFDB' )
end

function isfdbConLink( id )
	return '[http://www.isfdb.org/cgi-bin/pl.cgi?' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'ISFDB' )
end

function lembpLink( id )
	--Lista de Encabezamientos de materia para las Bibliotecas Públicas = List of Subject Headings for Public Libraries (Spanish)
	return '[http://id.sgcb.mcu.es/lem/ver/Autoridades/' .. id .. '/concept ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'LEMBP' )
end

function ddcLink( id )
	return '[http://dewey.info/class/' .. id .. '/about ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'DDC' )
end

function libriVoxAuthorLink( id )
        return '[https://librivox.org/author/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'LVA' )
end

function GutenbergLink( id )
	return '[https://www.gutenberg.org/ebooks/author/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'Gutenberg' )
end



-- ** Book and work related authority controls follow **

function isbnLink( id )
	return '[[Special:BookSources/' .. id .. '|' .. bnSongkha._main(id) .. ']]' .. getCatForId( 'ISBN' )
	-- ISBN currently only reads ISBN-13 numbers from Wikidata and ignores ISBN-10 numbers
end

function oclcLink( id )
	return '[http://www.worldcat.org/oclc/' .. id .. '?lang=en ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'OCLC' )
end

function openLibLink( id )
	return '[http://openlibrary.org/books/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'Open Library' )
end

function libraryThingLink( id )
	return '[http://www.librarything.com/work/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'LibraryThing' )
end

function archiveLink( id )
	return '[http://www.archive.org/details/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'Internet Archive' )
end

function europeanaLink( id )
	return '[http://www.europeana.eu/portal/record/' .. id .. '.html ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'Europeana' )
end

function lccnBibliographicLink( id )
	return '[http://lccn.loc.gov/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'LCCN (bibliographic)' )
end

function googleBooksLink( id )
	return '[http://books.google.com/books?id=' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'Google Books' )
end

function ndlBibliographicLink( id )
	return '[http://iss.ndl.go.jp/books?op_id=1&any=' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'NDL (bibliographic)' )
end

function issnLink( id )
	return '[http://www.worldcat.org/search?fq=x0:jrnl&q=n2:' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'ISSN' )
end

function doiLink( id )
	return '[http://dx.doi.org/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'DOI' )
end

function eraLink( id )
	return '[http://lamp.infosys.deakin.edu.au/era/?page=jnamedet12f&eraid=' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'ERA' )
end

function ismnLink( id )
	return id .. getCatForId( 'ISMN' )
	-- no link currently available for ISMN on Wikidata and none found elsewhere
end

function isfdbBookLink( id )
	return '[http://www.isfdb.org/cgi-bin/title.cgi?' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'ISFDB' )
end

function isfdbSerLink( id )
	return '[http://www.isfdb.org/cgi-bin/pe.cgi?' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'ISFDB' )
end

function sudocBibliographicLink( id )
	return '[http://www.sudoc.fr/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'SUDOC' )
end

function swbLink( id )
	-- South-West German Library Network
	return '[http://swb.bsz-bw.de/DB=2.1/PPNSET?PPN=' .. id .. '&INDEXSET=1 ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'SWB' )
end

function zdbLink( id )
	-- Zeitschriftendatenbank
	return '[http://dispatch.opac.d-nb.de/DB=1.1/CMD?ACT=SRCHA&IKT=8506&TRM=' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'ZDB' )
end

function nlmLink( id )
	return '[http://locatorplus.gov/cgi-bin/Pwebrecon.cgi?DB=local&v1=1&ti=1,1&Search_Arg=' .. id .. '&Search_Code=0359&CNT=20&SID=1 ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'NLM' )
end

function selibrBibliographicLink( id )
	return '[http://libris.kb.se/bib/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'SELIBR' )
end

function dliLink( id )
	return '[http://dli.gov.in/cgi-bin/DBscripts/allmetainfo.cgi?barcode=' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'DLI' )
end

function hathitrustLink( id )
	return '[http://catalog.hathitrust.org/Record/' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'HathiTrust' )
end

-- Entry for Wikisource using 'wgArticleID' as an authority. Should always be last

function wksLink( id )
    if id and wksid ~= '' then
	return false
    end
    return '[//bn.wikisource.org/w/index.php?curid=' .. id .. ' ' .. bnSongkha._main(id) .. ']' .. getCatForId( 'WKS' )
end

-- End of authority control link formatting functions

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

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

function createRow( id, label, rawValue, link, withUid )
    if link then
        if withUid then
            return '* ' .. label .. '&#160;<span class="uid plainlinks">' .. link .. '</span>\n'
        else
            return '* ' .. label .. '&#160;<span class="plainlinks">' .. link .. '</span>\n'
        end
    else
        return '* <span class="error">আইডি ' .. id .. ' ' .. rawValue .. ' বৈধ নয়।</span>[[বিষয়শ্রেণী:ত্রুটিপূর্ণ কর্তৃপক্ষ নিয়ন্ত্রণ শনাক্তকারীসহ উইকিসংকলন নিবন্ধ]]\n'
    end
end

-- *** List of displayed authority control IDs ***
-- Authority controls will appear in the same order as the list below
--In this order: { name of the parameter, label, propertyId in Wikidata, formatting function },
local conf = {
    { 'VIAF', '[[w:ভার্চুয়াল ইন্টারন্যাশনাল অথরিটি ফাইল|ভিআইএএফ]]', 214, viafLink },
    { 'LCCN', '[[w:Library of Congress Control Number|এলসিসিএন]]', 244, lccnLink },
    { 'ISNI', '[[w:International Standard Name Identifier|আইএসএনআই]]', 213, isniLink },
    { 'ORCID', '[[w:ORCID|ওআরসিআইডি]]', 496, orcidLink },
    { 'GND', '[[w:Integrated Authority File|জিএনডি]]', 227, gndLink },
    { 'SELIBR', '[[w:LIBRIS|এসইএলআইবিআর]]', 906, selibrLink },
    { 'SUDOC', '[[w:Système universitaire de documentation|এসইউডিওসি]]', 269, sudocLink },
    { 'BNF', '[[w:Bibliothèque nationale de France|বিএনএফ]]', 268, bnfLink },
    { 'BPN', '[[w:Biografisch Portaal|বিপিএন]]', 651, bpnLink },
    { 'RID', '[[w:ResearcherID|রিসার্চার আইডি]]', 1053, ridLink },
    { 'BIBSYS', '[[w:BIBSYS|বিআইবিএসওয়াইএস]]', 1015, bibsysLink },
    { 'ULAN', '[[w:Union List of Artist Names|ইউএলএএন]]', 245, ulanLink },
    { 'HDS', '[[w:Historical Dictionary of Switzerland|এইচডিএস]]', 902, hlsLink },
    { 'LIR', '[[w:Historical Dictionary of Switzerland#Lexicon_Istoric_Retic|এলআইআর]]', 886, lirLink },
    { 'MBA', '[[w:মিউজিকব্রেনজ্|এমবি]]', 434, mbLink },
    { 'NLA', '[[w:National Library of Australia|এনএলএ]]', 409, nlaLink },
    { 'BanglapediaBengali', '[[w:বাংলাপিডিয়া|বাংলাপিডিয়া]]', 4254, banglapediaBengaliLink },
    { 'NDL', '[[w:National Diet Library|এনডিএল]]', 349, ndlLink },
    { 'NCL', '[[w:National Central Library|এনসিএল]]', 1048, nclLink },
    { 'NKC', '[[w:National Library of the Czech Republic|এনকেসি]]', 691, nkcLink },
    { 'CALIS', 'সিএএলআইএস', 270, calisLink },
    { 'CiNii', '[[w:CiNii|চিনি]]', 271, ciniiLink },
    { 'SBN', '[[w:ইস্তিতুতো চেন্ত্রালে পের ইল কাতালগো উনিকো|এসবিএন]]', 396, sbnLink },
    { 'CBDB', 'সিবিডিবি', 497, cbdbLink },
    { 'Leonore', '[[w:Legion of Honour|লেওনর]]', 640, leonoreLink },
    { 'DBNL', '[[w:Digital Library for Dutch Literature|ডিবিএনএল]]', 723, dbnlLink },
    { 'RSL', '[[w:Russian State Library|আরএসএল]]', 947, rslLink },
    { 'PTBNP', '[[w:Biblioteca Nacional de Portugal|পিটিবিএনপি]]', 1005, ptbnpLink },
    { 'NTA', 'এনটিএ', 1006, ntaLink },
    { 'BAV', '[[w:Vatican Library|বিএভি]]', 1017, bavLink },
    { 'NLI', '[[w:National Library of Israel|এনএলআই]]', 949, nliLink },
    { 'NLC', '[[w:National Library of China|এনএলসি]]', 1213, nlcLink },
    { 'NUKAT', 'এনইউকেএটি', 1207, nukatLink },
    { 'Botanist', '[[w:International Plant Names Index|বোটানিস্ট]]', 428, botanistLink },
    { 'NARAid', '[[w:National Archives and Records Administration|এনএআরএ]]', 1222, naraIdLink },
    { 'IBDB', '[[w:Internet Broadway Database|আইবিডিবি]]', 1220, ibdbLink },
    { 'ISFDB', '[[w:Internet Speculative Fiction Database|আইএসএফডিবি]]', 1233, isfdbIdLink },
    { 'LibriVoxAuth', '[[w:LibriVox|লিভ্রিভক্স]]', 1899, libriVoxAuthorLink },
    { 'Gutenberg', '[[w:প্রজেক্ট গুটেনবার্গ|প্রজেক্ট গুটেনবার্গ]]', 1938, GutenbergLink },
    { 'Grave', '[[w:ফাইন্ড এ গ্রেভ|ফাইন্ড এ গ্রেভ]]', 535, findGraveLink },
    { 'MGP', '[[w:Mathematics Genealogy Project|এমজিপি]]', 549, mgpLink },
    { 'RKD', '[[w:Netherlands Institute for Art History|আরকেডি]]', 650, rkdLink },
    { 'BNE', '[[w:Biblioteca Nacional de España|বিএনই]]', 950, bneLink },
    { 'NLR', '[[w:National Library of Romania|এনএলআর]]', 1003, nlrLink },
    { 'Sycomore', '[[w:জাতীয় পরিষদ (ফ্রান্স)|সিকোমোর]]', 1045, sycomoreLink },
    { 'CH', '[[w:Hierarchy of the Catholic Church|সিএইচ]]', 1047, chLink },
    { 'USCongress', '[[w:Biographical Directory of the United States Congress|মার্কিন কংগ্রেস]]', 1157, uscongressLink },
    { 'TLS', '[[w:Theaterlexikon der Schweiz|টিএলএস]]', 0, tlsLink },
    { 'SIKART', '[[w:SIKART|SIKART]]', 781, sikartLink },
    { 'KULTURNAV', 'কুলতুরন্যাভ', 1248, kulturnavLink },
    { 'LCCNbook', '[[w:Library of Congress Control Number|এলসিসিএন]]', 1144, lccnBibliographicLink },
    { 'OCLC', '[[w:OCLC|OCLC]]', 243, oclcLink },
    { 'ISBN', '[[w:আন্তর্জাতিক মান পুস্তক সংখ্যা|আইএসবিএন]]', 212, isbnLink },
    { 'NDLbook', '[[w:National Diet Library|NDL]]', 1054, ndlBibliographicLink },
    { 'ISSN', '[[w:আন্তর্জাতিক মান ক্রমিক সংখ্যা|আইএসএসএন]]', 236, issnLink },
    { 'DOI', '[[w:ডিজিটাল অবজেক্ট আইডেন্টিফায়ার|ডিওআই]]', 236, doiLink },
    { 'ERA', 'ERA', 1058, eraLink },
    { 'ISMN', '[[w:International Standard Music Number|ISMN]]', 1208, ismnLink },
    { 'SUDOCbook', '[[w:Système universitaire de documentation|SUDOC]]', 1025, sudocBibliographicLink },
    { 'ZDB', 'ZDB', 1042, zdbLink },
    { 'SWB', 'SWB', 1044, swbLink },
    { 'NLM', '[[w:United States National Library of Medicine|NLM]]', 1055, nlmLink },
    { 'SELIBRbook', '[[w:LIBRIS|SELIBR]]', 1182, selibrBibliographicLink },
    { 'ISFDBser', '[[w:Internet Speculative Fiction Database|ISFDB]]', 1235, isfdbSerLink },
    { 'ISFDBcon', '[[w:Internet Speculative Fiction Database|ISFDB]]', 1234, isfdbConLink },
    { 'OL', '[[w:ওপেন লাইব্রেরি|ওপেন লাইব্রেরি]]', 648, openLibLink },
    { 'ARCHIVE', '[[w:ইন্টারনেট আর্কাইভ|ইন্টারনেট আর্কাইভ]]', 724, archiveLink },
    { 'DLI', '[[w:Digital Library of India|ডিজিটাল লাইব্রেরি অফ ইন্ডিয়া]]', 2185, dliLink },
    { 'HathiTrust', '[[w:HathiTrust|HathiTrust]]', 1844, hathitrustLink },
    { 'Google', '[[w:গুগল বুকস|গুগল]]', 675, googleBooksLink },
    { 'Europeana', '[[w:ইউরোপিয়ানা|ইউরোপিয়ানা]]', 727, europeanaLink },
    { 'LT', '[[w:লাইব্রেরিথিং|লাইব্রেরিথিং]]', 1085, libraryThingLink },
    { 'Dewey', '[[w:Dewey Decimal Classification|Dewey]]', 1036, ddcLink },
    { 'NARAorg', '[[w:National Archives and Records Administration|NARA]]', 1223, naraOrgLink },
    { 'NARAgeo', '[[w:National Archives and Records Administration|NARA]]', 1224, naraGeoLink },
    { 'NARAsub', '[[w:National Archives and Records Administration|NARA]]', 1225, naraSubLink },
    { 'NARAtype', '[[w:National Archives and Records Administration|NARA]]', 1226, naraTypeLink },
    { 'ISFDBpub', '[[w:Internet Speculative Fiction Database|ISFDB]]', 1239, isfdbPubLink },
    { 'LEMBP', 'LEMBP', 920, lembpLink },
    { 'IMDB', '[[w:ইন্টারনেট মুভি ডেটাবেজ|আইএমডিবি]]', 345, imdbLink },
    { 'Freebase', '[[w:ফিব্রেইস|ফিব্রেইস]]', 646, freebaseLink },
    { 'PRDL', '[[w:Post-Reformation Digital Library|PRDL]]', 1463, PrdlLink },
    { 'NUPILL-A', 'NUPILL', 1473, NupillALink },
    { 'MacTutorB', '[[w:MacTutor History of Mathematics archive|MacTutor]]', 1563, MacTutorBLink },
    { 'ATCL', 'ATCL', 1564, AtclLink },
    { 'ELeM', 'ELeM', 1565, ElemLink },
    { 'Imslp', '[[w:International Music Score Library Project|IMSLP]]', 839, ImslpLink },
    { 'Odnb', '[[w:Oxford Dictionary of National Biography|ODNB]]', 1415, OdnbLink },
    { 'Gec', '[[w:Gran Enciclopèdia Catalana|GEC]]', 1296, GecLink },	
    { 'WKS', '[[উইকিসংকলন:কর্তৃপক্ষ নিয়ন্ত্রণ|বাংলা উইকিসংকলন]]', 0, wksLink },
}

-- Check that the Wikidata item has this property-->value before adding it
local reqs = {}
reqs['MBA'] = {
    { 106, 177220 }, -- occupation -> singer
    { 31, 177220 }, -- instance of -> singer
    { 106, 13385019 }, -- occupation -> rapper
    { 31, 13385019 }, -- instance of -> rapper
    { 106, 639669 }, -- occupation -> musician
    { 31, 639669 }, -- instance of -> musician
    { 106, 36834 }, -- occupation -> composer
    { 31, 36834 }, -- instance of -> composer
    { 106, 488205 }, -- occupation -> singer-songwriter
    { 31, 488205 }, -- instance of -> singer-songwriter
    { 106, 183945 }, -- occupation -> record producer
    { 31, 183945 }, -- instance of -> record producer
    { 106, 10816969 }, -- occupation -> club DJ
    { 31, 10816969 }, -- instance of -> club DJ
    { 106, 130857 }, -- occupation -> DJ
    { 31, 130857 }, -- instance of -> DJ
    { 106, 158852 }, -- occupation -> conductor
    { 31, 158852 }, -- instance of -> conductor
    { 31, 215380 }, -- instance of -> band 
}

local p = {}

function p.authorityControl( frame )
    local parentArgs = frame:getParent().args
    local wksid = frame.args.wksid
    --Create rows
    local elements = {}

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

	--bn.wikisource backwards compatibility
	--redirect LCCNid to LCCN
    if (parentArgs.LCCN == nil or parentArgs.LCCN == '') and parentArgs.LCCNid ~= nil and parentArgs.LCCNid ~= '' then
        parentArgs.LCCN = parentArgs.LCCNid
    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 or val == '' then
                	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

    --Configured rows
    local rct = 0
    for k, params in pairs( conf ) do
        local val = parentArgs[params[1]]
        if val and val ~= '' then
            table.insert( elements, createRow( params[1], params[2] .. ':', val, params[4]( val ), true ) )
            rct = rct + 1
        end
    end

    --Wikisource self reference
    if wksid and wksid ~= '' then
        table.insert( elements, createRow( 'wksid', '', wksid, '[[উইকিসংকলন:কর্তৃপক্ষ নিয়ন্ত্রণ|বাংলা উইকিসংকলন]]: [//bn.wikisource.org/w/index.php?curid=' .. wksid .. ' ' .. bnSongkha._main(wksid) .. ']', true ) )
    end

    --WorldCat
    if parentArgs['WORLDCATID'] and parentArgs['WORLDCATID'] ~= '' then
        table.insert( elements, createRow( 'WORLDCATID', '', parentArgs['WORLDCATID'], '[http://www.worldcat.org/identities/' .. parentArgs['WORLDCATID'] .. ' ওয়ার্ল্ডক্যাট]', false ) ) --Validation?
    elseif parentArgs['LCCN'] and parentArgs['LCCN'] ~= '' then
        local lccnParts = splitLccn( parentArgs['LCCN'] )
        if lccnParts then
            table.insert( elements, createRow( 'LCCN', '', parentArgs['LCCN'], '[http://www.worldcat.org/identities/lccn-' .. lccnParts[1] .. lccnParts[2] .. '-' .. lccnParts[3] .. ' ওয়ার্ল্ডক্যাট]', false ) )
        end
    elseif parentArgs['VIAF'] and parentArgs['VIAF'] ~= '' then
    	table.insert( elements, createRow( 'VIAF', '', parentArgs['VIAF'], '[http://www.worldcat.org/identities/viaf-' .. parentArgs['VIAF'] .. ' ওয়ার্ল্ডক্যাট]', false ) )
    elseif parentArgs['OCLC'] and parentArgs['OCLC'] ~= '' then
    	table.insert( elements, createRow( 'OCLC', '', parentArgs['OCLC'], '[http://www.worldcat.org/oclc/' .. parentArgs['OCLC'] .. ' ওয়ার্ল্ডক্যাট]', false ) )
    end

    local Navbox = require('Module:Navbox')
--    local elementscats = ''
--    if rct > 13 then
-- add tracking category for pages with many authority control IDs (minimum threshold set in the if statement)
--    	elementscats  = '[[বিষয়শ্রেণী:' .. bnSongkha._main(rct) .. ' উপাদানসহ কর্তৃপক্ষ নিয়ন্ত্রণ]]'
--    end
    return Navbox._navbox( {
        name  = 'কর্তৃপক্ষ নিয়ন্ত্রণ',
        bodyclass = 'hlist',
        wrapclass = 'acContainer',
        group1 = '[[উইকিসংকলন:কর্তৃপক্ষ নিয়ন্ত্রণ|কর্তৃপক্ষ নিয়ন্ত্রণ]]',
        list1 = table.concat( elements )
    } )
end

return p