Модуль:Sources: различия между версиями

Материал из Буквицы
Перейти к навигации Перейти к поиску
(Новая страница: «local p = {}; local i18nDefaultLanguage = 'Q7737'; local i18nEditors = { Q150 = '', -- French Q1321 = '', -- Spanish Q1860 = '', -- English Q7737 = 'п…»)
 
bukvica>Wikisaurus
(грузить Модуль:Languages только тогда, когда нужно (TODO: не выдавать ошибку, если нету - для малых разделов))
Строка 1: Строка 1:
local p = {};
local p = {}
 
local utils = require('Module:Sources/utils')
 
local i18nDefaultLanguage = 'ru'
 
local i18nEtAlDefault = ' et al.'
local i18nEtAl = {
ru = ' и др.',
}


local i18nDefaultLanguage = 'Q7737';
local i18nEditors = {
local i18nEditors = {
Q150 = '', -- French
fr = '',
Q1321 = '', -- Spanish
de = 'Hrsg.: ',
Q1860 = '', -- English
es = '',
Q7737 = 'под ред. ', -- Russian
en = '',
Q188 = 'Hrsg.: ', -- German
it = '',
ru = 'под ред. ',
}
}
local i18nTranslators = {
fr = '',
de = '',
es = '',
en = '',
it = '',
ru = 'пер. ',
}
local i18nVolume = {
local i18nVolume = {
Q150 = 'Vol.', -- French
    de  = 'Vol.',
Q1321 = 'Vol.', -- Spanish
fr = 'Vol.',
Q1860 = 'Vol.', -- English
es = 'Vol.',
Q7737 = 'Т.', -- Russian
en = 'Vol.',
it = 'Vol.',
ru = 'Т.',
}
}
local i18nPage = {
 
Q150 = 'P.', -- French
local i18nIssue = {
Q188 = 'S.', -- German
en = 'Iss.',
Q1321 = 'P.', -- Spanish
ru = 'вып.',
Q1860 = 'P.', -- English
Q7737 = 'С.', -- Russian
}
}


local monthg = {'января', 'февраля', 'марта', 'апреля', 'мая', 'июня',
local i18nPages = {
    'июля', 'августа', "сентября", "октября", "ноября", "декабря"};
fr = 'P.',
de = 'S.',
es = 'P.',
en = 'P.',
it = 'P.',
ru = 'С.',
}


local PREFIX_CITEREF = "CITEREF_";
local i18nNumberOfPages = {
en = 'p.',
ru = 'с.',
}


function p.deepcopy(orig)
local i18nTirage = {
    local orig_type = type(orig)
en = 'ed. size: %d',
    local copy
ru = '%d экз.',
    if orig_type == 'table' then
}
        copy = {}
        for orig_key, orig_value in pairs(orig) do
            copy[orig_key] = p.deepcopy( orig_value );
        end
else -- number, string, boolean, etc
        copy = orig
    end
    return copy
end


local options_commas = { separator = ', ', conjunction = ', ', format = function( src ) return src end, nolinks = false, preferids = false };
local options_commas_nolinks = { separator = ', ', conjunction = ', ', format = function( src ) return src end, nolinks = true, preferids = false };
local options_commas_it = { separator = ', ', conjunction = ', ', format = function( src ) return "''" .. src .. "''" end, nolinks = false, preferids = false };
local options_commas_it_nolinks = { separator = ', ', conjunction = ', ', format = function( src ) return "''" .. src .. "''" end, nolinks = true , preferids = false };
local options_citetypes = { separator = ' ', conjunction = ' ', format = function( src ) return 'citetype_' .. src end, nolinks = true , preferids = true };


function renderSource( src )
local monthg = {'января', 'февраля', 'марта', 'апреля', 'мая', 'июня', 'июля', 'августа', "сентября", "октября", "ноября", "декабря"}
mw.logObject( src );


if ( src.code and not src.url ) then
local PREFIX_CITEREF = "CITEREF_";
src.url = mw.wikibase.sitelink( src.code ) or ( 'd:' .. src.code )
src.url = ':' .. src.url;
end
src.lang = getSingle( src.lang ) or i18nDefaultLanguage;
src.title = src.title or getSingle( src.url ) or '\'\'(unspecified title)\'\''


if ( not src.year and src.date ) then
-- Returns formatted pair {Family name(s), First name(s)}
local date = getSingle( src.date );
local function tokenizeName( fullName )
src.year = mw.ustring.sub( date, 9, 12 );
local start = '^%s*' -- matches beginning of the string + arbitrary number of spaces
local finish = '%s*$' -- matches end of the string + arbitrary number of spaces
local comma = '\,%s+' -- matches comma + single or more spacing character
local space = '%s+' -- matches single or more spacing character
local name = '(%a[%a\-\']*)\.?' -- matches single name, have to start with letter, can contain apostrophe and hyphen, may end with dot
local surname = '(%a[%a\-\']*)' -- same as name, but can't end with dot
local f, i = mw.ustring.match(fullName, start .. surname .. comma .. name .. finish)
if f then
mw.log('tokenizeName: «' .. fullName .. '»: have «Fa, Im» match')
return {f, mw.ustring.sub( i, 1, 1 ) .. '.'}
end
end
 
local result = '';
local f, i, o = mw.ustring.match(fullName, start .. surname .. comma .. name .. space .. name .. finish)
if ( src.author ) then
if f then
result = result .. toString( src.author, options_commas_it );
mw.log( 'tokenizeName: «' .. fullName .. '»: have «Fa, Im Ot» match')
end
return {f, mw.ustring.sub( i, 1, 1 ) .. '. '
if ( string.len( result ) ~= 0 ) then
.. mw.ustring.sub( o, 1, 1 ) .. '.'}
result = result .. ' ';
end
end
if ( src.part ) then
if ( src.url ) then
local url = getSingle( src.url );
if ( string.sub( url, 1, 1 ) == ':' ) then
result = result .. '[[' .. url .. '|' .. toString( src.part, options_commas_nolinks ) .. ']]';
else
result = result .. '[' .. url .. ' ' .. toString( src.part, options_commas_nolinks ) .. ']';
end
end
result = result .. ' // ' .. toString( src.title, options_commas );
else
-- title only
if ( src.url ) then
local url = getSingle( src.url );
if ( string.sub( url, 1, 1 ) == ':' ) then
result = result .. '[[' .. url .. '|' .. toString( src.title, options_commas_nolinks ) .. ']]';
else
result = result .. '[' .. url .. ' ' .. toString( src.title, options_commas_nolinks ) .. ']';
end
end
end


if ( src.originaltitle ) then
local f1, f2, i = mw.ustring.match(fullName, start .. surname .. space .. surname .. comma .. name .. finish)
result = result .. ' = ' .. toString( src.originaltitle, options_commas );
if f1 then
mw.log('tokenizeName: «' .. fullName .. '»: have «Fa Fa, Im» match')
return {f1 .. ' ' .. f2, mw.ustring.sub( i, 1, 1 ) .. '.'}
end
end
 
if ( src.publication ) then
local i, o, f = mw.ustring.match(fullName, start .. name .. space .. name .. space .. 'оглы' .. space .. surname .. finish)
result = result .. ' // ' .. toString( src.publication, options_commas_it );
if f then
mw.log('tokenizeName: «' .. fullName .. '»: have «Im Ot оглы Fa» match')
return {f, mw.ustring.sub(i, 1, 1) .. '. ' .. mw.ustring.sub(o, 1, 1) .. '.'}
end
end


if ( src.editor ) then
local i1, i2, f = mw.ustring.match(fullName, start .. name .. space .. name .. space .. 'de' .. space .. surname .. finish)
local prefix = i18nEditors[ src.lang ] or i18nEditors[ i18nDefaultLanguage ];
if f then
result = result .. ' / ' .. prefix .. toString( src.editor, options_commas );
mw.log('tokenizeName: «' .. fullName .. '»: have «Im Im de Fa» match')
return {f, mw.ustring.sub( i1, 1, 1 ) .. '. ' .. mw.ustring.sub( i2, 1, 1 ) .. '.'}
end
end
 
if ( src.place or src.publisher or src.year ) then
-- Try matching k names + surname
result = result .. ' — ';
for k = 1, 4 do
if ( src.place ) then
pattern = start .. string.rep(name .. space, k) .. surname .. finish
result = result .. toString( src.place, options_commas );
matched = {mw.ustring.match(fullName, pattern)}
if ( src.publisher or src.year ) then
if #matched ~= 0 then
result = result .. ': ';
mw.log('tokenizeName: «' .. fullName .. '»: have «Im (x' .. k .. ') Fa» match')
end
for i = 1, k do
end
matched[i] = mw.ustring.sub(matched[i], 1, 1)
if ( src.publisher ) then
result = result .. toString( src.publisher, options_commas );
if ( src.year ) then
result = result .. ', ';
end
end
return {matched[k + 1], table.concat(matched, '. ', 1, k) .. '.'}
end
end
if ( src.year ) then
result = result .. toString( src.year, options_commas );
end
result = result .. '.';
end
end
if ( src.volume ) then
mw.log('Unmatched any pattern: «' .. fullName .. '»')
local letter = i18nVolume[ src.lang ] or i18nVolume[ i18nDefaultLanguage ];
return {fullName}
result = result .. ' ' .. letter .. ' ' .. toString(src.volume, options_commas ) .. '.';
end
end
 
local function personNameToAuthorName( fullName )
if ( src.issue ) then
if not fullName then return fullName end
result = result .. ' — № ' .. toString(src.issue, options_commas ) .. '.';
local tokenized = tokenizeName(fullName)
end
if #tokenized == 1 then
return tokenized[1]
if ( src.page ) then
else
local letter = i18nPage[ src.lang ] or i18nPage[ i18nDefaultLanguage ];
return tokenized[1] .. ' ' .. tokenized[2]
result = result .. ' — ' .. letter .. ' ' .. toString(src.page, options_commas ) .. '.';
end
if ( src.isbn13 ) then
result = result .. ' — ISBN ' .. toString( src.isbn13, options_commas );
elseif ( src.isbn10 ) then
result = result .. ' — ISBN ' .. toString( src.isbn10, options_commas );
end
end
end


if ( src.issn ) then
local function personNameToResponsibleName( fullName )
result = result .. ' — ISSN ' .. toString( src.issn, options_commas );
if not fullName then return fullName end
end
local tokenized = tokenizeName(fullName)
if ( src.doi ) then
if #tokenized == 1 then
result = result .. ' — [http://dx.doi.org/' .. mw.uri.encode( src.doi ) .. ' DOI ' .. src.doi .. ']';
return tokenized[1]
else
return tokenized[2] .. ' ' .. tokenized[1]
end
end
end


if ( src.entityId ) then
if ( src.type and src.entityId ) then
-- wrap into span to target from JS
result = '<span class="' .. toString( src.type, options_citetypes ) .. '" data-entity-id="' .. getSingle( src.entityId ) .. '">' .. result .. '</span>'
else
result = '<span class="citetype_unknown" data-entity-id="' .. getSingle( src.entityId ) .. '">' .. result .. '</span>'
end
end


if ( src.accessdate ) then
local options_commas = { separator = ', ', conjunction = ', ', format = function( src ) return src end, nolinks = false, preferids = false };
local date = getSingle( src.accessdate );
local options_commas_short = { separator = ', ', conjunction = ', ', format = function( src ) return src end, nolinks = false, preferids = false, short = true };
local pattern = "(%-?%d+)%-(%d+)%-(%d+)T";
local options_commas_nolinks = { separator = ', ', conjunction = ', ', format = function( src ) return src end, nolinks = true, preferids = false };
local y, m, d = mw.ustring.match( date , pattern );
local options_commas_it = { separator = ', ', conjunction = ', ', format = function( src ) return "''" .. src .. "''" end, nolinks = false, preferids = false };
y,m,d = tonumber(y),tonumber(m),tonumber(d);
local options_commas_it_short = { separator = ', ', conjunction = ', ', format = function( src ) return "''" .. src .. "''" end, nolinks = false, preferids = false, short = true };
result = result .. " <small>Проверено " .. tostring(d) .. " " .. monthg[m]  .. " " .. tostring(y) .. ".</small>";
local options_commas_it_nolinks = { separator = ', ', conjunction = ', ', format = function( src ) return "''" .. src .. "''" end, nolinks = true , preferids = false };
end
local options_citetypes = { separator = ' ', conjunction = ' ', format = function( src ) return 'citetype_' .. src end, nolinks = true , preferids = true };


return {text = result, code = src.code};
local options_commas_authors = { separator = ', ', conjunction = ', ', format = personNameToAuthorName, nolinks = false, preferids = false };
end
local options_commas_responsible = { separator = ', ', conjunction = ', ', format = personNameToResponsibleName, nolinks = false, preferids = false };


function renderShortReference( src )
local options_arxiv = { separator = '; ', conjunction = '; ', format = function( id ) return '[http://arxiv.org/abs/' .. id .. ' arXiv:' .. id .. ']' end, nolinks = true, preferids = false };
src.lang = getSingle( src.lang ) or i18nDefaultLanguage;
local options_doi = { separator = '; ', conjunction = '; ', format = function( doi ) return '[http://dx.doi.org/' .. doi .. ' doi:' .. doi .. ']' end, nolinks = true, preferids = false };
src.title = src.title or '\'\'(unspecified title)\'\''
local options_issn = { separator = '; ', conjunction = '; ', format = function( issn ) return '[https://www.worldcat.org/issn/' .. issn .. ' ' .. issn .. ']' end, nolinks = true, preferids = false };
local options_pmid = { separator = '; ', conjunction = '; ', format = function( pmid ) return '[https://www.ncbi.nlm.nih.gov/pubmed/?term=' .. pmid .. ' PMID:' .. pmid .. ']' end, nolinks = true, preferids = false };


local result = '[[#' .. PREFIX_CITEREF .. src.code .. '|';
local function getPersonNameAsLabel( context, entityId, providedLabel, options )
if ( src.author ) then
-- would custom label provided we don't need to check entity at all
result = result .. toString( src.author, options_commas_it_nolinks );
if ( not utils.isEmpty( providedLabel ) ) then
else
mw.log( 'Custom label provided for ' .. entityId );
result = result .. toString( src.title, options_commas_it_nolinks );
return options.format( providedLabel );
end
end
result = result .. ']]'


if ( src.year ) then
local entity = utils.getEntity( context, entityId );
result = result .. ', ' .. toString( src.year, options_commas );
if ( not entity ) then return '\'\'(entity ' .. entityId .. ' is missing)\'\'' end;
 
local personName = nil;
-- support only labels so far
if ( entity.labels[ context.lang ] ) then
personName = entity.labels[ context.lang ].value;
mw.log('Got person name of ' .. entityId .. ' from label: «' .. personName .. '»' )
end
end


if ( src.volume ) then
if ( not utils.isInstanceOf( entity, 'Q5' ) ) then
local letter = i18nVolume[ src.lang ] or i18nVolume[ i18nDefaultLanguage ];
mw.log( 'Entity ' .. entityId .. ' is not a person' );
result = result .. ' ' .. letter .. '&nbsp;' .. toString(src.volume, options_commas ) .. '.';
return personName;
end
end
 
if ( src.issue ) then
if ( utils.isEmpty( personName ) ) then
result = result .. ' — №&nbsp;' .. toString(src.issue, options_commas ) .. '.';
return '\'\'(not translated to ' .. context.lang .. ')\'\'';
end
else
return options.format( personName );
if ( src.page ) then
local letter = i18nPage[ src.lang ] or i18nPage[ i18nDefaultLanguage ];
result = result .. ' — ' .. letter .. '&nbsp;' .. toString(src.page, options_commas ) .. '.';
end
end
end
end


function getSingle( value )
local function getPersonNameAsWikitext( context, entityId, customLabel, options )
if ( not value ) then
local personName = getPersonNameAsLabel( context, entityId, customLabel, options);
return;
if ( personName == nil ) then
return nil;
end
end
if ( type( value ) == 'string' ) then
return value;
elseif ( type( value ) == 'table' ) then
if ( value.id ) then
return value.id;
end


for i, tableValue in pairs( value ) do
local link = utils.getElementLink( context, entityId, nil );
return getSingle( tableValue );
return utils.wrapInUrl( link, personName );
end
end
 
return '(unknown)';
end
end


function toString( value, options )
local function getPeopleAsWikitext( context, value, options )
if ( type( value ) == 'string' ) then
if type( value ) == 'string' then
return options.format( value );
return options.format( value )
elseif ( type( value ) == 'table' ) then
elseif type( value ) == 'table' then
if ( value.id ) then
if value.id then
-- this is link
-- this is link
if ( options.preferids ) then
if options.preferids then
return options.format( value.id );
return value.id
else
else
if ( options.nolinks ) then
if options.nolinks then
return options.format( value.label or mw.wikibase.label( value.id ) or '\'\'(untranslated title)\'\'' );
return getPersonNameAsLabel( context, value.id, value.label, options )
else
else
return options.format( renderLink( value.id, value.label ) );
return getPersonNameAsWikitext( context, value.id, value.label, options )
end
end
end
local maxAuthors = 10 -- need some restrictions, as some publications have enormous amount of authors (e.g. 115 authors of Q68951544)
local resultList = {}
for i, tableValue in pairs( value ) do
local nextWikitext = getPeopleAsWikitext( context, tableValue, options )
if not utils.isEmpty( nextWikitext ) then
table.insert( resultList, nextWikitext )
if #resultList == maxAuthors + 1 then
-- keep one more to indicate that there are too many
break
end
end
end
end
end
end


local resultList = {};
local resultWikitext = ''
for i, tableValue in pairs( value ) do
for i, wikitext in pairs( resultList ) do
table.insert( resultList, toString( tableValue, options ) );
if i == maxAuthors + 1 then
resultWikitext = resultWikitext .. ( i18nEtAl[ context.lang ] or i18nEtAlDefault )
break;
end
if i ~= 1 then
resultWikitext = resultWikitext .. ', '
end
resultWikitext = resultWikitext .. wikitext
end
end


return mw.text.listToText( resultList, options.separator, options.conjunction);
return resultWikitext
else
return options.format( '(unknown type)' );
end
end


return '';
return options.format( '(unknown type)' )
end
end


function renderLink( entityId, text )
local function generateAuthorLinks(context, src)
if ( not entityId ) then
local result = ''
error("entityId is not specified");
if src.author then
result = getPeopleAsWikitext( context, src.author, options_commas_authors )
result = '<i class="wef_low_priority_links">' .. result .. '</i> '
end
end
local actualText = text or mw.wikibase.label( entityId ) or '\'\'(untranslated)\'\'';
return result
local link = mw.wikibase.sitelink( entityId ) or ( ':d:' .. entityId )
return '[[' .. link .. '|' .. actualText .. ']]';
end
end


-- Expand special types of references when additional data could be found in OTHER entity properties
local function appendProperty(result, context, src, conjunctor, property, url)
function expandSpecials( currentEntity, reference, data )
if src[property] then
if ( reference.snaks.P248
if url and src[url] then
and reference.snaks.P248[1]
result = result .. conjunctor .. utils.wrapInUrl( src[url], utils.toString( context, src[property], options_commas_nolinks ) )
and reference.snaks.P248[1].datavalue
else
and reference.snaks.P248[1].datavalue.value["numeric-id"]) then
result = result .. conjunctor .. utils.toString( context, src[property], options_commas )
local sourceId = "Q" .. reference.snaks.P248[1].datavalue.value["numeric-id"];
 
-- Gemeinsame Normdatei -- specified by P227
if ( sourceId == 'Q36578' ) then
appendMainSnaks( currentEntity, 'P227', data, 'title', { format = function( gnd ) return 'Record #' .. gnd; end } );
appendMainSnaks( currentEntity, 'P227', data, 'url', { format = function( gnd ) return 'http://d-nb.info/gnd/' .. gnd .. '/'; end } );
end
-- BNF -- specified by P268
if ( sourceId == 'Q15222191' ) then
appendMainSnaks( currentEntity, 'P268', data, 'title', { format = function( id ) return 'Record #' .. id; end } );
appendMainSnaks( currentEntity, 'P268', data, 'url', { format = function( id ) return 'http://catalogue.bnf.fr/ark:/12148/cb' .. id; end } );
expandSpecialsQualifiers( currentEntity, 'P268', data );
end
end
end
return result
end


-- Find a Grave -- specified by P535
local function appendTitle(result, context, src)
if ( sourceId == 'Q63056' ) then
conjunctor = ''
appendMainSnaks( currentEntity, 'P535', data, 'url', { format = function( id ) return 'http://www.findagrave.com/cgi-bin/fg.cgi?page=gr&GRid=' .. id; end } );
if src.part then
expandSpecialsQualifiers( currentEntity, 'P535', data );
result = appendProperty(result, context, src, '', 'part', 'parturl')
end
conjunctor = ' // '
end
result = appendProperty(result, context, src, conjunctor, 'title', 'url')
return result
end


-- Gran Enciclopèdia Catalana -- specified by P1296
local function appendLanguage(result, context, src)
if ( sourceId == 'Q2664168' ) then
if context.lang ~= i18nDefaultLanguage then
appendMainSnaks( currentEntity, 'P1296', data, 'url', { format = function( id ) return 'http://www.enciclopedia.cat/enciclop%C3%A8dies/gran-enciclop%C3%A8dia-catalana/EC-GEC-' .. id .. '.xml'; end } );
local langs = require('Module:Languages')
expandSpecialsQualifiers( currentEntity, 'P1296', data );
result = result .. langs.list_ref(p.currentFrame:newChild{ args = {context.lang} })
end
end
return result
end


-- Encyclopædia Britannica online -- specified by P1417
local function appendSubtitle(result, context, src)
if ( sourceId == 'Q5375741' ) then
return appendProperty(result, context, src, ': ', 'subtitle')
appendMainSnaks( currentEntity, 'P1417', data, 'url', { format = function( id ) return 'http://global.britannica.com/EBchecked/topic/' .. id .. '/'; end } );
end
expandSpecialsQualifiers( currentEntity, 'P1417', data );
end


-- Electronic Jewish Encyclopedia (Elektronnaja Evrejskaja Entsiklopedia) -- specified by P1438
local function appendOriginalTitle(result, context, src)
if ( sourceId == 'Q1967250' ) then
return appendProperty(result, context, src, ' = ', 'originaltitle')
appendMainSnaks( currentEntity, 'P1438', data, 'url', { format = function( id ) return 'http://www.eleven.co.il/article/' .. id; end } );
end
expandSpecialsQualifiers( currentEntity, 'P1438', data );
end


-- sports-reference.com -- specified by P1447
local function appendPublication(result, context, src)
if ( sourceId == 'Q18002875' ) then
if src.publication then
appendMainSnaks( currentEntity, 'P1447', data, 'url', { format = function( id ) return 'http://www.sports-reference.com/olympics/athletes/' .. id .. '.html'; end } );
if type( src.publication.title or '') ~= 'string' then
expandSpecialsQualifiers( currentEntity, 'P1447', data );
error('type of src.publication.title is not string but ' .. type( src.publication.title ) )
end
end
 
-- do we have appropriate record in P1343 ?
result = result .. ' // ' .. utils.toString( context, src.publication, options_commas_it_short )
local claims = findClaimsByValue( currentEntity, 'P1343', sourceId );
if src.publication.subtitle then
if ( claims and #claims ~= 0 ) then
result = result .. ': ' .. utils.toString( context, src.publication.subtitle, options_commas_it_short )
appendQualifiers( claims, 'P958', data, 'part', {} );
appendQualifiers( claims, 'P854', data, 'url', {} );
appendQualifiers( claims, 'P357', data, 'title', {} );
appendQualifiers( claims, 'P478', data, 'volume', {} );
end
end
end
end
return result
end
end


function expandSpecialsQualifiers( entity, propertyId, result )
local function appendEditor(result, context, src)
if ( entity.claims and entity.claims[propertyId] ) then
if src.editor or src.translator then
local claims = entity.claims[propertyId];
result = result .. ' / '
appendQualifiers( claims, 'P958', result, 'part', {} );
if src.editor then
appendQualifiers( claims, 'P854', result, 'url', {} );
local prefix = i18nEditors[ context.lang ] or i18nEditors[ i18nDefaultLanguage ]
appendQualifiers( claims, 'P357', result, 'title', {} );
result = result .. prefix .. getPeopleAsWikitext( context, src.editor, options_commas_responsible )
appendQualifiers( claims, 'P478', result, 'volume', {} );
if src.translator then
end
result = result .. ', '
end
 
function findClaimsByValue( entity, propertyId, value )
local result = {};
if ( entity and entity.claims and entity.claims[propertyId] ) then
for i, claim in pairs( entity.claims[propertyId] ) do
if ( claim.mainsnak and claim.mainsnak.datavalue ) then
local datavalue = claim.mainsnak.datavalue;
if ( datavalue.type == "string" and datavalue.value == value
or datavalue.type == "wikibase-entityid" and datavalue.value["entity-type"] == "item" and tostring( datavalue.value["numeric-id"] ) == mw.ustring.sub( value, 2 ) ) then
table.insert( result, claim );
end
end
end
end
if src.translator then
local prefix = i18nTranslators[ context.lang ] or i18nTranslators[ i18nDefaultLanguage ]
result = result .. prefix .. getPeopleAsWikitext( context, src.translator, options_commas_responsible )
end
end
end
end
return result;
return result
end
end


function appendMainSnaks( entity, propertyId, result, property, options )
local function appendEdition(result, context, src)
if ( entity.claims and entity.claims[propertyId] ) then
return appendProperty(result, context, src, ' — ', 'edition')
for i, claim in pairs( entity.claims[propertyId] ) do
if ( claim.mainsnak and claim.mainsnak.datavalue ) then
appendImpl( claim.mainsnak.datavalue, result, property, options );
end
end
end
end
end


function appendSnaks( allSnaks, snakPropertyId, result, property, options )
local function appendPublicationData(result, context, src)
if ( allSnaks and allSnaks[ snakPropertyId ] ) then
if src.place or src.publisher or src.year then
for k, snak in pairs( allSnaks[ snakPropertyId ] ) do
result = result .. ' — '
if ( snak and snak.datavalue ) then
if src.place then
appendImpl( snak.datavalue, result, property, options );
result = result .. utils.toString( context, src.place, options_commas_short )
if src.publisher or src.year then
result = result .. ': '
end
end
end
end
end
if src.publisher then
end
result = result .. utils.toString( context, src.publisher, options_commas_short )
 
if src.year then
function appendQualifiers( claims, qualifierPropertyId, result, property, options )
result = result .. ', '
for i, claim in pairs( claims ) do
if ( claim.qualifiers and claim.qualifiers[ qualifierPropertyId ] ) then
for k, qualifier in pairs( claim.qualifiers[ qualifierPropertyId ] ) do
if ( qualifier and qualifier.datavalue ) then
appendImpl( qualifier.datavalue, result, property, options );
end
end
end
end
end
if src.year then
result = result .. utils.toString( context, src.year, options_commas )
end
result = result .. '.';
end
end
return result
end
end


function appendImpl( datavalue, result, property, options )
local function appendVolumeAndIssue(result, context, src)
if ( datavalue.type == 'string' ) then
if src.volume or src.issue then
local value = datavalue.value;
result = result .. ' '
if ( options.format ) then
local letter_vol = i18nVolume[ context.lang ] or i18nVolume[ i18nDefaultLanguage ]
value = options.format( value );
local letter_iss = i18nIssue[ context.lang ] or i18nIssue[ i18nDefaultLanguage ]
if src.volume then
result = appendProperty(result, context, src, letter_vol .. '&nbsp;', 'volume')
result = appendProperty(result, context, src, ', ' .. letter_iss .. '&nbsp;', 'issue')
else
result = appendProperty(result, context, src, letter_iss .. '&nbsp;', 'issue')
end
end
if ( not result[property] ) then
result = result .. '.'
result[property] = {};
end
elseif ( type( result[property] ) == 'string' or ( type( result[property] ) == 'table' and type( result[property].id ) == 'string' ) ) then
return result
result[property] = { result[property] };
end
table.insert( result[property], value);
elseif ( datavalue.type == 'wikibase-entityid' ) then
local value = datavalue.value;
if ( not result[property] ) then
result[property] = {};
elseif ( type( result[property] ) == 'string' or ( type( result[property] ) == 'table' and type( result[property].id ) == 'string' ) ) then
result[property] = { result[property] };
end
table.insert( result[property], { id = 'Q' .. value["numeric-id"] });
elseif datavalue.type == 'time' then
local value = datavalue.value;
if ( options.format ) then
value = options.format( value );
end
if ( not result[property] ) then
result[property] = {};
elseif ( type( result[property] ) == 'string' or ( type( result[property] ) == 'table' and type( result[property].id ) == 'string' ) ) then
result[property] = { result[property] };
end
table.insert( result[property], tostring( value.time ));
    end
end
end


function expandPublication( data )
local function appendPages(result, context, src)
local publication = data.publication;
if src.pages then
local letter = i18nPages[ context.lang ] or i18nPages[ i18nDefaultLanguage ]
local strPages = utils.toString( context, src.pages, options_commas )
strPages = mw.ustring.gsub( strPages, '[-—]', '—' );
result = result .. ' — ' .. letter .. '&nbsp;' .. strPages .. '.'
end
return result
end


-- use only first one
local function appendNumberOfPages(result, context, src)
if ( type( publication ) == 'table' and publication[1] and publication[1].id ) then
if src.numberOfPages then
data.publication = publication[1];
local letter = i18nNumberOfPages[ context.lang ] or i18nNumberOfPages[ i18nDefaultLanguage ]
publication = data.publication;
result = appendProperty(result, context, src, ' — ', 'numberOfPages') .. '&nbsp;' .. letter
end
end
return result
end


if ( publication and publication.id ) then
local function appendBookSeries(result, context, src)
populateSourceData( data, publication.id );
if src.bookSeries then
result = appendProperty(result, context, src, ' — (', 'bookSeries')
if src.bookSeriesVolume or src.bookSeriesIssue then
result = result .. '; '
local letter_vol = i18nVolume[ context.lang ] or i18nVolume[ i18nDefaultLanguage ]
local letter_iss = i18nIssue[ context.lang ] or i18nIssue[ i18nDefaultLanguage ]
if ( src.bookSeriesVolume ) then
result = appendProperty(result, context, src, letter_vol .. '&nbsp;', 'bookSeriesVolume')
result = appendProperty(result, context, src, ', ' .. letter_iss .. '&nbsp;', 'bookSeriesIssue')
else
result = appendProperty(result, context, src, letter_iss .. '&nbsp;', 'bookSeriesIssue')
end
end
result = result .. ')'
end
end
return result
end
end


function loadSafe( entityId )
local function appendTirage(result, context, src)
if ( entityId == nil ) then
if src.tirage then
error('entityId to load is not specified');
local tirageTemplate = i18nTirage[ context.lang ] or i18nTirage[ i18nDefaultLanguage ]
result = result .. ' — ' .. utils.toString( context, src.tirage, { separator = '; ', conjunction = '; ', format = function( data ) return mw.ustring.format(tirageTemplate, data) end } )
end
end
local status, result = pcall( function() return mw.loadData( 'Module:Source/' .. entityId ) end );
return result
if ( status == true ) then
end
return true, result;
 
end
local function appendIdentifiers(result, context, src)
return false, nil;
if src.isbn  then result = result .. ' — ISBN ' .. utils.toString( context, src.isbn, options_commas ) end
if src.issn  then result = result .. ' — ISSN ' .. utils.toString( context, src.issn, options_issn ) end
if src.doi  then result = result .. ' ' .. utils.toString( context, src.doi, options_doi ) end
if src.pmid  then result = result .. ' — ' .. utils.toString( context, src.pmid, options_pmid ) end
if src.arxiv then result = result .. ' — ' .. utils.toString( context, src.arxiv, options_arxiv ) end
return result
end
end


function populateSourceData( data, sourceId )
local function appendSourceId(result, context, src)
local loaded, sourceData = loadSafe( sourceId );
if src.sourceId then
if ( loaded and sourceData ) then
local citetype = src.type and utils.toString(context, src.type, options_citetypes) or 'citetype_unknown'
populateSourceDataImpl( data, sourceData );
result = '<span class="wikidata_cite ' .. citetype .. '" data-entity-id="' .. utils.getSingle(src.sourceId) .. '">' .. result .. '</span>'
end
end
return result
end
end


function populateSourceDataImpl( data, sourceData )
local function appendAccessDate(result, context, src)
for key, value in pairs( sourceData ) do
if src.accessdate then
if ( not data[key] and key ~= 'title' ) then
local date = utils.getSingle(src.accessdate)
data[key] = value;
local pattern = "(%-?%d+)%-(%d+)%-(%d+)T";
end
local y, m, d = mw.ustring.match(date, pattern)
y, m, d = tonumber(y), tonumber(m), tonumber(d)
local date_str = (d > 0 and ' ' .. tostring(d) or '')
  .. (m > 0 and ' ' .. monthg[m] or '')
  .. (y > 0 and ' ' .. tostring(y) or '')
result = result .. " <small>Проверено" .. date_str .. ".</small>"
end
end
return result
end


-- if we already have title, than it would be the current one, otherwise move it to publication
local function populateUrl(context, src)
if ( sourceData.title ) then
if src.sourceId and not src.url then
if ( not data.title ) then
local entity = utils.getEntity(context, src.sourceId)
data.title = sourceData.title;
if entity.sitelinks and entity.sitelinks[context.lang .. 'wikisource'] then
else
src.url = ':' .. context.lang .. ':s:' .. entity.sitelinks[context.lang .. 'wikisource'].title
if ( not data.publication ) then
data.publication = sourceData.title;
end
end
end
end
end
end
end


function updateWithRef( reference, src )
local function populateYear(src)
-- specified
if not src.year and src.dateOfPublication then
if ( reference.snaks.O662 ) then
local date = utils.getSingle(src.dateOfPublication)
local cid = reference.snaks.P662[1].datavalue.value;
src.year = mw.ustring.sub(date, 2, 5)
src.code = src.code .. '-cid:' .. cid;
src.title = 'Compound Summary for: CID ' .. cid;
src.url = 'http://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?cid=' .. cid;
src.publication = { id = 'Q278487', label = 'PubChem' };
end
end
if not src.year and src.dateOfCreation then
local date = utils.getSingle(src.dateOfCreation)
src.year = mw.ustring.sub(date, 2, 5)
end
end


appendSnaks( reference.snaks, 'P50', src, 'author', {} );
local function populateTitle(src)
appendSnaks( reference.snaks, 'P364', src, 'lang', {} );
src.title = src.title or utils.getSingle(src.url) or '\'\'(unspecified title)\'\''
appendSnaks( reference.snaks, 'P958', src, 'part', {} ); -- part
appendSnaks( reference.snaks, 'P357', src, 'title', {} ); -- title
appendSnaks( reference.snaks, 'P854', src, 'url', {} );
appendSnaks( reference.snaks, 'P1433', src, 'publication', {} );
appendSnaks( reference.snaks, 'P123', src, 'publisher', {} );
appendSnaks( reference.snaks, 'P304', src, 'page', {} );
appendSnaks( reference.snaks, 'P478', src, 'volume', {} );
appendSnaks( reference.snaks, 'P577', src, 'date', {} );
appendSnaks( reference.snaks, 'P813', src, 'accessdate', {} );
return src;
end
end


function p.renderSource( frame )
local function renderSource(context, src)
local arg = frame.args[1];
options_commas_authors.format = personNameToAuthorName
return p.renderSourceImpl( arg );
options_commas_responsible.format = personNameToResponsibleName
end
 
context.lang = utils.getLangCode(utils.getSingle(src.lang)) or i18nDefaultLanguage
 
utils.preprocessPlaces(src, context.lang)
 
populateUrl(context, src)
populateTitle(src)
populateYear(src)
 
local result = generateAuthorLinks(context, src)
result = appendTitle(result, context, src)
result = appendLanguage(result, context, src)
result = appendSubtitle(result, context, src)
result = appendOriginalTitle(result, context, src)
result = appendPublication(result, context, src)
result = result .. '<span class="wef_low_priority_links">'
result = appendEditor(result, context, src) -- Might take current editor instead of actual. Use with caution
result = appendEdition(result, context, src)
result = appendPublicationData(result, context, src)
result = appendVolumeAndIssue(result, context, src)
result = appendPages(result, context, src)
result = appendNumberOfPages(result, context, src)
result = appendBookSeries(result, context, src)
result = appendTirage(result, context, src)
result = appendIdentifiers(result, context, src)
result = appendSourceId(result, context, src)
result = appendAccessDate(result, context, src)
result = result .. '</span>'


function p.renderSourceImpl( entityId )
return result
local value = {};
value["numeric-id"] = string.sub( entityId , 2);
local snak = { datavalue = { value =value } };
local properties = {};
properties[1] = snak;
return renderReferenceImpl( {}, { snaks = { P248 = properties } } ).text;
end
end


function p.renderReference( frame, currentEntity, reference )
local function renderReferenceImpl(currentEntity, reference, refAnchor, refAnchorYear)
if not reference.snaks then
-- template call
return nil
if ( frame and not currentEntity and not reference ) then
local value = {};
value["numeric-id"] = string.sub( frame.args[1] , 2);
local snak = { datavalue = { value =value } };
local properties = {};
properties[1] = snak;
currentEntity = mw.wikibase.getEntityObject();
reference = { snaks = { P248 = properties } };
end
end


local rendered = renderReferenceImpl( currentEntity, reference );
-- контекст, содержит также кеш элементов
local context = {
cache = {}
}


if ( not rendered ) then
-- данные в простом формате, согласованном с модулями формирования библиографического описания
return '';
local data = {}
 
    -- забрать данные из reference
    utils.populateDataFromClaims(context, nil, reference.snaks, data)
 
utils.expandSpecials(context, currentEntity, reference, data)
 
local sourceEntity = nil
if data.sourceId then
sourceEntity = utils.getEntity(context, data.sourceId)
if sourceEntity then
utils.populateSourceDataImpl(context, sourceEntity, data)
end
end
end


local result;
if data.publication then
local code = rendered.code or mw.text.encode( rendered.text );
utils.expandPublication(context, sourceEntity, data)
result = frame:extensionTag( 'ref', rendered.text, {name = code} ) .. '[[К:Википедия:Статьи с источниками из Викиданных]]';
end


if ( not rendered.found ) then
utils.expandBookSeries(context, data)
result = result .. '[[К:Википедия:Статьи с неоформленными источниками из Викиданных]]';
 
if next(data) == nil then
return nil
end
end


return result;
local rendered = renderSource(context, data)
end
if mw.ustring.len(rendered) == 0 then
return nil
end


function renderReferenceImpl( currentEntity, reference )
if refAnchor then
if ( not reference.snaks ) then
local anchorValue = 'CITEREF' .. refAnchor .. (utils.coalesce(refAnchorYear, data.year) or '')
return nil;
rendered = '<span class="citation" id="' .. mw.uri.anchorEncode(anchorValue) .. '">' .. rendered .. '</span>'
end
end


local data = {};
return rendered
local entityId, found, sourceData;
end
if ( reference.snaks.P248 ) then
 
entityId = "Q" .. reference.snaks.P248[1].datavalue.value["numeric-id"];
local function artificialSnaks(args)
found, sourceData = loadSafe( entityId );
local snaks = {}
data.code = entityId;
if args[1] then
data.entityId = entityId;
entityId = mw.text.trim(args[1])
else
snaks.P248 = {utils.toWikibaseEntityIdSnak("P248", entityId)}
found = true;
snaks.P805 = {utils.toWikibaseEntityIdSnak("P805", entityId)}
end
end
utils.copyArgsToSnaks(args, snaks)
return mw.wikibase.getEntity(), {snaks = snaks}
end


updateWithRef( reference, data );
function p.renderReference(frame, currentEntity, reference)
expandSpecials( currentEntity, reference, data );
p.currentFrame = frame
if ( entityId ) then
if ( found and sourceData ) then
populateSourceDataImpl( data, sourceData );
else
if ( data.title ) then
data.publication = data.publication or { id = entityId, label = mw.wikibase.label( entityId ) };
else
data.title = { id = entityId, label = mw.wikibase.label( entityId ) };
end
end
end
expandPublication( data );


local rendered;
-- template call
if ( p.short ) then
if frame and not currentEntity and not reference then
local toStore = p.deepcopy( data );
currentEntity, reference = artificialSnaks(frame.args)
if (not p.list ) then
p.list = {};
end
p.list[toStore.code] = toStore;
rendered = renderShortReference( data );
else
rendered = renderSource( data );
end
end


if ( mw.ustring.len( rendered.text ) == 0 ) then
local rendered = renderReferenceImpl(currentEntity, reference)
return nil;
if not rendered then
return ''
end
end
-- Про выбор алгоритма хеширования см. [[Модуль:Hash]]. Знак подчёркивания в начале позволяет
-- исключить ошибку, когда имя сноски — чисто числовое значение, каковыми иногда бывают хеши.
return frame:extensionTag('ref', rendered, {name = '_' .. mw.hash.hashValue('fnv164', rendered)}) .. '[[Category:Википедия:Статьи с источниками из Викиданных]]'
end


rendered.found = found;
function p.renderSource(frame)
return rendered;
p.currentFrame = frame
currentEntity, reference = artificialSnaks(frame.args)
return renderReferenceImpl(currentEntity, reference, frame.args['ref'], frame.args['ref-year'])
end
end


return p;
return p;

Версия от 23:55, 8 ноября 2020

Генерирует сноски и ссылки на источники.


local p = {}

local utils = require('Module:Sources/utils')

local i18nDefaultLanguage = 'ru'

local i18nEtAlDefault = ' et al.'
local i18nEtAl = {
	ru	= ' и др.',
}

local i18nEditors = {
	fr	= '',
	de	= 'Hrsg.: ',
	es	= '',
	en	= '',
	it	= '',
	ru	= 'под ред. ',
}

local i18nTranslators = {
	fr	= '',
	de	= '',
	es	= '',
	en	= '',
	it	= '',
	ru	= 'пер. ',
}

local i18nVolume = {
    de  = 'Vol.',
	fr	= 'Vol.',
	es	= 'Vol.',
	en	= 'Vol.',
	it	= 'Vol.',
	ru	= 'Т.',
}

local i18nIssue = {
	en	= 'Iss.',
	ru	= 'вып.',
}

local i18nPages = {
	fr = 'P.',
	de = 'S.',
	es = 'P.',
	en = 'P.',
	it = 'P.',
	ru = 'С.',
}

local i18nNumberOfPages = {
	en = 'p.',
	ru = 'с.',
}

local i18nTirage = {
	en	= 'ed. size: %d',
	ru	= '%d экз.',
}


local monthg = {'января', 'февраля', 'марта', 'апреля', 'мая', 'июня', 'июля', 'августа', "сентября", "октября", "ноября", "декабря"}

local PREFIX_CITEREF = "CITEREF_";

-- Returns formatted pair {Family name(s), First name(s)}
local function tokenizeName( fullName )
	local start = '^%s*' -- matches beginning of the string + arbitrary number of spaces
	local finish = '%s*$' -- matches end of the string + arbitrary number of spaces
	local comma = '\,%s+' -- matches comma + single or more spacing character
	local space = '%s+' -- matches single or more spacing character
	local name = '(%a[%a\-\']*)\.?' -- matches single name, have to start with letter, can contain apostrophe and hyphen, may end with dot
	local surname = '(%a[%a\-\']*)' -- same as name, but can't end with dot
	
	local f, i = mw.ustring.match(fullName, start .. surname .. comma .. name .. finish)
	if f then
		mw.log('tokenizeName: «' .. fullName .. '»: have «Fa, Im» match')
		return {f, mw.ustring.sub( i, 1, 1 ) .. '.'}
	end
	
	local f, i, o = mw.ustring.match(fullName, start .. surname .. comma .. name .. space .. name .. finish)
	if f then
		mw.log( 'tokenizeName: «' .. fullName .. '»: have «Fa, Im Ot» match')
		return {f, mw.ustring.sub( i, 1, 1 ) .. '.&nbsp;'
				.. mw.ustring.sub( o, 1, 1 ) .. '.'}
	end

	local f1, f2, i = mw.ustring.match(fullName, start .. surname .. space .. surname .. comma .. name .. finish)
	if f1 then
		mw.log('tokenizeName: «' .. fullName .. '»: have «Fa Fa, Im» match')
		return {f1 .. '&nbsp;' .. f2, mw.ustring.sub( i, 1, 1 ) .. '.'}
	end
	
	local i, o, f = mw.ustring.match(fullName, start .. name .. space .. name .. space .. 'оглы' .. space .. surname .. finish)
	if f then
		mw.log('tokenizeName: «' .. fullName .. '»: have «Im Ot оглы Fa» match')
		return {f, mw.ustring.sub(i, 1, 1) .. '.&nbsp;' .. mw.ustring.sub(o, 1, 1) .. '.'}
	end

	local i1, i2, f = mw.ustring.match(fullName, start .. name .. space .. name .. space .. 'de' .. space .. surname .. finish)
	if f then
		mw.log('tokenizeName: «' .. fullName .. '»: have «Im Im de Fa» match')
		return {f, mw.ustring.sub( i1, 1, 1 ) .. '.&nbsp;' .. mw.ustring.sub( i2, 1, 1 ) .. '.'}
	end
	
	-- Try matching k names + surname
	for k = 1, 4 do
		pattern = start .. string.rep(name .. space, k) .. surname .. finish
		matched = {mw.ustring.match(fullName, pattern)}
		if #matched ~= 0 then
			mw.log('tokenizeName: «' .. fullName .. '»: have «Im (x' .. k .. ') Fa» match')
			for i = 1, k do
				matched[i] = mw.ustring.sub(matched[i], 1, 1)
			end
			return {matched[k + 1], table.concat(matched, '.&nbsp;', 1, k) .. '.'}
		end
	end
	
	mw.log('Unmatched any pattern: «' .. fullName .. '»')
	return {fullName}
end

local function personNameToAuthorName( fullName )
	if not fullName then return fullName end
	local tokenized = tokenizeName(fullName)
	if #tokenized == 1 then
		return tokenized[1]
	else
		return tokenized[1] .. '&nbsp;' .. tokenized[2]
	end
end

local function personNameToResponsibleName( fullName )
	if not fullName then return fullName end
	local tokenized = tokenizeName(fullName)
	if #tokenized == 1 then
		return tokenized[1]
	else
		return tokenized[2] .. '&nbsp;' .. tokenized[1]
	end
end


local options_commas = { separator = ', ', conjunction = ', ', format = function( src ) return src end, nolinks = false, preferids = false };
local options_commas_short = { separator = ', ', conjunction = ', ', format = function( src ) return src end, nolinks = false, preferids = false, short = true };
local options_commas_nolinks = { separator = ', ', conjunction = ', ', format = function( src ) return src end, nolinks = true, preferids = false };
local options_commas_it = { separator = ', ', conjunction = ', ', format = function( src ) return "''" .. src .. "''" end, nolinks = false, preferids = false };
local options_commas_it_short = { separator = ', ', conjunction = ', ', format = function( src ) return "''" .. src .. "''" end, nolinks = false, preferids = false, short = true };
local options_commas_it_nolinks = { separator = ', ', conjunction = ', ', format = function( src ) return "''" .. src .. "''" end, nolinks = true , preferids = false };
local options_citetypes = { separator = ' ', conjunction = ' ', format = function( src ) return 'citetype_' .. src end, nolinks = true , preferids = true };

local options_commas_authors = { separator = ', ', conjunction = ', ', format = personNameToAuthorName, nolinks = false, preferids = false };
local options_commas_responsible = { separator = ', ', conjunction = ', ', format = personNameToResponsibleName, nolinks = false, preferids = false };

local options_arxiv = { separator = '; ', conjunction = '; ', format = function( id ) return '[http://arxiv.org/abs/' .. id .. ' arXiv:' .. id .. ']' end, nolinks = true, preferids = false };
local options_doi = { separator = '; ', conjunction = '; ', format = function( doi ) return '[http://dx.doi.org/' .. doi .. ' doi:' .. doi .. ']' end, nolinks = true, preferids = false };
local options_issn = { separator = '; ', conjunction = '; ', format = function( issn ) return '[https://www.worldcat.org/issn/' .. issn .. ' ' .. issn .. ']' end, nolinks = true, preferids = false };
local options_pmid = { separator = '; ', conjunction = '; ', format = function( pmid ) return '[https://www.ncbi.nlm.nih.gov/pubmed/?term=' .. pmid .. ' PMID:' .. pmid .. ']' end, nolinks = true, preferids = false };

local function getPersonNameAsLabel( context, entityId, providedLabel, options )
	-- would custom label provided we don't need to check entity at all
	if ( not utils.isEmpty( providedLabel ) ) then
		mw.log( 'Custom label provided for ' .. entityId );
		return options.format( providedLabel );
	end

	local entity = utils.getEntity( context, entityId );
	if ( not entity ) then return '\'\'(entity ' .. entityId .. ' is missing)\'\'' end;

	local personName = nil;
	-- support only labels so far
	if ( entity.labels[ context.lang ] ) then
		personName = entity.labels[ context.lang ].value;
		mw.log('Got person name of ' .. entityId .. ' from label: «' .. personName .. '»' )
	end

	if ( not utils.isInstanceOf( entity, 'Q5' ) ) then
		mw.log( 'Entity ' .. entityId .. ' is not a person' );
		return personName;
	end

	if ( utils.isEmpty( personName ) ) then
		return '\'\'(not translated to ' .. context.lang .. ')\'\'';
	else
		return options.format( personName );
	end
end

local function getPersonNameAsWikitext( context, entityId, customLabel, options )
	local personName = getPersonNameAsLabel( context, entityId, customLabel, options);
	if ( personName == nil ) then
		return nil;
	end

	local link = utils.getElementLink( context, entityId, nil );
	return utils.wrapInUrl( link, personName );
end

local function getPeopleAsWikitext( context, value, options )
	if type( value ) == 'string' then
		return options.format( value )
	elseif type( value ) == 'table' then
		if value.id then
			-- this is link
			if options.preferids then
				return value.id
			else
				if options.nolinks then
					return getPersonNameAsLabel( context, value.id, value.label, options )
				else
					return getPersonNameAsWikitext( context, value.id, value.label, options )
				end
			end
		end
		
		local maxAuthors = 10 -- need some restrictions, as some publications have enormous amount of authors (e.g. 115 authors of Q68951544)
		local resultList = {}
		for i, tableValue in pairs( value ) do
			local nextWikitext = getPeopleAsWikitext( context, tableValue, options )
			if not utils.isEmpty( nextWikitext ) then
				table.insert( resultList, nextWikitext )
				if #resultList == maxAuthors + 1 then
					-- keep one more to indicate that there are too many
					break
				end
			end
		end

		local resultWikitext = ''
		for i, wikitext in pairs( resultList ) do
			if i == maxAuthors + 1 then
				resultWikitext = resultWikitext .. ( i18nEtAl[ context.lang ] or i18nEtAlDefault )
				break;
			end
			if i ~= 1 then
				resultWikitext = resultWikitext .. ', '
			end
			resultWikitext = resultWikitext .. wikitext
		end

		return resultWikitext
	end

	return options.format( '(unknown type)' )
end

local function generateAuthorLinks(context, src)
	local result = ''
	if src.author then
		result = getPeopleAsWikitext( context, src.author, options_commas_authors )
		result = '<i class="wef_low_priority_links">' .. result .. '</i> '
	end
	return result
end

local function appendProperty(result, context, src, conjunctor, property, url)
	if src[property] then
		if url and src[url] then
			result = result .. conjunctor .. utils.wrapInUrl( src[url], utils.toString( context, src[property], options_commas_nolinks ) )
		else
			result = result .. conjunctor .. utils.toString( context, src[property], options_commas )
		end
	end
	return result
end

local function appendTitle(result, context, src)
	conjunctor = ''
 	if src.part then
 		result = appendProperty(result, context, src, '', 'part', 'parturl')
 		conjunctor = ' // '
 	end
 	result = appendProperty(result, context, src, conjunctor, 'title', 'url')
 	return result
end

local function appendLanguage(result, context, src)
	if context.lang ~= i18nDefaultLanguage then
		local langs = require('Module:Languages')
		result = result .. langs.list_ref(p.currentFrame:newChild{ args = {context.lang} })
	end
	return result
end

local function appendSubtitle(result, context, src)
	return appendProperty(result, context, src, ': ', 'subtitle')
end

local function appendOriginalTitle(result, context, src)
	return appendProperty(result, context, src, ' = ', 'originaltitle')
end

local function appendPublication(result, context, src)
	if src.publication then
		if type( src.publication.title or '') ~= 'string' then
			error('type of src.publication.title is not string but ' .. type( src.publication.title ) )
		end
		
		result = result .. ' // ' .. utils.toString( context, src.publication, options_commas_it_short )
		if src.publication.subtitle then
			result = result .. ': ' .. utils.toString( context, src.publication.subtitle, options_commas_it_short )
		end
	end
	return result
end

local function appendEditor(result, context, src)
	if src.editor or src.translator then
		result = result .. ' / '
		if src.editor then
			local prefix = i18nEditors[ context.lang ] or i18nEditors[ i18nDefaultLanguage ]
			result = result .. prefix .. getPeopleAsWikitext( context, src.editor, options_commas_responsible )
			if src.translator then
				result = result .. ', '
			end
		end
		if src.translator then
			local prefix = i18nTranslators[ context.lang ] or i18nTranslators[ i18nDefaultLanguage ]
			result = result .. prefix .. getPeopleAsWikitext( context, src.translator, options_commas_responsible )
		end
	end
	return result
end

local function appendEdition(result, context, src)
	return appendProperty(result, context, src, ' — ', 'edition')
end

local function appendPublicationData(result, context, src)
	if src.place or src.publisher or src.year then
		result = result .. ' — '
		if src.place then
			result = result .. utils.toString( context, src.place, options_commas_short )
			if src.publisher or src.year then
				result = result .. ': '
			end
		end
		if src.publisher then
			result = result .. utils.toString( context, src.publisher, options_commas_short )
			if src.year then
				result = result .. ', '
			end
		end
		if src.year then
			result = result .. utils.toString( context, src.year, options_commas )
		end
		result = result .. '.';
	end
	return result
end

local function appendVolumeAndIssue(result, context, src)
 	if src.volume or src.issue then
 		result = result .. ' — '
		local letter_vol = i18nVolume[ context.lang ] or i18nVolume[ i18nDefaultLanguage ]
		local letter_iss = i18nIssue[ context.lang ] or i18nIssue[ i18nDefaultLanguage ]
		if src.volume then
			result = appendProperty(result, context, src, letter_vol .. '&nbsp;', 'volume')
			result = appendProperty(result, context, src, ', ' .. letter_iss .. '&nbsp;', 'issue')
		else
			result = appendProperty(result, context, src, letter_iss .. '&nbsp;', 'issue')
		end
		result = result .. '.'
 	end
 	return result
end

local function appendPages(result, context, src)
	if src.pages then
		local letter = i18nPages[ context.lang ] or i18nPages[ i18nDefaultLanguage ]
		local strPages = utils.toString( context, src.pages, options_commas )
		strPages = mw.ustring.gsub( strPages, '[-—]', '—' );
		result = result .. ' — ' .. letter .. '&nbsp;' .. strPages .. '.'
	end
	return result
end

local function appendNumberOfPages(result, context, src)
	if src.numberOfPages then
		local letter = i18nNumberOfPages[ context.lang ] or i18nNumberOfPages[ i18nDefaultLanguage ]
		result = appendProperty(result, context, src, ' — ', 'numberOfPages') .. '&nbsp;' .. letter
	end
	return result
end

local function appendBookSeries(result, context, src)
	if src.bookSeries then
		result = appendProperty(result, context, src, ' — (', 'bookSeries')
	 	if src.bookSeriesVolume or src.bookSeriesIssue then
	 		result = result .. '; '
	 		local letter_vol = i18nVolume[ context.lang ] or i18nVolume[ i18nDefaultLanguage ]
	 		local letter_iss = i18nIssue[ context.lang ] or i18nIssue[ i18nDefaultLanguage ]
			if ( src.bookSeriesVolume ) then
				result = appendProperty(result, context, src, letter_vol .. '&nbsp;', 'bookSeriesVolume')
				result = appendProperty(result, context, src, ', ' .. letter_iss .. '&nbsp;', 'bookSeriesIssue')
			else
				result = appendProperty(result, context, src, letter_iss .. '&nbsp;', 'bookSeriesIssue')
			end
	 	end
		result = result .. ')'
	end
	return result
end

local function appendTirage(result, context, src)
	if src.tirage then
		local tirageTemplate = i18nTirage[ context.lang ] or i18nTirage[ i18nDefaultLanguage ]
		result = result .. ' — ' .. utils.toString( context, src.tirage, { separator = '; ', conjunction = '; ', format = function( data ) return mw.ustring.format(tirageTemplate, data) end } )
	end
	return result
end

local function appendIdentifiers(result, context, src)
	if src.isbn  then result = result .. ' — ISBN ' .. utils.toString( context, src.isbn, options_commas )	end
	if src.issn  then result = result .. ' — ISSN ' .. utils.toString( context, src.issn, options_issn )	end
	if src.doi   then result = result .. ' — ' .. utils.toString( context, src.doi, options_doi )			end
	if src.pmid  then result = result .. ' — ' .. utils.toString( context, src.pmid, options_pmid )			end
	if src.arxiv then result = result .. ' — ' .. utils.toString( context, src.arxiv, options_arxiv )		end
	return result
end

local function appendSourceId(result, context, src)
	if src.sourceId then
		local citetype = src.type and utils.toString(context, src.type, options_citetypes) or 'citetype_unknown'
		result = '<span class="wikidata_cite ' .. citetype .. '" data-entity-id="' .. utils.getSingle(src.sourceId) .. '">' .. result .. '</span>'
	end
	return result
end

local function appendAccessDate(result, context, src)
	if src.accessdate then
			local date = utils.getSingle(src.accessdate)
			local pattern = "(%-?%d+)%-(%d+)%-(%d+)T";
			local y, m, d = mw.ustring.match(date, pattern)
			y, m, d = tonumber(y), tonumber(m), tonumber(d)
			local date_str = (d > 0 and ' ' .. tostring(d) or '') 
						  .. (m > 0 and ' ' .. monthg[m] or '')
						  .. (y > 0 and ' ' .. tostring(y) or '')
			result = result .. " <small>Проверено" .. date_str .. ".</small>"
	end
	return result
end

local function populateUrl(context, src)
	if src.sourceId and not src.url then
		local entity = utils.getEntity(context, src.sourceId)
		if entity.sitelinks and entity.sitelinks[context.lang .. 'wikisource'] then
			src.url = ':' .. context.lang .. ':s:' .. entity.sitelinks[context.lang .. 'wikisource'].title
		end
	end
end

local function populateYear(src)
	if not src.year and src.dateOfPublication then
		local date = utils.getSingle(src.dateOfPublication)
		src.year = mw.ustring.sub(date, 2, 5)
	end
	if not src.year and src.dateOfCreation then
		local date = utils.getSingle(src.dateOfCreation)
		src.year = mw.ustring.sub(date, 2, 5)
	end
end

local function populateTitle(src)
	src.title = src.title or utils.getSingle(src.url) or '\'\'(unspecified title)\'\''
end

local function renderSource(context, src)
	options_commas_authors.format = personNameToAuthorName
	options_commas_responsible.format = personNameToResponsibleName

	context.lang = utils.getLangCode(utils.getSingle(src.lang)) or i18nDefaultLanguage

	utils.preprocessPlaces(src, context.lang)

	populateUrl(context, src)
	populateTitle(src)
	populateYear(src)

	local result = generateAuthorLinks(context, src)
	result = appendTitle(result, context, src)
	result = appendLanguage(result, context, src)
	result = appendSubtitle(result, context, src)
	result = appendOriginalTitle(result, context, src)
	result = appendPublication(result, context, src)
	
	result = result .. '<span class="wef_low_priority_links">'
	result = appendEditor(result, context, src) -- Might take current editor instead of actual. Use with caution
	result = appendEdition(result, context, src)
	result = appendPublicationData(result, context, src)
	result = appendVolumeAndIssue(result, context, src)
	result = appendPages(result, context, src)
	result = appendNumberOfPages(result, context, src)
	result = appendBookSeries(result, context, src)
	result = appendTirage(result, context, src)
	result = appendIdentifiers(result, context, src)
	result = appendSourceId(result, context, src)
	result = appendAccessDate(result, context, src)
	result = result .. '</span>'

	return result
end

local function renderReferenceImpl(currentEntity, reference, refAnchor, refAnchorYear)
	if not reference.snaks then
		return nil
	end

	-- контекст, содержит также кеш элементов
	local context = {
		cache = {}
	}

	-- данные в простом формате, согласованном с модулями формирования библиографического описания
	local data = {}

    -- забрать данные из reference
    utils.populateDataFromClaims(context, nil, reference.snaks, data)

	utils.expandSpecials(context, currentEntity, reference, data)

	local sourceEntity = nil
	if data.sourceId then
		sourceEntity = utils.getEntity(context, data.sourceId)
		if sourceEntity then
			utils.populateSourceDataImpl(context, sourceEntity, data)
		end
	end

	if data.publication then
		utils.expandPublication(context, sourceEntity, data)
	end

	utils.expandBookSeries(context, data)

	if next(data) == nil then
		return nil
	end

	local rendered = renderSource(context, data)
	if mw.ustring.len(rendered) == 0 then
		return nil
	end

	if refAnchor then
		local anchorValue = 'CITEREF' .. refAnchor .. (utils.coalesce(refAnchorYear, data.year) or '')
		rendered = '<span class="citation" id="' .. mw.uri.anchorEncode(anchorValue) .. '">' .. rendered .. '</span>'
	end

	return rendered
end

local function artificialSnaks(args)
	local snaks = {}
	if args[1] then
		entityId = mw.text.trim(args[1])
		snaks.P248 = {utils.toWikibaseEntityIdSnak("P248", entityId)}
		snaks.P805 = {utils.toWikibaseEntityIdSnak("P805", entityId)}
	end
	utils.copyArgsToSnaks(args, snaks)
	return mw.wikibase.getEntity(), {snaks = snaks}
end

function p.renderReference(frame, currentEntity, reference)
	p.currentFrame = frame

	-- template call
	if frame and not currentEntity and not reference then
		currentEntity, reference = artificialSnaks(frame.args)
	end

	local rendered = renderReferenceImpl(currentEntity, reference)
	if not rendered then
		return ''
	end
	-- Про выбор алгоритма хеширования см. [[Модуль:Hash]]. Знак подчёркивания в начале позволяет
	-- исключить ошибку, когда имя сноски — чисто числовое значение, каковыми иногда бывают хеши.
	return frame:extensionTag('ref', rendered, {name = '_' .. mw.hash.hashValue('fnv164', rendered)}) .. '[[Category:Википедия:Статьи с источниками из Викиданных]]'
end

function p.renderSource(frame)
	p.currentFrame = frame
	currentEntity, reference = artificialSnaks(frame.args)
	return renderReferenceImpl(currentEntity, reference, frame.args['ref'], frame.args['ref-year'])
end

return p;