Module:Wd: Difference between revisions
From Zoophilia Wiki
Jump to navigationJump to search
meta>Thayts Changed logic to determine qualifier ID without the need for escaping |
meta>Thayts Added support for claim ranks |
||
Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
local outPreferred = {} | |||
local outNormal = {} | |||
local outDeprecated = {} | |||
local bestRank = true | |||
local foundRank = 3 | |||
local maxRank, minRank | |||
local function unknownDatatypeError(type) | local function unknownDatatypeError(type) | ||
Line 42: | Line 51: | ||
return snakValue == value | return snakValue == value | ||
end | |||
local function setRankBoundaries(rank) | |||
local rankPos | |||
if (rank == "best") then | |||
return -- use defaults | |||
else | |||
bestRank = false | |||
end | |||
if (rank == "all") then | |||
maxRank = 1 | |||
minRank = 3 | |||
return | |||
end | |||
if (rank:sub(1,9) == "preferred") then | |||
rankPos = 1 | |||
elseif (rank:sub(1,6) == "normal") then | |||
rankPos = 2 | |||
elseif (rank:sub(1,10) == "deprecated") then | |||
rankPos = 3 | |||
end | |||
if (rank:sub(-1) == "+") then | |||
maxRank = 1 | |||
minRank = rankPos | |||
elseif (rank:sub(-1) == "-") then | |||
maxRank = rankPos | |||
minRank = 3 | |||
else | |||
maxRank = rankPos | |||
minRank = rankPos | |||
end | |||
end | |||
local function convertRank(rank) | |||
if (rank == "preferred") then | |||
return 1 | |||
elseif (rank == "normal") then | |||
return 2 | |||
elseif (rank == "deprecated") then | |||
return 3 | |||
else | |||
return 4 -- default (in its literal sense) | |||
end | |||
end | |||
local function rankMatches(rankPos) | |||
if bestRank then | |||
if foundRank > rankPos then | |||
foundRank = rankPos | |||
-- found a better rank, reset worse rank outputs | |||
if foundRank == 1 then | |||
outNormal = {} | |||
outDeprecated = {} | |||
elseif foundRank == 2 then | |||
outDeprecated = {} | |||
end | |||
end | |||
return foundRank >= rankPos -- == would also work here | |||
else | |||
return (maxRank <= rankPos and rankPos <= minRank) | |||
end | |||
end | |||
local function appendOutput(value, rankPos) | |||
if rankPos == 1 then | |||
outPreferred[#outPreferred + 1] = value | |||
elseif rankPos == 2 then | |||
outNormal[#outNormal + 1] = value | |||
elseif rankPos == 3 then | |||
outDeprecated[#outDeprecated + 1] = value | |||
end | |||
end | |||
local function out() | |||
local out = "" | |||
outPreferred = table.concat(outPreferred, ", ") | |||
outNormal = table.concat(outNormal, ", ") | |||
outDeprecated = table.concat(outDeprecated, ", ") | |||
if outPreferred ~= "" then | |||
out = outPreferred | |||
end | |||
if outNormal ~= "" then | |||
if out ~= "" then | |||
out = out .. "; " | |||
end | |||
out = out .. outNormal | |||
end | |||
if outDeprecated ~= "" then | |||
if out ~= "" then | |||
out = out .. "; " | |||
end | |||
out = out .. outDeprecated | |||
end | |||
return out | |||
end | end | ||
p.property = function(frame) | p.property = function(frame) | ||
local entity, propertyID, claims | local entity, propertyID, claims, rankPos | ||
local linked = false | local linked = false | ||
local nextArg = mw.text.trim(frame.args[1] or "") | local nextArg = mw.text.trim(frame.args[1] or "") | ||
local nextIndex = 2 | local nextIndex = 2 | ||
if nextArg:match('^preferred[+-]?$') or nextArg:match('^normal[+-]?$') or nextArg:match('^deprecated[+-]?$') or nextArg == "all" or nextArg == "best" then | |||
setRankBoundaries(nextArg) | |||
nextArg = mw.text.trim(frame.args[nextIndex] or "") | |||
nextIndex = nextIndex + 1 | |||
end | |||
if nextArg == "linked" then | if nextArg == "linked" then | ||
Line 66: | Line 188: | ||
if entity and entity.claims then claims = entity.claims[propertyID] end | if entity and entity.claims then claims = entity.claims[propertyID] end | ||
if claims then | if claims then | ||
for k, v in pairs(claims) do | for k, v in pairs(claims) do | ||
if v.mainsnak.snaktype == 'value' then | rankPos = convertRank(v.rank) | ||
if rankMatches(rankPos) then | |||
if v.mainsnak.snaktype == 'value' then | |||
if linked and v.mainsnak.datavalue.type == 'wikibase-entityid' then | |||
local itemID = "Q" .. v.mainsnak.datavalue.value['numeric-id'] | |||
local linkTarget = mw.wikibase.sitelink(itemID) | |||
local linkName = mw.wikibase.label(itemID) -- == getValue(v.mainsnak) | |||
if linkTarget then | |||
appendOutput("[[" .. linkTarget .. "|" .. (linkName or linkTarget) .. "]]", rankPos) | |||
elseif linkName then | |||
appendOutput(linkName, rankPos) | |||
end | |||
else | |||
local value = getValue(v.mainsnak) | |||
if value then appendOutput(value, rankPos) end | |||
end | end | ||
end | end | ||
end | end | ||
end | end | ||
return | return out() | ||
else | else | ||
return "" | return "" | ||
Line 92: | Line 216: | ||
p.qualifier = function(frame) | p.qualifier = function(frame) | ||
local entity, propertyID, propertyValue, qualifierID, claims | local entity, propertyID, propertyValue, qualifierID, claims, rankPos | ||
local linked = false | local linked = false | ||
local nextArg = mw.text.trim(frame.args[1] or "") | local nextArg = mw.text.trim(frame.args[1] or "") | ||
local nextIndex = 2 | local nextIndex = 2 | ||
if nextArg:match('^preferred[+-]?$') or nextArg:match('^normal[+-]?$') or nextArg:match('^deprecated[+-]?$') or nextArg == "all" or nextArg == "best" then | |||
setRankBoundaries(nextArg) | |||
nextArg = mw.text.trim(frame.args[nextIndex] or "") | |||
nextIndex = nextIndex + 1 | |||
end | |||
if nextArg == "linked" then | if nextArg == "linked" then | ||
Line 129: | Line 259: | ||
if entity and entity.claims then claims = entity.claims[propertyID] end | if entity and entity.claims then claims = entity.claims[propertyID] end | ||
if claims then | if claims then | ||
for k, v in pairs(claims) do | for k, v in pairs(claims) do | ||
rankPos = convertRank(v.rank) | |||
if (not propertyValue or (v.mainsnak.snaktype == 'value' and snakEqualsValue(v.mainsnak, propertyValue))) and v.qualifiers[qualifierID] then | if (not propertyValue or (v.mainsnak.snaktype == 'value' and snakEqualsValue(v.mainsnak, propertyValue))) and v.qualifiers[qualifierID] then | ||
for k2, v2 in pairs(v.qualifiers[qualifierID]) do | if rankMatches(rankPos) then | ||
for k2, v2 in pairs(v.qualifiers[qualifierID]) do | |||
if v2.snaktype == 'value' then | |||
if linked and v2.datavalue.type == 'wikibase-entityid' then | |||
local itemID = "Q" .. v2.datavalue.value['numeric-id'] | |||
local linkTarget = mw.wikibase.sitelink(itemID) | |||
local linkName = mw.wikibase.label(itemID) -- == getValue(v2) | |||
if linkTarget then | |||
appendOutput("[[" .. linkTarget .. "|" .. (linkName or linkTarget) .. "]]", rankPos) | |||
elseif linkName then | |||
appendOutput(linkName, rankPos) | |||
end | |||
else | |||
local value = getValue(v2) | |||
if value then appendOutput(value, rankPos) end | |||
end | end | ||
end | end | ||
end | end | ||
Line 152: | Line 284: | ||
end | end | ||
end | end | ||
return | return out() | ||
else | else | ||
return "" | return "" |
Revision as of 11:23, 28 August 2016
Documentation for this module may be created at Module:Wd/doc
local p = {}
local outPreferred = {}
local outNormal = {}
local outDeprecated = {}
local bestRank = true
local foundRank = 3
local maxRank, minRank
local function unknownDatatypeError(type)
return "<strong class=\"error\">Unknown or unsupported datatype '" .. type .. "'</strong>"
end
local function getValue(snak)
if snak.snaktype ~= 'value' then return nil end
if snak.datavalue.type == 'string' then
return snak.datavalue.value
elseif snak.datavalue.type == 'monolingualtext' then
if snak.datavalue.value['language'] == "en" then
return snak.datavalue.value['text']
else
return nil
end
elseif snak.datavalue.type == 'quantity' then
-- strip + signs from front
return mw.ustring.gsub(snak.datavalue.value['amount'], "\+(.+)", "%1")
elseif snak.datavalue.type == 'wikibase-entityid' then
return mw.wikibase.label("Q" .. snak.datavalue.value['numeric-id'])
else
return unknownDatatypeError(snak.datavalue.type)
end
end
local function getRawValue(snak)
if snak.snaktype ~= 'value' then return nil end
if snak.datavalue.type == 'wikibase-entityid' then
return "Q" .. snak.datavalue.value['numeric-id']
else
return getValue(snak)
end
end
local function snakEqualsValue(snak, value)
local snakValue = getRawValue(snak)
if snakValue and snak.datavalue.type == 'wikibase-entityid' then value = value:upper() end
return snakValue == value
end
local function setRankBoundaries(rank)
local rankPos
if (rank == "best") then
return -- use defaults
else
bestRank = false
end
if (rank == "all") then
maxRank = 1
minRank = 3
return
end
if (rank:sub(1,9) == "preferred") then
rankPos = 1
elseif (rank:sub(1,6) == "normal") then
rankPos = 2
elseif (rank:sub(1,10) == "deprecated") then
rankPos = 3
end
if (rank:sub(-1) == "+") then
maxRank = 1
minRank = rankPos
elseif (rank:sub(-1) == "-") then
maxRank = rankPos
minRank = 3
else
maxRank = rankPos
minRank = rankPos
end
end
local function convertRank(rank)
if (rank == "preferred") then
return 1
elseif (rank == "normal") then
return 2
elseif (rank == "deprecated") then
return 3
else
return 4 -- default (in its literal sense)
end
end
local function rankMatches(rankPos)
if bestRank then
if foundRank > rankPos then
foundRank = rankPos
-- found a better rank, reset worse rank outputs
if foundRank == 1 then
outNormal = {}
outDeprecated = {}
elseif foundRank == 2 then
outDeprecated = {}
end
end
return foundRank >= rankPos -- == would also work here
else
return (maxRank <= rankPos and rankPos <= minRank)
end
end
local function appendOutput(value, rankPos)
if rankPos == 1 then
outPreferred[#outPreferred + 1] = value
elseif rankPos == 2 then
outNormal[#outNormal + 1] = value
elseif rankPos == 3 then
outDeprecated[#outDeprecated + 1] = value
end
end
local function out()
local out = ""
outPreferred = table.concat(outPreferred, ", ")
outNormal = table.concat(outNormal, ", ")
outDeprecated = table.concat(outDeprecated, ", ")
if outPreferred ~= "" then
out = outPreferred
end
if outNormal ~= "" then
if out ~= "" then
out = out .. "; "
end
out = out .. outNormal
end
if outDeprecated ~= "" then
if out ~= "" then
out = out .. "; "
end
out = out .. outDeprecated
end
return out
end
p.property = function(frame)
local entity, propertyID, claims, rankPos
local linked = false
local nextArg = mw.text.trim(frame.args[1] or "")
local nextIndex = 2
if nextArg:match('^preferred[+-]?$') or nextArg:match('^normal[+-]?$') or nextArg:match('^deprecated[+-]?$') or nextArg == "all" or nextArg == "best" then
setRankBoundaries(nextArg)
nextArg = mw.text.trim(frame.args[nextIndex] or "")
nextIndex = nextIndex + 1
end
if nextArg == "linked" then
linked = true
nextArg = mw.text.trim(frame.args[nextIndex] or "")
nextIndex = nextIndex + 1
end
if nextArg:sub(1,1):upper() == "Q" then
entity = mw.wikibase.getEntity(nextArg)
propertyID = mw.text.trim(frame.args[nextIndex] or "")
else
entity = mw.wikibase.getEntity()
propertyID = nextArg
end
if entity and entity.claims then claims = entity.claims[propertyID] end
if claims then
for k, v in pairs(claims) do
rankPos = convertRank(v.rank)
if rankMatches(rankPos) then
if v.mainsnak.snaktype == 'value' then
if linked and v.mainsnak.datavalue.type == 'wikibase-entityid' then
local itemID = "Q" .. v.mainsnak.datavalue.value['numeric-id']
local linkTarget = mw.wikibase.sitelink(itemID)
local linkName = mw.wikibase.label(itemID) -- == getValue(v.mainsnak)
if linkTarget then
appendOutput("[[" .. linkTarget .. "|" .. (linkName or linkTarget) .. "]]", rankPos)
elseif linkName then
appendOutput(linkName, rankPos)
end
else
local value = getValue(v.mainsnak)
if value then appendOutput(value, rankPos) end
end
end
end
end
return out()
else
return ""
end
end
p.qualifier = function(frame)
local entity, propertyID, propertyValue, qualifierID, claims, rankPos
local linked = false
local nextArg = mw.text.trim(frame.args[1] or "")
local nextIndex = 2
if nextArg:match('^preferred[+-]?$') or nextArg:match('^normal[+-]?$') or nextArg:match('^deprecated[+-]?$') or nextArg == "all" or nextArg == "best" then
setRankBoundaries(nextArg)
nextArg = mw.text.trim(frame.args[nextIndex] or "")
nextIndex = nextIndex + 1
end
if nextArg == "linked" then
linked = true
nextArg = mw.text.trim(frame.args[nextIndex] or "")
nextIndex = nextIndex + 1
end
if nextArg:sub(1,1):upper() == "Q" then
entity = mw.wikibase.getEntity(nextArg)
propertyID = mw.text.trim(frame.args[nextIndex] or "")
nextIndex = nextIndex + 1
else
entity = mw.wikibase.getEntity()
propertyID = nextArg
end
nextArg = mw.text.trim(frame.args[nextIndex] or "")
nextIndex = nextIndex + 1
qualifierID = nextArg
nextArg = mw.text.trim(frame.args[nextIndex] or "")
nextIndex = nextIndex + 1
if nextArg == "" then
propertyValue = nil
else
propertyValue = qualifierID
qualifierID = nextArg
end
if entity and entity.claims then claims = entity.claims[propertyID] end
if claims then
for k, v in pairs(claims) do
rankPos = convertRank(v.rank)
if (not propertyValue or (v.mainsnak.snaktype == 'value' and snakEqualsValue(v.mainsnak, propertyValue))) and v.qualifiers[qualifierID] then
if rankMatches(rankPos) then
for k2, v2 in pairs(v.qualifiers[qualifierID]) do
if v2.snaktype == 'value' then
if linked and v2.datavalue.type == 'wikibase-entityid' then
local itemID = "Q" .. v2.datavalue.value['numeric-id']
local linkTarget = mw.wikibase.sitelink(itemID)
local linkName = mw.wikibase.label(itemID) -- == getValue(v2)
if linkTarget then
appendOutput("[[" .. linkTarget .. "|" .. (linkName or linkTarget) .. "]]", rankPos)
elseif linkName then
appendOutput(linkName, rankPos)
end
else
local value = getValue(v2)
if value then appendOutput(value, rankPos) end
end
end
end
end
end
end
return out()
else
return ""
end
end
p.label = function(frame)
local linked = false
local nextArg = mw.text.trim(frame.args[1] or "")
local nextIndex = 2
if nextArg == "linked" then
linked = true
nextArg = mw.text.trim(frame.args[nextIndex] or "")
nextIndex = nextIndex + 1
end
if nextArg then
if linked and nextArg:sub(1,1):upper() == "Q" then
local linkTarget = mw.wikibase.sitelink(nextArg)
local linkName = mw.wikibase.label(nextArg)
if linkTarget then
return "[[" .. linkTarget .. "|" .. (linkName or linkTarget) .. "]]"
else
return linkName
end
else
return mw.wikibase.label(nextArg)
end
else
return mw.wikibase.label()
end
end
return p