Modul:Wikidata: Perbedaan antara revisi

Konten dihapus Konten ditambahkan
getLabelWithLang, findLang
coba perbarui
Baris 1:
-- version 20190319 from master @cawiki
-- vim: set noexpandtab ft=lua ts=4 sw=4:
require('Module:No globals')
 
local p = {}
local debug = false
 
-----------------------------------------------------------------------------
 
-- internationalisation at [[Module:Wikidata/i18n]]
------------------------------------------------------------------------------
-- module local variablesi18n and= functions{
["errors"] = {
 
["property-not-found"] = "Property not found.",
local wiki =
["entity-not-found"] = "Wikidata entity not found.",
{
["unknown-claim-type"] = "Unknown claim type.",
langcode = mw.language.getContentLanguage().code
["unknown-entity-type"] = "Unknown entity type.",
}
["qualifier-not-found"] = "Qualifier not found.",
 
["site-not-found"] = "Wikimedia project not found.",
-- internationalisation
["unknown-datetime-format"] = "Unknown datetime format.",
local i18n =
["local-article-not-found"] = "Article is not yet available in this wiki.",
{
['not-from-content-page'] = "Do not invoke from content page. Use a template or use a module subpage like /sandbox for testing ."
["errors"] =
{
["property-not-found"] = "Properti tidak ditemukan.",
["entity-not-found"] = "Entitas wikidata tidak ditemukan.",
["unknown-claim-type"] = "Objek klaim tak dikenal.",
["unknown-entity-type"] = "Objek entitas tak dikenal.",
["qualifier-not-found"] = "Kualifikasi tidak ditemukan.",
["site-not-found"] = "Proyek Wikimedia tidak ditemukan.",
 
["unknown-datetime-format"] = "Format tanggal/waktu tidak dikenal.",
["local-article-not-found"] = "Artikel belum tersedia di wiki ini."
},
["datetime"] =
{
-- $1 is a placeholder for the actual number
-- $1 adalah jumlah sebenarnya
[0] = "$1 miliarbillion tahunyears", -- precision: billion years
[1] = "$100 jutamillion tahunyears", -- precision: hundred million years
[2] = "$10 jutamillion tahunyears", -- precision: ten million years
[3] = "$1 jutamillion tahunyears", -- precision: million years
[4] = "$100.000100000 tahunyears", -- precision: hundred thousand years; thousand separators added afterwards
[5] = "$10.00010000 tahunyears", -- precision: ten thousand years; thousand separators added afterwards
[6] = "$1 mileniummillennium", -- precision: millennium
[7] = "$1 abadcentury", -- precision: century
[8] = "$1-an1s", -- precision: decade
-- the following use the format of #time parser function
[9] = "Y", -- precision: year,
[10] = "F Y", -- precision: month
[11] = "F j F, Y", -- precision: day
[12] = "j F Yj, Y ga", -- precision: hour
[13] = "j F Yj, Y g:ia", -- precision: minute
[14] = "j F Yj, Y g:i:sa", -- precision: second
["beforenow"] = "$1 SM", -- how to format negative numbers for precisions 0 to 5
["afternowbeforenow"] = "$1 MBCE", -- how to format positivenegative numbers for precisions 0 to 5
["bcafternow"] = '"$1 CE"SM"', -- how printto format positive numbers for precisions 0 negativeto years5
["bc"] = '$1 "BCE"', -- how print negative years
["ad"] = "$1", -- how print positive years
["bc-addon"] = " BC", -- suffix for negative dates
-- the following are for function getDateValue() and getQualifierDateValue()
["defaultad-formataddon"] = "dmy", -- default valuesuffix offor the1st #3century (getDateValue)AD ordates
-- #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"] = "[[Kategori:Memanggil fungsi 'Dump' dari modul Wikidata]]",
["cite"] = { -- Cite web parameters
["ordinal"] =
["url"] = "url",
{
[1"title"] = "sttitle",
[2"website"] = "ndwebsite",
[3"access-date"] = "rdaccess-date",
["defaultarchive-url"] = "tharchive-url",
["archive-date"] = "archive-date",
["author"] = "author",
["publisher"] = "publisher",
["quote"] = "quote",
["language"] = "language",
["date"] = "date",
["pages"] = "pages"
}
}
 
local cases = {} --require("Module:i18n").loadI18n(" functions for local grammatical cases defined at [[Module:Wikidata/i18n", i18n)]]
 
-- got idea from [[:w:Module:Wd]]
local module_title; if ...wiki == nil then
{
module_title = mw.getCurrentFrame():getTitle()
langcode = mw.language.getContentLanguage().code,
else
module_title = ..."Module:Wikidata",
module_planetsData = "Module:Mapa cos celeste/dades" -- data for astronomical objects, maps for non Earth globes
}
 
----------------------------------------------------------------------------
-- module local functions
 
-- Credit to http://stackoverflow.com/a/1283608/2644759
-- cc-by-sa 3.0
local function tableMerge(t1, t2)
for k,v in pairs(t2) do
if type(v) == "table" then
if type(t1[k] or false) == "table" then
tableMerge(t1[k] or {}, t2[k] or {})
else
t1[k] = v
end
else
t1[k] = v
end
end
return t1
end
require('Module:i18n').loadI18n(module_title..'/i18n', i18n)
 
local function loadI18n()
local exist, res = pcall(require, wiki.module_title .. "/i18n")
if exist and next(res) ~= nil then
tableMerge(i18n, res.i18n)
cases = res.cases
end
end
 
loadI18n()
 
local function case(word, localcase, lang)
if word == nil or word == '' or cases[localcase] == nil then
return word
end
return cases[localcase](word, lang)
end
 
local function findLang(langcode)
Baris 131 ⟶ 149:
end
 
-- Is gender femenine? true or false
-- this function needs to be internationalised along with the above:
local function feminineGender(id)
-- takes cardinal numer as a numeric and returns the ordinal as a string
local claims = mw.wikibase.getBestStatements(id or mw.wikibase.getEntityIdForCurrentPage(),'P21')
-- we need three exceptions in English for 1st, 2nd, 3rd, 21st, .. 31st, etc.
if #claims == 0 then
local function makeOrdinal (cardinal)
return false
local ordsuffix = i18n.ordinal.default
else
if cardinal % 10 == 1 then
local genderId = claims[1].mainsnak.datavalue.value.id
ordsuffix = i18n.ordinal[1]
if genderId == "Q6581072" or genderId == "Q1052281" or genderId == "Q43445" then -- female, transgender female, female organism
elseif cardinal % 10 == 2 then
return true
ordsuffix = i18n.ordinal[2]
end
elseif cardinal % 10 == 3 then
ordsuffix = i18n.ordinal[3]
end
return false
-- In English, 1, 21, 31, etc. use 'st', but 11, 111, etc. use 'th'
end
-- similarly for 12 and 13, etc.
 
if (cardinal % 100 == 11) or (cardinal % 100 == 12) or (cardinal % 100 == 13) then
-- Fetch female form of label
ordsuffix = i18n.ordinal.default
local function feminineForm(id, lang)
local feminine_claims = mw.wikibase.getBestStatements(id, 'P2521') -- female form of label
for _, feminine_claim in ipairs(feminine_claims) do
if feminine_claim.mainsnak.datavalue.value.language == lang then
return feminine_claim.mainsnak.datavalue.value.text
end
end
return tostring(cardinal) .. ordsuffix
end
 
-- Fetch unit symbol
local function printError(code)
local function unitSymbol(id, lang)
return '<span class="error">' .. (i18n.errors[code] or code) .. '</span>'
local claims = findClaims(mw.wikibase.getEntity(id), 'P5061')
local langclaims = {}
if claims then
for _, snak in ipairs(claims) do
if snak.mainsnak and snak.mainsnak.datavalue and snak.mainsnak.datavalue.value and
not langclaims[snak.mainsnak.datavalue.value.language] -- just the first one by language
then
langclaims[snak.mainsnak.datavalue.value.language] = snak.mainsnak.datavalue.value.text
end
end
for _, l in ipairs(lang) do
if langclaims[l] then
return langclaims[l]
end
end
end
return langclaims["mul"] -- last try
end
 
local function parseDateFormat(f, timestamp, addon, prefix_addon, addon_sep)
-- Add a small pencil as icon for edit on Wikidata
local year_suffix
local function addEditIcon(id, lang, uselang, icon)
local tstr = ""
if icon and lang ~= uselang then
local lang_obj = mw.language.new(wiki.langcode)
return " [[File:Arbcom ru editing.svg|12px|" .. mw.message.new('Translate-taction-translate'):inLanguage(uselang):plain() .. "|link=d:" .. id .. "]]"
local f_parts = mw.text.split(f, 'Y', true)
end
for idx, f_part in pairs(f_parts) do
return ''
year_suffix = ''
end
if string.match(f_part, "x[mijkot]$") then
 
-- for non-Gregorian year
local function urlEscapes(text)
f_part = f_part .. 'Y'
-- escape URL escapes to avoid Lua captures
elseif idx < #f_parts then
return mw.ustring.gsub(text, "(%%%d)", "%%%1")
-- supress leading zeros in year
end
year_suffix = lang_obj:formatDate('Y', timestamp)
 
year_suffix = string.gsub(year_suffix, '^0+', '', 1)
local function expandBraces(text, formatting)
if text == nil or formatting == nil then return text end
-- only expand braces if provided in argument, not included in value as in Q1164668
if mw.ustring.find(formatting, '{{', 1, true) == nil then return text end
if type(text) ~= "string" then
text = tostring(text)
end
for braces in mw.ustring.gmatch(text, "{{(.-)}}") do
local parts = mw.text.split(braces, "|")
local title_part = parts[1]
local parameters = {}
for i = 2, #parts do
if mw.ustring.find(parts[i], "=") then
local subparts = mw.text.split(parts[i], "=")
parameters[subparts[1]] = subparts[2]
else
table.insert(parameters, parts[i])
end
end
tstr = tstr .. lang_obj:formatDate(f_part, timestamp) .. year_suffix
local braces_expanded
if mw.ustring.find(title_part, ":")
and mw.text.split(title_part, ":")[1] ~= mw.site.namespaces[10].name -- not a prefix Template:
then
braces_expanded = mw.getCurrentFrame():callParserFunction{name=title_part, args=parameters}
else
braces_expanded = mw.getCurrentFrame():expandTemplate{title=title_part, args=parameters}
end
braces = mw.ustring.gsub(braces, "([%^%$%(%)%%%.%[%]%*%+%-%?])", "%%%1") -- escape magic characters
braces_expanded = urlEscapes(braces_expanded)
text = mw.ustring.gsub(text, "{{" .. braces .. "}}", braces_expanded)
end
if addon ~= "" and prefix_addon then
return text
return addon .. addon_sep .. tstr
end
elseif addon ~= "" then
 
return tstr .. addon_sep .. addon
local function printDatatypeMath(data)
return mw.getCurrentFrame():callParserFunction('#tag:math', data)
end
 
local function printDatavalueString(data, parameters)
if parameters.formatting == 'weblink' then
return '[' .. data .. ' ' .. mw.text.split(data, '//' )[2] .. ']'
elseif mw.ustring.find((parameters.formatting or ''), '$1', 1, true) then -- formatting = a pattern
--local escaped_data = mw.ustring.gsub(data, "%%", "%%%") -- escape % character, normally used in url, avoiding invalid capture in gsub
-- done in expandBraces
return expandBraces(mw.ustring.gsub(parameters.formatting, '$1', data), parameters.formatting)
elseif parameters.case then
return case(data, parameters.case, parameters.lang[1])
else
return tstrdata
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 = ""
 
local function printDatavalueUrl(data, parameters)
-- check for negative date
-- escape URL escapes to avoid Lua captures
if string.sub(timestamp, 1, 1) == '-' then
return printDatavalueString(urlEscapes(data), parameters)
timestamp = '+' .. string.sub(timestamp, 2)
end
addon = date_addon
local function printDatavalueCoordinate(data, parameter)
if parameter == 'latitude' then
return data.latitude
elseif parameter == 'longitude' then
return data.longitude
elseif parameter == 'dimension' then
return data.dimension
else --default formatting='globe'
if data.globe == '' or data.globe == nil or data.globe == 'http://www.wikidata.org/entity/Q2' then
return 'earth'
else
local globenum = mw.text.split(data.globe, 'entity/')[2] -- http://www.wikidata.org/wiki/Q2
if pcall(require, wiki.module_planetsData) then
local globetable = mw.loadData(wiki.module_planetsData)
for _, globe in pairs(globetable.maps) do
if globe.wikidata == globenum then
return globe.coord_globe
end
end
end
return globenum
end
end
end
local _date_format = i18n["datetime"]["format"][date_format]
 
if _date_format ~= nil then
local function printDatavalueQuantity(data, parameters)
return parseDateFormat(_date_format, timestamp, addon, prefix_addon, addon_sep)
-- exemples: 277±1 Centímetre, 1,94 metre
else
local amount = data.amount
return printError("unknown-datetime-format")
amount = mw.ustring.gsub(amount, "%+", "")
local sortkey = string.format("%09d", amount)
amount = mw.language.new(parameters.lang[1]):formatNum(tonumber(amount))
-- This is used to get the unit name for a numeric value
local suffix = ""
if parameters.formatting == "unit" or parameters.formatting == "unitcode" then
-- get the url for the unit entry on Wikidata:
local unitID = data.unit
-- and just return the last bit from "Q" to the end (which is the QID):
unitID = mw.ustring.sub(unitID, mw.ustring.find(unitID, "Q"), -1)
if mw.ustring.sub(unitID, 1, 1) == "Q" then
if parameters.formatting == "unitcode" then
local unit_symbol = ''
if parameters.lang[1] == wiki.langcode and pcall(require, wiki.module_title .. "/Units") then
unit_symbol = require(wiki.module_title .. "/Units").getUnit(amount, '', unitID, true, '')
end
if unit_symbol == '' then
unit_symbol = unitSymbol(unitID, parameters.lang)
if not unit_symbol then
local unit_label, lang = getLabelByLangs(unitID, parameters.lang)
unit_symbol = unit_label .. addEditIcon(unitID, lang, parameters.lang[1], parameters.editicon)
end
end
suffix = " " .. unit_symbol
else
local unit_label, lang = getLabelByLangs(unitID, parameters.lang)
if lang == wiki.langcode and pcall(require, wiki.module_title .. "/Units") then
suffix = " " .. require(wiki.module_title .. "/Units").getUnit(amount, unit_label, unitID, false, '')
else
suffix = " " .. (unit_label or unitID) .. addEditIcon(unitID, lang, parameters.lang[1], parameters.editicon)
end
end
end
end
return amount .. suffix, sortkey
end
 
local function printDatavalueTime(data, parameters)
-- This local function combines the year/month/day/BC/BCE handling of parseDateValue{}
-- Dates and times are stored in ISO 8601 format
-- with the millennium/century/decade handling of formatDate()
local function parseDateFull(timestamp, precision, date_format,= date_addon)data.time
local sortkey = timestamp
local prefix_addon = i18n["datetime"]["prefix-addon"]
local addon_sep = i18n["datetime"]["addon-sep"]
local addon = ""
local calendar_add = ""
 
-- check for negative date
-- check for negative date, ex. "-0027-01-16T00:00:00Z"
if string.sub(timestamp, 1, 1) == '-' then
timestamp = '+' .. string.sub(timestamp, 2)
addon = date_addoni18n.datetime["bc-addon"]
elseif string.sub(timestamp, 2, 3) == '00' then
addon = i18n.datetime["ad-addon"]
else
-- calendar model
local calendar_model = {["Q12138"] = "gregorian", ["Q1985727"] = "gregorian", ["Q11184"] = "julian", ["Q1985786"] = "julian"}
local calendar_id = mw.text.split(data.calendarmodel, 'entity/')[2]
if (timestamp < "+1582-10-15T00:00:00Z" and calendar_model[calendar_id] == "gregorian")
or (timestamp > "+1582-10-04T00:00:00Z" and calendar_model[calendar_id] == "julian")
then
calendar_add = " <sup>(" .. mw.message.new('Wikibase-time-calendar-' .. calendar_model[calendar_id]):inLanguage(parameters.lang[1]):plain() .. ")</sup>"
end
end
local function d(f, t)
 
local ts = t or timestamp
-- get the next four characters after the + (should be the year now in all cases)
local form = type(f) == "function" and f(ts) or f -- function in i18n.datetime[precision]
-- ok, so this is dirty, but let's get it working first
return mw.language.new(parameters.lang[1]):formatDate(form, ts) .. addon .. calendar_add
local intyear = tonumber(string.sub(timestamp, 2, 5))
if intyear == 0 and precision <= 9 then
return ""
end
local precision = data.precision or 11
 
local intyear = tonumber(mw.ustring.match(timestamp, "^\+?%d+"))
local ret = ""
-- precision is 10000 years or more
if precision <= 5 then
Baris 222 ⟶ 369:
local y2 = math.ceil(math.abs(intyear) / factor)
local relative = mw.ustring.gsub(i18n.datetime[precision], "$1", tostring(y2))
if addon ~== i18n.datetime["bc-addon"] then
-- negative date
relativeret = mw.ustring.gsub(i18n.datetime.beforenow, "$1", relative)
else
relativeret = mw.ustring.gsub(i18n.datetime.afternow, "$1", relative)
end
local ret_number = string.match(ret, "%d+")
return relative
if ret_number ~= nil then
ret = mw.ustring.gsub(ret, ret_number, mw.language.new(parameters.lang[1]):formatNum(tonumber(ret_number)))
end
-- precision is millennia, centuries or decades
elseif precision == 6 then
local card = math.floor((intyear - 1) / 1000) + 1
if mw.ustring.find(i18n.datetime[6], "$1") then
ret = mw.ustring.gsub(i18n.datetime[6], "$1", tostring(card)) .. addon .. calendar_add
else
ret = d(i18n.datetime[6], string.format("%04d", tostring(card)))
end
elseif precision == 7 then
local card = math.floor((math.abs(intyear) - 1) / 100) + 1
if mw.ustring.find(i18n.datetime[7], "$1") then
ret = mw.ustring.gsub(i18n.datetime[7], "$1", tostring(card)) .. addon .. calendar_add
else
ret = d(i18n.datetime[7], string.format("%04d", tostring(card)))
end
elseif precision == 8 then
local card = math.floor(math.abs(intyear) / 10) * 10
ret = mw.ustring.gsub(i18n.datetime[8], "$1", tostring(card)) .. addon .. calendar_add
-- precision is year
elseif parameters.formatting == 'Y' or precision == 9 then
ret = tostring(intyear) .. addon .. calendar_add
-- precision is month
elseif precision == 10 then
timestamp = timestamp .. " + 1 day" -- formatDate yyyy-mm-00 returns the previous month
ret, _ = string.gsub(d(i18n.datetime[10]), " 0+", " ") -- supress leading zeros in year
elseif parameters.formatting then
ret, _ = string.gsub(d(parameters.formatting), "([ %[])0+", "%1") -- supress leading zeros in year optionally linked
else
ret, _ = string.gsub(d(i18n.datetime[11]), " 0+", " ")
end
return ret, sortkey
end
 
local function printDatavalueEntity(data, parameters)
-- precision is decades (8), centuries (7) and millennia (6)
local era,entityId card= data['id']
local entityIdPreffix = data['entity-type'] == 'property' and "Property:" .. entityId or entityId
if precision == 6 then
if parameters.formatting == 'raw' then
card = math.floor((intyear - 1) / 1000) + 1
return entityId, entityId
era = mw.ustring.gsub(i18n.datetime[6], "$1", makeOrdinal(card))
end
local label, lang = getLabelByLangs(entityId, parameters.lang)
if precision == 7 then
local sitelink = mw.wikibase.getSitelink(entityId)
card = math.floor((intyear - 1) / 100) + 1
local parameter = parameters.formatting
era = mw.ustring.gsub(i18n.datetime[7], "$1", makeOrdinal(card))
local labelcase = label or sitelink
if parameters.gender == 'feminineform' and lang ~= nil then -- case gender and item is female
labelcase = feminineForm(entityId, lang) or labelcase
end
if precision == 8parameters.case then
labelcase = case(labelcase, parameters.case, lang)
era = mw.ustring.gsub(i18n.datetime[8], "$1", tostring(math.floor(math.abs(intyear) / 10) * 10))
end
local ret1, ret2
if era then
if addonparameter ~== ""'label' then
ret1 = (labelcase or entityId)
era = mw.ustring.gsub(mw.ustring.gsub(i18n.datetime.bc, '"', ""), "$1", era)
ret2 = labelcase or entityId
elseif parameter == 'sitelink' then
ret1 = (sitelink or 'wikidata:' .. entityIdPreffix)
ret2 = sitelink or entityId
elseif mw.ustring.find((parameter or ''), '$1', 1, true) then -- formatting = a pattern
ret1 = mw.ustring.gsub(parameter, '$1', labelcase or entityId)
ret1 = expandBraces(ret1, parameter)
ret2 = labelcase or entityId
else
if parameter == "ucfirst" or parameter == "ucinternallink" then
labelcase = labelcase and mw.language.new(lang):ucfirst(labelcase)
-- only first of a list, reset formatting for next ones
if parameter == "ucinterlanllink" then
parameters.formatting = 'internallink'
else
parameters.formatting = nil -- default format
end
end
if sitelink then
ret1 = '[[' .. sitelink .. '|' .. labelcase .. ']]'
ret2 = labelcase
elseif label and (parameter == 'internallink' or parameter == 'ucinternallink') then
ret1 = '[[' .. label .. '|' .. labelcase .. ']]'
ret2 = labelcase
else
ret1 = '[[wikidata:' .. entityIdPreffix .. '|' .. (labelcase or entityId) .. ']]'
era = mw.ustring.gsub(mw.ustring.gsub(i18n.datetime.ad, '"', ""), "$1", era)
ret2 = labelcase or entityId
end
return era
end
return ret1 .. addEditIcon(entityIdPreffix, lang, parameters.lang[1], parameters.editicon), ret2
end
 
local function printDatavalueMonolingualText(data, parameters)
local _date_format = i18n["datetime"]["format"][date_format]
-- data fields: language [string], text [string]
if _date_format ~= nil then
-- check for precision is year and override supplied date_format
if parameters.list == "lang" and data["language"] ~= parameters.lang[1] then
if precision == 9 then
return
_date_format = i18n["datetime"][9]
elseif parameters.formatting == "language" or parameters.formatting == "text" then
end
return data[parameters.formatting]
return parseDateFormat(_date_format, timestamp, addon, prefix_addon, addon_sep)
else
return printError("unknown-datetime-format")
end
local result = data["text"]
if data["language"] ~= wiki.langcode then
result = mw.ustring.gsub(mw.ustring.gsub(i18n.monolingualtext, "%%language", data["language"]), "%%text", data["text"])
end
if mw.ustring.find((parameters.formatting or ''), '$', 1, true) then
-- output format defined with $text, $language
result = mw.ustring.gsub(parameters.formatting, '$text', result)
result = mw.ustring.gsub(result, '$language', data["language"])
end
return result
end
 
local function printError(key)
return '<span class="error">' .. i18n.errors[key] .. '</span>'
end
 
Baris 281 ⟶ 505:
end
 
function findClaims(entity, property)
-- 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
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
 
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
local factor = 10 ^ ((5 - precision) + 4)
local y2 = math.ceil(math.abs(year) / factor)
local relative = mw.ustring.gsub(i18n.datetime[precision], "$1", tostring(y2))
if year < 0 then
relative = mw.ustring.gsub(i18n.datetime.beforenow, "$1", relative)
else
relative = mw.ustring.gsub(i18n.datetime.afternow, "$1", relative)
end
return relative
end
 
-- precision is decades, centuries and millennia
local era
if precision == 6 then era = mw.ustring.gsub(i18n.datetime[6], "$1", tostring(math.floor((math.abs(year) - 1) / 1000) + 1)) end
if precision == 7 then era = mw.ustring.gsub(i18n.datetime[7], "$1", tostring(math.floor((math.abs(year) - 1) / 100) + 1)) end
if precision == 8 then era = mw.ustring.gsub(i18n.datetime[8], "$1", tostring(math.floor(math.abs(year) / 10) * 10)) end
if era then
if year < 0 then era = mw.ustring.gsub(mw.ustring.gsub(i18n.datetime.bc, '"', ""), "$1", era)
elseif year > 0 then era = mw.ustring.gsub(mw.ustring.gsub(i18n.datetime.ad, '"', ""), "$1", era) end
return era
end
 
-- precision is year
if precision == 9 then
return year
end
 
-- precision is less than years
if precision > 9 then
--[[ 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)
if timezone and timezone ~= 0 then
timezone = -timezone
timezone = string.format("%.2d%.2d", timezone / 60, timezone % 60)
if timezone[1] ~= '-' then timezone = "+" .. timezone end
date = mw.text.trim(date, "Z") .. " " .. timezone
end
]]--
 
local formatstr = i18n.datetime[precision]
if year == 0 then formatstr = mw.ustring.gsub(formatstr, i18n.datetime[9], "")
elseif year < 0 then
-- Mediawiki formatDate doesn't support negative years
date = mw.ustring.sub(date, 2)
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
 
local function printDatavalueEntity(data, parameter)
-- data fields: entity-type [string], numeric-id [int, Wikidata id]
local id
 
if data["entity-type"] == "item" then id = "Q" .. data["numeric-id"]
elseif data["entity-type"] == "property" then id = "P" .. data["numeric-id"]
else return printError("unknown-entity-type")
end
 
if parameter then
if parameter == "link" then
local linkTarget = mw.wikibase.sitelink(id)
local linkName = mw.wikibase.label(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
return mw.wikibase.label(id) or id
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]
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
return data[parameter]
else
return formatDate(data.time, data.precision, data.timezone)
end
end
 
local function printDatavalueMonolingualText(data, parameter)
-- data fields: language [string], text [string]
if parameter then
return data[parameter]
else
local result = mw.ustring.gsub(mw.ustring.gsub(i18n.monolingualtext, "%%language", data["language"]), "%%text", data["text"])
return result
end
end
 
local function findClaims(entity, property)
if not property or not entity or not entity.claims then return end
 
if not mw.ustring.match(property, "^P%d+$") then
-- if theget property is given by an id (P..) accessfor the claimgiven list by this idlabel
return entity.claims[property]
else
property = mw.wikibase.resolvePropertyId(property)
if not property then return end
 
return entity.claims[property]
end
return entity.claims[property]
end
 
local function getSnakValue(snak, parameterparameters)
if snak.snaktype == "'value"' then
-- call the respective snak parser
if snak.datavalue.typedatatype == "string"'math' then return snak.datavalue.value
elseif snak.datavalue.type == "globecoordinate" then return printDatavalueCoordinateprintDatatypeMath(snak.datavalue.value, parameter)
elseif snak.datavalue.typedatatype == "quantityurl" then return printDatavalueQuantity(snak.datavalue.value, parameter)
elseif snak.datavalue.type == "time" then return printDatavalueTimeprintDatavalueUrl(snak.datavalue.value, parameterparameters)
elseif snak.datavalue.type == "wikibase-entityidstring" then return printDatavalueEntity(snak.datavalue.value, parameter)
elseif snak.datavalue.type == "monolingualtext" then return printDatavalueMonolingualTextprintDatavalueString(snak.datavalue.value, parameterparameters)
elseif snak.datavalue.type == "globecoordinate" then
return printDatavalueCoordinate(snak.datavalue.value, parameters.formatting)
elseif snak.datavalue.type == "quantity" then
return printDatavalueQuantity(snak.datavalue.value, parameters)
elseif snak.datavalue.type == "time" then
return printDatavalueTime(snak.datavalue.value, parameters)
elseif snak.datavalue.type == 'wikibase-entityid' then
return printDatavalueEntity(snak.datavalue.value, parameters)
elseif snak.datavalue.type == 'monolingualtext' then
return printDatavalueMonolingualText(snak.datavalue.value, parameters)
end
elseif snak.snaktype == 'novalue' then
return mw.message.new('Wikibase-snakview-snaktypeselector-novalue'):inLanguage(parameters.lang[1]):plain()
elseif snak.snaktype == 'somevalue' then
return mw.message.new('Wikibase-snakview-snaktypeselector-somevalue'):inLanguage(parameters.lang[1]):plain()
end
return mw.wikibase.renderSnak(snak)
end
 
local function getQualifierSnak(claim, qualifierId, parameters)
-- a "snak" is Wikidata terminology for a typed key/value pair
-- a claim consists of a main snak holding the main information of this claim,
Baris 437 ⟶ 553:
if claim.qualifiers then
local qualifier = claim.qualifiers[qualifierId]
if qualifier then return qualifier[1] end
if qualifier[1].datatype == "monolingualtext" then
-- iterate over monolingualtext qualifiers to get local language
for idx in pairs(qualifier) do
if qualifier[idx].datavalue.value and qualifier[idx].datavalue.value.language == parameters.lang[1] then
return qualifier[idx]
end
end
elseif parameters.list then
return qualifier
else
return qualifier[1]
end
end
end
return nil, printError("qualifier-not-found")
Baris 446 ⟶ 575:
end
 
local function getValueOfClaim(claim, qualifierId, parameterparameters)
local error
local snak
snak, error = getQualifierSnak(claim, qualifierId, parameters)
if not snak then
return getSnakValue(snaknil, parameter)nil, error
elseif snak[1] then -- a multi qualifier
else
local result = {}
return nil, error
local sortkey = {}
end
for idx in pairs(snak) do
end
result[#result + 1], sortkey[#sortkey + 1] = getSnakValue(snak[idx], parameters)
 
local function getReferences(frame, claim)
local result = ""
-- traverse through all references
for ref in pairs(claim.references or {}) do
local refparts
-- traverse through all parts of the current reference
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.label(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])
end
end
return mw.text.listToText(result, parameters.qseparator, parameters.qconjunction), sortkey[1]
if refparts then result = result .. frame:extensionTag("ref", refparts) end
else -- a property or a qualifier
return getSnakValue(snak, parameters)
end
return result
end
 
local function parseInputgetValueOfParentClaim(frameclaim, qualifierId, parameters)
local qidqids = framemw.argstext.qidsplit(qualifierId, '/', true)
local valueraw, parent_claims, value, sortkey
if qid and (#qid == 0) then qid = nil end
if qids[1] == parameters.property then
local propertyID = mw.text.trim(frame.args[1] or "")
valueraw, _, _ = getValueOfClaim(claim, nil, {["formatting"]="raw", ["lang"]=parameters.lang})
local input_parm = mw.text.trim(frame.args[2] or "")
if input_parm ~= "FETCH_WIKIDATA" then
return false, input_parm, nil, nil
end
local entity = mw.wikibase.getEntityObject(qid)
local claims
if entity and entity.claims then
claims = entity.claims[propertyID]
if not claims then
return false, "", nil, nil
end
else
valueraw, _, _ = getValueOfClaim(claim, qids[1], {["formatting"]="raw", ["lang"]=parameters.lang})
return false, "", nil, nil
end
if string.sub(valueraw or '', 1, 1) == "Q" then -- protection for 'no value'
return true, entity, claims, propertyID
parent_claims = mw.wikibase.getBestStatements(valueraw, qids[2])
end
if parent_claims[1] ~= nil then
local function isType(claims, type)
value, sortkey, _ = getValueOfClaim(parent_claims[1], nil, parameters)
return claims[1] and claims[1].mainsnak.snaktype == "value" and claims[1].mainsnak.datavalue.type == type
-- raw parent value needed fot while/black lists, lang for avoiding an error on types other than entity
end
valueraw, _, _ = getValueOfClaim(parent_claims[1], nil, {["formatting"]="raw", ["lang"]=parameters.lang})
local function getValue(entity, claims, propertyID, delim, labelHook)
if labelHook == nil then
labelHook = function (qnumber)
return nil;
end
end
return value, sortkey, valueraw
if isType(claims, "wikibase-entityid") then
local out = {}
for k, v in pairs(claims) do
local qnumber = "Q" .. v.mainsnak.datavalue.value["numeric-id"]
local sitelink = mw.wikibase.sitelink(qnumber)
local label = labelHook(qnumber) or mw.wikibase.label(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 table.concat(out, delim)
else
-- just return best values
return entity:formatPropertyValues(propertyID).value
end
end
 
local function getReferences(claim)
------------------------------------------------------------------------------
local refaliases = {
-- module global functions
citeWeb = "Q5637226",
 
author = "P50",
if debug then
publisher = "P123",
function p.inspectI18n(frame)
importedFrom = "P143",
local val = i18n
statedIn = "P248",
for _, key in pairs(frame.args) do
pages = "P304",
key = mw.text.trim(key)
publicationDate = "P577",
val = val[key]
startTime = "P580",
end
endTime = "P582",
return val
chapter = "P792",
end
retrieved = "P813",
end
referenceURL = "P854",
 
archiveURL = "P1065",
function p.descriptionIn(frame)
title = "P1476",
local langcode = frame.args[1]
quote = "P1683",
local id = frame.args[2]
shortName = "P1813",
-- return description of a Wikidata entity in the given language or the default language of this Wikipedia site
language = "P2439",
return mw.wikibase.getEntityObject(id).descriptions[langcode or wiki.langcode].value
archiveDate = "P2960"
end
}
 
local result = ""
function p.labelIn(frame)
-- traverse through all references
local langcode = frame.args[1]
for ref in pairs(claim.references or {}) do
local id = frame.args[2]
local refparts
-- return label of a Wikidata entity in the given language or the default language of this Wikipedia site
local refs = {}
return mw.wikibase.getEntityObject(id).labels[langcode or wiki.langcode].value
-- traverse through all parts of the current reference
end
for snakkey, snakval in pairs(claim.references[ref].snaks or {}) do
 
if snakkey ~= refaliases.importedFrom then -- "imported from" is not a proper reference
-- This is used to get a value, or a comma separated list of them if multiple values exist
for snakidx = 1, #snakval do
p.getValue = function(frame)
if snakidx > 1 then refparts = refparts .. ", " end
local delimdefault = ", " -- **internationalise later**
refparts = refparts or '' .. getSnakValue(snakval[snakidx], {lang={wiki.langcode}})
local delim = frame.args.delimiter or ""
delim = string.gsub(delim, '"', '')
if #delim == 0 then
delim = delimdefault
end
local go, errorOrentity, claims, propertyID = parseInput(frame)
if not go then
return errorOrentity
end
return getValue(errorOrentity, claims, propertyID, delim)
end
 
-- Same as above, but uses the short name property for label if available.
p.getValueShortName = function(frame)
local go, errorOrentity, claims, propertyID = parseInput(frame)
if not go then
return errorOrentity
end
local entity = errorOrentity
-- if wiki-linked value output as link if possible
local function labelHook (qnumber)
local label
local claimEntity = mw.wikibase.getEntity(qnumber)
if claimEntity ~= nil then
if claimEntity.claims.P1813 then
for k2, v2 in pairs(claimEntity.claims.P1813) do
if v2.mainsnak.datavalue.value.language == "en" then
label = v2.mainsnak.datavalue.value.text
end
end
refs[snakkey] = refparts
refparts = nil
end
end
if label == nil or label == "" then return nil end
-- get title of general template for citing web references
return label
local template = mw.wikibase.getSitelink(refaliases.citeWeb) or ""
end
template = mw.text.split(template, ":")[2] -- split off namespace from front
return getValue(errorOrentity, claims, propertyID, ", ", labelHook);
end
-- (1) if both "reference URL" and "title" are present, then use the general template for citing web references
 
if refs[refaliases.referenceURL] and (refs[refaliases.title] or refs[refaliases.statedIn]) and template then
-- This is used to get a value, or a comma separated list of them if multiple values exist
local citeParams = {}
-- from an arbitrary entry by using its QID.
citeParams[i18n['cite']['url']] = refs[refaliases.referenceURL]
-- Use : {{#invoke:Wikidata|getValueFromID|<ID>|<Property>|FETCH_WIKIDATA}}
citeParams[i18n['cite']['title']] = refs[refaliases.title] or refs[refaliases.statedIn]:match("^%[%[.-|(.-)%]%]")
-- E.g.: {{#invoke:Wikidata|getValueFromID|Q151973|P26|FETCH_WIKIDATA}} - to fetch value of 'spouse' (P26) from 'Richard Burton' (Q151973)
citeParams[i18n['cite']['website']] = refs[refaliases.statedIn]
-- Please use sparingly - this is an *expensive call*.
citeParams[i18n['cite']['language']] = refs[refaliases.language]
p.getValueFromID = function(frame)
citeParams[i18n['cite']['date']] = refs[refaliases.publicationDate]
local itemID = mw.text.trim(frame.args[1] or "")
citeParams[i18n['cite']['access-date']] = refs[refaliases.retrieved]
local propertyID = mw.text.trim(frame.args[2] or "")
citeParams[i18n['cite']['archive-url']] = refs[refaliases.archiveURL]
local input_parm = mw.text.trim(frame.args[3] or "")
citeParams[i18n['cite']['archive-date']] = refs[refaliases.archiveDate]
if input_parm == "FETCH_WIKIDATA" then
citeParams[i18n['cite']['publisher']] = refs[refaliases.publisher]
local entity = mw.wikibase.getEntity(itemID)
citeParams[i18n['cite']['quote']] = refs[refaliases.quote]
local claims
citeParams[i18n['cite']['pages']] = refs[refaliases.pages]
if entity and entity.claims then
citeParams[i18n['cite']['author']] = refs[refaliases.author]
claims = entity.claims[propertyID]
refparts = mw.getCurrentFrame():expandTemplate{title=template, args=citeParams}
end
if claims then
return getValue(entity, claims, propertyID, ", ")
else
return-- ""raw ouput
for k, v in orderedpairs(refs or {}, claim.references[ref]["snaks-order"]) do
end
if k and v then
else
if refparts then refparts = refparts .. ", " else refparts = "" end
return input_parm
refparts = refparts .. tostring(mw.wikibase.getLabel(k)) .. ": "
end
refparts = refparts .. v
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.getEntityObject()
if entity.claims[propertyID] ~= nil then
local out = {}
for k, v in pairs(entity.claims[propertyID]) do
for k2, v2 in pairs(v.qualifiers[qualifierID]) do
if v2.snaktype == 'value' then
out[#out + 1] = outputHook(v2);
end
end
end
return table.concat(out, ", "), true
else
return "", false
end
if refparts then result = result .. mw.getCurrentFrame():extensionTag("ref", refparts) end
else
return input_parm, false
end
end
p.getQualifierValue = function(frame)
local function outputValue(value)
local qnumber = "Q" .. value.datavalue.value["numeric-id"]
if (mw.wikibase.sitelink(qnumber)) then
return "[[" .. mw.wikibase.sitelink(qnumber) .. "]]"
else
return "[[:d:" .. qnumber .. "|" ..qnumber .. "]]<abbr title='" .. i18n["errors"]["local-article-not-found"] .. "'>[*]</abbr>"
end
end
return (getQualifier(frame, outputValue))
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)
local go, errorOrentity, claims, propertyID = parseInput(frame)
if not go then
return errorOrentity
end
local entity = errorOrentity
local result = entity:formatPropertyValues(propertyID, mw.wikibase.entity.claimRanks).value
-- if number type: remove thousand separators, bounds and units
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
 
-- ThisReturn isthe usedsite tolink get(for the unitcurrent namesite) for the numeric valuea returnedgiven bydata getRawValueitem.
function p.getUnits = functiongetSiteLink(frame)
if frame.args[1] == nil then
local go, errorOrentity, claims, propertyID = parseInput(frame)
entity = mw.wikibase.getEntity()
if not go then
if not entity then
return errorOrentity
return nil
end
end
local entity = errorOrentity
id = entity.id
local result = entity:formatPropertyValues(propertyID, mw.wikibase.entity.claimRanks).value
else
if isType(claims, "quantity") then
id = frame.args[1]
result = mw.ustring.sub(result, mw.ustring.find(result, " ")+1, -1)
end
return result
return mw.wikibase.getSitelink(id)
end
 
-- Set whitelist or blacklist values
-- This is used to get the unit's QID to use with the numeric value returned by getRawValue
local function setWhiteOrBlackList(type_list, num_qual, args)
p.getUnitID = function(frame)
local i = 0
local go, errorOrentity, claims = parseInput(frame)
local listed = false
if not go then
local list = {}
return errorOrentity
while i <= num_qual do
end
if args[type_list .. i] and args[type_list .. i] ~= '' then
local entity = errorOrentity
listed = true
local result
list[tostring(i)] = {}
if isType(claims, "quantity") then
local values = mw.text.split(args[type_list .. i], "/", true)
-- get the url for the unit entry on Wikidata:
for _, v in ipairs(values) do
result = claims[1].mainsnak.datavalue.value.unit
list[tostring(i)][v] = true
-- and just reurn the last bit from "Q" to the end (which is the QID):
end
result = mw.ustring.sub(result, mw.ustring.find(result, "Q"), -1)
end
return result
end
 
p.getRawQualifierValue = function(frame)
local function outputHook(value)
if value.datavalue.value["numeric-id"] then
return mw.wikibase.label("Q" .. value.datavalue.value["numeric-id"])
else
return value.datavalue.value
end
i = i + 1
end
return list, listed
local ret, gotData = getQualifier(frame, outputHook)
if gotData then
ret = string.upper(string.sub(ret, 1, 1)) .. string.sub(ret, 2)
end
return ret
end
 
function p.claim(frame)
-- This is used to get a date value for date_of_birth (P569), etc. which won't be linked
if mw.title.new(frame:getParent():getTitle()).isContentPage then
-- Dates and times are stored in ISO 8601 format (sort of).
if not mw.title.new(frame:getTitle()).isSubpage then
-- At present the local formatDate(date, precision, timezone) function doesn't handle timezone
-- invoked from a content page and not invoking a module subpage
-- So I'll just supply "Z" in the call to formatDate below:
return printError("not-from-content-page")
p.getDateValue = function(frame)
local date_format = mw.text.trim(frame.args[3] or i18n["datetime"]["default-format"])
local date_addon = mw.text.trim(frame.args[4] or i18n["datetime"]["default-addon"])
local go, errorOrentity, claims = parseInput(frame)
if not go then
return errorOrentity
end
local entity = errorOrentity
local out = {}
for k, v in pairs(claims) do
if v.mainsnak.datavalue.type == 'time' then
local timestamp = v.mainsnak.datavalue.value.time
local dateprecision = v.mainsnak.datavalue.value.precision
-- A year can be stored like this: "+1872-00-00T00:00:00Z",
-- 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.
-- So fix the month 0, day 0 timestamp to become 1 January instead:
timestamp = timestamp:gsub("%-00%-00T", "-01-01T")
out[#out + 1] = parseDateFull(timestamp, dateprecision, date_format, date_addon)
end
end
return tablep.concat_main(outframe.args, ", "frame:getParent().args)
end
p.getQualifierDateValue = function(frame)
local date_format = mw.text.trim(frame.args[4] or i18n["datetime"]["default-format"])
local date_addon = mw.text.trim(frame.args[5] or i18n["datetime"]["default-addon"])
local function outputHook(value)
local timestamp = value.datavalue.value.time
return parseDateValue(timestamp, date_format, date_addon)
end
return (getQualifier(frame, outputHook))
end
 
-- Entry point from other modules or debugging, with a list of arguments.
-- This is used to fetch all of the images with a particular property, e.g. image (P18), Gene Atlas Image (P692), etc.
-- From other modules use: require("Module:Wikidata")._main({item="Q...", property="P...", ...})
-- Parameters are | propertyID | value / FETCH_WIKIDATA / nil | separator (default=space) | size (default=frameless)
-- On debug console use: =p._main({item="Q...", lang="xx", property="P...", ...})
-- It will return a standard wiki-markup [[File:Filename | size]] for each image with a selectable size and separator (which may be html)
function p._main(args, pargs)
-- e.g. {{#invoke:Wikidata|getImages|P18|FETCH_WIKIDATA}}
--If a value is already set, use it
-- e.g. {{#invoke:Wikidata|getImages|P18|FETCH_WIKIDATA|<br>|250px}}
if args.value and args.value ~= '' then
-- If a property is chosen that is not of type "commonsMedia", it will return empty text.
return args.value
p.getImages = function(frame)
local sep = mw.text.trim(frame.args[3] or " ")
local imgsize = mw.text.trim(frame.args[4] or "frameless")
local go, errorOrentity, claims = parseInput(frame)
if not go then
return errorOrentity
end
local entity = errorOrentity
-- arguments
if (claims[1] and claims[1].mainsnak.datatype == "commonsMedia") then
local id = args.item or (pargs and pargs.item)
local out = {}
if id == nil or id == "" then
for k, v in pairs(claims) do
id = mw.wikibase.getEntityIdForCurrentPage()
local filename = v.mainsnak.datavalue.value
out[#out + 1] = "[[File:" .. filename .. "|" .. imgsize .. "]]"
end
return table.concat(out, sep)
else
return ""
end
local languages = findLang(args.lang)
end
local itemgender = args["itemgender"]
 
local idgender
-- This is used to get the TA98 (Terminologia Anatomica first edition 1998) values like 'A01.1.00.005' (property P1323)
if itemgender then
-- 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
if string.match(itemgender, "^P%d+$") then
-- uses the newer mw.wikibase calls instead of directly using the snaks
local snak = mw.wikibase.getBestStatements(id, itemgender)[1]
-- 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
if snak and snak.mainsnak and snak.mainsnak.datavalue and snak.mainsnak.datavalue.value then
p.getTAValue = function(frame)
idgender = snak.mainsnak.datavalue.value.id
local ent = mw.wikibase.getEntityObject()
local props = ent:formatPropertyValues('P1323')
local out = {}
local t = {}
for k, v in pairs(props) do
if k == 'value' then
t = mw.text.split( v, ", ")
for k2, v2 in pairs(t) do
out[#out + 1] = "[http://www.unifr.ch/ifaa/Public/EntryPage/TA98%20Tree/Entity%20TA98%20EN/" .. string.sub(v2, 2) .. "%20Entity%20TA98%20EN.htm " .. v2 .. "]"
end
elseif string.match(itemgender, "^Q%d+$") then
idgender = itemgender
end
end
local retproperty = tablestring.concatupper(out, args["<br>property"] or "")
local qualifierId = {}
if #ret == 0 then
qualifierId[1] = args["qualifier"] and string.upper(args["qualifier"]) or nil
ret = "Invalid TA"
local i = 2
while args["qualifier" .. i] do
qualifierId[i] = string.upper(args["qualifier" .. i])
i = i + 1
end
local parameter = args["formatting"] or ''; if parameter == "" then parameter = nil end
return ret
local case = args.case
end
local list = args["list"] or true; if (list == "false" or list == "no") then list = false end
 
local sorting_col = args.tablesort
--[[
local sorting_up = (args.sorting or "") ~= "-1"
This is used to return an image legend from Wikidata
local separator = args.separator
image is property P18
local conjunction = args.conjunction or args.separator
image legend is property P2096
local rowformat = args.rowformat
 
local references = args["references"]
Call as {{#invoke:Wikidata |getImageLegend | <PARAMETER> | lang=<ISO-639code> |id=<QID>}}
local showerrors = args["showerrors"]
Returns PARAMETER, unless it is equal to "FETCH_WIKIDATA", from Item QID (expensive call)
local default = args["default"]
If QID is omitted or blank, the current article is used (not an expensive call)
local editicon = not (args.editicon == "false" or args.editicon == "no")
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
local parameters = {["property"] = property, ["formatting"] = parameter, ["list"] = list, ["case"] = case,
 
["lang"] = languages, ["editicon"] = editicon,
Ranks are: 'preferred' > 'normal'
["separator"] = separator, ["conjunction"] = conjunction, ["qseparator"] = separator, ["qconjunction"] = conjunction}
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
-- defaults for table
Ranks: https://www.mediawiki.org/wiki/Extension:Wikibase_Client/Lua
local preformat, postformat = "", ""
]]
local whitelisted, blacklisted = false, false
 
local whitelist, blacklist = {}, {}
p.getImageLegend = function(frame)
if parameters.formatting == "table" then
-- look for named parameter id; if it's blank make it nil
parameters.separator = parameters.separator or "<br />"
local id = frame.args.id
parameters.conjunction = parameters.conjunction or "<br />"
if id and (#id == 0) then
parameters.qseparator = ", "
id = nil
parameters.qconjunction = ", "
end
if not rowformat then
 
rowformat = "$0 ($1"
-- look for named parameter lang
i = 2
-- it should contain a two-character ISO-639 language code
while qualifierId[i] do
-- if it's blank fetch the language of the local wiki
rowformat = rowformat .. ", $" .. i
local lang = frame.args.lang
i = i + 1
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 "")
if input_parm == "FETCH_WIKIDATA" then
local ent = mw.wikibase.getEntityObject(id)
local imgs
if ent and ent.claims then
imgs = ent.claims.P18
end
local imglbl
if imgs then
-- look for an image with 'preferred' rank
for k1, v1 in pairs(imgs) do
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
rowformat = rowformat .. ")"
-- if we don't find one, look for an image with 'normal' rank
ifelseif mw.ustring.find(notrowformat, imglbl"^[*#]") then
parameters.separator = "</li><li>"
for k1, v1 in pairs(imgs) do
parameters.conjunction = "</li><li>"
if v1.rank == "normal" and v1.qualifiers and v1.qualifiers.P2096 then
if mw.ustring.match(rowformat, "^[*#]") == "*" then
local imglbls = v1.qualifiers.P2096
preformat = "<ul><li>"
for k2, v2 in pairs(imglbls) do
postformat = "</li></ul>"
if v2.datavalue.value.language == lang then
else
imglbl = v2.datavalue.value.text
preformat = "<ol><li>"
break
postformat = "</li></ol>"
end
end
end
end
end
rowformat = mw.ustring.gsub(rowformat, "^[*#] ?", "")
end
return imglbl
-- set whitelist and blacklist values
else
whitelist, whitelisted = setWhiteOrBlackList("whitelist", #qualifierId, args)
return input_parm
blacklist, blacklisted = setWhiteOrBlackList("blacklist", #qualifierId, args)
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
-- Usage: {{#invoke:Wikidata |getPropertyIDs |<PropertyID> |FETCH_WIKIDATA}}
-- Usage: {{#invoke:Wikidata |getPropertyIDs |<PropertyID> |<InputParameter> |qid=<QID>}}
 
p.getPropertyIDs = function(frame)
local go, errorOrentity, propclaims = parseInput(frame)
if not go then
return errorOrentity
end
local entity = errorOrentity
-- 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
return table.concat(out, ", ")
else
-- not a wikibase-entityid, so return empty
return ""
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)
local entity = mw.wikibase.getEntityObject()
if not entity then return nil else return entity.id end
end
 
function p.claim(frame)
local property = frame.args[1] or ""
local id = frame.args["id"]
local qualifierId = frame.args["qualifier"]
local parameter = frame.args["parameter"]
local list = frame.args["list"]
local references = frame.args["references"]
local showerrors = frame.args["showerrors"]
local default = frame.args["default"]
if default then showerrors = nil end
 
-- get wikidata entity
local entity = mw.wikibase.getEntityObjectgetEntity(id)
if not entity then
if showerrors then return printError("entity-not-found") else return default end
Baris 928 ⟶ 827:
if showerrors then return printError("property-not-found") else return default end
end
 
-- set feminine case if gender is requested
local genderCase
local genderRequested = false
if parameters.case == "gender" or idgender then
genderRequested = true
elseif parameters.formatting == "table" then
if args["case0"] and args["case0"] == "gender" then
genderRequested = true
else
for i, qual in ipairs(qualifierId) do
if args["case" .. i] and args["case" .. i] == "gender" then
genderRequested = true
break
end
end
end
end
if genderRequested then
if feminineGender(idgender or id) then
genderCase = "feminineform"
if parameters.case == "gender" or idgender then
parameters.gender = genderCase
end
end
end
-- get initial sort indices
local sortindices = {}
Baris 937 ⟶ 862:
local comparator = function(a, b)
local rankmap = { deprecated = 2, normal = 1, preferred = 0 }
local ranka = rankmap[claims[a].rank or "normal"] .. string.format("%08d", a)
local rankb = rankmap[claims[b].rank or "normal"] .. string.format("%08d", b)
return ranka < rankb
end
table.sort(sortindices, comparator)
 
local result
local error
if parameters.list or parameters.formatting == "table" then
-- convert LF to line feed, <br /> may not work on some cases
local value
parameters.separator = parameters.separator == "LF" and "\010" or parameters.separator
parameters.conjunction = parameters.conjunction == "LF" and "\010" or parameters.conjunction
-- i18n separators
parameters.separator = parameters.separator or mw.message.new('Comma-separator'):inLanguage(parameters.lang[1]):plain()
parameters.conjunction = parameters.conjunction or (mw.message.new('And'):inLanguage(parameters.lang[1]):plain() .. mw.message.new('Word-separator'):inLanguage(parameters.lang[1]):plain())
-- iterate over all elements and return their value (if existing)
local value, valueq
result = {}
local sortkey, sortkeyq
local values = {}
local sortkeys = {}
local refs = {}
local firstrank = parameters.list == "firstrank" and claims[sortindices[1]].rank or ''
local rowlist = {} -- rows to list with whitelist or blacklist
for idx in pairs(claims) do
local claim = claims[sortindices[idx]]
local reference={}
value, error = getValueOfClaim(claim, qualifierId, parameter)
if not whitelisted then rowlist[idx] = true end
if firstrank ~= '' and firstrank ~= claim.rank then
break
end
if parameters.formatting == "table" then
local params = mw.clone(parameters)
params.formatting = args["colformat0"]; if params.formatting == "" then params.formatting = nil end
if args["case0"] then
if args["case0"] == "gender" then
params.gender = genderCase
else
params.case = args["case0"]
end
end
value, sortkey, error = getValueOfClaim(claim, nil, params)
if value then
values[#values + 1] = {}
sortkeys[#sortkeys + 1] = {}
refs[#refs + 1] = {}
if whitelist["0"] or blacklist["0"] then
local valueraw, _, _ = getValueOfClaim(claim, nil, {["formatting"]="raw", ["lang"]=params.lang})
if whitelist["0"] and whitelist["0"][valueraw or ""] then
rowlist[#values] = true
elseif blacklist["0"] and blacklist["0"][valueraw or ""] then
rowlist[#values] = false
end
end
for i, qual in ipairs(qualifierId) do
local j = tostring(i)
params.formatting = args["colformat" .. j]; if params.formatting == "" then params.formatting = nil end
params.case = parameters.case
params.gender = parameters.gender
if args["case" .. j] then
if args["case" .. j] == "gender" then
params.gender = genderCase
else
params.case = args["case" .. j]
end
end
local valueq, sortkeyq, valueraw
if qual == property then -- hack for getting the property with another formatting, i.e. colformat1=raw
valueq, sortkeyq, _ = getValueOfClaim(claim, nil, params)
else
for q in mw.text.gsplit(qual, '%s*OR%s*') do
if string.find(q, ".+/.+") then
valueq, sortkeyq, valueraw = getValueOfParentClaim(claim, q, params)
elseif string.find(q, "^/.+") then
local claim2 = findClaims(entity, string.sub(q, 2))
if claim2 then
valueq, sortkeyq, _ = getValueOfClaim(claim2[1], nil, params)
end
else
valueq, sortkeyq, _ = getValueOfClaim(claim, q, params)
end
if valueq then break end
end
end
values[#values]["col" .. j] = valueq
sortkeys[#sortkeys]["col" .. j] = sortkeyq or valueq
if whitelist[j] or blacklist[j] then
valueq = valueraw or getValueOfClaim(claim, qual, {["formatting"]="raw", ["lang"]=params.lang})
if whitelist[j] and whitelist[j][valueq or ""] then
rowlist[#values] = true
elseif blacklist[j] and blacklist[j][valueq or ""] then
rowlist[#values] = false
end
end
end
end
else
value, sortkey, error = getValueOfClaim(claim, qualifierId[1], parameters)
values[#values + 1] = {}
sortkeys[#sortkeys + 1] = {}
refs[#refs + 1] = {}
end
if not value and showerrors then value = error end
if value then
if value and references then value = value .. getReferences(frame, claim) end
if references and claim.references then reference=claim.references end
refs[#refs]["col0"] =reference
values[#values]["col0"] = value
sortkeys[#sortkeys]["col0"] = sortkey or value
end
end
-- sort and format results
sortindices = {}
for idx in pairs(values) do
sortindices[#sortindices + 1] = idx
end
if sorting_col then
local sorting_table = mw.text.split(sorting_col, '/', true)
local comparator = function(a, b)
local valuea, valueb
local i = 1
while valuea == valueb and i <= #sorting_table do
valuea = sortkeys[a]["col" .. sorting_table[i]] or ''
valueb = sortkeys[b]["col" .. sorting_table[i]] or ''
i = i + 1
end
if sorting_up then
return valueb > valuea
end
return valueb < valuea
end
table.sort(sortindices, comparator)
end
result = {}
for idx in pairs(values) do
local valuerow = values[sortindices[idx]]
local reference = getReferences({["references"] = refs[sortindices[idx]]["col0"]})
 
value = valuerow["col0"]
if parameters.formatting == "table" then
if not rowlist[sortindices[idx]] then
value = nil
else
value = mw.ustring.gsub(rowformat .. "$", "$0", value) -- fake end character added for easy gsub
value = mw.ustring.gsub(value, "$R0", reference) -- add reference
local rowformatting = rowformat .. "$"
for i, _ in ipairs(qualifierId) do
local valueq = valuerow["col" .. i]
if args["rowsubformat" .. i] and valueq then
-- add fake end character $
-- gsub $i not followed by a number so $1 doesn't match $10, $11...
-- remove fake end character
valueq = mw.ustring.gsub(args["rowsubformat" .. i] .. "$", "$" .. i .. "(%D)", valueq .. "%1")
valueq = string.sub(valueq, 1, -2)
rowformatting = mw.ustring.gsub(rowformatting, "$" .. i .. "(%D)", args["rowsubformat" .. i] .. "%1")
end
valueq = valueq and urlEscapes(valueq) or ''
value = mw.ustring.gsub(value, "$" .. i .. "(%D)", valueq .. "%1")
end
value = string.sub(value, 1, -2) -- remove fake end character
value = expandBraces(value, rowformatting)
end
else
value = expandBraces(value, parameters.formatting)
end
result[#result + 1] = value
if not parameters.list then
break
end
end
result = preformat .. mw.text.listToText(result, parameters.separator, parameters.conjunction) .. postformat
result = table.concat(result, list)
else
-- return first element
local claim = claims[sortindices[1]]
result, _, error = getValueOfClaim(claim, qualifierId[1], parameterparameters)
if result and references then result = result .. getReferences(frame, claim) end
end
 
if result then return result else
if showerrors then return error else return default end
Baris 969 ⟶ 1.044:
end
 
-- This is used to get the TA98 (Terminologia Anatomica first edition 1998) values like 'A01.1.00.005' (property P1323)
-- look into entity object
-- 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
function p.ViewSomething(frame)
-- uses the newer mw.wikibase calls instead of directly using the snaks
local f = (frame.args[1] or frame.args.id) and frame or frame:getParent()
-- 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
local id = f.args.id
p.getTAValue = function(frame)
if id and (#id == 0) then
local ent = mw.wikibase.getEntity()
id = nil
local props = ent:formatPropertyValues('P1323')
end
local out = {}
local data = mw.wikibase.getEntityObject(id)
local t = {}
if not data then
for k, v in pairs(props) do
return nil
if k == 'value' then
end
t = mw.text.split( v, ", ")
 
for k2, v2 in pairs(t) do
local i = 1
out[#out + 1] = "[http://www.unifr.ch/ifaa/Public/EntryPage/TA98%20Tree/Entity%20TA98%20EN/" .. string.sub(v2, 2) .. "%20Entity%20TA98%20EN.htm " .. v2 .. "]"
while true do
end
local index = f.args[i]
end
if not index then
end
if type(data) == "table" then
local ret = table.concat(out, "<br> ")
return mw.text.jsonEncode(data, mw.text.JSON_PRESERVE_KEYS + mw.text.JSON_PRETTY)
if #ret == 0 then
else
ret = "Invalid TA"
return tostring(data)
end
return ret
end
 
data = data[index] or data[tonumber(index)]
if not data then
return
end
 
i = i + 1
end
end
 
-- debugging functions, see module ../debug.
-- getting sitelink of a given wiki
function p.ViewSomething(frame)
-- get sitelink of current item if qid not supplied
return require(wiki.module_title .. "/debug").ViewSomething(frame)
function p.getSiteLink(frame)
local qid = frame.args.qid
if qid == "" then qid = nil end
local f = mw.text.trim( frame.args[1] or "")
local entity = mw.wikibase.getEntity(qid)
if not entity then
return
end
local link = entity:getSitelink( f )
if not link then
return
end
return link
end
 
function p.Dump(frame)
return require(wiki.module_title .. "/debug").Dump(frame)
local f = (frame.args[1] or frame.args.id) and frame or frame:getParent()
end
local data = mw.wikibase.getEntityObject(f.args.id)
if not data then
return i18n.warnDump
end
 
function p.getEntityFromTree(frame)
local i = 1
return require(wiki.module_title .. "/debug").getEntityFromTree(frame)
while true do
end
local index = f.args[i]
if not index then
return "<pre>"..mw.dumpObject(data).."</pre>".. i18n.warnDump
end
 
-- getParentValues: returns a property value with its instance label fetching a recursive tree
data = data[index] or data[tonumber(index)]
if not data then
return i18n.warnDump
end
 
local function uc_first(word)
i = i + 1
return mw.ustring.upper(mw.ustring.sub(word, 1, 1)) .. mw.ustring.sub(word, 2)
end
end
 
 
local function getPropertyValue(id, property, parameter, langs, editicon)
Baris 1.294 ⟶ 1.339:
return (label or id) .. pencil
end
end
 
-- mw.wikibase.getLabelWithLang or getLabelByLang with a table of languages
local function getLabelByLangs(id, languages)
local label
local lang = languages[1]
if lang == wiki.langcode then
-- using getLabelWithLang when possible instead of getLabelByLang
label, lang = mw.wikibase.getLabelWithLang(id)
else
for _, l in ipairs(languages) do
label = mw.wikibase.getLabelByLang(id, l)
lang = l
if label then
break
end
end
end
return label, lang
end