This site is no longer actively maintained. It exists for historical purposes as an example of Phabricator integration and Lua scripting.

Module:Reports

From cpt
Revision as of 09:59, 1 August 2019 by Ccicalese (talk | contribs)

Documentation for this module may be created at Module:Reports/doc

local p = {}

function p.taskCreationClosureReport(frame)
	local start = {
		year = frame.args[1],
		month = frame.args[2],
		day = frame.args[3]
	}
	local step = frame.args[4]
	local count = frame.args[5]
	local timestamp_start = os.time( start )
	local s = ''
	local created = 0
	local closed = 0
	for index = 1, count do
		local timestamp_stop = timestamp_start + (step * 86400)
		local result = mw.smw.getQueryResult(
			'[[Category:Phabricator Tasks]][[Has subobject.Project::Core Platform Team||Core Platform Team Workboards||CPT Initiatives]]' ..
			'[[Task Created Timestamp::>' .. timestamp_start .. ']]' ..
			'[[Task Created Timestamp::<<' .. timestamp_stop .. ']]' ..
			'|limit=3000' )
		if result ~= nil then
			created = created + #result.results
		end
		result = mw.smw.getQueryResult(
			'[[Category:Phabricator Tasks]][[Has subobject.Project::Core Platform Team||~Core Platform Team Workboards*||CPT Initiatives]]' ..
			'[[Task Closed Timestamp::>' .. timestamp_start .. ']]' ..
			'[[Task Closed Timestamp::<<' .. timestamp_stop .. ']]' ..
			'|limit=3000' )
		if result ~= nil then
			closed = closed + #result.results
		end
		s = s .. 'Created ;' .. index .. ';' .. created .. '\n'
		s = s .. 'Closed ;' .. index .. ';' .. closed .. '\n'
		timestamp_start = timestamp_stop
	end
	return s
end

return p