-- This module implements .
local lang = mw.language.getContentLanguage
--------------------------------------------------------------------------------- Output template-------------------------------------------------------------------------------
-- This template contains the final output of the module. Parameters like-- $ are substituted with the results of the output template-- parameter functions below.
local OUTPUT_TEMPLATE = [=[ {{DYKsubpage |monthyear=${MONTH_AND_YEAR} |passed=<!--When closing discussion, enter yes, no, or withdrawn --> |2=${INPUT_ERRORS} {{DYK conditions}} {{DYK header|${HEADING}}} {{DYK nompage links|nompage=${NOM_SUBPAGE}|${NOMPAGE_LINK_ARGS}}} ${IMAGE}${DYK_LISTEN}${DYK_WATCH}<!-- Please do not edit above this line unless you are a DYK volunteer who is closing the discussion. --> * ${HOOK}${ALT_HOOKS}${REVIEWED}${COMMENT} <small>${STATUS} by ${AUTHORS}. ${NOMINATED} at ~~~~~.</small> <!--${CHECK_CREDITS_WARNING} ${CREDITS} --> :* <!-- REPLACE THIS LINE TO WRITE FIRST COMMENT, KEEPING :* --> ${FILE_BREAK}}}<!--Please do not write below this line or remove this line. Place comments above this line.-->]=]
--------------------------------------------------------------------------------- Helper functions-------------------------------------------------------------------------------
-- Creates a formatted error message that can be used with substitution.local function formatError(msg) return string.format('', msg)end
-- Creates a boilerplate error message for invalid titles.local function formatInvalidTitleError(page, pageType) local msg = string.format('"%s" is not a valid %s; check for bad characters', page, pageType ) return formatError(msg)end
-- Same as . If the page is an invalid title, returns nil.local function getRootPageText(page) local title = mw.title.new(page) if title then return title.rootPageTitle.text endend
-- Makes template invocations for templates like and-- .local function makeFileTemplateInvocation(name, first, second) if not first then return nil end local ret = ret[#ret + 1] = '' return table.concat(ret)end
-- Normalize positional parameters for a template invocation. If any of the-- parameters contain equals signs, the parameters are all prefixed with-- numbers.local function normalizeTemplateParameters(params) local ret = local hasEquals = false for i, param in ipairs(params) do if param:find('=') then hasEquals = true break end end if hasEquals then for i, param in ipairs(params) do ret[i] = string.format('%d=%s', i, param) end else for i, param in ipairs(params) do ret[i] = param end end return retend
-- Makes a link to a user's user page and talk page, like found in a standard-- signature.local function makeUserLinks(user) return string.format('%s (talk)', user, user, user )end
-- Returns an array of authors. If the user didn't specify any authors, the-- first one is the result of .local function getNormalisedAuthors(data) local authors = for i, author in ipairs(data.authors) do authors[i] = author end authors[1] = authors[1] or data.revisionUser return authorsend
-- Removes gaps from sparse arrays. This is used to process numbered arguments-- like author2 and ALT4.local compressSparseArray = require("Module:TableTools").compressSparseArray
-- Splits numbered arguments by their prefixes. A table of arguments like this:-- -- Would be turned into this:-- -- Note that the subtables of the returned tables are not normal arrays, but-- sparse arrays (there can be gaps between values).local function splitByPrefix(args) local ret = for key, val in pairs(args) do if type(key)
-- Returns an array of numbered arguments with the given prefixes. Earlier-- prefixes have precedence, and args[prefix] will overwrite args[prefix .. 1].-- For example, for this arguments table:-- -- The function call getPrefixedArgs(args, splitArgs,)-- will produce:-- ---- Parameters:-- args - the table of arguments specified by the user-- splitArgs - the table of arguments as processed by splitByPrefix-- prefixes - an array of prefixeslocal function getPrefixedArgs(args, splitArgs, prefixes) local ret = for i, prefix in ipairs(prefixes) do if splitArgs[prefix] then for num, val in pairs(splitArgs[prefix]) do if not ret[num] then ret[num] = val end end end end -- Allow prefix to overwrite prefix1. for _, prefix in ipairs(prefixes) do local val = args[prefix] if val then ret[1] = val break end end return compressSparseArray(ret)end
--------------------------------------------------------------------------------- Output template parameter functions-------------------------------------------------------------------------------
-- The results of these functions are substituted into parameters in the-- output template. The parameters look like $. Trying to use-- a parameter that doesn't have a function defined here will result in an-- error.---- The functions take a data table as a single argument. This table contains-- the following fields:-- * errors - a table of formatted error messages that were found when-- processing the input.-- * args - the table of arguments supplied by the user.-- * articles - an array of the article names found in the arguments.-- * authors - an array of the expanders/creators/writers/authors found in the-- arguments.-- * revisionUser - the user that last edited the page. As this module is only-- substitited, this is always the current user.-- * alts - an array of the ALT hooks found in the arguments.-- * title - the mw.title object for the current page.---- Template parameter functions should return a string, false, or nil.-- Functions returning false or nil will be treated as outputting the empty-- string "".
local params =
-- Renders any errors that were found when processing the input.function params.INPUT_ERRORS(data) local nErrors = #data.errors if nErrors > 1 then return '\n* ' .. table.concat(data.errors, '\n* ') elseif nErrors
-- The current month and year, e.g. "March 2015".function params.MONTH_AND_YEAR return lang:formatDate('F Y')end
-- The contents of the heading.function params.HEADING(data) return table.concat(data.articles, ', ')end
-- The current subpage name.function params.NOM_SUBPAGE(data) if string.match(data.title.text,"/") then return string.gsub(data.title.text,data.title.rootText .. "/","") else return data.title.text endend
-- Other arguments for the nompage link template, separated by pipes.function params.NOMPAGE_LINK_ARGS(data) local vals = normalizeTemplateParameters(data.articles) return table.concat(vals, '|')end
-- All of the image display code.function params.IMAGE(data) local args = data.args if not args.image then return nil end local image = getRootPageText(args.image) if not image then image = formatInvalidTitleError(args.image, 'image name') end local caption = args.caption or args.rollover local template = [=[ <div style="float:right; margin-left:0.5em;" id="mp-dyk-img"> {{main page image|image=%s|caption=%s|width=120 <!-- Use 120 for vertical images, 140 for square images, and 160 for horizontal images-->}}<!--See [[Template:Main page image]] for other parameters-->
-- The template.function params.DYK_LISTEN(data) local args = data.args return makeFileTemplateInvocation('DYK Listen', args.sound, args.soundcaption )end
-- The template.function params.DYK_WATCH(data) local args = data.args return makeFileTemplateInvocation('DYK Watch', args.video, args.videocaption )end
-- The hook text.function params.HOOK(data) return data.args.hook or "... that ....?"end
-- All of the ALT hooks that were specified with the ALT1, ALT2, ... etc.-- parameters.function params.ALT_HOOKS(data) local ret = for i, alt in ipairs(data.alts) do ret[i] = string.format("\n** ALT%d:%s", i, alt) end return table.concat(ret)end
-- A note saying which nomination the submitter reviewed.function params.REVIEWED(data) local args = data.args local ret = '\n:*' if args.reviewed then ret = ret .. " Reviewed: " local reviewedTitle = mw.title.new('Template:Did you know nominations/' .. args.reviewed ) if reviewedTitle and reviewedTitle.exists then ret = ret .. string.format('%s', reviewedTitle.prefixedText, reviewedTitle.subpageText ) else ret = ret .. args.reviewed end end return retend
-- A comment.function params.COMMENT(data) if data.args.comment then return "\n:* Comment: " .. data.args.comment endend
-- The status of the article when it was nominated for DYK.function params.STATUS(data) local status = data.args.status status = status and status:lower
-- Created if status
'expanded' or status
'mainspace' or status
'convert' or status
'redirect' then return 'Converted from a redirect'
-- Improved to GA elseif status
-- Default else return 'Created/expanded' endend
-- A list of the authors, with user and user talk links.function params.AUTHORS(data) local authors = getNormalisedAuthors(data) for i, author in ipairs(authors) do authors[i] = makeUserLinks(author) end local separator = ', ' local conjunction if #authors > 2 then conjunction = ', and ' else conjunction = ' and ' end return mw.text.listToText(authors, separator, conjunction)end
-- Blurb for who the article was nominated by.function params.NOMINATED(data) local authors = data.authors if #authors > 1 or authors[1] and authors[1] ~= data.revisionUser then return 'Nominated by ' .. makeUserLinks(data.revisionUser) else return 'Self-nominated' endend
-- Warning to check that the credits are correct.function params.CHECK_CREDITS_WARNING(data) if #data.articles > 1 then return 'Please check to make sure these auto-generated credits are correct.' endend
-- DYK credits. These are used by the bot to credit people on their talk pages-- and to tag articles.function params.CREDITS(data) local authors = getNormalisedAuthors(data) local articles = data.articles local nompage = params.NOM_SUBPAGE(data) local DYKmake = '* ' local DYKnom = '* ' local nominator = data.revisionUser local nominatorIsAuthor = false for i, author in ipairs(data.authors) do if author
local ret =
local function addTemplate(template, article, user, subpage) local params = normalizeTemplateParameters if subpage then table.insert(params, 'subpage=' .. subpage) end ret[#ret + 1] = string.format('* ', template, table.concat(params, '|') ) end
-- First article, a special case do local article = articles[1] addTemplate('DYKmake', article, authors[1], nompage ) for i = 2, #authors do addTemplate('DYKmake', article, authors[i], nompage) end if not nominatorIsAuthor then addTemplate('DYKnom', article, nominator, nompage) end end
-- Second article and up for i = 2, #articles do local article = articles[i] for j, author in ipairs(authors) do addTemplate('DYKmake', article, author, nompage) end if not nominatorIsAuthor then addTemplate('DYKnom', article, nominator, nompage) end end
return table.concat(ret, '\n')end
-- If a file was displayed, use the template so that it doesn't spill-- over into the next nomination.function params.FILE_BREAK(data) local args = data.args if args.image or args.sound or args.video then return '' endend
--------------------------------------------------------------------------------- Exports-------------------------------------------------------------------------------
local p =
function p._main(args, frame, title) -- Subst check. -- Check for the frame object as well to make debugging easier from the -- debug console. if frame and not mw.isSubsting then return '' .. 'This template must be substituted. ' .. 'Replace {{NewDYKnomination}}
with ' .. '{{subst:NewDYKnomination}}
.' end
-- Set default arguments. frame = frame or mw.getCurrentFrame title = title or mw.title.getCurrentTitle
-- Process data from the arguments. local splitArgs = splitByPrefix(args) local articles = getPrefixedArgs(args, splitArgs,) local authors = getPrefixedArgs(args, splitArgs, ) local alts = getPrefixedArgs(args, splitArgs,)
-- Input sanity checks. local errors = for i, article in ipairs(articles) do local articleTitle = mw.title.new(article) if not articleTitle then table.insert(errors, formatInvalidTitleError(article, 'article name' )) articles[i] = end end if #articles < 1 then articles[1] = title.subpageText end for i, author in ipairs(authors) do authors[i] = getRootPageText(author) if not authors[i] then table.insert(errors, formatInvalidTitleError(author, 'user name')) authors[i] = end end
-- Substitute the parameters in the output template. local data = local ret = OUTPUT_TEMPLATE:gsub('$', function (funcName) local func = params[funcName] if not func then error(string.format("invalid parameter '$' " .. "(no corresponding parameter function found)", funcName )) end return func(data) or end) return retend
function p.main(frame) local args = require('Module:Arguments').getArgs(frame,) return p._main(args, frame)end
return p