“模块:创作者信息”的版本间的差异
跳到导航
跳到搜索
(未显示同一用户的1个中间版本) | |||
第1行: | 第1行: | ||
− | local | + | local StringUtils = require("Module:StringUtils") |
− | local | + | local ListUtils = require("Module:ListUtils") |
local p = {} | local p = {} | ||
− | function | + | function _missing_maintainer(frame) |
+ | return frame:expandTemplate{title = "无维护者警告", args = {}} | ||
+ | end | ||
+ | |||
+ | function _self_post(frame, creator) | ||
+ | return frame:expandTemplate{title = "创作者信息/本人发布", args = {['创作者'] = creator}} | ||
+ | end | ||
+ | |||
+ | function _proxy_post(frame, creator, maintainer) | ||
+ | return frame:expandTemplate{title = "创作者信息/委托发布", args = { | ||
+ | ['创作者'] = creator, ['维护者']=maintainer}} | ||
+ | end | ||
+ | |||
+ | function _set_editable_by_user(user) | ||
+ | local nm = 'User:'..user | ||
+ | mw.smw.set({ | ||
+ | ['Editable by user'] = nm | ||
+ | }) | ||
+ | end | ||
+ | |||
+ | function _other_maintainers(frame, other_maintainers) | ||
local node = mw.html.create(nil) | local node = mw.html.create(nil) | ||
− | node:wikitext(" | + | node:wikitext("合作维护者: ") |
− | for i, m in ipairs( | + | for i, m in ipairs(other_maintainers) do |
node:wikitext("[[User:"..m.."|"..m.."]]") | node:wikitext("[[User:"..m.."|"..m.."]]") | ||
node:wikitext("[[Category:由"..m.."维护的条目]]") | node:wikitext("[[Category:由"..m.."维护的条目]]") | ||
− | |||
_set_editable_by_user(m) | _set_editable_by_user(m) | ||
− | + | mw.smw.set({ | |
− | + | ['维护者'] = ("User:"..m) | |
− | + | }) | |
− | |||
end | end | ||
local res = node:done() | local res = node:done() | ||
− | local args = {image = ' | + | local args = {image = 'Brainstorm.svg', content = mw.dumpObject(res)} |
return frame:expandTemplate{title = "LiteInfoBox", args = args} | return frame:expandTemplate{title = "LiteInfoBox", args = args} | ||
end | end | ||
− | function | + | function _maintainer_only(frame, maintainer) |
mw.smw.set({ | mw.smw.set({ | ||
['Editable by'] = 'whitelist' | ['Editable by'] = 'whitelist' | ||
第28行: | 第46行: | ||
end | end | ||
− | function p. | + | function p.render(frame) |
− | local | + | local creator = StringUtils.assert_not_empty(frame.args["创作者"]) |
− | local | + | local maintainer_only = StringUtils.assert_not_empty(frame.args["仅允许维护者编辑"]) |
− | local | + | local maintainer = StringUtils.assert_not_empty(frame.args["维护者"]) |
− | local | + | local other_maintainers = StringUtils.split_or_empty(frame.args["合作维护者列表"], ",") |
− | + | ||
− | + | local result | |
− | + | if not creator and maintainer then | |
− | + | creator = maintainer | |
− | + | elseif not maintainer and creator then | |
− | return | + | maintainer = creator |
+ | end | ||
+ | if maintainer then | ||
+ | if maintainer == creator then | ||
+ | result = _self_post(frame, creator) | ||
+ | else | ||
+ | result = _proxy_post(frame, creator, maintainer) | ||
+ | end | ||
+ | if maintainer_only == "是" then | ||
+ | result = result .. _maintainer_only(frame, maintainer) | ||
+ | end | ||
+ | _set_editable_by_user(maintainer) | ||
+ | else | ||
+ | result = _missing_maintainer(frame) | ||
+ | end | ||
+ | |||
+ | if other_maintainers[1] then | ||
+ | local newcode = _other_maintainers(frame, other_maintainers) | ||
+ | result = result .. newcode | ||
+ | end | ||
+ | |||
+ | return result | ||
+ | |||
end | end | ||
return p | return p |
2021年7月4日 (日) 15:27的最新版本
此模块的文档可以在模块:创作者信息/doc创建
local StringUtils = require("Module:StringUtils") local ListUtils = require("Module:ListUtils") local p = {} function _missing_maintainer(frame) return frame:expandTemplate{title = "无维护者警告", args = {}} end function _self_post(frame, creator) return frame:expandTemplate{title = "创作者信息/本人发布", args = {['创作者'] = creator}} end function _proxy_post(frame, creator, maintainer) return frame:expandTemplate{title = "创作者信息/委托发布", args = { ['创作者'] = creator, ['维护者']=maintainer}} end function _set_editable_by_user(user) local nm = 'User:'..user mw.smw.set({ ['Editable by user'] = nm }) end function _other_maintainers(frame, other_maintainers) local node = mw.html.create(nil) node:wikitext("合作维护者: ") for i, m in ipairs(other_maintainers) do node:wikitext("[[User:"..m.."|"..m.."]]") node:wikitext("[[Category:由"..m.."维护的条目]]") _set_editable_by_user(m) mw.smw.set({ ['维护者'] = ("User:"..m) }) end local res = node:done() local args = {image = 'Brainstorm.svg', content = mw.dumpObject(res)} return frame:expandTemplate{title = "LiteInfoBox", args = args} end function _maintainer_only(frame, maintainer) mw.smw.set({ ['Editable by'] = 'whitelist' }) return frame:expandTemplate{title = "本页面仅允许维护者编辑", args = {}} end function p.render(frame) local creator = StringUtils.assert_not_empty(frame.args["创作者"]) local maintainer_only = StringUtils.assert_not_empty(frame.args["仅允许维护者编辑"]) local maintainer = StringUtils.assert_not_empty(frame.args["维护者"]) local other_maintainers = StringUtils.split_or_empty(frame.args["合作维护者列表"], ",") local result if not creator and maintainer then creator = maintainer elseif not maintainer and creator then maintainer = creator end if maintainer then if maintainer == creator then result = _self_post(frame, creator) else result = _proxy_post(frame, creator, maintainer) end if maintainer_only == "是" then result = result .. _maintainer_only(frame, maintainer) end _set_editable_by_user(maintainer) else result = _missing_maintainer(frame) end if other_maintainers[1] then local newcode = _other_maintainers(frame, other_maintainers) result = result .. newcode end return result end return p