Module:NUMBEROF: Difference between revisions

Content deleted Content added
implement DEPTH parameter for Wikipedias that use it
update from sandbox with new aliases
 
(22 intermediate revisions by 3 users not shown)
Line 1:
local paliases = {}
commons = 'commons.wikimedia',
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 5 ⟶ 16:
if arg == '' then
if i then
error('Parameter ' .. i .. ' is missing. See [[Template:NUMBEROF]]template documentation')
end
return nil
Line 16 ⟶ 27:
-- https://meta.wikimedia.org/wiki/Wikipedia_article_depth
-- This gives silly results if, for example, the number of articles is small.
iflocal stats.pagesn == 0{ or stats.'articles', =='edits', 0'pages' then}
if map then
for i, v in ipairs(n) do
n[i] = map[v]
end
end
for i, v in ipairs(n) do
n[i] = stats[v] or 0
end
local articles, edits, pages = n[1], n[2], n[3]
if pages == 0 or articles == 0 then
return 0
end
return math.floor((stats.edits/stats.pages) * ((stats.pages - stats.articles)/stats.articles)^2)
end
if map then
Line 31 ⟶ 52:
-- return numberof result for given action, or nil.
-- This is faster than reading the cached table, and gives the current value.
local localSite = string.match(mw.site.server, '.*//(.*)%.org$') -- examples: 'enaf.wikipedia', 'commons.wikimedia'
if site == localSite then
if action == 'activeusers' then
Line 40 ⟶ 61:
end
 
local function p.numberofmain(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) -- "en" or "en.wikipedia" or "en.wikiquote" etc.
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
-- site is 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
if site == 'en2.wikipedia'wantMeta then
local data = mw.loadData('Module:NUMBEROF/meta')
site = 'en.wikipedia' -- get cached data rather than live values
local nrActive = data.nrActive[site]
local nrClosed = data.nrClosed[site]
if nrActive or nrClosed then
-- If either is set, site is valid but there may not be an entry for both active and closed.
nrActive = nrActive or 0
nrClosed = nrClosed or 0
if action == 'active' then
result = data[site]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
end
local data = mw.loadData('Module:NUMBEROF/data')
if not result then
local datamap = mwdata.loadData('Module:NUMBEROF/data')map
local map data = data.mapdata
data result = data.data[site]
if result then
result = data[site]
if result = getValue(result, action, thenmap)
end
result = getValue(result, action, map)
end
end
if result then
if wantComma then
result = mw.language.getContentLanguage():formatNum(result)
end
return result -- number or formatted string
end
return '-1'
end
 
local function rank(frame)
-- Rank sites in a specified sister 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" (not "af.wikipedia")
local sitebase = trimArg(args[2], 2) or 'wikipedia' -- "en"base orof full site name like "en.wikipedia" or "en.wikiquote" etc.
local wantComma = trimArg(args[3])
local data = mw.loadData('Module:NUMBEROF/' .. (base == 'wikipedia' and 'rank' or 'other'))
data = data[base]
if data then
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
return result -- number or string
end
end
return -1
end
 
return p{
main = main,
rank = rank,
}