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

Материал из BelGenWiki
Перейти к навигации Перейти к поиску
(Новая страница: «-- vim: set noexpandtab ft=lua ts=4 sw=4: require('strict') local p = {} local debug = false ------------------------------------------------------------------------------ -- module local variables and functions local wiki = { langcode = mw.language.getContentLanguage().code } -- internationalisation local i18n = { ["errors"] = { ["property-not-found"] = "Property not found.", ["entity-not-found"] = "Wikidata entity not found.", ["unknown-claim...»)
м (1 версия импортирована)
 
(не показана 1 промежуточная версия этого же участника)
Строка 1: Строка 1:
-- vim: set noexpandtab ft=lua ts=4 sw=4:
-- settings, may differ from project to project
require('strict')
local fileDefaultSize = '267x400px';
local outputReferences = true;


local p = {}
-- Ссылки на используемые модули, которые потребуются в 99% случаев загрузки страниц (чтобы иметь на виду при переименовании)
local debug = false
local moduleSources = require( 'Module:Sources' )
local WDS = require( 'Module:WikidataSelectors' );


-- Константы
local contentLanguageCode = mw.getContentLanguage():getCode();


------------------------------------------------------------------------------
local p = {};
-- module local variables and functions
local config = nil;


local wiki =
local formatDatavalue, formatEntityId, formatRefs, formatSnak, formatStatement,
{
formatStatementDefault, formatProperty, getSourcingCircumstances,
langcode = mw.language.getContentLanguage().code
getPropertyDatatype, getPropertyParams, throwError, toBoolean;
}


-- internationalisation
local function copyTo( obj, target, skipEmpty )
local i18n =
for k, v in pairs( obj ) do
{
if skipEmpty ~= true or ( v ~= nil and v ~= '' ) then
["errors"] =
target[k] = v;
{
end
["property-not-found"] = "Property not found.",
end
["entity-not-found"] = "Wikidata entity not found.",
return target;
["unknown-claim-type"] = "Unknown claim type.",
end
["unknown-entity-type"] = "Unknown entity type.",
 
["qualifier-not-found"] = "Qualifier not found.",
local function min( prev, next )
["site-not-found"] = "Wikimedia project not found.",
if ( prev == nil ) then return next;
["unknown-datetime-format"] = "Unknown datetime format.",
elseif ( prev > next ) then return next;
["local-article-not-found"] = "Article is not yet available in this wiki."
else return prev; end
},
end
["datetime"] =
 
{
local function max( prev, next )
-- $1 is a placeholder for the actual number
if ( prev == nil ) then return next;
[0] = "$1 billion years", -- precision: billion years
elseif ( prev < next ) then return next;
[1] = "$100 million years", -- precision: hundred million years
else return prev; end
[2] = "$10 million years", -- precision: ten million years
end
[3] = "$1 million years", -- precision: million years
[4] = "$100,000 years", -- precision: hundred thousand years
[5] = "$10,000 years", -- precision: ten thousand years
[6] = "$1 millennium", -- precision: millennium
[7] = "$1 century", -- precision: century
[8] = "$1s", -- precision: decade
-- the following use the format of #time parser function
[9]  = "Y", -- precision: year,
[10] = "F Y", -- precision: month
[11] = "F j, Y", -- precision: day
[12] = "F j, Y ga", -- precision: hour
[13] = "F j, Y g:ia", -- precision: minute
[14] = "F j, Y g:i:sa", -- precision: second
["beforenow"] = "$1 BCE", -- how to format negative numbers for precisions 0 to 5
["afternow"] = "$1 CE", -- how to format positive numbers for precisions 0 to 5
["bc"] = '$1 "BCE"', -- how print negative years
["ad"] = "$1", -- how print positive years
-- the following are for function getDateValue() and getQualifierDateValue()
["default-format"] = "dmy", -- default value of the #3 (getDateValue) or
-- #4 (getQualifierDateValue) argument
["default-addon"] = "BC", -- default value of the #4 (getDateValue) or
-- #5 (getQualifierDateValue) argument
["prefix-addon"] = false, -- set to true for languages put "BC" in front of the
-- datetime string; or the addon will be suffixed
["addon-sep"] = " ", -- separator between datetime string and addon (or inverse)
["format"] = -- options of the 3rd argument
{
["mdy"] = "F j, Y",
["my"] = "F Y",
["y"] = "Y",
["dmy"] = "j F Y",
["ymd"] = "Y-m-d",
["ym"] = "Y-m"
}
},
["monolingualtext"] = '<span lang="%language">%text</span>',
["warnDump"] = "[[Category:Called function 'Dump' from module Wikidata]]",
["ordinal"] =
{
[1] = "st",
[2] = "nd",
[3] = "rd",
["default"] = "th"
}
}


if wiki.langcode ~= "en" then
local function getConfig( section, code )
--require("Module:i18n").loadI18n("Module:Wikidata/i18n", i18n)
if config == nil then
-- got idea from [[:w:Module:Wd]]
config = require( 'Module:Wikidata/config' );
local module_title; if ... == nil then
end;
module_title = mw.getCurrentFrame():getTitle()
if not config then
else
config = {};
module_title = ...
end
end
require('Module:i18n').loadI18n(module_title..'/i18n', i18n)
end


-- this function needs to be internationalised along with the above:
if not section then
-- takes cardinal numer as a numeric and returns the ordinal as a string
return config;
-- we need three exceptions in English for 1st, 2nd, 3rd, 21st, .. 31st, etc.
local function makeOrdinal (cardinal)
local ordsuffix = i18n.ordinal.default
if cardinal % 10 == 1 then
ordsuffix = i18n.ordinal[1]
elseif cardinal % 10 == 2 then
ordsuffix = i18n.ordinal[2]
elseif cardinal % 10 == 3 then
ordsuffix = i18n.ordinal[3]
end
end
-- In English, 1, 21, 31, etc. use 'st', but 11, 111, etc. use 'th'
if not code then
-- similarly for 12 and 13, etc.
return config[ section ] or {};
if (cardinal % 100 == 11) or (cardinal % 100 == 12) or (cardinal % 100 == 13) then
ordsuffix = i18n.ordinal.default
end
end
return tostring(cardinal) .. ordsuffix
 
if not config[ section ] then
return nil;
end
return config[ section ][ code ];
end
end


local function printError(code)
local function getCategoryByCode( code, sortkey )
return '<span class="error">' .. (i18n.errors[code] or code) .. '</span>'
local value = getConfig( 'categories', code );
end
if not value or value == '' then
local function parseDateFormat(f, timestamp, addon, prefix_addon, addon_sep)  
return '';
local year_suffix
local tstr = ""
local lang_obj = mw.language.new(wiki.langcode)
local f_parts = mw.text.split(f, 'Y', true)
for idx, f_part in pairs(f_parts) do
year_suffix = ''
if string.match(f_part, "x[mijkot]$") then
-- for non-Gregorian year
f_part = f_part .. 'Y'
elseif idx < #f_parts then
-- supress leading zeros in year
year_suffix = lang_obj:formatDate('Y', timestamp)
year_suffix = string.gsub(year_suffix, '^0+', '', 1)
end
tstr = tstr .. lang_obj:formatDate(f_part, timestamp) .. year_suffix
end
end
if addon ~= "" and prefix_addon then
return addon .. addon_sep .. tstr
if sortkey ~= nil then
elseif addon ~= "" then
return '[[Category:' .. value .. '|' .. sortkey .. ']]'; -- экранировать?
return tstr .. addon_sep .. addon
else
else
return tstr
return '[[Category:' .. value .. ']]';
end
end
end
end
local function parseDateValue(timestamp, date_format, date_addon)
local prefix_addon = i18n["datetime"]["prefix-addon"]
local addon_sep = i18n["datetime"]["addon-sep"]
local addon = ""


-- check for negative date
local function splitISO8601(str)
if string.sub(timestamp, 1, 1) == '-' then
if 'table' == type(str) then
timestamp = '+' .. string.sub(timestamp, 2)
if str.args and str.args[1] then
addon = date_addon
str = '' .. str.args[1]
end
else
local _date_format = i18n["datetime"]["format"][date_format]
return 'unknown argument type: ' .. type( str ) .. ': ' .. table.tostring( str )
if _date_format ~= nil then
end
return parseDateFormat(_date_format, timestamp, addon, prefix_addon, addon_sep)
else
return printError("unknown-datetime-format")
end
end
local Y, M, D = (function(str)
local pattern = "(%-?%d+)%-(%d+)%-(%d+)T"
local Y, M, D = mw.ustring.match( str, pattern )
return tonumber(Y), tonumber(M), tonumber(D)
end) (str);
local h, m, s = (function(str)
local pattern = "T(%d+):(%d+):(%d+)%Z";
local H, M, S = mw.ustring.match( str, pattern);
return tonumber(H), tonumber(M), tonumber(S);
end) (str);
local oh,om = ( function(str)
if str:sub(-1)=="Z" then return 0,0 end; -- ends with Z, Zulu time
-- matches ±hh:mm, ±hhmm or ±hh; else returns nils
local pattern = "([-+])(%d%d):?(%d?%d?)$";
local sign, oh, om = mw.ustring.match( str, pattern);
sign, oh, om = sign or "+", oh or "00", om or "00";
return tonumber(sign .. oh), tonumber(sign .. om);
end )(str)
return {year=Y, month=M, day=D, hour=(h+oh), min=(m+om), sec=s};
end
end


-- This local function combines the year/month/day/BC/BCE handling of parseDateValue{}
local function parseTimeBoundaries( time, precision )
-- with the millennium/century/decade handling of formatDate()
local s = splitISO8601( time );
local function parseDateFull(timestamp, precision, date_format, date_addon)
if (not s) then return nil; end
local prefix_addon = i18n["datetime"]["prefix-addon"]
local addon_sep = i18n["datetime"]["addon-sep"]
local addon = ""


-- check for negative date
if ( precision >= 0 and precision <= 8 ) then
if string.sub(timestamp, 1, 1) == '-' then
local powers = { 1000000000 , 100000000, 10000000, 1000000, 100000, 10000, 1000, 100, 10 }
timestamp = '+' .. string.sub(timestamp, 2)
local power = powers[ precision + 1 ];
addon = date_addon
local left = s.year - ( s.year % power );
return { tonumber(os.time( {year=left, month=1, day=1, hour=0, min=0, sec=0} )) * 1000,
tonumber(os.time( {year=left + power - 1, month=12, day=31, hour=29, min=59, sec=58} )) * 1000 + 1999 };
end
end


-- get the next four characters after the + (should be the year now in all cases)
if ( precision == 9 ) then
-- ok, so this is dirty, but let's get it working first
return { tonumber(os.time( {year=s.year, month=1, day=1, hour=0, min=0, sec=0} )) * 1000,
local intyear = tonumber(string.sub(timestamp, 2, 5))
tonumber(os.time( {year=s.year, month=12, day=31, hour=23, min=59, sec=58} )) * 1000 + 1999 };
if intyear == 0 and precision <= 9 then
return ""
end
end


-- precision is 10000 years or more
if ( precision == 10 ) then
if precision <= 5 then
local lastDays = {31, 28.25, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
local factor = 10 ^ ((5 - precision) + 4)
local lastDay = lastDays[s.month];
local y2 = math.ceil(math.abs(intyear) / factor)
return { tonumber(os.time( {year=s.year, month=s.month, day=1, hour=0, min=0, sec=0} )) * 1000,
local relative = mw.ustring.gsub(i18n.datetime[precision], "$1", tostring(y2))
tonumber(os.time( {year=s.year, month=s.month, day=lastDay, hour=23, min=59, sec=58} )) * 1000 + 1999 };
if addon ~= "" then
-- negative date
relative = mw.ustring.gsub(i18n.datetime.beforenow, "$1", relative)
else
relative = mw.ustring.gsub(i18n.datetime.afternow, "$1", relative)
end
return relative
end
end


-- precision is decades (8), centuries (7) and millennia (6)
if ( precision == 11 ) then
local era, card
return { tonumber(os.time( {year=s.year, month=s.month, day=s.day, hour=0, min=0, sec=0} )) * 1000,
if precision == 6 then
tonumber(os.time( {year=s.year, month=s.month, day=s.day, hour=23, min=59, sec=58} )) * 1000 + 1999 };
card = math.floor((intyear - 1) / 1000) + 1
era = mw.ustring.gsub(i18n.datetime[6], "$1", makeOrdinal(card))
end
end
if precision == 7 then
 
card = math.floor((intyear - 1) / 100) + 1
if ( precision == 12 ) then
era = mw.ustring.gsub(i18n.datetime[7], "$1", makeOrdinal(card))
return { tonumber(os.time( {year=s.year, month=s.month, day=s.day, hour=s.hour, min=0, sec=0} )) * 1000,
tonumber(os.time( {year=s.year, month=s.month, day=s.day, hour=s.hour, min=59, sec=58} )) * 1000 + 1999 };
end
end
if precision == 8 then
 
era = mw.ustring.gsub(i18n.datetime[8], "$1", tostring(math.floor(math.abs(intyear) / 10) * 10))
if ( precision == 13 ) then
return { tonumber(os.time( {year=s.year, month=s.month, day=s.day, hour=s.hour, min=s.min, sec=0} )) * 1000,
tonumber(os.time( {year=s.year, month=s.month, day=s.day, hour=s.hour, min=s.min, sec=58} )) * 1000 + 1999 };
end
end
if era then
 
if addon ~= "" then
if ( precision == 14 ) then
era = mw.ustring.gsub(mw.ustring.gsub(i18n.datetime.bc, '"', ""), "$1", era)
local t = tonumber(os.time( {year=s.year, month=s.month, day=s.day, hour=s.hour, min=s.min, sec=0} ) );
else
return { t * 1000, t * 1000 + 999 };
era = mw.ustring.gsub(mw.ustring.gsub(i18n.datetime.ad, '"', ""), "$1", era)
end
return era
end
end


local _date_format = i18n["datetime"]["format"][date_format]
error('Unsupported precision: ' .. precision );
if _date_format ~= nil then
-- check for precision is year and override supplied date_format
if precision == 9 then
_date_format = i18n["datetime"][9]
end
return parseDateFormat(_date_format, timestamp, addon, prefix_addon, addon_sep)
else
return printError("unknown-datetime-format")
end
end
end


-- the "qualifiers" and "snaks" field have a respective "qualifiers-order" and "snaks-order" field
--[[
-- use these as the second parameter and this function instead of the built-in "pairs" function
Функция для формирования категории на основе wikidata/config
-- to iterate over all qualifiers and snaks in the intended order.
]]
local function orderedpairs(array, order)
local function extractCategory( options, value )
if not order then return pairs(array) end
if ( not options.category or options.nocat ) then
return '';
end
local propertyId = string.gsub( options.category, '([^Pp0-9].*)$', '');
local wbStatus, claims = pcall( mw.wikibase.getAllStatements, value.id, propertyId );
if ( wbStatus ~= true or not claims ) then return ''; end
allClaims = {}
allClaims[ propertyId ] = claims
claims = WDS.filter( allClaims, options.category )
if not claims then return ''; end
for _, claim in pairs( claims ) do
if ( claim
and claim.mainsnak
and claim.mainsnak.datavalue
and claim.mainsnak.datavalue.type == 'wikibase-entityid' ) then
local catEntityId = claim.mainsnak.datavalue.value.id;
local wbStatus, catSiteLink = pcall( mw.wikibase.getSitelink, catEntityId );


-- return iterator function
if ( wbStatus == true and catSiteLink ) then
local i = 0
return '[[' .. catSiteLink .. ']]';
return function()
end
i = i + 1
if order[i] then
return order[i], array[order[i]]
end
end
end
end
end


-- precision: 0 - billion years, 1 - hundred million years, ..., 6 - millennia, 7 - century, 8 - decade, 9 - year, 10 - month, 11 - day, 12 - hour, 13 - minute, 14 - second
return '';
local function normalizeDate(date)
date = mw.text.trim(date, "+")
-- extract year
local yearstr = mw.ustring.match(date, "^\-?%d+")
local year = tonumber(yearstr)
-- remove leading zeros of year
return year .. mw.ustring.sub(date, #yearstr + 1), year
end
end


local function formatDate(date, precision, timezone)
--[[
precision = precision or 11
Преобразует строку в булевое значение
local date, year = normalizeDate(date)
if year == 0 and precision <= 9 then return "" end


-- precision is 10000 years or more
Принимает: строковое значение (может отсутствовать)
if precision <= 5 then
Возвращает: булевое значение true или false, если получается распознать значение, или defaultValue во всех остальных  случаях
local factor = 10 ^ ((5 - precision) + 4)
]]
local y2 = math.ceil(math.abs(year) / factor)
local function toBoolean( valueToParse, defaultValue )
local relative = mw.ustring.gsub(i18n.datetime[precision], "$1", tostring(y2))
if ( valueToParse ~= nil ) then
if year < 0 then
if valueToParse == false or valueToParse == '' or valueToParse == 'false' or valueToParse == '0' then
relative = mw.ustring.gsub(i18n.datetime.beforenow, "$1", relative)
return false
else
relative = mw.ustring.gsub(i18n.datetime.afternow, "$1", relative)
end
end
return relative
return true
end
end
return defaultValue;
end


-- precision is decades, centuries and millennia
-- Обрачивает отформатированное значение в инлайновый или блочный тег.
local era
-- @param value String value
if precision == 6 then era = mw.ustring.gsub(i18n.datetime[6], "$1", tostring(math.floor((math.abs(year) - 1) / 1000) + 1)) end
-- @param attributes Table of attributes
if precision == 7 then era = mw.ustring.gsub(i18n.datetime[7], "$1", tostring(math.floor((math.abs(year) - 1) / 100) + 1)) end
-- @return string HTML tag with value
if precision == 8 then era = mw.ustring.gsub(i18n.datetime[8], "$1", tostring(math.floor(math.abs(year) / 10) * 10)) end
local function wrapValue( value, attributes )
if era then
local tagName = 'span';
if year < 0 then era = mw.ustring.gsub(mw.ustring.gsub(i18n.datetime.bc, '"', ""), "$1", era)
local spacer = '';
elseif year > 0 then era = mw.ustring.gsub(mw.ustring.gsub(i18n.datetime.ad, '"', ""), "$1", era) end
if (
return era
string.match( value, '\n' )
or string.match( value, '<t[dhr][ >]' )
or string.match( value, '<div[ >]' )
or string.find( value, 'UNIQ%-%-imagemap' )
) then
tagName = 'div';
spacer = '\n'
end
end
local attrString = ''
for key, value in pairs( attributes or {} ) do
local _key = mw.text.trim( key )
local _value = mw.text.encode( mw.text.trim( value ) )
attrString = attrString .. _key .. '="' .. _value .. '" '
end
return '<' .. tagName .. ' ' .. attrString .. '>' .. spacer .. value .. '</' .. tagName .. '>';
end


-- precision is year
-- Wraps formatted snak value into HTML tag with attributes.
if precision == 9 then
-- @param value String value of snak
return year
-- @param hash Snak hash
-- @param attributes Table of extra attributes
-- @return string HTML tag with value
local function wrapSnak( value, hash, attributes )
local newAttributes = mw.clone( attributes or {} )
newAttributes['class'] = ( newAttributes['class'] or '' ) .. ' wikidata-snak'
if hash then
newAttributes['data-wikidata-hash'] = hash
else
newAttributes['class'] = newAttributes['class'] .. ' wikidata-main-snak'
end
end


-- precision is less than years
return wrapValue( value, newAttributes )
if precision > 9 then
end
--[[ the following code replaces the UTC suffix with the given negated timezone to convert the global time to the given local time
 
timezone = tonumber(timezone)
-- Wraps formatted statement value into HTML tag with attributes.
if timezone and timezone ~= 0 then
-- @param value String value of statement
timezone = -timezone
-- @param propertyId String PID of property
timezone = string.format("%.2d%.2d", timezone / 60, timezone % 60)
-- @param claimId String ID of claim or nil for local value
if timezone[1] ~= '-' then timezone = "+" .. timezone end
-- @param attributes Table of extra attributes
date = mw.text.trim(date, "Z") .. " " .. timezone
-- @return string HTML tag with value
end
local function wrapStatement( value, propertyId, claimId, attributes )
]]--
local newAttributes = mw.clone( attributes or {} )
newAttributes['class'] = newAttributes['class'] or ''
newAttributes['data-wikidata-property-id'] = string.upper( propertyId )


local formatstr = i18n.datetime[precision]
if claimId then
if year == 0 then formatstr = mw.ustring.gsub(formatstr, i18n.datetime[9], "")
newAttributes['class'] = newAttributes['class'] .. ' wikidata-claim'
elseif year < 0 then
newAttributes['data-wikidata-claim-id'] = claimId
-- Mediawiki formatDate doesn't support negative years
else
date = mw.ustring.sub(date, 2)
newAttributes['class'] = newAttributes['class'] .. ' no-wikidata'
formatstr = mw.ustring.gsub(formatstr, i18n.datetime[9], mw.ustring.gsub(i18n.datetime.bc, "$1", i18n.datetime[9]))
elseif year > 0 and i18n.datetime.ad ~= "$1" then
formatstr = mw.ustring.gsub(formatstr, i18n.datetime[9], mw.ustring.gsub(i18n.datetime.ad, "$1", i18n.datetime[9]))
end
return mw.language.new(wiki.langcode):formatDate(formatstr, date)
end
end
return wrapValue( value, newAttributes )
end
-- Wraps formatted qualifier's statement value into HTML tag with attributes.
-- @param value String value of qualifier's statement
-- @param propertyId String PID of qualifier
-- @param attributes Table of extra attributes
-- @return string HTML tag with value
local function wrapQualifier( value, qualifierId, attributes )
local newAttributes = mw.clone( attributes or {} )
newAttributes['data-wikidata-qualifier-id'] = string.upper( qualifierId )
return wrapValue( value, newAttributes )
end
end


local function printDatavalueEntity(data, parameter)
--[[
-- data fields: entity-type [string], numeric-id [int, Wikidata id]
Функция для получения сущности (еntity) для текущей страницы
local id
Подробнее о сущностях см. d:Wikidata:Glossary/ru


if data["entity-type"] == "item" then id = "Q" .. data["numeric-id"]
Принимает: строковый индентификатор (типа P18, Q42)
elseif data["entity-type"] == "property" then id = "P" .. data["numeric-id"]
Возвращает: объект таблицу, элементы которой индексируются с нуля
else return printError("unknown-entity-type")
]]
end
local function getEntityFromId( id )
local entity;
local wbStatus;


if parameter then
if id then
if parameter == "link" then
wbStatus, entity = pcall( mw.wikibase.getEntityObject, id )
local linkTarget = mw.wikibase.getSitelink(id)
local linkName = mw.wikibase.getLabel(id)
if linkTarget then
-- if there is a local Wikipedia article link to it using the label or the article title
return "[[" .. linkTarget .. "|" .. (linkName or linkTarget) .. "]]"
else
-- if there is no local Wikipedia article output the label or link to the Wikidata object to let the user input a proper label
if linkName then return linkName else return "[[:d:" .. id .. "|" .. id .. "]]" end
end
else
return data[parameter]
end
else
else
return mw.wikibase.getLabel(id) or id
wbStatus, entity = pcall( mw.wikibase.getEntityObject );
end
end
return entity;
end
end


local function printDatavalueTime(data, parameter)
--[[
-- data fields: time [ISO 8601 time], timezone [int in minutes], before [int], after [int], precision [int], calendarmodel [wikidata URI]
Внутрення функция для формирования сообщения об ошибке
--  precision: 0 - billion years, 1 - hundred million years, ..., 6 - millennia, 7 - century, 8 - decade, 9 - year, 10 - month, 11 - day, 12 - hour, 13 - minute, 14 - second
 
--  calendarmodel: e.g. http://www.wikidata.org/entity/Q1985727 for the proleptic Gregorian calendar or http://www.wikidata.org/wiki/Q11184 for the Julian calendar]
Принимает: ключ элемента в таблице config.errors (например entity-not-found)
if parameter then
Возвращает: строку сообщения
if parameter == "calendarmodel" then data.calendarmodel = mw.ustring.match(data.calendarmodel, "Q%d+") -- extract entity id from the calendar model URI
]]
elseif parameter == "time" then data.time = normalizeDate(data.time) end
local function throwError( key )
return data[parameter]
error( getConfig( 'errors', key ) );
end
 
--[[
Функция для получения идентификатора сущностей
 
Принимает: объект таблицу сущности
Возвращает: строковый индентификатор (типа P18, Q42)
]]
local function getEntityIdFromValue( value )
local prefix = ''
if value['entity-type'] == 'item' then
prefix = 'Q'
elseif value['entity-type'] == 'property' then
prefix = 'P'
else
else
return formatDate(data.time, data.precision, data.timezone)
throwError( 'unknown-entity-type' )
end
end
return prefix .. value['numeric-id']
end
end


local function printDatavalueMonolingualText(data, parameter)
-- проверка на наличие специилизированной функции в опциях
-- data fields: language [string], text [string]
local function getUserFunction( options, prefix, defaultFunction )
if parameter then
-- проверка на указание специализированных обработчиков в параметрах,
return data[parameter]
-- переданных при вызове
else
if options[ prefix .. '-module' ] or options[ prefix .. '-function' ] then
local result = mw.ustring.gsub(mw.ustring.gsub(i18n.monolingualtext, "%%language", data["language"]), "%%text", data["text"])
-- проверка на пустые строки в параметрах или их отсутствие
return result
if not options[ prefix .. '-module' ] or not options[ prefix .. '-function' ] then
throwError( 'unknown-' .. prefix .. '-module' );
end
-- динамическая загруза модуля с обработчиком указанным в параметре
local formatter = require( 'Module:' .. options[ prefix .. '-module' ] );
if formatter == nil then
throwError( prefix .. '-module-not-found' )
end
local fun = formatter[ options[ prefix .. '-function' ] ]
if fun == nil then
throwError( prefix .. '-function-not-found' )
end
return fun;
end
end
return defaultFunction;
end
end


local function findClaims(entity, property)
-- Выбирает свойства по property id, дополнительно фильтруя их по рангу
if not property or not entity or not entity.claims then return end
local function selectClaims( context, options, propertySelector )
if ( not context ) then error( 'context not specified' ); end;
if ( not options ) then error( 'options not specified' ); end;
if ( not options.entity ) then error( 'options.entity is missing' ); end;
if ( not propertySelector ) then error( 'propertySelector not specified' ); end;
 
result = WDS.filter( options.entity.claims, propertySelector );


if mw.ustring.match(property, "^P%d+$") then
if ( not result or #result == 0 ) then
-- if the property is given by an id (P..) access the claim list by this id
return nil;
return entity.claims[property]
end
else
property = mw.wikibase.resolvePropertyId(property)
if not property then return end


return entity.claims[property]
if options.limit and options.limit ~= '' and options.limit ~= '-'  then
local limit = tonumber( options.limit, 10 );
while #result > limit do
table.remove( result );
end
end
end
return result;
end
end


local function getSnakValue(snak, parameter)
--[[
if snak.snaktype == "value" then
Функция для получения значения свойства элемента в заданный момент времени.
-- call the respective snak parser
 
if snak.datavalue.type == "string" then return snak.datavalue.value
Принимает: контекст, элемент, временные границы, таблица ID свойства
elseif snak.datavalue.type == "globecoordinate" then return printDatavalueCoordinate(snak.datavalue.value, parameter)
Возвращает: таблицу соответствующих значений свойства
elseif snak.datavalue.type == "quantity" then return printDatavalueQuantity(snak.datavalue.value, parameter)
]]
elseif snak.datavalue.type == "time" then return printDatavalueTime(snak.datavalue.value, parameter)
local function getPropertyInBoundaries( context, entityId, boundaries, propertyIds, selectors )
elseif snak.datavalue.type == "wikibase-entityid" then return printDatavalueEntity(snak.datavalue.value, parameter)
if (type(entityId) ~= 'string') then error('type of entityId argument expected string, but was ' .. type(entityId)); end
elseif snak.datavalue.type == "monolingualtext" then return printDatavalueMonolingualText(snak.datavalue.value, parameter)
 
local results = {};
 
if not propertyIds or #propertyIds == 0 then
return results;
end
 
for _, propertyId in ipairs( propertyIds ) do
local selector;
if selectors ~= nil then
selector = selectors[_] or selectors[propertyId] or propertyId;
else
selector = propertyId;
end
 
local fakeAllClaims = {};
fakeAllClaims[propertyId] = mw.wikibase.getAllStatements( entityId, propertyId );
local filteredClaims = WDS.filter( fakeAllClaims, selector .. '[rank:preferred, rank:normal]' );
if filteredClaims then
for _, claim in pairs( filteredClaims ) do
if not boundaries then
table.insert( results, claim.mainsnak );
else
local startBoundaries = p.getTimeBoundariesFromQualifier( context.frame, context, claim, 'P580' );
local endBoundaries = p.getTimeBoundariesFromQualifier( context.frame, context, claim, 'P582' );
 
if ( startBoundaries == nil or startBoundaries[2] <= boundaries[1] ) and
( endBoundaries == nil or endBoundaries[1] >= boundaries[2] )
then
table.insert( results, claim.mainsnak );
end
end
end
end
 
if #results > 0 then
break;
end
end
end
end
return mw.wikibase.renderSnak(snak)
 
return results;
end
end


local function getQualifierSnak(claim, qualifierId)
--[[
-- a "snak" is Wikidata terminology for a typed key/value pair
TODO
-- a claim consists of a main snak holding the main information of this claim,
]]
-- as well as a list of attribute snaks and a list of references snaks
function p.getTimeBoundariesFromQualifier( frame, context, statement, qualifierId )
if qualifierId then
-- only support exact date so far, but need improvment
-- search the attribute snak with the given qualifier as key
local left = nil;
if claim.qualifiers then
local right = nil;
local qualifier = claim.qualifiers[qualifierId]
if ( statement.qualifiers and statement.qualifiers[qualifierId] ) then
if qualifier then return qualifier[1] end
for _, qualifier in pairs( statement.qualifiers[qualifierId] ) do
local boundaries = context.parseTimeBoundariesFromSnak( qualifier );
if ( not boundaries ) then return nil; end
left = min( left, boundaries[1] );
right = max( right, boundaries[2] );
end
end
return nil, printError("qualifier-not-found")
else
-- otherwise return the main snak
return claim.mainsnak
end
end
if ( not left or not right ) then
return nil;
end
return { left, right };
end
end


local function getValueOfClaim(claim, qualifierId, parameter)
--[[
local error
TODO
local snak
]]
snak, error = getQualifierSnak(claim, qualifierId)
function p.getTimeBoundariesFromQualifiers( frame, context, statement, qualifierIds )
if snak then
if not qualifierIds then
return getSnakValue(snak, parameter)
qualifierIds = { 'P582', 'P580', 'P585' };
else
end
return nil, error
 
for _, qualifierId in ipairs( qualifierIds ) do
local result = p.getTimeBoundariesFromQualifier( frame, context, statement, qualifierId );
if result then
return result;
end
end
end
return nil;
end
end


local function getReferences(frame, claim)
local CONTENT_LANGUAGE_CODE = mw.language.getContentLanguage():getCode();
local result = ""
local getLabelWithLang_DEFAULT_PROPERTIES = { "P1813", "P1448", "P1705" };
-- traverse through all references
local getLabelWithLang_DEFAULT_SELECTORS = {
for ref in pairs(claim.references or {}) do
'P1813[language:' .. CONTENT_LANGUAGE_CODE .. '][!P3831,P3831:Q105690470]',
local refparts
'P1448[language:' .. CONTENT_LANGUAGE_CODE .. '][!P3831,P3831:Q105690470]',
-- traverse through all parts of the current reference
'P1705[language:' .. CONTENT_LANGUAGE_CODE .. '][!P3831,P3831:Q105690470]'
for snakkey, snakval in orderedpairs(claim.references[ref].snaks or {}, claim.references[ref]["snaks-order"]) do
};
if refparts then refparts = refparts .. ", " else refparts = "" end
 
-- output the label of the property of the reference part, e.g. "imported from" for P143
--[[
refparts = refparts .. tostring(mw.wikibase.getLabel(snakkey)) .. ": "
Функция для получения метки элемента в заданный момент времени.
-- output all values of this reference part, e.g. "German Wikipedia" and "English Wikipedia" if the referenced claim was imported from both sites
 
for snakidx = 1, #snakval do
Принимает: контекст, элемент, временные границы
if snakidx > 1 then refparts = refparts .. ", " end
Возвращает: текстовую метку элемента, язык метки
refparts = refparts .. getSnakValue(snakval[snakidx])
]]
local function getLabelWithLang( context, options, entityId, boundaries, propertyIds, selectors )
if (type(entityId) ~= 'string') then error('type of entityId argument expected string, but was ' .. type(entityId)); end
if not entityId then
return nil;
end
 
local langCode = CONTENT_LANGUAGE_CODE;
 
-- name from label
local label = nil;
if ( options.text and options.text ~= '' ) then
label = options.text;
else
if not propertyIds then
propertyIds = getLabelWithLang_DEFAULT_PROPERTIES;
selectors = getLabelWithLang_DEFAULT_SELECTORS;
end
 
-- name from properties
local results = getPropertyInBoundaries( context, entityId, boundaries, propertyIds, selectors );
 
for _, result in pairs( results ) do
if result.datavalue and result.datavalue.value then
if result.datavalue.type == 'monolingualtext' and result.datavalue.value.text then
label = result.datavalue.value.text;
langCode = result.datavalue.value.language;
break;
elseif result.datavalue.type == 'string' then
label = result.datavalue.value;
break;
end
end
end
if (not label) then
label, langCode = mw.wikibase.getLabelWithLang( entityId );
if not langCode then
return nil;
end
end
end
end
if refparts then result = result .. frame:extensionTag("ref", refparts) end
end
end
return result
 
return label, langCode;
end
end


local function parseInput(frame)
local function formatPropertyDefault( context, options )
local qid = frame.args.qid
if ( not context ) then error( 'context not specified' ); end;
if qid and (#qid == 0) then qid = nil end
if ( not options ) then error( 'options not specified' ); end;
local propertyID = mw.text.trim(frame.args[1] or "")
if ( not options.entity ) then error( 'options.entity missing' ); end;
local input_parm = mw.text.trim(frame.args[2] or "")
 
if input_parm ~= "FETCH_WIKIDATA" then
local claims;
return false, input_parm, nil, nil
if options.property then -- TODO: Почему тут может не быть property?
if options.rank then -- передать настройки ранга из конфига
claims = context.selectClaims( options, options.property .. options.rank );
else
claims = context.selectClaims( options, options.property );
end
end
if claims == nil then
return '' --TODO error?
end
 
-- Обход всех заявлений утверждения и с накоплением оформленных предпочтительных
-- заявлений в таблице
local formattedClaims = {}
 
for i, claim in ipairs(claims) do
local formattedStatement = context.formatStatement( options, claim )
-- здесь может вернуться либо оформленный текст заявления, либо строка ошибки, либо nil
if ( formattedStatement and formattedStatement ~= '' ) then
formattedStatement = context.wrapStatement( formattedStatement, options.property, claim.id )
table.insert( formattedClaims, formattedStatement )
end
end
end
local entity = mw.wikibase.getEntity(qid)
 
local claims
-- создание текстовой строки со списком оформленых заявлений из таблицы
if entity and entity.claims then
local out = mw.text.listToText( formattedClaims, options.separator, options.conjunction )
claims = entity.claims[propertyID]
if out ~= '' then
if not claims then
if options.before then
return false, "", nil, nil
out = options.before .. out
end
if options.after then
out = out .. options.after
end
end
else
return false, "", nil, nil
end
end
return true, entity, claims, propertyID
 
return out
end
end
local function isType(claims, type)
 
return claims[1] and claims[1].mainsnak.snaktype == "value" and claims[1].mainsnak.datavalue.type == type
-- create context
end
local function initContext( options )
local function getValue(entity, claims, propertyID, delim, labelHook)  
local context = {
if labelHook == nil then
entity = options.entity,
labelHook = function (qnumber)
extractCategory = extractCategory,
formatSnak = formatSnak,
formatPropertyDefault = formatPropertyDefault,
formatStatementDefault = formatStatementDefault,
getPropertyInBoundaries = getPropertyInBoundaries,
getTimeBoundariesFromQualifier = p.getTimeBoundariesFromQualifier,
getTimeBoundariesFromQualifiers = p.getTimeBoundariesFromQualifiers,
wrapSnak = wrapSnak,
wrapStatement = wrapStatement,
wrapQualifier = wrapQualifier,
}
context.cloneOptions = function( options )
local entity = options.entity;
options.entity = nil;
 
newOptions = mw.clone( options );
options.entity = entity;
newOptions.entity = entity;
newOptions.frame = options.frame; -- На склонированном фрейме frame:expandTemplate()
 
return newOptions;
end;
context.formatProperty = function( options )
local func = getUserFunction( options, 'property', context.formatPropertyDefault );
return func( context, options )
end;
context.formatStatement = function( options, statement ) return formatStatement( context, options, statement ) end;
context.formatSnak = function( options, snak, circumstances ) return formatSnak( context, options, snak, circumstances ) end;
context.formatRefs = function( options, statement ) return formatRefs( context, options, statement ) end;
 
context.parseTimeFromSnak = function( snak )
if ( snak and snak.datavalue and snak.datavalue.value and snak.datavalue.value.time ) then
return tonumber(os.time( splitISO8601( tostring( snak.datavalue.value.time ) ) ) ) * 1000;
end
return nil;
return nil;
end
end
end
context.parseTimeBoundariesFromSnak = function( snak )
if isType(claims, "wikibase-entityid") then
if ( snak and snak.datavalue and snak.datavalue.value and snak.datavalue.value.time and snak.datavalue.value.precision ) then
local out = {}
return parseTimeBoundaries( snak.datavalue.value.time, snak.datavalue.value.precision );
for k, v in pairs(claims) do
local qnumber = "Q" .. v.mainsnak.datavalue.value["numeric-id"]
local sitelink = mw.wikibase.getSitelink(qnumber)
local label = labelHook(qnumber) or mw.wikibase.getLabel(qnumber) or qnumber
if sitelink then
out[#out + 1] = "[[" .. sitelink .. "|" .. label .. "]]"
else
out[#out + 1] = "[[:d:" .. qnumber .. "|" .. label .. "]]<abbr title='" .. i18n["errors"]["local-article-not-found"] .. "'>[*]</abbr>"
end
end
return nil;
end
end
return table.concat(out, delim)
context.getSourcingCircumstances = function( statement ) return getSourcingCircumstances( statement ) end;
context.selectClaims = function( options, propertyId ) return selectClaims( context, options, propertyId ) end;
 
return context
end
 
--[[
Функция для оформления утверждений (statement)
Подробнее о утверждениях см. d:Wikidata:Glossary/ru
 
Принимает: таблицу параметров
Возвращает: строку оформленного текста, предназначенного для отображения в статье
]]
local function formatProperty( options )
-- Получение сущности по идентификатору
local entity = getEntityFromId( options.entityId )
if not entity then
return -- throwError( 'entity-not-found' )
end
-- проверка на присутсвие у сущности заявлений (claim)
-- подробнее о заявлениях см. d:Викиданные:Глоссарий
if (entity.claims == nil) then
return '' --TODO error?
end
 
-- improve options
options.frame = g_frame;
options.entity = entity;
options.extends = function( self, newOptions )
return copyTo( newOptions, copyTo( self, {} ) )
end
 
if ( options.i18n ) then
options.i18n = copyTo( options.i18n, copyTo( getConfig( 'i18n' ), {} ) );
else
else
-- just return best values
options.i18n = getConfig( 'i18n' );
return entity:formatPropertyValues(propertyID).value
end
end
local context = initContext( options );
return context.formatProperty( options );
end
end


------------------------------------------------------------------------------
--[[
-- module global functions
Функция для оформления одного утверждения (statement)


if debug then
Принимает: объект-таблицу утверждение и таблицу параметров
function p.inspectI18n(frame)
Возвращает: строку оформленного текста с заявлением (claim)
local val = i18n
]]
for _, key in pairs(frame.args) do
function formatStatement( context, options, statement )
key = mw.text.trim(key)
if ( not statement ) then
val = val[key]
error( 'statement is not specified or nil' );
end
end
return val
if not statement.type or statement.type ~= 'statement' then
throwError( 'unknown-claim-type' )
end
end
end


function p.descriptionIn(frame)
local functionToCall = getUserFunction( options, 'claim', context.formatStatementDefault );
local langcode = frame.args[1]
return functionToCall( context, options, statement );
local id = frame.args[2]
-- return description of a Wikidata entity in the given language or the default language of this Wikipedia site
return mw.wikibase.getEntity(id):getDescription(langcode or wiki.langcode)
end
end


function p.labelIn(frame)
function getSourcingCircumstances( statement )
local langcode = frame.args[1]
if (not statement) then error('statement is not specified') end;
local id = frame.args[2]
-- return label of a Wikidata entity in the given language or the default language of this Wikipedia site
return mw.wikibase.getEntity(id):getLabel(langcode or wiki.langcode)
end


-- This is used to get a value, or a comma separated list of them if multiple values exist
local circumstances = {};
p.getValue = function(frame)
if ( statement.qualifiers
local delimdefault = ", " -- **internationalise later**
and statement.qualifiers.P1480 ) then
local delim = frame.args.delimiter or ""
for i, qualifier in pairs( statement.qualifiers.P1480 ) do
delim = string.gsub(delim, '"', '')
if ( qualifier
if #delim == 0 then
and qualifier.datavalue
delim = delimdefault
and qualifier.datavalue.type == 'wikibase-entityid'
and qualifier.datavalue.value
and qualifier.datavalue.value['entity-type'] == 'item' ) then
table.insert(circumstances, qualifier.datavalue.value.id)
end
end
end
end
local go, errorOrentity, claims, propertyID = parseInput(frame)
return circumstances;
if not go then
return errorOrentity
end
return getValue(errorOrentity, claims, propertyID, delim)
end
end


-- Same as above, but uses the short name property for label if available.
--[[
p.getValueShortName = function(frame)
Функция для оформления одного утверждения (statement)
local go, errorOrentity, claims, propertyID = parseInput(frame)
 
if not go then
Принимает: объект-таблицу утверждение, таблицу параметров,
return errorOrentity
объект-функцию оформления внутренних структур утверждения (snak) и
end
объект-функцию оформления ссылки на источники (reference)
local entity = errorOrentity
Возвращает: строку оформленного текста с заявлением (claim)
-- if wiki-linked value output as link if possible
]]
local function labelHook (qnumber)
function formatStatementDefault( context, options, statement )
local label
if (not context) then error('context is not specified') end;
local claimEntity = mw.wikibase.getEntity(qnumber)
if (not options) then error('options is not specified') end;
if claimEntity ~= nil then
if (not statement) then error('statement is not specified') end;
if claimEntity.claims.P1813 then
 
for k2, v2 in pairs(claimEntity.claims.P1813) do
local circumstances = context.getSourcingCircumstances( statement );
if v2.mainsnak.datavalue.value.language == "en" then
 
label = v2.mainsnak.datavalue.value.text
options.qualifiers = statement.qualifiers;
end
 
end
local result = context.formatSnak( options, statement.mainsnak, circumstances );
    if ( options.qualifier and statement.qualifiers and statement.qualifiers[ options.qualifier ] ) then
    qualConfig = getPropertyParams( options.qualifier, nil, {})
    if options.i18n then qualConfig.i18n = options.i18n end
    local qualifierValues = {};
for _, qualifierSnak in pairs( statement.qualifiers[ options.qualifier ] ) do
local snakValue = context.formatSnak( qualConfig, qualifierSnak );
if snakValue and snakValue ~= '' then
table.insert( qualifierValues, snakValue );
end
end
end
end
if label == nil or label == "" then return nil end
if ( result and result ~= '' and #qualifierValues ) then
return label
if qualConfig.invisible then
        result = result .. table.concat( qualifierValues, ', ' );
else
        result = result .. ' (' .. table.concat( qualifierValues, ', ' ) .. ')';
        end
        end
    end
 
if ( result and result ~= '' and options.references ) then
result = result .. context.formatRefs( options, statement );
end
end
return getValue(errorOrentity, claims, propertyID, ", ", labelHook);
 
return result;
end
end


-- This is used to get a value, or a comma separated list of them if multiple values exist
--[[
-- from an arbitrary entry by using its QID.
Функция для оформления части утверждения (snak)
-- Use : {{#invoke:Wikidata|getValueFromID|<ID>|<Property>|FETCH_WIKIDATA}}
Подробнее о snak см. d:Викиданные:Глоссарий
-- E.g.: {{#invoke:Wikidata|getValueFromID|Q151973|P26|FETCH_WIKIDATA}} - to fetch value of 'spouse' (P26) from 'Richard Burton' (Q151973)
 
-- Please use sparingly - this is an *expensive call*.
Принимает: таблицу snak объекта (main snak или же snak от квалификатора) и таблицу опций
p.getValueFromID = function(frame)
Возвращает: строку оформленного викитекста
local itemID = mw.text.trim(frame.args[1] or "")
]]
local propertyID = mw.text.trim(frame.args[2] or "")
function formatSnak( context, options, snak, circumstances )
local input_parm = mw.text.trim(frame.args[3] or "")
circumstances = circumstances or {};
if input_parm == "FETCH_WIKIDATA" then
 
local entity = mw.wikibase.getEntity(itemID)
if snak.snaktype == 'somevalue' then
local claims
if ( options['somevalue'] and options['somevalue'] ~= '' ) then
if entity and entity.claims then
result = options['somevalue'];
claims = entity.claims[propertyID]
else
result = options.i18n['somevalue'];
end
end
if claims then
elseif snak.snaktype == 'novalue' then
return getValue(entity, claims, propertyID, ", ")
if ( options['novalue'] and options['novalue'] ~= '' ) then
result = options['novalue'];
else
else
return ""
result = options.i18n['novalue'];
end
elseif snak.snaktype == 'value' then
result = formatDatavalue( context, options, snak.datavalue, snak.datatype );
for _, item in pairs(circumstances) do
if options.i18n[item] then
result = options.i18n[item] .. result;
end
end
end
else
else
return input_parm
throwError( 'unknown-snak-type' );
end
if ( not result or result == '' ) then
return nil;
end
end
return context.wrapSnak( result, snak.hash )
end
end
local function getQualifier(frame, outputHook)  
 
local propertyID = mw.text.trim(frame.args[1] or "")
--[[
local qualifierID = mw.text.trim(frame.args[2] or "")
Функция для оформления объектов-значений с географическими координатами
local input_parm = mw.text.trim(frame.args[3] or "")
 
if input_parm == "FETCH_WIKIDATA" then
Принимает: объект-значение и таблицу параметров,
local entity = mw.wikibase.getEntity()
Возвращает: строку оформленного текста
if entity.claims[propertyID] ~= nil then
]]
local out = {}
local function formatGlobeCoordinate( value, options )
for k, v in pairs(entity.claims[propertyID]) do
-- проверка на требование в параметрах вызова на возврат сырого значения
for k2, v2 in pairs(v.qualifiers[qualifierID]) do
if options['subvalue'] == 'latitude' then -- широты
if v2.snaktype == 'value' then
return value['latitude']
out[#out + 1] = outputHook(v2);
elseif options['subvalue'] == 'longitude' then -- долготы
end
return value['longitude']
elseif options['nocoord'] and options['nocoord'] ~= '' then
-- если передан параметр nocoord, то не выводить координаты
-- обычно это делается при использовании нескольких карточек на странице
return ''
else
-- в противном случае формируются параметры для вызова шаблона {{coord}}
-- нужно дописать в документации шаблона, что он отсюда вызывается, и что
-- любое изменние его парамеров  должно быть согласовано с кодом тут
coord_mod = require( "Module:Coordinates" );
local globe = options.globe or ''
if globe == '' and value['globe'] then
globes = require( 'Module:Wikidata/Globes' )
globe = globes[value['globe']] or ''
end
local display = 'inline'
if options.display and options.display ~= '' then
display = options.display
elseif ( options.property:upper() == 'P625' ) then
display = 'title'
end
local format = options.format or ''
if format == '' then
format = 'dms'
if value['precision'] then
local precision = value['precision'] * 60
if precision >= 60 then
format = 'd'
elseif precision >= 1 then
format = 'dm'
end
end
end
end
return table.concat(out, ", "), true
else
return "", false
end
end
else
 
return input_parm, false
g_frame.args = {
tostring(value['latitude']),
tostring(value['longitude']),
globe = globe,
type = options.type and options.type or '',
scale = options.scale and options.scale or '',
display = display,
format = format,
}
return coord_mod.coord(g_frame)
end
end
end
end
p.getQualifierValue = function(frame)
 
local function outputValue(value)
--[[
local qnumber = "Q" .. value.datavalue.value["numeric-id"]
Функция для оформления объектов-значений с файлами с Викисклада
if (mw.wikibase.getSitelink(qnumber)) then
 
return "[[" .. mw.wikibase.getSitelink(qnumber) .. "]]"
Принимает: объект-значение и таблицу параметров,
Возвращает: строку оформленного текста
]]
local function formatCommonsMedia( value, options )
local image = value;
 
local caption = '';
if options[ 'caption' ] and options[ 'caption' ] ~= '' then
caption = options[ 'caption' ];
end
if caption ~= '' then
caption = wrapQualifier( caption, 'P2096', { class = 'media-caption', style = 'display:block' } );
end
 
if not string.find( value, '[%[%]%{%}]' ) and not string.find( value, 'UNIQ%-%-imagemap' ) then
-- если в value не содержится викикод или imagemap, то викифицируем имя файла
-- ищем слово imagemap в строке, потому что вставляется плейсхолдер: [[PHAB:T28213]]
image = '[[File:' .. value .. '|frameless';
if options[ 'border' ] and options[ 'border' ] ~= '' then
image = image .. '|border';
end
 
local size = options[ 'size' ];
if size and size ~= '' then
-- TODO: check localized pixel names too
if not string.match( size, 'px$' ) then
size = size .. 'px'
end
else
else
return "[[:d:" .. qnumber .. "|" ..qnumber .. "]]<abbr title='" .. i18n["errors"]["local-article-not-found"] .. "'>[*]</abbr>"
size = fileDefaultSize;
end
end
image = image .. '|' .. size;
if options[ 'alt' ] and options[ 'alt' ] ~= '' then
image = image .. '|alt=' .. options[ 'alt' ];
end
if caption ~= '' then
image = image .. '|' .. caption
end
image = image .. ']]';
if caption ~= '' then
image = image .. '<br>' .. caption;
end
else
image = image .. caption .. getCategoryByCode( 'media-contains-markup' );
end
end
return (getQualifier(frame, outputValue))
 
return image
end
end


-- This is used to get a value like 'male' (for property p21) which won't be linked and numbers without the thousand separators
--[[
p.getRawValue = function(frame)
Fonction for render math formulas
local go, errorOrentity, claims, propertyID = parseInput(frame)
 
if not go then
@param string Value.
return errorOrentity
@param table Parameters.
end
@return string Formatted string.
local entity = errorOrentity
]]
local result = entity:formatPropertyValues(propertyID, mw.wikibase.entity.claimRanks).value
local function formatMath( value, options )
-- if number type: remove thousand separators, bounds and units
return options.frame:extensionTag{ name = 'math', content = value };
if isType(claims, "quantity") then
result = mw.ustring.gsub(result, "(%d),(%d)", "%1%2")
result = mw.ustring.gsub(result, "(%d)±.*", "%1")
end
return result
end
end


-- This is used to get the unit name for the numeric value returned by getRawValue
--[[
p.getUnits = function(frame)
Функция для оформления внешних идентификаторов
local go, errorOrentity, claims, propertyID = parseInput(frame)
 
if not go then
Принимает: объект-значение и таблицу параметров,
return errorOrentity
Возвращает: строку оформленного текста
]]
local function formatExternalId( value, options )
local formatter = options.formatter;
 
if not formatter or formatter == '' then
local wbStatus, propertyEntity = pcall( mw.wikibase.getEntity, options.property:upper() )
if wbStatus == true and propertyEntity then
local isGoodFormat = false;
local statements = propertyEntity:getBestStatements( 'P1793' );
for _, statement in pairs( statements ) do
if statement.mainsnak.snaktype == 'value' then
local pattern = mw.ustring.gsub( statement.mainsnak.datavalue.value, '\\', '%' );
pattern = mw.ustring.gsub( pattern, '{%d+,?%d*}', '+' );
if ( string.find( pattern, '|' ) or string.find( pattern, '%)%?' )
or mw.ustring.match( value, '^' .. pattern .. '$' ) ~= nil ) then
isGoodFormat = true;
break;
end
end
end
 
if ( isGoodFormat == true ) then
statements = propertyEntity:getBestStatements( 'P1630' );
for _, statement in pairs( statements ) do
if statement.mainsnak.snaktype == 'value' then
formatter = statement.mainsnak.datavalue.value;
break
end
end
end
end
end
end
local entity = errorOrentity
 
local result = entity:formatPropertyValues(propertyID, mw.wikibase.entity.claimRanks).value
if formatter and formatter ~= '' then
if isType(claims, "quantity") then
local encodedValue = mw.ustring.gsub( value, '%%', '%%%%' ) -- ломается, если подставить внутрь другого mw.ustring.gsub
result = mw.ustring.sub(result, mw.ustring.find(result, " ")+1, -1)
local link = mw.ustring.gsub(
mw.ustring.gsub( formatter, '$1', encodedValue ), '.',
{ [' '] = '%20', ['+'] = '%2b', ['['] = '%5B', [']'] = '%5D' } )
 
local title = options.title
if not title or title == '' then
title = '$1'
end
title = mw.ustring.gsub(  
mw.ustring.gsub( title, '$1', encodedValue ), '.',
{ ['['] = '(', [']'] = ')' } )
 
return '[' .. link .. ' ' .. title .. ']'
end
end
return result
 
return value
end
end


-- This is used to get the unit's QID to use with the numeric value returned by getRawValue
--[[
p.getUnitID = function(frame)
Функция для оформления числовых значений
local go, errorOrentity, claims = parseInput(frame)
 
if not go then
Принимает: объект-значение и таблицу параметров,
return errorOrentity
Возвращает: строку оформленного текста
end
]]
local entity = errorOrentity
local function formatQuantity( value, options )
local result
-- диапазон значений
if isType(claims, "quantity") then
local amount = string.gsub( value['amount'], '^%+', '' );
-- get the url for the unit entry on Wikidata:
local lang = mw.language.getContentLanguage();
result = claims[1].mainsnak.datavalue.value.unit
local langCode = lang:getCode();
-- and just reurn the last bit from "Q" to the end (which is the QID):
result = mw.ustring.sub(result, mw.ustring.find(result, "Q"), -1)
end
return result
end


p.getRawQualifierValue = function(frame)
local function formatNum( number, sigfig )
local function outputHook(value)
local multiplier = ''
if value.datavalue.value["numeric-id"] then
return mw.wikibase.getLabel("Q" .. value.datavalue.value["numeric-id"])
if options.countByThousands then
local powers = options.i18n['thousandPowers']
local pos = 1
while math.abs(number) >= 1000 and pos < #powers do
number = number / 1000
pos = pos + 1
end
multiplier = powers[pos]
if math.abs(number) >= 100 then
sigfig = sigfig or 0
elseif math.abs(number) >= 10 then
sigfig = sigfig or 1
else
sigfig = sigfig or 2
end
else
else
return value.datavalue.value
sigfig = sigfig or 12 -- округление до 12 знаков после запятой, на 13-м возникает ошибка в точности
end
end
local mult = 10^sigfig;
number = math.floor( number * mult + 0.5 ) / mult;
return string.gsub( lang:formatNum( number ), '^-', '−' ) .. multiplier;
end
end
local ret, gotData = getQualifier(frame, outputHook)
 
if gotData then
local out = formatNum( tonumber( amount ) );
ret = string.upper(string.sub(ret, 1, 1)) .. string.sub(ret, 2)
if value.upperBound then
local diff = tonumber( value.upperBound ) - tonumber( amount )
if diff > 0 then -- временная провека, пока у большинства значений не будет убрано ±0
-- Пробуем понять до какого знака округлять
local integer, dot, decimals, expstr = value.upperBound:match( '^+?-?(%d*)(%.?)(%d*)(.*)' )
local prec
if dot == '' then
prec = -integer:match('0*$'):len()
else
prec = #decimals
end
bound = formatNum( diff, prec )
if string.match( bound, 'E%-(%d+)' ) then -- если в экспоненциальном формате
digits = tonumber( string.match( bound, 'E%-(%d+)' ) ) - 2
bound = formatNum( diff * 10 ^ digits, prec )
bound = string.sub( bound, 0, 2 ) .. string.rep( '0', digits ) .. string.sub( bound, -string.len( bound ) + 2 )
end
out = out .. ' ± ' .. bound
end
end
end
return ret
end


-- This is used to get a date value for date_of_birth (P569), etc. which won't be linked
if options.unit and options.unit ~= '' then
-- Dates and times are stored in ISO 8601 format (sort of).
if options.unit ~= '-' then
-- At present the local formatDate(date, precision, timezone) function doesn't handle timezone
out = out .. ' ' .. options.unit
-- So I'll just supply "Z" in the call to formatDate below:
end
p.getDateValue = function(frame)
elseif value.unit and string.match( value.unit, 'http://www.wikidata.org/entity/' ) then
local date_format = mw.text.trim(frame.args[3] or i18n["datetime"]["default-format"])
local unitEntityId = string.gsub( value.unit, 'http://www.wikidata.org/entity/', '' );
local date_addon = mw.text.trim(frame.args[4] or i18n["datetime"]["default-addon"])
if unitEntityId ~= 'undefined' then
local go, errorOrentity, claims = parseInput(frame)
local wbStatus, unitEntity = pcall( mw.wikibase.getEntity, unitEntityId );
if not go then
if wbStatus == true and unitEntity then
return errorOrentity
if unitEntity.claims.P2370 and
end
unitEntity.claims.P2370[1].mainsnak.snaktype == 'value' and
local entity = errorOrentity
not value.upperBound and
local out = {}
options.siConversion == true
for k, v in pairs(claims) do
then
if v.mainsnak.datavalue.type == 'time' then
conversionToSIunit = string.gsub( unitEntity.claims.P2370[1].mainsnak.datavalue.value.amount, '^%+', '' );
local timestamp = v.mainsnak.datavalue.value.time
if math.floor( math.log10( conversionToSIunit )) ~= math.log10( conversionToSIunit ) then
local dateprecision = v.mainsnak.datavalue.value.precision
-- Если не степени десятки (переводить сантиметры в метры не надо!)
-- A year can be stored like this: "+1872-00-00T00:00:00Z",
outValue = tonumber( amount ) * conversionToSIunit
-- which is processed here as if it were the day before "+1872-01-01T00:00:00Z",
-- and that's the last day of 1871, so the year is wrong.
if ( outValue > 0 ) then
-- So fix the month 0, day 0 timestamp to become 1 January instead:
-- Пробуем понять до какого знака округлять
timestamp = timestamp:gsub("%-00%-00T", "-01-01T")
local integer, dot, decimals, expstr = amount:match( '^(%d*)(%.?)(%d*)(.*)' )
out[#out + 1] = parseDateFull(timestamp, dateprecision, date_format, date_addon)
local prec
if dot == '' then
prec = -integer:match('0*$'):len()
else
prec = #decimals
end
local adjust = math.log10( math.abs( conversionToSIunit )) + math.log10( 2 )
local minprec = 1 - math.floor( math.log10( outValue ) + 2e-14 );
out = formatNum( outValue, math.max( math.floor( prec + adjust ), minprec ));
else
out = formatNum( outValue, 0 )
end
unitEntityId = string.gsub( unitEntity.claims.P2370[1].mainsnak.datavalue.value.unit, 'http://www.wikidata.org/entity/', '' );
wbStatus, unitEntity = pcall( mw.wikibase.getEntity, unitEntityId );
end
end
local writingSystemElementId = 'Q8209';
local langElementId = 'Q7737';
local label = getLabelWithLang( context, options, unitEntity.id, nil, { "P5061", "P558", "P558" }, {
'P5061[language:' .. langCode .. ']',
'P558[P282:' .. writingSystemElementId .. ', P407:' .. langElementId .. ']',
'P558[!P282][!P407]'
} );
out = out .. ' ' .. label;
end
end
end
end
end
return table.concat(out, ", ")
 
return out;
end
end
p.getQualifierDateValue = function(frame)
 
local date_format = mw.text.trim(frame.args[4] or i18n["datetime"]["default-format"])
-- Функция для оформления URL
local date_addon = mw.text.trim(frame.args[5] or i18n["datetime"]["default-addon"])
local function formatUrlValue( context, options, value )
local function outputHook(value)
if not options.length or options.length == '' then
local timestamp = value.datavalue.value.time
options.length = 25
return parseDateValue(timestamp, date_format, date_addon)
end
end
return (getQualifier(frame, outputHook))
 
local moduleUrl = require( 'Module:URL' )
return moduleUrl.formatUrlSingle( context, options, value )
end
end


-- This is used to fetch all of the images with a particular property, e.g. image (P18), Gene Atlas Image (P692), etc.
local DATATYPE_CACHE = {}
-- Parameters are | propertyID | value / FETCH_WIKIDATA / nil | separator (default=space) | size (default=frameless)
 
-- It will return a standard wiki-markup [[File:Filename | size]] for each image with a selectable size and separator (which may be html)
--[[
-- e.g. {{#invoke:Wikidata|getImages|P18|FETCH_WIKIDATA}}
Get property datatype by ID.
-- e.g. {{#invoke:Wikidata|getImages|P18|FETCH_WIKIDATA|<br>|250px}}
 
-- If a property is chosen that is not of type "commonsMedia", it will return empty text.
@param string Property ID, e.g. 'P123'.
p.getImages = function(frame)
@return string Property datatype, e.g. 'commonsMedia', 'time' or 'url'.
local sep = mw.text.trim(frame.args[3] or " ")
]]
local imgsize = mw.text.trim(frame.args[4] or "frameless")
local function getPropertyDatatype( propertyId )
local go, errorOrentity, claims = parseInput(frame)
if not propertyId or not string.match( propertyId, '^P%d+$' ) then
if not go then
return nil;
return errorOrentity
end
end
local entity = errorOrentity
if (claims[1] and claims[1].mainsnak.datatype == "commonsMedia") then
local cached = DATATYPE_CACHE[propertyId];
local out = {}
if (cached ~= nil) then return cached; end
for k, v in pairs(claims) do
 
local filename = v.mainsnak.datavalue.value
local wbStatus, propertyEntity = pcall( mw.wikibase.getEntity, propertyId );
out[#out + 1] = "[[File:" .. filename .. "|" .. imgsize .. "]]"
if wbStatus ~= true or not propertyEntity then
end
return nil;
return table.concat(out, sep)
else
return ""
end
end
mw.log("Loaded datatype " .. propertyEntity.datatype .. " of " .. propertyId .. ' from wikidata, consider passing datatype argument to formatProperty call or to Wikidata/config' )
DATATYPE_CACHE[propertyId] = propertyEntity.datatype;
return propertyEntity.datatype;
end
end


-- This is used to get the TA98 (Terminologia Anatomica first edition 1998) values like 'A01.1.00.005' (property P1323)
local function getDefaultValueFunction( datavalue, datatype )
-- which are then linked to http://www.unifr.ch/ifaa/Public/EntryPage/TA98%20Tree/Entity%20TA98%20EN/01.1.00.005%20Entity%20TA98%20EN.htm
-- вызов обработчиков по умолчанию для известных типов значений
-- uses the newer mw.wikibase calls instead of directly using the snaks
if datavalue.type == 'wikibase-entityid' then
-- formatPropertyValues returns a table with the P1323 values concatenated with ", " so we have to split them out into a table in order to construct the return string
-- Entity ID
p.getTAValue = function(frame)
return function( context, options, value ) return formatEntityId( context, options, getEntityIdFromValue( value ) ) end;
local ent = mw.wikibase.getEntity()
elseif datavalue.type == 'string' then
local props = ent:formatPropertyValues('P1323')
-- String
local out = {}
if datatype and datatype == 'commonsMedia' then
local t = {}
-- Media
for k, v in pairs(props) do
return function( context, options, value )
if k == 'value' then
return formatCommonsMedia( value, options )
t = mw.text.split( v, ", ")
end;
for k2, v2 in pairs(t) do
elseif datatype and datatype == 'external-id' then
out[#out + 1] = "[http://www.unifr.ch/ifaa/Public/EntryPage/TA98%20Tree/Entity%20TA98%20EN/" .. string.sub(v2, 2) .. "%20Entity%20TA98%20EN.htm " .. v2 .. "]"
-- External ID
return function( context, options, value )
return formatExternalId( value, options )
end
elseif datatype and datatype == 'math' then
-- Math formula
return function( context, options, value )
return formatMath( value, options )
end
end
elseif datatype and datatype == 'url' then
-- URL
return formatUrlValue
end
end
return function( context, options, value ) return value end;
elseif datavalue.type == 'monolingualtext' then
-- моноязычный текст (строка с указанием языка)
return function( context, options, value )
if ( options.monolingualLangTemplate == 'lang' ) then
if ( value.language == contentLanguageCode ) then
return value.text;
end
return options.frame:expandTemplate{ title = 'lang-' .. value.language, args = { value.text } };
elseif ( options.monolingualLangTemplate == 'ref' ) then
return '<span class="lang" lang="' .. value.language .. '">' .. value.text .. '</span>' .. options.frame:expandTemplate{ title = 'ref-' .. value.language };
else
return '<span class="lang" lang="' .. value.language .. '">' .. value.text .. '</span>';
end
end;
elseif datavalue.type == 'globecoordinate' then
-- географические координаты
return function( context, options, value ) return formatGlobeCoordinate( value, options )  end;
elseif datavalue.type == 'quantity' then
return function( context, options, value ) return formatQuantity( value, options )  end;
elseif datavalue.type == 'time' then
return function( context, options, value )
local moduleDate = require( 'Module:Wikidata/date' )
return moduleDate.formatDate( context, options, value );
end;
else
-- во всех стальных случаях возвращаем ошибку
throwError( 'unknown-datavalue-type' )
end
end
local ret = table.concat(out, "<br> ")
if #ret == 0 then
ret = "Invalid TA"
end
return ret
end
end


--[[
--[[
This is used to return an image legend from Wikidata
Функция для оформления значений (value)
image is property P18
Подробнее о значениях  см. d:Wikidata:Glossary/ru
image legend is property P2096
 
Принимает: объект-значение и таблицу параметров,
Возвращает: строку оформленного текста
]]
function formatDatavalue( context, options, datavalue, datatype )
if ( not context ) then error( 'context not specified' ); end;
if ( not options ) then error( 'options not specified' ); end;
if ( not datavalue ) then error( 'datavalue not specified' ); end;
if ( not datavalue.value ) then error( 'datavalue.value is missng' ); end;
 
-- проверка на указание специализированных обработчиков в параметрах,
-- переданных при вызове
context.formatValueDefault = getDefaultValueFunction( datavalue, datatype );
local functionToCall = getUserFunction( options, 'value', context.formatValueDefault );
return functionToCall( context, options, datavalue.value );
end
 
local DEFAULT_BOUNDARIES = { os.time() * 1000, os.time() * 1000};


Call as {{#invoke:Wikidata |getImageLegend | <PARAMETER> | lang=<ISO-639code> |id=<QID>}}
--[[
Returns PARAMETER, unless it is equal to "FETCH_WIKIDATA", from Item QID (expensive call)
Функция для оформления идентификатора сущности
If QID is omitted or blank, the current article is used (not an expensive call)
If lang is omitted, it uses the local wiki language, otherwise it uses the provided ISO-639 language code
ISO-639: https://docs.oracle.com/cd/E13214_01/wli/docs92/xref/xqisocodes.html#wp1252447


Ranks are: 'preferred' > 'normal'
Принимает: строку индентификатора (типа Q42) и таблицу параметров,
This returns the label from the first image with 'preferred' rank
Возвращает: строку оформленного текста
Or the label from the first image with 'normal' rank if preferred returns nothing
Ranks: https://www.mediawiki.org/wiki/Extension:Wikibase_Client/Lua
]]
]]
 
function formatEntityId( context, options, entityId )
p.getImageLegend = function(frame)
-- получение локализованного названия
-- look for named parameter id; if it's blank make it nil
local boundaries = nil
local id = frame.args.id
if options.qualifiers then
if id and (#id == 0) then
boundaries = p.getTimeBoundariesFromQualifiers( frame, context, { qualifiers = options.qualifiers } )
id = nil
end
if not boundaries then
boundaries = DEFAULT_BOUNDARIES;
end
end
local label, labelLanguageCode = getLabelWithLang( context, options, entityId, boundaries )


-- look for named parameter lang
-- определение соответствующей показываемому элементу категории
-- it should contain a two-character ISO-639 language code
local category = context.extractCategory( options, { id = entityId } )
-- if it's blank fetch the language of the local wiki
local lang = frame.args.lang
if (not lang) or (#lang < 2) then
lang = mw.language.getContentLanguage().code
end


-- first unnamed parameter is the local parameter, if supplied
-- получение ссылки по идентификатору
local input_parm = mw.text.trim(frame.args[1] or "")
local link = mw.wikibase.sitelink( entityId )
if input_parm == "FETCH_WIKIDATA" then
if link then
local ent = mw.wikibase.getEntity(id)
-- ссылка на категорию, а не добавление страницы в неё
local imgs
if mw.ustring.match( link, '^' .. mw.site.namespaces[ 14 ].name .. ':' ) then
if ent and ent.claims then
link = ':' .. link
imgs = ent.claims.P18
end
end
local imglbl
if label and not options.rawArticle then
if imgs then
local a = link == label and ('[[' .. link .. ']]') or '[[' .. link .. '|' .. label .. ']]';
-- look for an image with 'preferred' rank
if ( contentLanguageCode ~= labelLanguageCode and 'mul' ~= labelLanguageCode ) then
for k1, v1 in pairs(imgs) do
a = a .. getCategoryByCode( 'links-to-entities-with-missing-local-language-label' );
if v1.rank == "preferred" and v1.qualifiers and v1.qualifiers.P2096 then
local imglbls = v1.qualifiers.P2096
for k2, v2 in pairs(imglbls) do
if v2.datavalue.value.language == lang then
imglbl = v2.datavalue.value.text
break
end
end
end
end
-- if we don't find one, look for an image with 'normal' rank
if (not imglbl) then
for k1, v1 in pairs(imgs) do
if v1.rank == "normal" and v1.qualifiers and v1.qualifiers.P2096 then
local imglbls = v1.qualifiers.P2096
for k2, v2 in pairs(imglbls) do
if v2.datavalue.value.language == lang then
imglbl = v2.datavalue.value.text
break
end
end
end
end
end
end
return a .. category;
else
return '[[' .. link .. ']]' .. category;
end
end
return imglbl
else
return input_parm
end
end
end


-- This is used to get the QIDs of all of the values of a property, as a comma separated list if multiple values exist
if label then  -- TODO: возможно, лучше просто mw.wikibase.label(entityId)
-- Usage: {{#invoke:Wikidata |getPropertyIDs |<PropertyID> |FETCH_WIKIDATA}}
-- красная ссылка
-- Usage: {{#invoke:Wikidata |getPropertyIDs |<PropertyID> |<InputParameter> |qid=<QID>}}
-- TODO: разобраться, почему не всегда есть options.frame
local title = mw.title.new( label );
if title and not title.exists and options.frame then
local moduleRedLink = require( 'Module:Wikidata/redLink' )
local rawLabel = mw.wikibase.label(entityId) or label -- без |text= и boundaries; or label - костыль
local redLink = moduleRedLink.formatRedLinkWithInfobox(rawLabel, label, entityId)
if ( contentLanguageCode ~= labelLanguageCode and 'mul' ~= labelLanguageCode ) then
redLink = redLink .. getCategoryByCode( 'links-to-entities-with-missing-local-language-label' );
end
return redLink .. '<sup>[[:d:' .. entityId .. '|[d]]]</sup>' .. category
end


p.getPropertyIDs = function(frame)
-- TODO: перенести до проверки на существование статьи
local go, errorOrentity, propclaims = parseInput(frame)
local sup = '';
if not go then
if ( not options.format or options.format ~= 'text' )
return errorOrentity
and entityId ~= 'Q6581072' and entityId ~= 'Q6581097' -- TODO: переписать на format=text
end
then
local entity = errorOrentity
sup = '<sup class="plainlinks noprint">[//www.wikidata.org/wiki/' .. entityId .. '?uselang=' .. contentLanguageCode .. ' [d&#x5d;]</sup>'
-- if wiki-linked value collect the QID in a table
if (propclaims[1] and propclaims[1].mainsnak.snaktype == "value" and propclaims[1].mainsnak.datavalue.type == "wikibase-entityid") then
local out = {}
for k, v in pairs(propclaims) do
out[#out + 1] = "Q" .. v.mainsnak.datavalue.value["numeric-id"]
end
end
return table.concat(out, ", ")
 
else
-- одноимённая статья уже существует - выводится текст и ссылка на ВД
-- not a wikibase-entityid, so return empty
return '<span class="iw" data-title="' .. label .. '">' .. label
return ""
.. sup
.. '</span>' .. category
end
end
-- сообщение об отсутвии локализованного названия
-- not good, but better than nothing
return '[[:d:' .. entityId .. '|' .. entityId .. ']]<span style="border-bottom: 1px dotted; cursor: help; white-space: nowrap" title="В Викиданных нет русской подписи к элементу. Вы можете помочь, указав русский вариант подписи.">?</span>' .. getCategoryByCode( 'links-to-entities-with-missing-label' ) .. category;
end
end


-- returns the page id (Q...) of the current page or nothing of the page is not connected to Wikidata
--[[
function p.pageId(frame)
Функция для оформления утверждений (statement)
return mw.wikibase.getEntityIdForCurrentPage()
Подробнее о утверждениях см. d:Wikidata:Glossary/ru
 
Принимает: таблицу параметров
Возвращает: строку оформленного текста, предназначенного для отображения в статье
]]
-- устаревшее имя, не использовать
function p.formatStatements( frame )
return p.formatProperty( frame );
end
end


function p.claim(frame)
--[[
local property = frame.args[1] or ""
Получение параметров, которые обычно используются для вывода свойства.
local id = frame.args["id"]
]]
local qualifierId = frame.args["qualifier"]
function getPropertyParams( propertyId, datatype, params )
local parameter = frame.args["parameter"]
local config = getConfig();
local list = frame.args["list"]
 
local references = frame.args["references"]
-- Различные уровни настройки параметров, по убыванию приоритета
local showerrors = frame.args["showerrors"]
local propertyParams = {};
local default = frame.args["default"]
if default then showerrors = nil end


-- get wikidata entity
-- 1. Параметры, указанные явно при вызове
local entity = mw.wikibase.getEntity(id)
if params then
if not entity then
for key, value in pairs( params ) do
if showerrors then return printError("entity-not-found") else return default end
if value ~= '' then
propertyParams[ key ] = value;
end
end
end
end
-- fetch the first claim of satisfying the given property
 
local claims = findClaims(entity, property)
-- 2. Настройки конкретного параметра
if not claims or not claims[1] then
if config[ 'properties' ] and config[ 'properties' ][ propertyId ] then
if showerrors then return printError("property-not-found") else return default end
for key, value in pairs( config[ 'properties' ][ propertyId ] ) do
if propertyParams[ key ] == nil then
propertyParams[ key ] = value;
end
end
end
end


-- get initial sort indices
-- 3. Указанный пресет настроек
local sortindices = {}
if propertyParams[ 'preset' ] and config[ 'presets' ] and
for idx in pairs(claims) do
config[ 'presets' ][ propertyParams[ 'preset' ] ]
sortindices[#sortindices + 1] = idx
then
for key, value in pairs( config[ 'presets' ][ propertyParams[ 'preset' ] ] ) do
if propertyParams[ key ] == nil then
propertyParams[ key ] = value;
end
end
end
end
-- sort by claim rank
 
local comparator = function(a, b)
local datatype = datatype or params.datatype or propertyParams.datatype or getPropertyDatatype( propertyId );
local rankmap = { deprecated = 2, normal = 1, preferred = 0 }
if propertyParams.datatype == nil then
local ranka = rankmap[claims[a].rank or "normal"] .. string.format("%08d", a)
propertyParams.datatype = datatype;
local rankb = rankmap[claims[b].rank or "normal"] .. string.format("%08d", b)
return ranka < rankb
end
end
table.sort(sortindices, comparator)


local result
-- 4. Настройки для типа данных
local error
if datatype and config[ 'datatypes' ] and config[ 'datatypes' ][ datatype ] then
if list then
for key, value in pairs( config[ 'datatypes' ][ datatype ] ) do
local value
if propertyParams[ key ] == nil then
-- iterate over all elements and return their value (if existing)
propertyParams[ key ] = value;
result = {}
end
for idx in pairs(claims) do
local claim = claims[sortindices[idx]]
value, error = getValueOfClaim(claim, qualifierId, parameter)
if not value and showerrors then value = error end
if value and references then value = value .. getReferences(frame, claim) end
result[#result + 1] = value
end
end
result = table.concat(result, list)
else
-- return first element
local claim = claims[sortindices[1]]
result, error = getValueOfClaim(claim, qualifierId, parameter)
if result and references then result = result .. getReferences(frame, claim) end
end
end


if result then return result else
-- 5. Общие настройки для всех свойств
if showerrors then return error else return default end
if config[ 'global' ] then
for key, value in pairs( config[ 'global' ] ) do
if propertyParams[ key ] == nil then
propertyParams[ key ] = value;
end
end
end
end
return propertyParams;
end
end


-- look into entity object
function p.formatProperty( frame )
function p.ViewSomething(frame)
local args = frame.args
local f = (frame.args[1] or frame.args.id) and frame or frame:getParent()
 
local id = f.args.id
-- проверка на отсутствие обязательного параметра property
if id and (#id == 0) then
if not args.property then
id = nil
throwError( 'property-param-not-provided' )
end
local override;
local propertyId = mw.language.getContentLanguage():ucfirst( string.gsub( args.property, '([^Pp0-9].*)$', function(w)
if string.sub( w, 1, 1 ) == '~' then override = w; end
return '';
end ) )
args = getPropertyParams( propertyId, nil, args );
if (override) then
args[override:match('[,~]([^=]*)=')] = override:match('=(.*)')
args['property'] = propertyId
end
end
local data = mw.wikibase.getEntity(id)
 
if not data then
local datatype = args.datatype;
return nil
 
-- проброс всех параметров из шаблона {wikidata} и параметра from откуда угодно
p_frame = frame
while p_frame do
if p_frame:getTitle() == mw.site.namespaces[10].name .. ':Wikidata' then
copyTo( p_frame.args, args, true );
end
if p_frame.args and p_frame.args.from and p_frame.args.from ~= '' then
args.entityId = p_frame.args.from;
end
p_frame = p_frame:getParent();
end
end


local i = 1
args.plain = toBoolean( args.plain, false );
while true do
args.nocat = toBoolean( args.nocat, false );
local index = f.args[i]
args.references = toBoolean( args.references, true );
if not index then
 
if type(data) == "table" then
-- если значение передано в параметрах вызова то выводим только его
return mw.text.jsonEncode(data, mw.text.JSON_PRESERVE_KEYS + mw.text.JSON_PRETTY)
if args.value and args.value ~= '' then
-- специальное значение для скрытия Викиданных
if args.value == '-' then
return ''
end
local value = args.value
 
-- опция, запрещающая оформление значения, поэтому никак не трогаем
if args.plain then
return value
end
 
local context = initContext( args );
-- обработчики по типу значения
local wrapperExtraArgs = {}
if args['value-module'] and args['value-function'] and not string.find( value, '[%[%]%{%}]' ) then
local func = getUserFunction( args, 'value' );
value = func( context, args, value );
elseif datatype == 'commonsMedia' then
value = formatCommonsMedia( value, args );
elseif datatype == 'external-id' and not string.find( value, '[%[%]%{%}]' ) then
wrapperExtraArgs['data-wikidata-external-id'] = mw.text.killMarkers( value );
value = formatExternalId( value, args );
--elseif datatype == 'math' then
-- args.frame = frame -- костыль: в formatMath нужно frame:extensionTag
-- value = formatMath( value, args );
elseif datatype == 'url' then
value = formatUrlValue( context, args, value );
end
 
-- оборачиваем в тег для JS-функций
if string.match( propertyId, '^P%d+$' ) then
value = mw.text.trim( value )
 
-- временная штрафная категория для исправления табличных вставок
local allowTables = getPropertyParams(propertyId, nil, {})['allowTables']
if ( not allowTables
and string.match( value, '<t[dhr][ >]' )
-- and not string.match( value, '<table[ >]' )
-- and not string.match( value, '^%{%|' )
) then
value = value .. getCategoryByCode( 'value-contains-table', propertyId )
else
else
return tostring(data)
value = wrapStatement( value, propertyId, nil, wrapperExtraArgs );
end
end
end
end


data = data[index] or data[tonumber(index)]
return value
if not data then
end
return
 
-- ability to disable loading Wikidata
if args.entityId == '-' then
return ''
end
 
if ( args.plain ) then -- вызова стандартного обработчика без оформления, если передана опция plain
local callArgs = { propertyId };
if args.entityId then
callArgs.from = args.entityId;
end
end
return frame:callParserFunction( '#property', callArgs );
end


i = i + 1
g_frame = frame
end
-- после проверки всех аргументов -- вызов функции оформления для свойства (набора утверждений)
return formatProperty( args )
end
end


-- getting sitelink of a given wiki
--[[
-- get sitelink of current item if qid not supplied
Функция проверки на присутствие источника в списке нерекомендованных.
function p.getSiteLink(frame)
 
local qid = frame.args.qid
Принимает: таблицу snak'ов
if qid == "" then qid = nil end
Возвращает: true/false
local f = mw.text.trim( frame.args[1] or "")
]]
local entity = mw.wikibase.getEntity(qid)
function isReferenceDeprecated( snaks )
if not entity then
if not snaks then
return
return false
end
end
local link = entity:getSitelink( f )
if snaks.P248
if not link then
and snaks.P248[1]
return
and snaks.P248[1].datavalue
and snaks.P248[1].datavalue.value.id
then
local entityId = snaks.P248[1].datavalue.value.id
if getConfig( 'deprecatedSources', entityId ) then
return true
end
elseif snaks.P1433
and snaks.P1433[1]
and snaks.P1433[1].datavalue
and snaks.P1433[1].datavalue.value.id
then
local entityId = snaks.P1433[1].datavalue.value.id
if getConfig( 'deprecatedSources', entityId ) then
return true
end
end
end
return link
return false
end
end


function p.Dump(frame)
--[[
local f = (frame.args[1] or frame.args.id) and frame or frame:getParent()
Функция оформления ссылок на источники (reference)
local data = mw.wikibase.getEntity(f.args.id)
Подробнее о ссылках на источники см. d:Wikidata:Glossary/ru
if not data then
 
return i18n.warnDump
Экспортируется в качестве зарезервированной точки для вызова из функций-расширения вида claim-module/claim-function через context
Вызов из других модулей напрямую осуществляться не должен (используйте frame:expandTemplate вместе с одним из специлизированных шаблонов вывода значения свойства).
 
Принимает: объект-таблицу утверждение
Возвращает: строку оформленных ссылок для отображения в статье
]]
function formatRefs( context, options, statement )
if ( not context ) then error( 'context not specified' ); end;
if ( not options ) then error( 'options not specified' ); end;
if ( not options.entity ) then error( 'options.entity missing' ); end;
if ( not statement ) then error( 'statement not specified' ); end;
 
if ( not outputReferences ) then
return '';
end
end


local i = 1
local references = {};
while true do
if ( statement.references ) then
local index = f.args[i]
 
if not index then
local allReferences = statement.references;
return "<pre>"..mw.dumpObject(data).."</pre>".. i18n.warnDump
local hasNotDeprecated = false;
local displayCount = 0;
for _, reference in pairs( statement.references ) do
local entityId = nil;
if not isReferenceDeprecated( reference.snaks ) then
hasNotDeprecated = true;
end
end
end


data = data[index] or data[tonumber(index)]
for _, reference in pairs( statement.references ) do
if not data then
local display = true;
return i18n.warnDump
if ( hasNotDeprecated ) then
if isReferenceDeprecated( reference.snaks ) then
display = false;
end
end
if ( displayCount > 2 ) then
if ( options.entity and options.property ) then
local propertyID = mw.ustring.match( options.property, '^[Pp][0-9]+' )  -- TODO: обрабатывать не тут, а раньше
local moreReferences = '<sup>[[d:' .. options.entity.id .. '#' .. string.upper( propertyID ) .. '|[…]]]</sup>';
table.insert( references, moreReferences );
end
break;
end
if ( display == true ) then
local refText = moduleSources.renderReference( g_frame, options.entity, reference );
if ( refText ~= '' ) then
table.insert( references, refText );
displayCount = displayCount + 1;
end
end
end
end
i = i + 1
end
end
return table.concat( references );
end
end


return p
return p

Текущая версия от 23:40, 19 декабря 2022

Используется в {{Wikidata}} (см. описания параметров там же). Настраивается при помощи Модуль:Wikidata/config.

Прежде чем вносить какие-либо изменения в данный модуль, просьба оттестировать их в /песочнице. Обратите внимание, что не всё корректно работает в песочнице.

Общие сведения

Функции данного модуля не предназначены для прямого вызова из шаблонов карточек или других модулей, не являющихся функциями расширения данного. Для вызова из шаблонов карточек используйте шаблон {{wikidata}} или один из специализированных шаблонов для свойств. Для вызова функций Викиданных предназначенных для отображения чаще всего достаточно вызова frame:expandTemplate{} с вызовом шаблона, ответственного за отрисовку свойства. С другой стороны, вызов определённых функций модуля (в основном это касается getEntityObject()) может в будущем стать предпочтительным. Данный Lua-функционал в любом случае стоит рассматривать как unstable с точки зрения сохранения совместимости на уровне кода (вместе с соответствующими функциями API для Wikibase Client).

Далее описывается внутренняя документация. Названия функций и параметров могут изменяться. При их изменении автор изменений обязан обновить шаблон {{wikidata}} и специализированные шаблоны свойств. Изменения в других местах, если кто-то всё-таки вызывает функции модуля напрямую, остаются на совести автора «костыля». Итак, при вызове шаблона {{wikidata}} или специализированного шаблона свойства управление отдаётся на функцию formatStatements, которая принимает frame. Из frame достаются следующие опции, которые так или иначе передаются в остальные функции:

  • plain — булевый переключатель (по умолчанию false). Если true, результат совпадает с обычным вызовом {{#property:pNNN}} (по факту им и будет являться)
  • references — булевый переключатель (по умолчанию true). Если true, после вывода значения параметра дополнительно выводит ссылки на источники, указанные в Викиданных. Для вывода используется Модуль:Sources. Обычно отключается для тех свойств, которые являются «самоописываемыми», например, внешними идентификаторами или ссылками (когда такая ссылка является доказательством своей актуальности), например, идентификаторы IMDb.
  • value — значение, которое надо выводить вместо значений из Викиданных (используется, если что-то задано уже в карточке в виде т. н. локального свойства)

По умолчанию модуль поддерживает вывод следующих значений без дополнительных настроек:

  • географические координаты (coordinates)
  • количественные значения (quantity)
  • моноязычный текст (monolingualtext)
  • строки (string)
  • даты (time)

Остальные типы данных требуют указания функции форматирования значения.

Кастомизация

Поддерживаются три типа параметров-функций, которые дополнительно указывают, как надо форматировать значения:

  • property-module, property-function — название модуля и функции модуля, которые отвечают за форматирование вывода массива значений свойства (statements, claims) с учётом квалификаторов, ссылок и прочего. Например, оформляет множество выводов в таблицу или график. Характерные примеры:
    Спецификация функции: function p.…( context, options ), поведение по умолчанию: Модуль:Wikidata#formatPropertyDefault.
  • claim-module, claim-function — название модуля и функции модуля, которые отвечают за форматирование вывода значения свойства (statement, claim) с учётом квалификаторов, ссылок и прочего. Может, например, дополнительно к основному значению (main snak) вывести значения квалификаторов. Характерные примеры:
    Спецификация функции: function p.…( context, statement )
  • value-module, value-function — название модуля и функции модуля, которые отвечают за форматирование значения (snak, snak data value), в зависимости от контекста, как значений свойства, так и значений квалификатора (если вызывается из claim-module/claim-function). Необходимо для изменения отображения свойства, например, генерации викиссылки вместо простой строки или даже вставки изображения вместо отображения имени файла изображения (так как ссылки на изображения хранятся как строки). Характерные примеры:
    Спецификация функции: function p.…( value, options )

Заготовки функций

Context API

Переменные

  • entity
  • frame

Методы

  • cloneOptions( options )
  • getSourcingCircumstances( statement )
  • formatProperty( options )
  • formatPropertyDefault( context, options )
  • formatSnak( options, snak, circumstances )
  • formatStatement( options, statement )
  • formatStatementDefault( context, options, statement )
  • formatRefs( options, statement )
  • formatValueDefault( context, options, value )
  • parseTimeBoundariesFromSnak( snak )
  • parseTimeFromSnak( snak )
  • selectClaims( options, propertyId )
  • wrapSnak( value, hash, attributes )
  • wrapStatement( value, propertyId, claimId, attributes )
  • wrapQualifier( value, qualifierId, attributes )

Функции для форматирования

property-function

claim-function

value-function

См. также


-- settings, may differ from project to project
local fileDefaultSize = '267x400px';
local outputReferences = true;

-- Ссылки на используемые модули, которые потребуются в 99% случаев загрузки страниц (чтобы иметь на виду при переименовании)
local moduleSources = require( 'Module:Sources' )
local WDS = require( 'Module:WikidataSelectors' );

-- Константы
local contentLanguageCode = mw.getContentLanguage():getCode();

local p = {};
local config = nil;

local formatDatavalue, formatEntityId, formatRefs, formatSnak, formatStatement,
	formatStatementDefault, formatProperty, getSourcingCircumstances,
	getPropertyDatatype, getPropertyParams, throwError, toBoolean;

local function copyTo( obj, target, skipEmpty )
	for k, v in pairs( obj ) do
		if skipEmpty ~= true or ( v ~= nil and v ~= '' ) then
			target[k] = v;
		end
	end
	return target;
end

local function min( prev, next )
	if ( prev == nil ) then return next;
	elseif ( prev > next ) then return next;
	else return prev; end
end

local function max( prev, next )
	if ( prev == nil ) then return next;
	elseif ( prev < next ) then return next;
	else return prev; end
end

local function getConfig( section, code )
	if config == nil then
		config = require( 'Module:Wikidata/config' );
	end;
	if not config then
		config = {};
	end

	if not section then
		return config;
	end
	if not code then
		return config[ section ] or {};
	end

	if not config[ section ] then
		return nil;
	end
	return config[ section ][ code ];
end

local function getCategoryByCode( code, sortkey )
	local value = getConfig( 'categories', code );
	if not value or value == '' then
		return '';
	end
	
	if sortkey ~= nil then
		return '[[Category:' .. value .. '|' .. sortkey .. ']]'; -- экранировать?
	else
		return '[[Category:' .. value .. ']]';
	end
end

local function splitISO8601(str)
	if 'table' == type(str) then
		if str.args and str.args[1] then
			str = '' .. str.args[1]
		else
			return 'unknown argument type: ' .. type( str ) .. ': ' .. table.tostring( str )
		end
	end
	local Y, M, D = (function(str)
		local pattern = "(%-?%d+)%-(%d+)%-(%d+)T"
		local Y, M, D = mw.ustring.match( str, pattern )
		return tonumber(Y), tonumber(M), tonumber(D)
	end) (str);
	local h, m, s = (function(str)
		local pattern = "T(%d+):(%d+):(%d+)%Z";
		local H, M, S = mw.ustring.match( str, pattern);
		return tonumber(H), tonumber(M), tonumber(S);
	end) (str);
	local oh,om = ( function(str)
		if str:sub(-1)=="Z" then return 0,0 end; -- ends with Z, Zulu time
		-- matches ±hh:mm, ±hhmm or ±hh; else returns nils
		local pattern = "([-+])(%d%d):?(%d?%d?)$";
		local sign, oh, om = mw.ustring.match( str, pattern);
		sign, oh, om = sign or "+", oh or "00", om or "00";
		return tonumber(sign .. oh), tonumber(sign .. om);
	end )(str)
	return {year=Y, month=M, day=D, hour=(h+oh), min=(m+om), sec=s};
end

local function parseTimeBoundaries( time, precision )
	local s = splitISO8601( time );
	if (not s) then return nil; end

	if ( precision >= 0 and precision <= 8 ) then
		local powers = { 1000000000 , 100000000, 10000000, 1000000, 100000, 10000, 1000, 100, 10 }
		local power = powers[ precision + 1 ];
		local left = s.year - ( s.year % power );
		return { tonumber(os.time( {year=left, month=1, day=1, hour=0, min=0, sec=0} )) * 1000,
			tonumber(os.time( {year=left + power - 1, month=12, day=31, hour=29, min=59, sec=58} )) * 1000 + 1999 };
	end

	if ( precision == 9 ) then
		return { tonumber(os.time( {year=s.year, month=1, day=1, hour=0, min=0, sec=0} )) * 1000,
			tonumber(os.time( {year=s.year, month=12, day=31, hour=23, min=59, sec=58} )) * 1000 + 1999 };
	end

	if ( precision == 10 ) then
		local lastDays = {31, 28.25, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
		local lastDay = lastDays[s.month];
		return { tonumber(os.time( {year=s.year, month=s.month, day=1, hour=0, min=0, sec=0} )) * 1000,
			tonumber(os.time( {year=s.year, month=s.month, day=lastDay, hour=23, min=59, sec=58} )) * 1000 + 1999 };
	end

	if ( precision == 11 ) then
		return { tonumber(os.time( {year=s.year, month=s.month, day=s.day, hour=0, min=0, sec=0} )) * 1000,
			tonumber(os.time( {year=s.year, month=s.month, day=s.day, hour=23, min=59, sec=58} )) * 1000 + 1999 };
	end

	if ( precision == 12 ) then
		return { tonumber(os.time( {year=s.year, month=s.month, day=s.day, hour=s.hour, min=0, sec=0} )) * 1000,
			tonumber(os.time( {year=s.year, month=s.month, day=s.day, hour=s.hour, min=59, sec=58} )) * 1000 + 1999 };
	end

	if ( precision == 13 ) then
		return { tonumber(os.time( {year=s.year, month=s.month, day=s.day, hour=s.hour, min=s.min, sec=0} )) * 1000,
			tonumber(os.time( {year=s.year, month=s.month, day=s.day, hour=s.hour, min=s.min, sec=58} )) * 1000 + 1999 };
	end

	if ( precision == 14 ) then
		local t = tonumber(os.time( {year=s.year, month=s.month, day=s.day, hour=s.hour, min=s.min, sec=0} ) );
		return { t * 1000, t * 1000 + 999 };
	end

	error('Unsupported precision: ' .. precision );
end

--[[
	Функция для формирования категории на основе wikidata/config
]]
local function extractCategory( options, value )
	if ( not options.category or options.nocat ) then
		return '';
	end
	local propertyId = string.gsub( options.category, '([^Pp0-9].*)$', '');
	local wbStatus, claims = pcall( mw.wikibase.getAllStatements, value.id, propertyId );
	if ( wbStatus ~= true or not claims ) then return ''; end
	allClaims = {}
	allClaims[ propertyId ] = claims
	claims = WDS.filter( allClaims, options.category )
	if not claims then return ''; end
	
	for _, claim in pairs( claims ) do
		if ( claim
			and claim.mainsnak
			and claim.mainsnak.datavalue
			and claim.mainsnak.datavalue.type == 'wikibase-entityid' ) then
			
			local catEntityId = claim.mainsnak.datavalue.value.id;
			local wbStatus, catSiteLink = pcall( mw.wikibase.getSitelink, catEntityId );

			if ( wbStatus == true and catSiteLink ) then
				return '[[' .. catSiteLink .. ']]';
			end
		end
	end

	return '';
end

--[[
 Преобразует строку в булевое значение

 Принимает: строковое значение (может отсутствовать)
 Возвращает: булевое значение true или false, если получается распознать значение, или defaultValue во всех остальных  случаях
]]
local function toBoolean( valueToParse, defaultValue )
	if ( valueToParse ~= nil ) then
		if valueToParse == false or valueToParse == '' or valueToParse == 'false' or valueToParse == '0' then
			return false
		end
		return true
	end
	return defaultValue;
end

-- Обрачивает отформатированное значение в инлайновый или блочный тег.
-- @param value String value
-- @param attributes Table of attributes
-- @return string HTML tag with value
local function wrapValue( value, attributes )
	local tagName = 'span';
	local spacer = '';
	if (
		string.match( value, '\n' )
		or string.match( value, '<t[dhr][ >]' )
		or string.match( value, '<div[ >]' )
		or string.find( value, 'UNIQ%-%-imagemap' )
	) then
		tagName = 'div';
		spacer = '\n'
	end
	local attrString = ''
	for key, value in pairs( attributes or {} ) do
		local _key = mw.text.trim( key )
		local _value = mw.text.encode( mw.text.trim( value ) )
		attrString = attrString .. _key .. '="' .. _value .. '" '
	end
	return '<' .. tagName .. ' ' .. attrString .. '>' .. spacer .. value .. '</' .. tagName .. '>';
end

-- Wraps formatted snak value into HTML tag with attributes.
-- @param value String value of snak
-- @param hash Snak hash
-- @param attributes Table of extra attributes
-- @return string HTML tag with value
local function wrapSnak( value, hash, attributes )
	local newAttributes = mw.clone( attributes or {} )
	newAttributes['class'] = ( newAttributes['class'] or '' ) .. ' wikidata-snak'
	
	if hash then
		newAttributes['data-wikidata-hash'] = hash
	else
		newAttributes['class'] = newAttributes['class'] .. ' wikidata-main-snak'
	end

	return wrapValue( value, newAttributes )
end

-- Wraps formatted statement value into HTML tag with attributes.
-- @param value String value of statement
-- @param propertyId String PID of property
-- @param claimId String ID of claim or nil for local value
-- @param attributes Table of extra attributes
-- @return string HTML tag with value
local function wrapStatement( value, propertyId, claimId, attributes )
	local newAttributes = mw.clone( attributes or {} )
	newAttributes['class'] = newAttributes['class'] or ''
	newAttributes['data-wikidata-property-id'] = string.upper( propertyId )

	if claimId then
		newAttributes['class'] = newAttributes['class'] .. ' wikidata-claim'
		newAttributes['data-wikidata-claim-id'] = claimId
	else
		newAttributes['class'] = newAttributes['class'] .. ' no-wikidata'
	end

	return wrapValue( value, newAttributes )
end

-- Wraps formatted qualifier's statement value into HTML tag with attributes.
-- @param value String value of qualifier's statement
-- @param propertyId String PID of qualifier
-- @param attributes Table of extra attributes
-- @return string HTML tag with value
local function wrapQualifier( value, qualifierId, attributes )
	local newAttributes = mw.clone( attributes or {} )
	newAttributes['data-wikidata-qualifier-id'] = string.upper( qualifierId )
	return wrapValue( value, newAttributes )
end

--[[
	Функция для получения сущности (еntity) для текущей страницы
	Подробнее о сущностях см. d:Wikidata:Glossary/ru

	Принимает: строковый индентификатор (типа P18, Q42)
	Возвращает: объект таблицу, элементы которой индексируются с нуля
]]
local function getEntityFromId( id )
	local entity;
	local wbStatus;

	if id then
		wbStatus, entity = pcall( mw.wikibase.getEntityObject, id )
	else
		wbStatus, entity = pcall( mw.wikibase.getEntityObject );
	end

	return entity;
end

--[[
	Внутрення функция для формирования сообщения об ошибке

	Принимает: ключ элемента в таблице config.errors (например entity-not-found)
	Возвращает: строку сообщения
]]
local function throwError( key )
	error( getConfig( 'errors', key ) );
end

--[[
	Функция для получения идентификатора сущностей

	Принимает: объект таблицу сущности
	Возвращает: строковый индентификатор (типа P18, Q42)
]]
local function getEntityIdFromValue( value )
	local prefix = ''
	if value['entity-type'] == 'item' then
		prefix = 'Q'
	elseif value['entity-type'] == 'property' then
		prefix = 'P'
	else
		throwError( 'unknown-entity-type' )
	end
	return prefix .. value['numeric-id']
end

-- проверка на наличие специилизированной функции в опциях
local function getUserFunction( options, prefix, defaultFunction )
	-- проверка на указание специализированных обработчиков в параметрах,
	-- переданных при вызове
	if options[ prefix .. '-module' ] or options[ prefix .. '-function' ] then
		-- проверка на пустые строки в параметрах или их отсутствие
		if not options[ prefix .. '-module' ] or not options[ prefix .. '-function' ] then
			throwError( 'unknown-' .. prefix .. '-module' );
		end
		-- динамическая загруза модуля с обработчиком указанным в параметре
		local formatter = require( 'Module:' .. options[ prefix .. '-module' ] );
		if formatter == nil then
			throwError( prefix .. '-module-not-found' )
		end
		local fun = formatter[ options[ prefix .. '-function' ] ]
		if fun == nil then
			throwError( prefix .. '-function-not-found' )
		end
		return fun;
	end

	return defaultFunction;
end

-- Выбирает свойства по property id, дополнительно фильтруя их по рангу
local function selectClaims( context, options, propertySelector )
	if ( not context ) then error( 'context not specified' ); end;
	if ( not options ) then error( 'options not specified' ); end;
	if ( not options.entity ) then error( 'options.entity is missing' ); end;
	if ( not propertySelector ) then error( 'propertySelector not specified' ); end;

	result = WDS.filter( options.entity.claims, propertySelector );

	if ( not result or #result == 0 ) then
		return nil;
	end

	if options.limit and options.limit ~= '' and options.limit ~= '-'  then
		local limit = tonumber( options.limit, 10 );
		while #result > limit do
			table.remove( result );
		end
	end

	return result;
end

--[[
	Функция для получения значения свойства элемента в заданный момент времени.

	Принимает: контекст, элемент, временные границы, таблица ID свойства
	Возвращает: таблицу соответствующих значений свойства
]]
local function getPropertyInBoundaries( context, entityId, boundaries, propertyIds, selectors )
	if (type(entityId) ~= 'string') then error('type of entityId argument expected string, but was ' .. type(entityId)); end

	local results = {};

	if not propertyIds or #propertyIds == 0 then
		return results;
	end

	for _, propertyId in ipairs( propertyIds ) do
		local selector;
		if selectors ~= nil then
			selector = selectors[_] or selectors[propertyId] or propertyId;
		else
			selector = propertyId;
		end

		local fakeAllClaims = {};
		fakeAllClaims[propertyId] = mw.wikibase.getAllStatements( entityId, propertyId );
		
		local filteredClaims = WDS.filter( fakeAllClaims, selector .. '[rank:preferred, rank:normal]' );
		if filteredClaims then
			for _, claim in pairs( filteredClaims ) do
				if not boundaries then
					table.insert( results, claim.mainsnak );
				else
					local startBoundaries = p.getTimeBoundariesFromQualifier( context.frame, context, claim, 'P580' );
					local endBoundaries = p.getTimeBoundariesFromQualifier( context.frame, context, claim, 'P582' );

					if ( startBoundaries == nil or startBoundaries[2] <= boundaries[1] ) and
						( endBoundaries == nil or endBoundaries[1] >= boundaries[2] )
					then
						table.insert( results, claim.mainsnak );
					end
				end
			end
		end

		if #results > 0 then
			break;
		end
	end

	return results;
end

--[[
	TODO
]]
function p.getTimeBoundariesFromQualifier( frame, context, statement, qualifierId )
	-- only support exact date so far, but need improvment
	local left = nil;
	local right = nil;
	if ( statement.qualifiers and statement.qualifiers[qualifierId] ) then
		for _, qualifier in pairs( statement.qualifiers[qualifierId] ) do
			local boundaries = context.parseTimeBoundariesFromSnak( qualifier );
			if ( not boundaries ) then return nil; end
			left = min( left, boundaries[1] );
			right = max( right, boundaries[2] );
		end
	end

	if ( not left or not right ) then
		return nil;
	end

	return { left, right };
end

--[[
	TODO
]]
function p.getTimeBoundariesFromQualifiers( frame, context, statement, qualifierIds )
	if not qualifierIds then
		qualifierIds = { 'P582', 'P580', 'P585' };
	end

	for _, qualifierId in ipairs( qualifierIds ) do
		local result = p.getTimeBoundariesFromQualifier( frame, context, statement, qualifierId );
		if result then
			return result;
		end
	end

	return nil;
end

local CONTENT_LANGUAGE_CODE = mw.language.getContentLanguage():getCode();
local getLabelWithLang_DEFAULT_PROPERTIES = { "P1813", "P1448", "P1705" };
local getLabelWithLang_DEFAULT_SELECTORS = {
	'P1813[language:' .. CONTENT_LANGUAGE_CODE .. '][!P3831,P3831:Q105690470]',
	'P1448[language:' .. CONTENT_LANGUAGE_CODE .. '][!P3831,P3831:Q105690470]',
	'P1705[language:' .. CONTENT_LANGUAGE_CODE .. '][!P3831,P3831:Q105690470]'
};

--[[
	Функция для получения метки элемента в заданный момент времени.

	Принимает: контекст, элемент, временные границы
	Возвращает: текстовую метку элемента, язык метки
]]
local function getLabelWithLang( context, options, entityId, boundaries, propertyIds, selectors )
	if (type(entityId) ~= 'string') then error('type of entityId argument expected string, but was ' .. type(entityId)); end
	if not entityId then
		return nil;
	end

	local langCode = CONTENT_LANGUAGE_CODE;

	-- name from label
	local label = nil;
	if ( options.text and options.text ~= '' ) then
		label = options.text;
	else
		if not propertyIds then
			propertyIds = getLabelWithLang_DEFAULT_PROPERTIES;
			selectors = getLabelWithLang_DEFAULT_SELECTORS;
		end

		-- name from properties
		local results = getPropertyInBoundaries( context, entityId, boundaries, propertyIds, selectors );

		for _, result in pairs( results ) do
			if result.datavalue and result.datavalue.value then
				if result.datavalue.type == 'monolingualtext' and result.datavalue.value.text then
					label = result.datavalue.value.text;
					langCode = result.datavalue.value.language;
					break;
				elseif result.datavalue.type == 'string' then
					label = result.datavalue.value;
					break;
				end
			end
		end
		
		if (not label) then
			label, langCode = mw.wikibase.getLabelWithLang( entityId );
			if not langCode then
				return nil;
			end
		end
	end

	return label, langCode;
end

local function formatPropertyDefault( context, options )
	if ( not context ) then error( 'context not specified' ); end;
	if ( not options ) then error( 'options not specified' ); end;
	if ( not options.entity ) then error( 'options.entity missing' ); end;

	local claims;
	if options.property then -- TODO: Почему тут может не быть property?
		if options.rank then -- передать настройки ранга из конфига
			claims = context.selectClaims( options, options.property .. options.rank );
		else
			claims = context.selectClaims( options, options.property );
		end
	end
	if claims == nil then
		return '' --TODO error?
	end

	-- Обход всех заявлений утверждения и с накоплением оформленных предпочтительных
	-- заявлений в таблице
	local formattedClaims = {}

	for i, claim in ipairs(claims) do
		local formattedStatement = context.formatStatement( options, claim )
		-- здесь может вернуться либо оформленный текст заявления, либо строка ошибки, либо nil
		if ( formattedStatement and formattedStatement ~= '' ) then
			formattedStatement = context.wrapStatement( formattedStatement, options.property, claim.id )
			table.insert( formattedClaims, formattedStatement )
		end
	end

	-- создание текстовой строки со списком оформленых заявлений из таблицы
	local out = mw.text.listToText( formattedClaims, options.separator, options.conjunction )
	if out ~= '' then
		if options.before then
			out = options.before .. out
		end
		if options.after then
			out = out .. options.after
		end
	end

	return out
end

-- create context
local function initContext( options )
	local context = {
		entity = options.entity,
		extractCategory = extractCategory,
		formatSnak = formatSnak,
		formatPropertyDefault = formatPropertyDefault,
		formatStatementDefault = formatStatementDefault,
		getPropertyInBoundaries = getPropertyInBoundaries,
		getTimeBoundariesFromQualifier = p.getTimeBoundariesFromQualifier,
		getTimeBoundariesFromQualifiers = p.getTimeBoundariesFromQualifiers,
		wrapSnak = wrapSnak,
		wrapStatement = wrapStatement,
		wrapQualifier = wrapQualifier,
	}
	context.cloneOptions = function( options )
		local entity = options.entity;
		options.entity = nil;

		newOptions = mw.clone( options );
		options.entity = entity;
		newOptions.entity = entity;
		newOptions.frame = options.frame; -- На склонированном фрейме frame:expandTemplate()

		return newOptions;
	end;
	context.formatProperty = function( options )
		local func = getUserFunction( options, 'property', context.formatPropertyDefault );
		return func( context, options )
	end;
	context.formatStatement = function( options, statement ) return formatStatement( context, options, statement ) end;
	context.formatSnak = function( options, snak, circumstances ) return formatSnak( context, options, snak, circumstances ) end;
	context.formatRefs = function( options, statement ) return formatRefs( context, options, statement ) end;

	context.parseTimeFromSnak = function( snak )
			if ( snak and snak.datavalue and snak.datavalue.value and snak.datavalue.value.time ) then
				return tonumber(os.time( splitISO8601( tostring( snak.datavalue.value.time ) ) ) ) * 1000;
			end
			return nil;
		end
	context.parseTimeBoundariesFromSnak = function( snak )
			if ( snak and snak.datavalue and snak.datavalue.value and snak.datavalue.value.time and snak.datavalue.value.precision ) then
				return parseTimeBoundaries( snak.datavalue.value.time, snak.datavalue.value.precision );
			end
			return nil;
		end
	context.getSourcingCircumstances = function( statement ) return getSourcingCircumstances( statement ) end;
	context.selectClaims = function( options, propertyId ) return selectClaims( context, options, propertyId ) end;

	return context
end

--[[
	Функция для оформления утверждений (statement)
	Подробнее о утверждениях см. d:Wikidata:Glossary/ru

	Принимает: таблицу параметров
	Возвращает: строку оформленного текста, предназначенного для отображения в статье
]]
local function formatProperty( options )
	-- Получение сущности по идентификатору
	local entity = getEntityFromId( options.entityId )
	if not entity then
		return -- throwError( 'entity-not-found' )
	end
	-- проверка на присутсвие у сущности заявлений (claim)
	-- подробнее о заявлениях см. d:Викиданные:Глоссарий
	if (entity.claims == nil) then
		return '' --TODO error?
	end

	-- improve options
	options.frame = g_frame;
	options.entity = entity;
	options.extends = function( self, newOptions )
		return copyTo( newOptions, copyTo( self, {} ) )
	end

	if ( options.i18n ) then
		options.i18n = copyTo( options.i18n, copyTo( getConfig( 'i18n' ), {} ) );
	else
		options.i18n = getConfig( 'i18n' );
	end
	
	local context = initContext( options );

	return context.formatProperty( options );
end

--[[
	Функция для оформления одного утверждения (statement)

	Принимает: объект-таблицу утверждение и таблицу параметров
	Возвращает: строку оформленного текста с заявлением (claim)
]]
function formatStatement( context, options, statement )
	if ( not statement ) then
		error( 'statement is not specified or nil' );
	end
	if not statement.type or statement.type ~= 'statement' then
		throwError( 'unknown-claim-type' )
	end

	local functionToCall = getUserFunction( options, 'claim', context.formatStatementDefault );
	return functionToCall( context, options, statement );
end

function getSourcingCircumstances( statement )
	if (not statement) then error('statement is not specified') end;

	local circumstances = {};
	if ( statement.qualifiers
			and statement.qualifiers.P1480 ) then
		for i, qualifier in pairs( statement.qualifiers.P1480 ) do
			if ( qualifier
					and qualifier.datavalue
					and qualifier.datavalue.type == 'wikibase-entityid'
					and qualifier.datavalue.value
					and qualifier.datavalue.value['entity-type'] == 'item' ) then
				table.insert(circumstances, qualifier.datavalue.value.id)
			end
		end
	end
	return circumstances;
end

--[[
	Функция для оформления одного утверждения (statement)

	Принимает: объект-таблицу утверждение, таблицу параметров,
	объект-функцию оформления внутренних структур утверждения (snak) и
	объект-функцию оформления ссылки на источники (reference)
	Возвращает: строку оформленного текста с заявлением (claim)
]]
function formatStatementDefault( context, options, statement )
	if (not context) then error('context is not specified') end;
	if (not options) then error('options is not specified') end;
	if (not statement) then error('statement is not specified') end;

	local circumstances = context.getSourcingCircumstances( statement );

	options.qualifiers = statement.qualifiers;

	local result = context.formatSnak( options, statement.mainsnak, circumstances );
	
    if ( options.qualifier and statement.qualifiers and statement.qualifiers[ options.qualifier ] ) then
    	qualConfig = getPropertyParams( options.qualifier, nil, {})
    	if options.i18n then qualConfig.i18n = options.i18n end
    	local qualifierValues = {};
		for _, qualifierSnak in pairs( statement.qualifiers[ options.qualifier ] ) do
			local snakValue = context.formatSnak( qualConfig, qualifierSnak );
			if snakValue and snakValue ~= '' then
				table.insert( qualifierValues, snakValue );
			end
		end
		if ( result and result ~= '' and #qualifierValues ) then
			if qualConfig.invisible then 
	        	result = result .. table.concat( qualifierValues, ', ' );
			else
	        	result = result .. ' (' .. table.concat( qualifierValues, ', ' ) .. ')';
	        end
        end
    end

	if ( result and result ~= '' and options.references ) then
		result = result .. context.formatRefs( options, statement );
	end

	return result;
end

--[[
	Функция для оформления части утверждения (snak)
	Подробнее о snak см. d:Викиданные:Глоссарий

	Принимает: таблицу snak объекта (main snak или же snak от квалификатора) и таблицу опций
	Возвращает: строку оформленного викитекста
]]
function formatSnak( context, options, snak, circumstances )
	circumstances = circumstances or {};

	if snak.snaktype == 'somevalue' then
		if ( options['somevalue'] and options['somevalue'] ~= '' ) then
			result = options['somevalue'];
		else
			result = options.i18n['somevalue'];
		end
	elseif snak.snaktype == 'novalue' then
		if ( options['novalue'] and options['novalue'] ~= '' ) then
			result = options['novalue'];
		else
			result = options.i18n['novalue'];
		end
	elseif snak.snaktype == 'value' then
		result = formatDatavalue( context, options, snak.datavalue, snak.datatype );
		for _, item in pairs(circumstances) do
			if options.i18n[item] then
				result = options.i18n[item] .. result;
			end
		end
	else
		throwError( 'unknown-snak-type' );
	end
	
	if ( not result or result == '' ) then
		return nil;
	end

	return context.wrapSnak( result, snak.hash )
end

--[[
	Функция для оформления объектов-значений с географическими координатами

	Принимает: объект-значение и таблицу параметров,
	Возвращает: строку оформленного текста
]]
local function formatGlobeCoordinate( value, options )
	-- проверка на требование в параметрах вызова на возврат сырого значения
	if options['subvalue'] == 'latitude' then -- широты
		return value['latitude']
	elseif options['subvalue'] == 'longitude' then -- долготы
		return value['longitude']
	elseif options['nocoord'] and options['nocoord'] ~= '' then
		-- если передан параметр nocoord, то не выводить координаты
		-- обычно это делается при использовании нескольких карточек на странице
		return ''
	else
		-- в противном случае формируются параметры для вызова шаблона {{coord}}
		-- нужно дописать в документации шаблона, что он отсюда вызывается, и что
		-- любое изменние его парамеров  должно быть согласовано с кодом тут
		
		coord_mod = require( "Module:Coordinates" );
		
		local globe = options.globe or ''
		if globe == '' and value['globe'] then
			globes = require( 'Module:Wikidata/Globes' )
			globe = globes[value['globe']] or ''
		end
		
		local display = 'inline'
		if options.display and options.display ~= '' then
			display = options.display
		elseif ( options.property:upper() == 'P625' ) then
			display = 'title'
		end
		
		local format = options.format or ''
		if format == '' then
			format = 'dms'
			if value['precision'] then
				local precision = value['precision'] * 60
				if precision >= 60 then
					format = 'd'
				elseif precision >= 1 then
					format = 'dm'
				end
			end
		end

		g_frame.args = {
			tostring(value['latitude']),
			tostring(value['longitude']),
			globe = globe,
			type = options.type and options.type or '',
			scale = options.scale and options.scale or '',
			display = display,
			format = format,
		}
		
		return coord_mod.coord(g_frame)
	end
end

--[[
	Функция для оформления объектов-значений с файлами с Викисклада

	Принимает: объект-значение и таблицу параметров,
	Возвращает: строку оформленного текста
]]
local function formatCommonsMedia( value, options )
	local image = value;

	local caption = '';
	if options[ 'caption' ] and options[ 'caption' ] ~= '' then
		caption = options[ 'caption' ];
	end
	if caption ~= '' then
		caption = wrapQualifier( caption, 'P2096', { class = 'media-caption', style = 'display:block' } );
	end

	if not string.find( value, '[%[%]%{%}]' ) and not string.find( value, 'UNIQ%-%-imagemap' ) then
		-- если в value не содержится викикод или imagemap, то викифицируем имя файла
		-- ищем слово imagemap в строке, потому что вставляется плейсхолдер: [[PHAB:T28213]]
		image = '[[File:' .. value .. '|frameless';
		if options[ 'border' ] and options[ 'border' ] ~= '' then
			image = image .. '|border';
		end

		local size = options[ 'size' ];
		if size and size ~= '' then
			-- TODO: check localized pixel names too
			if not string.match( size, 'px$' ) then
				size = size .. 'px'
			end
		else
			size = fileDefaultSize;
		end
		image = image .. '|' .. size;

		if options[ 'alt' ] and options[ 'alt' ] ~= '' then
			image = image .. '|alt=' .. options[ 'alt' ];
		end
		
		if caption ~= '' then
			image = image .. '|' .. caption
		end
		image = image .. ']]';

		if caption ~= '' then
			image = image .. '<br>' .. caption;
		end
	else
		image = image .. caption .. getCategoryByCode( 'media-contains-markup' );
	end

	return image
end

--[[
	Fonction for render math formulas

	@param string Value.
	@param table Parameters.
	@return string Formatted string.
]]
local function formatMath( value, options )
	return options.frame:extensionTag{ name = 'math', content = value };
end

--[[
	Функция для оформления внешних идентификаторов

	Принимает: объект-значение и таблицу параметров,
	Возвращает: строку оформленного текста
]]
local function formatExternalId( value, options )
	local formatter = options.formatter;

	if not formatter or formatter == '' then
		local wbStatus, propertyEntity = pcall( mw.wikibase.getEntity, options.property:upper() )
		if wbStatus == true and propertyEntity then
			local isGoodFormat = false;
			local statements = propertyEntity:getBestStatements( 'P1793' );
			for _, statement in pairs( statements ) do
				if statement.mainsnak.snaktype == 'value' then
					local pattern = mw.ustring.gsub( statement.mainsnak.datavalue.value, '\\', '%' );
					pattern = mw.ustring.gsub( pattern, '{%d+,?%d*}', '+' );
					if ( string.find( pattern, '|' ) or string.find( pattern, '%)%?' )
							or mw.ustring.match( value, '^' .. pattern .. '$' ) ~= nil ) then
						isGoodFormat = true;
						break;
					end
				end
			end

			if ( isGoodFormat == true ) then
				statements = propertyEntity:getBestStatements( 'P1630' );
				for _, statement in pairs( statements ) do
					if statement.mainsnak.snaktype == 'value' then
						formatter = statement.mainsnak.datavalue.value;
						break
					end
				end
			end
		end
	end

	if formatter and formatter ~= '' then
		local encodedValue = mw.ustring.gsub( value, '%%', '%%%%' ) -- ломается, если подставить внутрь другого mw.ustring.gsub
		
		local link = mw.ustring.gsub( 
						mw.ustring.gsub( formatter, '$1', encodedValue ), '.',
							{ [' '] = '%20', ['+'] = '%2b', ['['] = '%5B', [']'] = '%5D' } )

		local title = options.title
		if not title or title == '' then
			title = '$1'
		end
		title = mw.ustring.gsub( 
					mw.ustring.gsub( title, '$1', encodedValue ), '.', 
						{ ['['] = '(', [']'] = ')' } )

		return '[' .. link .. ' ' .. title .. ']'
	end

	return value
end

--[[
	Функция для оформления числовых значений

	Принимает: объект-значение и таблицу параметров,
	Возвращает: строку оформленного текста
]]
local function formatQuantity( value, options )
	-- диапазон значений
	local amount = string.gsub( value['amount'], '^%+', '' );
	local lang = mw.language.getContentLanguage();
	local langCode = lang:getCode();

	local function formatNum( number, sigfig )
		local multiplier = ''
	
		if options.countByThousands then
			local powers = options.i18n['thousandPowers']
			local pos = 1
			while math.abs(number) >= 1000 and pos < #powers do
				number = number / 1000
				pos = pos + 1
			end
			multiplier = powers[pos]
			
			if math.abs(number) >= 100 then
				sigfig = sigfig or 0
			elseif math.abs(number) >= 10 then
				sigfig = sigfig or 1
			else
				sigfig = sigfig or 2
			end
		else
			sigfig = sigfig or 12 -- округление до 12 знаков после запятой, на 13-м возникает ошибка в точности
		end
		
		local mult = 10^sigfig;
		number = math.floor( number * mult + 0.5 ) / mult;
		return string.gsub( lang:formatNum( number ), '^-', '−' ) .. multiplier;
	end

	local out = formatNum( tonumber( amount ) );
	if value.upperBound then
		local diff = tonumber( value.upperBound ) - tonumber( amount )
		if diff > 0 then -- временная провека, пока у большинства значений не будет убрано ±0
			-- Пробуем понять до какого знака округлять
			local integer, dot, decimals, expstr = value.upperBound:match( '^+?-?(%d*)(%.?)(%d*)(.*)' )
			local prec 
			if dot == '' then
				prec = -integer:match('0*$'):len()
			else
				prec = #decimals
			end			
			bound = formatNum( diff, prec )
			if string.match( bound, 'E%-(%d+)' ) then -- если в экспоненциальном формате
				digits = tonumber( string.match( bound, 'E%-(%d+)' ) ) - 2
				bound = formatNum( diff * 10 ^ digits, prec )
				bound = string.sub( bound, 0, 2 ) .. string.rep( '0', digits ) .. string.sub( bound, -string.len( bound ) + 2 )
			end
			out = out .. ' ± ' .. bound
		end
	end

	if options.unit and options.unit ~= '' then
		if options.unit ~= '-' then
			out = out .. ' ' .. options.unit
		end
	elseif value.unit and string.match( value.unit, 'http://www.wikidata.org/entity/' ) then
		local unitEntityId = string.gsub( value.unit, 'http://www.wikidata.org/entity/', '' );
		if unitEntityId ~= 'undefined' then 
			local wbStatus, unitEntity = pcall( mw.wikibase.getEntity, unitEntityId );
			if wbStatus == true and unitEntity then
				if unitEntity.claims.P2370 and
					unitEntity.claims.P2370[1].mainsnak.snaktype == 'value' and
					not value.upperBound and
					options.siConversion == true
				then
					conversionToSIunit = string.gsub( unitEntity.claims.P2370[1].mainsnak.datavalue.value.amount, '^%+', '' );
					if math.floor( math.log10( conversionToSIunit )) ~= math.log10( conversionToSIunit ) then
						-- Если не степени десятки (переводить сантиметры в метры не надо!)
						outValue = tonumber( amount ) * conversionToSIunit
	
						if ( outValue > 0 ) then
							-- Пробуем понять до какого знака округлять
							local integer, dot, decimals, expstr = amount:match( '^(%d*)(%.?)(%d*)(.*)' )
							local prec 
							if dot == '' then
								prec = -integer:match('0*$'):len()
							else
								prec = #decimals
							end
							local adjust = math.log10( math.abs( conversionToSIunit )) + math.log10( 2 )
							local minprec = 1 - math.floor( math.log10( outValue ) + 2e-14 );
							out = formatNum( outValue, math.max( math.floor( prec + adjust ), minprec ));
						else
							out = formatNum( outValue, 0 )
						end
						unitEntityId = string.gsub( unitEntity.claims.P2370[1].mainsnak.datavalue.value.unit, 'http://www.wikidata.org/entity/', '' );
						wbStatus, unitEntity = pcall( mw.wikibase.getEntity, unitEntityId );
					end
				end
	
				local writingSystemElementId = 'Q8209';
				local langElementId = 'Q7737';
				local label = getLabelWithLang( context, options, unitEntity.id, nil, { "P5061", "P558", "P558" }, {
					'P5061[language:' .. langCode .. ']',
					'P558[P282:' .. writingSystemElementId .. ', P407:' .. langElementId .. ']',
					'P558[!P282][!P407]'
				} );
	
				out = out .. ' ' .. label;
			end
		end
	end

	return out;
end

-- Функция для оформления URL
local function formatUrlValue( context, options, value )
	if not options.length or options.length == '' then
		options.length = 25
	end

	local moduleUrl = require( 'Module:URL' )
	return moduleUrl.formatUrlSingle( context, options, value )
end

local DATATYPE_CACHE = {}

--[[
	Get property datatype by ID.

	@param string Property ID, e.g. 'P123'.
	@return string Property datatype, e.g. 'commonsMedia', 'time' or 'url'.
]]
local function getPropertyDatatype( propertyId )
	if not propertyId or not string.match( propertyId, '^P%d+$' ) then
		return nil;
	end
	
	local cached = DATATYPE_CACHE[propertyId];
	if (cached ~= nil) then return cached; end

	local wbStatus, propertyEntity = pcall( mw.wikibase.getEntity, propertyId );
	if wbStatus ~= true or not propertyEntity then
		return nil;
	end
	mw.log("Loaded datatype " .. propertyEntity.datatype .. " of " .. propertyId .. ' from wikidata, consider passing datatype argument to formatProperty call or to Wikidata/config' )

	DATATYPE_CACHE[propertyId] = propertyEntity.datatype;
	return propertyEntity.datatype;
end

local function getDefaultValueFunction( datavalue, datatype )
	-- вызов обработчиков по умолчанию для известных типов значений
	if datavalue.type == 'wikibase-entityid' then
		-- Entity ID
		return function( context, options, value ) return formatEntityId( context, options, getEntityIdFromValue( value ) ) end;
	elseif datavalue.type == 'string' then
		-- String
		if datatype and datatype == 'commonsMedia' then
			-- Media
			return function( context, options, value )
				return formatCommonsMedia( value, options )
			end;
		elseif datatype and datatype == 'external-id' then
			-- External ID
			return function( context, options, value )
				return formatExternalId( value, options )
			end
		elseif datatype and datatype == 'math' then
			-- Math formula
			return function( context, options, value )
				return formatMath( value, options )
			end
		elseif datatype and datatype == 'url' then
			-- URL
			return formatUrlValue
		end
		return function( context, options, value ) return value end;
	elseif datavalue.type == 'monolingualtext' then
		-- моноязычный текст (строка с указанием языка)
		return function( context, options, value )
			if ( options.monolingualLangTemplate == 'lang' ) then
				if ( value.language == contentLanguageCode ) then
					return value.text;
				end
				return options.frame:expandTemplate{ title = 'lang-' .. value.language, args = { value.text } };
			elseif ( options.monolingualLangTemplate == 'ref' ) then
				return '<span class="lang" lang="' .. value.language .. '">' .. value.text .. '</span>' .. options.frame:expandTemplate{ title = 'ref-' .. value.language };
			else
				return '<span class="lang" lang="' .. value.language .. '">' .. value.text .. '</span>';
			end
		end;
	elseif datavalue.type == 'globecoordinate' then
		-- географические координаты
		return function( context, options, value ) return formatGlobeCoordinate( value, options )  end;
	elseif datavalue.type == 'quantity' then
		return function( context, options, value ) return formatQuantity( value, options )  end;
	elseif datavalue.type == 'time' then
		return function( context, options, value )
			local moduleDate = require( 'Module:Wikidata/date' )
			return moduleDate.formatDate( context, options, value );
		end;
	else
		-- во всех стальных случаях возвращаем ошибку
		throwError( 'unknown-datavalue-type' )
	end
end

--[[
	Функция для оформления значений (value)
	Подробнее о значениях  см. d:Wikidata:Glossary/ru

	Принимает: объект-значение и таблицу параметров,
	Возвращает: строку оформленного текста
]]
function formatDatavalue( context, options, datavalue, datatype )
	if ( not context ) then error( 'context not specified' ); end;
	if ( not options ) then error( 'options not specified' ); end;
	if ( not datavalue ) then error( 'datavalue not specified' ); end;
	if ( not datavalue.value ) then error( 'datavalue.value is missng' ); end;

	-- проверка на указание специализированных обработчиков в параметрах,
	-- переданных при вызове
	context.formatValueDefault = getDefaultValueFunction( datavalue, datatype );
	local functionToCall = getUserFunction( options, 'value', context.formatValueDefault );
	return functionToCall( context, options, datavalue.value );
end

local DEFAULT_BOUNDARIES = { os.time() * 1000, os.time() * 1000};

--[[
	Функция для оформления идентификатора сущности

	Принимает: строку индентификатора (типа Q42) и таблицу параметров,
	Возвращает: строку оформленного текста
]]
function formatEntityId( context, options, entityId )
	-- получение локализованного названия
	local boundaries = nil
	if options.qualifiers then
		boundaries = p.getTimeBoundariesFromQualifiers( frame, context, { qualifiers = options.qualifiers } )
	end
	if not boundaries then
		boundaries = DEFAULT_BOUNDARIES;
	end
	local label, labelLanguageCode = getLabelWithLang( context, options, entityId, boundaries )

	-- определение соответствующей показываемому элементу категории
	local category = context.extractCategory( options, { id = entityId } )

	-- получение ссылки по идентификатору
	local link = mw.wikibase.sitelink( entityId )
	if link then
		-- ссылка на категорию, а не добавление страницы в неё
		if mw.ustring.match( link, '^' .. mw.site.namespaces[ 14 ].name .. ':' ) then
			link = ':' .. link
		end
		if label and not options.rawArticle then
			local a = link == label and ('[[' .. link .. ']]') or '[[' .. link .. '|' .. label .. ']]';
			if ( contentLanguageCode ~= labelLanguageCode and 'mul' ~= labelLanguageCode ) then
				a = a .. getCategoryByCode( 'links-to-entities-with-missing-local-language-label' );
			end
			return a .. category;
		else
			return '[[' .. link .. ']]' .. category;
		end
	end

	if label then  -- TODO: возможно, лучше просто mw.wikibase.label(entityId)
		-- красная ссылка
		-- TODO: разобраться, почему не всегда есть options.frame
		local title = mw.title.new( label );
		if title and not title.exists and options.frame then
			local moduleRedLink = require( 'Module:Wikidata/redLink' )
			local rawLabel = mw.wikibase.label(entityId) or label -- без |text= и boundaries; or label - костыль
			local redLink = moduleRedLink.formatRedLinkWithInfobox(rawLabel, label, entityId)
			if ( contentLanguageCode ~= labelLanguageCode and 'mul' ~= labelLanguageCode ) then
				redLink = redLink .. getCategoryByCode( 'links-to-entities-with-missing-local-language-label' );
			end
			return redLink .. '<sup>[[:d:' .. entityId .. '|[d]]]</sup>' .. category
		end

		-- TODO: перенести до проверки на существование статьи
		local sup = '';
		if ( not options.format or options.format ~= 'text' )
				and entityId ~= 'Q6581072' and entityId ~= 'Q6581097' -- TODO: переписать на format=text
				then
			sup = '<sup class="plainlinks noprint">[//www.wikidata.org/wiki/' .. entityId .. '?uselang=' .. contentLanguageCode .. ' [d&#x5d;]</sup>'
		end

		-- одноимённая статья уже существует - выводится текст и ссылка на ВД
		return '<span class="iw" data-title="' .. label .. '">' .. label
			.. sup
			.. '</span>' .. category
	end
	-- сообщение об отсутвии локализованного названия
	-- not good, but better than nothing
	return '[[:d:' .. entityId .. '|' .. entityId .. ']]<span style="border-bottom: 1px dotted; cursor: help; white-space: nowrap" title="В Викиданных нет русской подписи к элементу. Вы можете помочь, указав русский вариант подписи.">?</span>' .. getCategoryByCode( 'links-to-entities-with-missing-label' ) .. category;
end

--[[
	Функция для оформления утверждений (statement)
	Подробнее о утверждениях см. d:Wikidata:Glossary/ru

	Принимает: таблицу параметров
	Возвращает: строку оформленного текста, предназначенного для отображения в статье
]]
-- устаревшее имя, не использовать
function p.formatStatements( frame )
	return p.formatProperty( frame );
end

--[[
	Получение параметров, которые обычно используются для вывода свойства.
]]
function getPropertyParams( propertyId, datatype, params )
	local config = getConfig();

	-- Различные уровни настройки параметров, по убыванию приоритета
	local propertyParams = {};

	-- 1. Параметры, указанные явно при вызове
	if params then
		for key, value in pairs( params ) do
			if value ~= '' then
				propertyParams[ key ] = value;
			end
		end
	end

	-- 2. Настройки конкретного параметра
	if config[ 'properties' ] and config[ 'properties' ][ propertyId ] then
		for key, value in pairs( config[ 'properties' ][ propertyId ] ) do
			if propertyParams[ key ] == nil then
				propertyParams[ key ] = value;
			end
		end
	end

	-- 3. Указанный пресет настроек
	if propertyParams[ 'preset' ] and config[ 'presets' ] and
		config[ 'presets' ][ propertyParams[ 'preset' ] ]
	then
		for key, value in pairs( config[ 'presets' ][ propertyParams[ 'preset' ] ] ) do
			if propertyParams[ key ] == nil then
				propertyParams[ key ] = value;
			end
		end
	end

	local datatype = datatype or params.datatype or propertyParams.datatype or getPropertyDatatype( propertyId );
	if propertyParams.datatype == nil then
		propertyParams.datatype = datatype;
	end

	-- 4. Настройки для типа данных
	if datatype and config[ 'datatypes' ] and config[ 'datatypes' ][ datatype ] then
		for key, value in pairs( config[ 'datatypes' ][ datatype ] ) do
			if propertyParams[ key ] == nil then
				propertyParams[ key ] = value;
			end
		end
	end

	-- 5. Общие настройки для всех свойств
	if config[ 'global' ] then
		for key, value in pairs( config[ 'global' ] ) do
			if propertyParams[ key ] == nil then
				propertyParams[ key ] = value;
			end
		end
	end

	return propertyParams;
end

function p.formatProperty( frame )
	local args = frame.args

	-- проверка на отсутствие обязательного параметра property
	if not args.property then
		throwError( 'property-param-not-provided' )
	end
	local override;
	local propertyId = mw.language.getContentLanguage():ucfirst( string.gsub( args.property, '([^Pp0-9].*)$', function(w) 
		if string.sub( w, 1, 1 ) == '~' then override = w; end
		return ''; 
	end ) ) 
	args = getPropertyParams( propertyId, nil, args );
	if (override) then 
		args[override:match('[,~]([^=]*)=')] = override:match('=(.*)')
		args['property'] = propertyId
	end

	local datatype = args.datatype;

	-- проброс всех параметров из шаблона {wikidata} и параметра from откуда угодно
	p_frame = frame
	while p_frame do
		if p_frame:getTitle() == mw.site.namespaces[10].name .. ':Wikidata' then
			copyTo( p_frame.args, args, true );
		end
		if p_frame.args and p_frame.args.from and p_frame.args.from ~= '' then
			args.entityId = p_frame.args.from;
		end
		p_frame = p_frame:getParent();
	end

	args.plain = toBoolean( args.plain, false );
	args.nocat = toBoolean( args.nocat, false );
	args.references = toBoolean( args.references, true );

	-- если значение передано в параметрах вызова то выводим только его
	if args.value and args.value ~= '' then
		-- специальное значение для скрытия Викиданных
		if args.value == '-' then
			return ''
		end
		local value = args.value

		-- опция, запрещающая оформление значения, поэтому никак не трогаем
		if args.plain then
			return value
		end

		local context = initContext( args );
		-- обработчики по типу значения
		local wrapperExtraArgs = {}
		if args['value-module'] and args['value-function'] and not string.find( value, '[%[%]%{%}]' ) then
			local func = getUserFunction( args, 'value' );
			value = func( context, args, value );
		elseif datatype == 'commonsMedia' then
			value = formatCommonsMedia( value, args );
		elseif datatype == 'external-id' and not string.find( value, '[%[%]%{%}]' ) then
			wrapperExtraArgs['data-wikidata-external-id'] = mw.text.killMarkers( value );
			value = formatExternalId( value, args );
		--elseif datatype == 'math' then
			-- args.frame = frame -- костыль: в formatMath нужно frame:extensionTag
		--	value = formatMath( value, args );
		elseif datatype == 'url' then
			value = formatUrlValue( context, args, value );
		end

		-- оборачиваем в тег для JS-функций
		if string.match( propertyId, '^P%d+$' ) then
			value = mw.text.trim( value )

			-- временная штрафная категория для исправления табличных вставок
			local allowTables = getPropertyParams(propertyId, nil, {})['allowTables']
			if ( not allowTables
					and string.match( value, '<t[dhr][ >]' )
					-- and not string.match( value, '<table[ >]' )
					-- and not string.match( value, '^%{%|' )
				) then
				value = value .. getCategoryByCode( 'value-contains-table', propertyId )
			else
				value = wrapStatement( value, propertyId, nil, wrapperExtraArgs );
			end
		end

		return value
	end

	-- ability to disable loading Wikidata
	if args.entityId == '-' then
		return ''
	end

	if ( args.plain ) then -- вызова стандартного обработчика без оформления, если передана опция plain
		local callArgs = { propertyId };
		if args.entityId then
			callArgs.from = args.entityId;
		end
		return frame:callParserFunction( '#property', callArgs );
	end

	g_frame = frame
	-- после проверки всех аргументов -- вызов функции оформления для свойства (набора утверждений)
	return formatProperty( args )
end

--[[
	Функция проверки на присутствие источника в списке нерекомендованных.

	Принимает: таблицу snak'ов
	Возвращает: true/false
]]
function isReferenceDeprecated( snaks )
	if not snaks then
		return false
	end
	if snaks.P248
		and snaks.P248[1]
		and snaks.P248[1].datavalue
		and snaks.P248[1].datavalue.value.id
	then
		local entityId = snaks.P248[1].datavalue.value.id
		if getConfig( 'deprecatedSources', entityId ) then
			return true
		end
	elseif snaks.P1433
		and snaks.P1433[1]
		and snaks.P1433[1].datavalue
		and snaks.P1433[1].datavalue.value.id
	then
		local entityId = snaks.P1433[1].datavalue.value.id
		if getConfig( 'deprecatedSources', entityId ) then
			return true
		end
	end
	return false
end

--[[
	Функция оформления ссылок на источники (reference)
	Подробнее о ссылках на источники см. d:Wikidata:Glossary/ru

	Экспортируется в качестве зарезервированной точки для вызова из функций-расширения вида claim-module/claim-function через context
	Вызов из других модулей напрямую осуществляться не должен (используйте frame:expandTemplate вместе с одним из специлизированных шаблонов вывода значения свойства).

	Принимает: объект-таблицу утверждение
	Возвращает: строку оформленных ссылок для отображения в статье
]]
function formatRefs( context, options, statement )
	if ( not context ) then error( 'context not specified' ); end;
	if ( not options ) then error( 'options not specified' ); end;
	if ( not options.entity ) then error( 'options.entity missing' ); end;
	if ( not statement ) then error( 'statement not specified' ); end;

	if ( not outputReferences ) then
		return '';
	end

	local references = {};
	if ( statement.references ) then

		local allReferences = statement.references;
		local hasNotDeprecated = false;
		local displayCount = 0;
		for _, reference in pairs( statement.references ) do
			local entityId = nil;
			if not isReferenceDeprecated( reference.snaks ) then
				hasNotDeprecated = true;
			end
		end

		for _, reference in pairs( statement.references ) do
			local display = true;
			if ( hasNotDeprecated ) then
				if isReferenceDeprecated( reference.snaks ) then
					display = false;
				end
			end
			if ( displayCount > 2 ) then
				if ( options.entity and options.property ) then
					local propertyID = mw.ustring.match( options.property, '^[Pp][0-9]+' )  -- TODO: обрабатывать не тут, а раньше
					local moreReferences = '<sup>[[d:' .. options.entity.id .. '#' .. string.upper( propertyID ) .. '|[…]]]</sup>';
					table.insert( references, moreReferences );
				end
				break;
			end
			if ( display == true ) then
				local refText = moduleSources.renderReference( g_frame, options.entity, reference );
				if ( refText ~= '' ) then
					table.insert( references, refText );
					displayCount = displayCount + 1;
				end
			end
		end
	end
	return table.concat( references );
end

return p