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

Module:Graph

From cpt
Revision as of 20:51, 14 July 2019 by Ccicalese (talk | contribs)

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

local p = {}

function p.wrap( s, length )
	s = mw.text.trim( s )
	local oldindex = 1
	local index = string.find( s, ' ' )
	while ( index ) do
		if index - oldindex >= length then
			local temp = string.sub( s, 1, index - 1 ) .. '<BR/>' .. string.sub( s, index + 1 )
			s = temp
			oldindex = index + 4
		end
		index = string.find( s, ' ', index + 1)
	end
	return s
end

function p.cleanseDisplayTitle( displaytitle, extra )
	local s = displaytitle
	s = string.gsub( s, '"', '' )
	s = string.gsub( s, '%[', '' )
	s = string.gsub( s, '%]', '' )
	s = string.gsub( s, '&', 'and' )
	s = p.wrap ( s, 15 )
	return s .. extra
end

function p.getNodes( filter, unlimited )
	local nodes = {}
	local result1 = mw.smw.getQueryResult( '[[Category:Phabricator Tasks]]' ..
		filter .. '|?Subtask|?Status|?Owner|?CPT Backlog Column|?CPT Workboards Column' ..
		'|limit=500' )
	if result1 ~= nil then
		for k1,v1 in pairs( result1.results ) do
			local backlog_column = v1.printouts['CPT Backlog Column'][1]
			local status = v1.printouts['Status'][1]
			if ( unlimited or ( backlog_column ~= 'Watching / External' and
				( status == 'open' or status == 'stalled' ) ) and ( not
				( status == 'declined' or status == 'invalid' ) ) ) then
				nodes[v1.fulltext] = {}
				nodes[v1.fulltext].epic = false
				local extra = ''
				local owner = table.concat( v1.printouts['Owner'], ', ' )
				if ( #owner > 0 ) then
					extra = '<BR/>' .. owner
				end
				nodes[v1.fulltext].projects = {}
				local result2 = mw.smw.getQueryResult(
					'[[-Has subobject::' .. v1.fulltext .. ']]' ..
					'|?Project|?Column' .. '|limit=500' )
				for k2,v2 in pairs ( result2.results ) do
					if string.match( v2.printouts['Project'][1], '^Epic' ) then
						nodes[v1.fulltext].epic = true
					elseif string.match( v2.printouts['Project'][1], '^Core Platform Team Workboards' ) or
						string.match( v2.printouts['Project'][1], '^Core Platform Team Backlog' ) then
					extra = extra .. '<BR/>' .. v2.printouts['Project'][1] .. ' (' ..
							v2.printouts['Column'][1] .. ')'
						nodes[v1.fulltext].column = v2.printouts['Column'][1]
						break
					end
					nodes[v1.fulltext].projects[v2.printouts['Project'][1]] = true
				end
				nodes[v1.fulltext].fullurl = v1.fullurl
				nodes[v1.fulltext].displaytitle =
					p.cleanseDisplayTitle( v1.displaytitle, extra )
					nodes[v1.fulltext].status = status
				nodes[v1.fulltext].dependencies = {} 
				for k2,v2 in pairs ( v1.printouts['Subtask'] ) do
					nodes[v1.fulltext].dependencies[v2.fulltext] = true
				end
			end
		end
	end
   return nodes
end

function p.getPageName( title )
	local location = string.find( title, ':' )
	if location then
		return string.sub( title, string.find( title, ':' ) + 1 )
	else
		return title
	end
end

function p.contains( t, value )
	for k,v in pairs ( t ) do
		if v == value then
			return true
		end
	end
	return false
end

function p.drawGraph( filter, unlimited )
	local nodes = p.getNodes( filter, unlimited )
	local s = 'graph LR\n'

	for k1,v1 in pairs( nodes ) do
		local name = p.getPageName( k1 )
		if v1.projects['Epic'] then
			s = s .. name .. '("' .. v1.displaytitle .. '")\n';
		else
			s = s .. name .. '["' .. v1.displaytitle .. '"]\n';
		end
		s = s .. 'click ' .. name .. ' "' .. v1.fullurl .. '"\n'
		if  v1.projects['Deployment'] then
			s = s .. 'class ' .. name .. ' mermaid-deployment\n'
		end
		if v1.status ~= 'open' and v1.status ~= 'stalled' then
			s = s .. 'class ' .. name .. ' mermaid-done\n'
		elseif v1.epic then
			s = s .. 'class ' .. name .. ' mermaid-epic\n'
		elseif v1.column == 'Doing' or v1.column == 'Contractor - Doing' then
			s = s .. 'class ' .. name .. ' mermaid-in-progress\n'
		elseif v1.column == 'Ready' or v1.column == 'Contractor - Ready' then
			s = s .. 'class ' .. name .. ' mermaid-ready\n'
		elseif v1.column == 'Watching / External' then
			s = s .. 'class ' .. name .. ' mermaid-watching\n'
		elseif v1.column == 'Blocked Externally' then
			s = s .. 'class ' .. name .. ' mermaid-blocked\n'
		elseif v1.column == 'Waiting for Review' then
			s = s .. 'class ' .. name .. ' mermaid-needs-review\n'
		elseif v1.column == 'Needs Testing' then
			s = s .. 'class ' .. name .. ' mermaid-needs-testing\n'
		else
			s = s .. 'class ' .. name .. ' mermaid-other\n'
		end
	end
	for k1,v1 in pairs( nodes ) do
		for k2, v2 in pairs ( v1.dependencies ) do
			if ( nodes[k2] ) then
				s = s .. p.getPageName( k2 ) .. '==>' .. p.getPageName( k1 ) .. '\n'
			end
		end
	end
	return s
end

function p.pert_chart(frame)
	local filter = frame.args[1] or ''
	local s = p.drawGraph( filter, true )
	return '<div style="width:100%;text-align:center;font-size:20pt;font-weight:bold;">' ..
		frame:callParserFunction{ name = '#mermaid', args = { s } } .. '</div>'
end

function p.pert_chart_limited(frame)
	local filter = frame.args[1] or ''
	local s = p.drawGraph( filter, false )
	return '<div style="width:100%;text-align:center;font-size:20pt;font-weight:bold;">' ..
		frame:callParserFunction{ name = '#mermaid', args = { s } } .. '</div>'
end

return p