模块:UserlinkUserEditCount:修订间差异
无编辑摘要 |
无编辑摘要 |
||
第7行: | 第7行: | ||
end | end | ||
local | local apiUrl = mw.uri.fullUrl('api.php', { | ||
action = 'query', | |||
list = 'usercontribs', | |||
ucuser = username, | |||
uclimit = 'max', | |||
ucnamespace = 0, | |||
format = 'json' | |||
}) | |||
local result = mw.http.fetch(apiUrl) | |||
local result = mw.http.fetch( | |||
if result and result.status == 200 then | if result and result.status == 200 then | ||
local data = mw.text.jsonDecode(result.body) | local data = mw.text.jsonDecode(result.body) |
2024年6月4日 (二) 18:46的版本
可在模块:UserlinkUserEditCount/doc创建此模块的帮助文档
local p = {} function p.getUserEditCount(frame) local username = frame.args[1] if not username then return "没有提供用户名" end local apiUrl = mw.uri.fullUrl('api.php', { action = 'query', list = 'usercontribs', ucuser = username, uclimit = 'max', ucnamespace = 0, format = 'json' }) local result = mw.http.fetch(apiUrl) if result and result.status == 200 then local data = mw.text.jsonDecode(result.body) if data and data.query and data.query.usercontribs then local editCount = #data.query.usercontribs return "用户 " .. username .. " 的编辑总数为: " .. editCount end end return "无法获取用户编辑总数" end return p