Module:NUMBEROF: Difference between revisions

Content deleted Content added
wrong submodule name
update from sandbox with new aliases
 
(16 intermediate revisions by 3 users not shown)
Line 1:
local aliases = {
-- Implement {{NUMBEROF}} by extracting statistics from
-- commons https://= 'commons.wikimedia.org/wiki/Data:Wikipedia_statistics/data.tab',
donate = 'donate.wikimedia',
foundation = 'foundation.wikimedia',
incubator = 'incubator.wikimedia',
meta = 'meta.wikimedia',
species = 'species.wikimedia',
wikidata = 'www.wikidata',
wikifunctions = 'www.wikifunctions',
wikimania = 'wikimania.wikimedia',
wikitech = 'wikitech.wikimedia',
}
 
local function trimArg(arg, i)
Line 52 ⟶ 62:
 
local function main(frame)
local metaWords = { active = true, closed = true, languages = true, }
local args = frame:getParent().args
local action = trimArg(args[1], 1) -- activeusers, admins, articles, edits, files, pages, users, depth, active, closed, languages
if action:sub(1, 8) == 'numberof' then -- numberofX is an alias for X
action = trimArg(action:sub(9), 1)
end
local wantMeta = metaWords[action]
local site = trimArg(args[2], 2) -- "af" or "af.wikipedia" or "af.wikiquote" etc., including "total"
local site = trimArg(args[2], 2)
if not site:find('.', 1, true) then
site = aliases[site] or site
if not wantMeta and not site:find('.', 1, true) then
local -- site =is trimArg(args[2], 2) --like "af" or "af.wikipedia" or "af.wikiquote" etc., including "total"
site = site .. '.wikipedia'
end
local wantComma = trimArg(args[3]) -- nil for no commas in output; "N" or anything nonblank inserts commas
local result = getIfLocal(site, action)
if not resultwantMeta then
local data = mw.loadData('Module:NUMBEROF/datameta')
local mapnrActive = data.mapnrActive[site]
datalocal nrClosed = data.datanrClosed[site]
if nrActive or nrClosed then
result = data[site]
-- If either is set, site is valid but there may not be an entry for both active and closed.
if result then
nrActive = nrActive or 0
result = getValue(result, action, map)
nrClosed = nrClosed or 0
if type(parm)action == 'numberactive' then
result = nrActive
elseif action == 'closed' then
result = nrClosed
elseif action == 'languages' then
result = nrActive + nrClosed
end
end
else
result = getIfLocal(site, action)
if not result then
local data = mw.loadData('Module:NUMBEROF/rankdata')
local map = data.map
data = data.data
result = data[site]
if result then
result = getValue(result, action, map)
end
end
end
if result then
if wantComma then
result = mw.language.getContentLanguage():formatNum(result)
end
return result -- number or formatted string
Line 82 ⟶ 115:
 
local function rank(frame)
-- This ranksRank sites (onlyin a specified sister xxx.wikipedia)project by their number of articles.
local args = frame:getParent().args
local parm = trimArg(args[1], 1) -- a number like 12 or a site name like "af" or(not "af.wikipedia")
local base = trimArg(args[2]) or 'wikipedia' -- base of full site name like "wikipedia" or "wikiquote"
local data = mw.loadData('Module:NUMBEROF/rank')
local wantComma = trimArg(args[3])
local result
local data = mw.loadData('Module:NUMBEROF/' .. (base == 'wikipedia' and 'rank' or 'other'))
parm = tonumber(parm) or parm
data = data[base]
if type(parm) == 'number' then
if resultdata then
result = data.rankByIndex[parm]
local result
parm = tonumber(parm) or parm
if type(parm) == 'number' then
result = data.rankByIndex[parm]
else
result = data.rankBySite[parm]
if result and wantComma then
result = mw.language.getContentLanguage():formatNum(result)
end
end
if result then
result =return result:sub(1, -11) -- trimnumber trailingor '.wikipedia'string
end
else
if not parm:find('.', 1, true) then
parm = parm .. '.wikipedia'
end
result = data.rankBySite[parm]
end
if result then
return result -- number or string
end
return -1