Jump to content

Module:User:SDZeroBot

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by SD0001 (talk | contribs) at 10:00, 30 October 2020 (fix). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local getArgs = require('Module:Arguments').getArgs
local p = {}

function p.lastupdate(frame)
	local args = getArgs(frame)
	return p._lastupdate(args[1], args[2], args[3])
end

function p._lastupdate(lastupdateISO, duration, jobname)
	local lang = mw.language.new('en')
	
	local lastupdate = tonumber(lang:formatDate('U', lastupdateISO))
	local allowance = tonumber(duration) -- seconds
	local current = os.time() -- seconds since epoch

	local display_date = lang:formatDate('j F Y', lastupdateISO)
	if current - allowance > lastupdate then
		return '<span class=error>' .. display_date .. '</span>'
	else
		return display_date
	end
end

function p.logs(frame) 
	local args = getArgs(frame)
	local jobname = args[1]
	return '[https://sdzerobot.toolforge.org/logs.php?log=job-' .. jobname .. '&type=out out] [https://sdzerobot.toolforge.org/logs.php?log=job-' .. jobname .. '&type=err err]'
end

return p