Difference between revisions of "Module:Reports"
From cpt
No edit summary |
No edit summary |
||
(20 intermediate revisions by the same user not shown) | |||
Line 8: | Line 8: | ||
} | } | ||
local step = frame.args[4] | local step = frame.args[4] | ||
local timestamp_start = os.time( start ) | local timestamp_start = os.time( start ) | ||
local now = os.time() | |||
local s = '' | local s = '' | ||
local created = 0 | local created = 0 | ||
local closed = 0 | local closed = 0 | ||
while timestamp_start < now do | |||
local timestamp_stop = timestamp_start + (step * 86400) | local timestamp_stop = timestamp_start + (step * 86400) | ||
if timestamp_stop > now then | |||
timestamp_stop = now | |||
end | |||
local result = mw.smw.getQueryResult( | local result = mw.smw.getQueryResult( | ||
'[[Category:Phabricator Tasks]][[Has subobject.Project::~ | '[[Category:Phabricator Tasks]][[Has subobject.Project::~Platform Team Workboards*]]' .. | ||
'[[Task Created Timestamp::>' .. timestamp_start .. ']]' .. | '[[Task Created Timestamp::>' .. timestamp_start .. ']]' .. | ||
'[[Task Created Timestamp::<<' .. timestamp_stop .. ']]' .. | '[[Task Created Timestamp::<<' .. timestamp_stop .. ']]' .. | ||
Line 24: | Line 27: | ||
end | end | ||
result = mw.smw.getQueryResult( | result = mw.smw.getQueryResult( | ||
'[[Category:Phabricator Tasks]][[Has subobject.Project::~ | '[[Category:Phabricator Tasks]][[Has subobject.Project::~Platform Team Workboards*]]' .. | ||
'[[Task Closed Timestamp::>' .. timestamp_start .. ']]' .. | '[[Task Closed Timestamp::>' .. timestamp_start .. ']]' .. | ||
'[[Task Closed Timestamp::<<' .. timestamp_stop .. ']]' .. | '[[Task Closed Timestamp::<<' .. timestamp_stop .. ']]' .. | ||
Line 38: | Line 41: | ||
end | end | ||
function p. | function p.greenDonePointsReport(frame) | ||
local sprintDates = | local sprintDates = mw.text.split(frame.args[1], ',') | ||
local points = {} | local points = {} | ||
s = '' | s = '' | ||
Line 53: | Line 48: | ||
sum = 0 | sum = 0 | ||
local result = mw.smw.getQueryResult( | local result = mw.smw.getQueryResult( | ||
'[[Project:: | '[[Project::Platform Team Workboards (Green)]][[Column::Done]]' .. | ||
'[[Column Entry Date::>>' .. sprintDates[index - 1] .. ']]' .. | '[[Column Entry Date::>>' .. sprintDates[index - 1] .. ']]' .. | ||
'[[Column Entry Date::<' .. sprintDates[index] .. ']]' .. | '[[Column Entry Date::<' .. sprintDates[index] .. ']]' .. | ||
Line 64: | Line 59: | ||
end | end | ||
s = s .. sprintDates[index] .. ',' .. sum .. '\n' | s = s .. sprintDates[index] .. ',' .. sum .. '\n' | ||
end | |||
end | |||
return s | |||
end | |||
function p.greenDoneTasksReport(frame) | |||
local sprintDates = mw.text.split(frame.args[1], ',') | |||
local points = {} | |||
s = '' | |||
for index = 2, #sprintDates do | |||
count = 0 | |||
local result = mw.smw.getQueryResult( | |||
'[[Project::Platform Team Workboards (Green)]][[Column::Done]]' .. | |||
'[[Column Entry Date::>>' .. sprintDates[index - 1] .. ']]' .. | |||
'[[Column Entry Date::<' .. sprintDates[index] .. ']]' ) | |||
if result ~= nil then | |||
count = #result.results | |||
s = s .. sprintDates[index] .. ',' .. count .. '\n' | |||
end | |||
end | |||
return s | |||
end | |||
function p.clinicDutyTasksReport(frame) | |||
local column = frame.args[1] | |||
local sprintDates = mw.text.split(mw.text.trim(frame.args[2]), ',') | |||
local points = {} | |||
s = '' | |||
for index = 2, #sprintDates do | |||
count = 0 | |||
local result = mw.smw.getQueryResult( | |||
'[[Transition Project::Platform Team Workboards (Clinic Duty Team)||Platform Team Workboards (External Code Reviews)]]' .. | |||
'[[Transition Column::' .. column .. ']]' .. | |||
'[[Transition Type::Entered Column]]' .. | |||
'[[Transition Date::>' .. sprintDates[index - 1] .. ']]' .. | |||
'[[Transition Date::<<' .. sprintDates[index] .. ']]' .. | |||
'|?Transition Column') | |||
if result ~= nil then | |||
count = #result.results | |||
s = s .. sprintDates[index] .. ',' .. count .. '\n' | |||
end | end | ||
end | end |
Latest revision as of 21:40, 29 July 2020
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 timestamp_start = os.time( start )
local now = os.time()
local s = ''
local created = 0
local closed = 0
while timestamp_start < now do
local timestamp_stop = timestamp_start + (step * 86400)
if timestamp_stop > now then
timestamp_stop = now
end
local result = mw.smw.getQueryResult(
'[[Category:Phabricator Tasks]][[Has subobject.Project::~Platform Team Workboards*]]' ..
'[[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::~Platform Team Workboards*]]' ..
'[[Task Closed Timestamp::>' .. timestamp_start .. ']]' ..
'[[Task Closed Timestamp::<<' .. timestamp_stop .. ']]' ..
'|limit=3000' )
if result ~= nil then
closed = closed + #result.results
end
s = s .. 'Created ;' .. os.date('%Y-%m-%d', timestamp_stop) .. ';' .. created .. '\n'
s = s .. 'Closed ;' .. os.date('%Y-%m-%d', timestamp_stop) .. ';' .. closed .. '\n'
timestamp_start = timestamp_stop
end
return s
end
function p.greenDonePointsReport(frame)
local sprintDates = mw.text.split(frame.args[1], ',')
local points = {}
s = ''
for index = 2, #sprintDates do
sum = 0
local result = mw.smw.getQueryResult(
'[[Project::Platform Team Workboards (Green)]][[Column::Done]]' ..
'[[Column Entry Date::>>' .. sprintDates[index - 1] .. ']]' ..
'[[Column Entry Date::<' .. sprintDates[index] .. ']]' ..
'|?-Has subobject.Points' )
if result ~= nil then
for k,v in pairs( result.results ) do
if #v.printouts.Points > 0 then
sum = sum + v.printouts.Points[next(v.printouts.Points)]
end
end
s = s .. sprintDates[index] .. ',' .. sum .. '\n'
end
end
return s
end
function p.greenDoneTasksReport(frame)
local sprintDates = mw.text.split(frame.args[1], ',')
local points = {}
s = ''
for index = 2, #sprintDates do
count = 0
local result = mw.smw.getQueryResult(
'[[Project::Platform Team Workboards (Green)]][[Column::Done]]' ..
'[[Column Entry Date::>>' .. sprintDates[index - 1] .. ']]' ..
'[[Column Entry Date::<' .. sprintDates[index] .. ']]' )
if result ~= nil then
count = #result.results
s = s .. sprintDates[index] .. ',' .. count .. '\n'
end
end
return s
end
function p.clinicDutyTasksReport(frame)
local column = frame.args[1]
local sprintDates = mw.text.split(mw.text.trim(frame.args[2]), ',')
local points = {}
s = ''
for index = 2, #sprintDates do
count = 0
local result = mw.smw.getQueryResult(
'[[Transition Project::Platform Team Workboards (Clinic Duty Team)||Platform Team Workboards (External Code Reviews)]]' ..
'[[Transition Column::' .. column .. ']]' ..
'[[Transition Type::Entered Column]]' ..
'[[Transition Date::>' .. sprintDates[index - 1] .. ']]' ..
'[[Transition Date::<<' .. sprintDates[index] .. ']]' ..
'|?Transition Column')
if result ~= nil then
count = #result.results
s = s .. sprintDates[index] .. ',' .. count .. '\n'
end
end
return s
end
return p