Module:Graph

From mcr

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 '<<TABLE BORDER="0"><TR><TD>' .. s .. extra .. '</TD></TR></TABLE>>'
end

function p.getNodes( category, depends_on_property, status_property,
	owner_property, project_property, column_property, tag_property, filter )
	local nodes = {};
	local result = mw.smw.getQueryResult( '[[Category:' .. category .. ']]' ..
		filter .. '|?' .. depends_on_property .. '|?' .. status_property ..
		'|?' .. owner_property .. '|?' .. project_property .. '|?' ..
		column_property .. '|?' .. tag_property .. '|limit=500' )
    if result ~= nil then
		for k1,v1 in pairs( result.results ) do
			nodes[v1.fulltext] = {}
			local extra = ''
			local owner = table.concat( v1.printouts[owner_property], ', ' )
			if ( #owner > 0 ) then
				extra = '<BR/>' .. owner
			end
			for k2,v2 in pairs ( v1.printouts[project_property] ) do
				if string.match( v2, '^MCR%-SDC' ) or
					string.match( v2, '^Multi%-Content%-Revisions' ) then
					extra = extra .. '<BR/>' .. v2 .. ' (' ..
						v1.printouts[column_property][1] .. ')'
					break;
				end
			end
			nodes[v1.fulltext].displaytitle =
				p.cleanseDisplayTitle( v1.displaytitle, extra )
			nodes[v1.fulltext].status = v1.printouts[status_property][1]
			nodes[v1.fulltext].dependencies = {} 
			for k2,v2 in pairs ( v1.printouts[depends_on_property] ) do
				nodes[v1.fulltext].dependencies[v2.fulltext] = true
			end
			nodes[v1.fulltext].projects = {}
			for k2,v2 in pairs ( v1.printouts[project_property] ) do
				nodes[v1.fulltext].projects[v2] = true
			end
			nodes[v1.fulltext].column = v1.printouts[column_property][1]
			nodes[v1.fulltext].tags = v1.printouts[tag_property]
		end
	end
   return nodes
end

function p.getPageName( title )
	return string.sub( title, string.find( title, ':' ) + 1 )
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( category, depends_on_property, status_property,
	owner_property, project_property, column_property, tag_property, filter )
	local nodes = p.getNodes( category, depends_on_property, status_property,
		owner_property, project_property, column_property, tag_property,
		filter)
	local s = 'digraph '
	s = s .. 'pert_chart'
	s = s .. ' {\n'
	s = s .. 'rankdir=LR;\n'
	s = s .. 'node [shape=box, fontsize=10, fontname="Arial"];\n'
	s = s .. 'edge [color=gray75];\n'

	for k1,v1 in pairs( nodes ) do
		s = s .. p.getPageName( k1 ) .. ' [URL="[[' .. k1 .. ']]", label=' .. v1.displaytitle
		if v1.projects['Epic'] then
			if v1.status == 'resolved' then
				s = s .. ', color=blue3, fontcolor=blue3'
			else
				s = s .. ', color=gray50, fontcolor=gray50'
			end
			s = s .. ', shape=box3d'
		else
			if p.contains( v1.tags, 'Deployment' ) then
				s = s .. ', shape=cds'
			end
			if v1.status == 'resolved' then
				s = s .. ', color=blue3, fontcolor=blue3'
			elseif v1.column == 'Planning' then
				s = s .. ', color=darkgoldenrod, fontcolor=darkgoldenrod'
			elseif v1.column == 'In Progress' then
				s = s .. ', color=darkgreen, fontcolor=darkgreen'
			elseif v1.column == 'Blocked' then
				s = s .. ', color=firebrick, fontcolor=firebrick'
			elseif v1.column == 'Blocked on Review' then
				s = s .. ', color=darkorange2, fontcolor=darkorange2'
			elseif v1.column == 'Done' then
				s = s .. ', color=blue3, fontcolor=blue3'
			end
		end
		s = s .. '];\n'
	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
	s = s .. '}\n'
	return s
end

function p.pert_chart(frame)
	local filter = frame.args[1] or ''
	local s = p.drawGraph( 'Phabricator Tasks', 'Subtask', 'Status', 'Owner', 'Project', 'MCR Column', 'Tag', filter )
	return frame:callParserFunction{ name = '#tag', args = { 'graphviz', format='png', s } }
end

return p