Module:NUMBEROF: Difference between revisions

Content deleted Content added
No edit summary
update from sandbox with new aliases
 
(32 intermediate revisions by 4 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)
if arg == ""mw.text.trim(arg or arg == nil then'')
if arg == '' then
return nil
if i then
else
error('Parameter ' .. i .. ' is missing. See template documentation')
return mw.ustring.lower(mw.text.trim(arg))
end
return nil
end
return mw.ustring.lower(arg)
end
 
local function tableLengthgetValue(Tstats, action, map)
if action == 'depth' then
local count = 0
-- https://meta.wikimedia.org/wiki/Wikipedia_article_depth
for _ in pairs(T) do count = count + 1 end
-- This gives silly results if, for example, the number of articles is small.
return count
local n = { 'articles', 'edits', 'pages' }
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((edits/pages) * ((pages - articles)/articles)^2)
end
if map then
action = map[action]
end
return stats[action]
end
 
local function getIfLocal(site, action)
-- Credit: http://lua-users.org/wiki/FormattingNumbers
-- If wanted site is the local site where module is running,
function comma_value(amount)
-- return numberof result for given action, or nil.
local formatted = amount
-- This is faster than reading the cached table, and gives the current value.
while true do
local localSite = string.match(mw.site.server, '.*//(.*)%.org$') -- examples: 'af.wikipedia', 'commons.wikimedia'
formatted, k = string.gsub(formatted, "^(-?%d+)(%d%d%d)", '%1,%2')
if site if (k==0) localSite then
if action == 'activeusers' then
break
action = 'activeUsers'
end
end
return getValue(mw.site.stats, action)
return formatted
end
end
 
local function main(frame)
 
local metaWords = { active = true, closed = true, languages = true, }
function p.numberof(frame)
local pframeargs = frame:getParent().args
local action = trimArg(args[1], 1) -- activeusers, admins, articles, edits, files, pages, users, depth, active, closed, languages
local args = pframe.args
if action:sub(1, 8) == 'numberof' then -- numberofX is an alias for X
local tname = "NUMBEROF"
action = trimArg(action:sub(9), 1)
local result = 0
local data = mw.ext.data.get("Wikipedia_statistics/data.tab")
local action = trimArg(args[1]) -- "ARTICLES, PAGES, EDITS, USERS, ACTIVEUSERS, ADMINS or FILES"
if not action then
error("Parameter 1 is missing. See [[Template:" .. tname .. "]] documentation")
end
local wantMeta = metaWords[action]
local site = trimArg(args[2]) -- "en" or "en.wikipedia" or "en.wikiquote" etc..
if notlocal site then= trimArg(args[2], 2)
site = aliases[site] or site
error("Parameter 1 is missing. See [[Template:" .. tname .. "]] documentation")
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 site2split = mw.text.split(site, "%.")
local result
if tableLength(site2split) == 1 then
if wantMeta then
site = site .. ".wikipedia"
local data = mw.loadData('Module:NUMBEROF/meta')
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 = 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/data')
local map = data.map
data = data.data
result = data[site]
if result then
result = getValue(result, action, map)
end
end
end
if result then
local comma = trimArg(args[3]) -- If set to "N" use commas in output
if wantComma then
 
result = mw.language.getContentLanguage():formatNum(result)
for k,v in pairs(data['data']) do
if site == mw.ustring.lower(v[1]) then
if action == "activeusers" then
result = v[2]
elseif action == "admins" then
result = v[3]
elseif action == "articles" then
result = v[4]
elseif action == "edits" then
result = v[5]
elseif action == "files" then
result = v[6]
elseif action == "pages" then
result = v[7]
elseif action == "users" then
result = v[8]
end
end
return result -- number or formatted string
end
return -1
if result > 0 and comma then
end
result = comma_value(result)
 
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 base = trimArg(args[2]) or 'wikipedia' -- base of full site name like "wikipedia" or "wikiquote"
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 result-1
end
 
return p{
main = main,
rank = rank,
}