| 第1行: | 第1行: | 
| − | local SMWUtils = require("Module:SMWUtils") | + | local StringUtils = require("Module:StringUtils") | 
| − | local PageName = require("Module:PageName") | + | local ListUtils = require("Module:ListUtils") | 
|  | local p = {} |  | local p = {} | 
|  |  |  |  | 
| − | function renderMaintainers(frame,maintainers,other_creators) | + | 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(maintainers) do | + |      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.."维护的条目]]") | 
| − |         node:wikitext("[[Category:由"..m.."创作的条目]]")
 |  | 
|  |          _set_editable_by_user(m) |  |          _set_editable_by_user(m) | 
| − |     end
 | + |         mw.smw.set({ | 
| − |     for i, m in ipairs(other_creators) do
 | + |             ['维护者'] = ("User:"..m) | 
| − |         node:wikitext("[[创作者:"..m.."|"..m.."]]")
 | + |          }) | 
| − |          node:wikitext("[[Category:由"..m.."创作的条目]]") |  | 
|  |      end |  |      end | 
|  |      local res = node:done() |  |      local res = node:done() | 
| − |      local args = {image = 'Copyright.svg', content = res} | + |      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 renderLockedPage(frame) | + | function _maintainer_only(frame, maintainer) | 
|  |      mw.smw.set({ |  |      mw.smw.set({ | 
|  |          ['Editable by'] = 'whitelist' |  |          ['Editable by'] = 'whitelist' | 
| 第28行: | 第46行: | 
|  | end |  | end | 
|  |  |  |  | 
| − | function p.renderCreator(frame) | + | function p.render(frame) | 
| − |      local title =PageName.getPageName() | + |      local creator = StringUtils.assert_not_empty(frame.args["创作者"]) | 
| − |      local prop_names ={"维护者", "创作者", "设定类型", "设定集核心页", "依赖设定集", "仅允许维护者编辑", "创作阶段", "上级概念", "前置条件", "事后效果"} | + |      local maintainer_only = StringUtils.assert_not_empty(frame.args["仅允许维护者编辑"]) | 
| − |      local props =SMWUtils.query_page_properties("[["..title.."]]",prop_names) | + |     local maintainer = StringUtils.assert_not_empty(frame.args["维护者"]) | 
| − |      -- localroot =mw.html.create(nil) | + |      local other_maintainers = StringUtils.split_or_empty(frame.args["合作维护者列表"], ",") | 
| − |     -- root:wikitext(renderMaintainers(frame,props["维护者"],props["创作者"]))
 | + |   | 
| − |     -- ifprops["维护者"]["仅允许维护者编辑"][1] == "t" then
 | + |      local result | 
| − |      --     renderLockedPage(frame) | + |     if not creator and maintainer then | 
| − |      -- end | + |         creator = maintainer | 
| − |      -- return root:done() | + |     elseif not maintainer and creator then | 
| − |      return mw.text.jsonEncode(props) | + |         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 |