/core/project_hierarchy_api.php
https://github.com/fusenigk/mantisbt-1 · PHP · 290 lines · 151 code · 52 blank · 87 comment · 21 complexity · 940e5646811aa806af1d87acd60b47fb MD5 · raw file
- <?php
- # MantisBT - A PHP based bugtracking system
- # MantisBT is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 2 of the License, or
- # (at your option) any later version.
- #
- # MantisBT is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with MantisBT. If not, see <http://www.gnu.org/licenses/>.
- /**
- * Project Hierarchy API
- *
- * @package CoreAPI
- * @subpackage ProjectHierarchyAPI
- * @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
- * @copyright Copyright (C) 2002 - 2011 MantisBT Team - mantisbt-dev@lists.sourceforge.net
- * @link http://www.mantisbt.org
- *
- * @uses constant_inc.php
- * @uses database_api.php
- */
- require_api( 'constant_inc.php' );
- require_api( 'database_api.php' );
- $g_cache_project_hierarchy = null;
- $g_cache_project_inheritance = null;
- $g_cache_show_disabled = null;
- /**
- * Add project to project hierarchy
- * @param int $p_child_id Child project ID
- * @param int $p_parent_id Parent project ID
- * @param bool $p_inherit_parent Whether or not the child project inherits from the parent project
- * @return null
- */
- function project_hierarchy_add( $p_child_id, $p_parent_id, $p_inherit_parent = true ) {
- if( in_array( $p_parent_id, project_hierarchy_get_all_subprojects( $p_child_id ) ) ) {
- trigger_error( ERROR_PROJECT_RECURSIVE_HIERARCHY, ERROR );
- }
- $t_project_hierarchy_table = db_get_table( 'project_hierarchy' );
- $c_child_id = db_prepare_int( $p_child_id );
- $c_parent_id = db_prepare_int( $p_parent_id );
- $c_inherit_parent = db_prepare_bool( $p_inherit_parent );
- $query = "INSERT INTO $t_project_hierarchy_table
- ( child_id, parent_id, inherit_parent )
- VALUES
- ( " . db_param() . ', ' . db_param() . ', ' . db_param() . ' )';
- db_query_bound( $query, Array( $c_child_id, $c_parent_id, $c_inherit_parent ) );
- }
- /**
- * Update project hierarchy
- * @param int $p_child_id Child project ID
- * @param int $p_parent_id Parent project ID
- * @param bool $p_inherit_parent Whether or not the child project inherits from the parent project
- * @return null
- */
- function project_hierarchy_update( $p_child_id, $p_parent_id, $p_inherit_parent = true ) {
- $t_project_hierarchy_table = db_get_table( 'project_hierarchy' );
- $c_child_id = db_prepare_int( $p_child_id );
- $c_parent_id = db_prepare_int( $p_parent_id );
- $c_inherit_parent = db_prepare_bool( $p_inherit_parent );
- $query = "UPDATE $t_project_hierarchy_table
- SET inherit_parent=" . db_param() . '
- WHERE child_id=' . db_param() . '
- AND parent_id=' . db_param();
- db_query_bound( $query, Array( $c_inherit_parent, $c_child_id, $c_parent_id ) );
- }
- /**
- * Remove project from project hierarchy
- * @param int $p_child_id Child project ID
- * @param int $p_parent_id Parent project ID
- * @return null
- */
- function project_hierarchy_remove( $p_child_id, $p_parent_id ) {
- $t_project_hierarchy_table = db_get_table( 'project_hierarchy' );
- $c_child_id = db_prepare_int( $p_child_id );
- $c_parent_id = db_prepare_int( $p_parent_id );
- $query = "DELETE FROM $t_project_hierarchy_table
- WHERE child_id = " . db_param() . "
- AND parent_id = " . db_param();
- db_query_bound( $query, Array( $c_child_id, $c_parent_id ) );
- }
- /**
- * Remove any project hierarchy entries relating to project_id
- * @param int $p_project_id Project ID
- * @return null
- */
- function project_hierarchy_remove_all( $p_project_id ) {
- $t_project_hierarchy_table = db_get_table( 'project_hierarchy' );
- $c_project_id = db_prepare_int( $p_project_id );
- $query = "DELETE FROM $t_project_hierarchy_table
- WHERE child_id = " . db_param() . "
- OR parent_id = " . db_param();
- db_query_bound( $query, Array( $c_project_id, $c_project_id ) );
- }
- /**
- * Returns true if project is at top of hierarchy
- * @param bool $p_project_id Project ID
- * @param bool $p_show_disabled Whether or not to consider projects which are disabled
- * @return bool
- */
- function project_hierarchy_is_toplevel( $p_project_id, $p_show_disabled = false ) {
- global $g_cache_project_hierarchy;
- project_hierarchy_cache( $p_show_disabled );
- if( isset( $g_cache_project_hierarchy[ALL_PROJECTS] ) ) {
- return in_array( $p_project_id, $g_cache_project_hierarchy[ALL_PROJECTS] );
- } else {
- return false;
- }
- }
- /**
- * Cache project hierarchy
- * @param bool $p_show_disabled Whether or not to cache projects which are disabled
- * @return bool
- */
- function project_hierarchy_cache( $p_show_disabled = false ) {
- global $g_cache_project_hierarchy, $g_cache_project_inheritance;
- global $g_cache_show_disabled;
- if( !is_null( $g_cache_project_hierarchy ) && ( $g_cache_show_disabled == $p_show_disabled ) ) {
- return;
- }
- $g_cache_show_disabled = $p_show_disabled;
- $t_project_table = db_get_table( 'project' );
- $t_project_hierarchy_table = db_get_table( 'project_hierarchy' );
- $t_enabled_clause = $p_show_disabled ? '1=1' : 'p.enabled = ' . db_param();
- $query = "SELECT DISTINCT p.id, ph.parent_id, p.name, p.inherit_global, ph.inherit_parent
- FROM $t_project_table p
- LEFT JOIN $t_project_hierarchy_table ph
- ON ph.child_id = p.id
- WHERE $t_enabled_clause
- ORDER BY p.name";
- $result = db_query_bound( $query, ( $p_show_disabled ? null : Array( true ) ) );
- $row_count = db_num_rows( $result );
- $g_cache_project_hierarchy = array();
- $g_cache_project_inheritance = array();
- for( $i = 0;$i < $row_count;$i++ ) {
- $row = db_fetch_array( $result );
- if( null === $row['parent_id'] ) {
- $row['parent_id'] = ALL_PROJECTS;
- }
- if( isset( $g_cache_project_hierarchy[(int)$row['parent_id']] ) ) {
- $g_cache_project_hierarchy[(int)$row['parent_id']][] = (int)$row['id'];
- } else {
- $g_cache_project_hierarchy[(int)$row['parent_id']] = array(
- (int)$row['id'],
- );
- }
- if( !isset( $g_cache_project_inheritance[(int)$row['id']] ) ) {
- $g_cache_project_inheritance[(int)$row['id']] = array();
- }
- if( $row['inherit_global'] && !isset( $g_cache_project_inheritance[(int)$row['id']][ALL_PROJECTS] ) ) {
- $g_cache_project_inheritance[(int)$row['id']][] = ALL_PROJECTS;
- }
- if( $row['inherit_parent'] && !isset( $g_cache_project_inheritance[(int)$row['id']][(int)$row['parent_id']] ) ) {
- $g_cache_project_inheritance[(int)$row['id']][] = (int) $row['parent_id'];
- }
- }
- }
- /**
- * Returns true if the child project inherits categories from the parent.
- * @param int $p_child_id Child project ID
- * @param int $p_parent_id Parent project ID
- * @param bool $p_show_disabled Whether or not to consider projects which are disabled
- * @return bool
- */
- function project_hierarchy_inherit_parent( $p_child_id, $p_parent_id, $p_show_disabled = false ) {
- global $g_cache_project_inheritance;
- project_hierarchy_cache( $p_show_disabled );
- return in_array( $p_parent_id, $g_cache_project_inheritance[$p_child_id] );
- }
- /**
- * Generate an array of project's the given project inherits from,
- * including the original project in the result.
- * @param int $p_project_id Project ID
- * @param bool $p_show_disabled Whether or not to consider projects which are disabled
- * @return array
- */
- function project_hierarchy_inheritance( $p_project_id, $p_show_disabled = false ) {
- global $g_cache_project_inheritance;
- project_hierarchy_cache( $p_show_disabled );
- $t_project_ids = array(
- (int) $p_project_id,
- );
- $t_lookup_ids = array(
- (int) $p_project_id,
- );
- while( count( $t_lookup_ids ) > 0 ) {
- $t_project_id = array_shift( $t_lookup_ids );
- if( !isset( $g_cache_project_inheritance[$t_project_id] ) ) {
- continue;
- }
- foreach( $g_cache_project_inheritance[$t_project_id] as $t_parent_id ) {
- if( !in_array( $t_parent_id, $t_project_ids ) ) {
- $t_project_ids[] = $t_parent_id;
- if( !in_array( $t_lookup_ids, $t_project_ids ) ) {
- $t_lookup_ids[] = $t_parent_id;
- }
- }
- }
- }
- return $t_project_ids;
- }
- /**
- * Get subprojects for a project
- * @param int $p_project_id Project ID
- * @param bool $p_show_disabled Whether or not to consider projects which are disabled
- * @return array
- */
- function project_hierarchy_get_subprojects( $p_project_id, $p_show_disabled = false ) {
- global $g_cache_project_hierarchy;
- project_hierarchy_cache( $p_show_disabled );
- if( isset( $g_cache_project_hierarchy[$p_project_id] ) ) {
- return $g_cache_project_hierarchy[$p_project_id];
- } else {
- return array();
- }
- }
- /**
- * Get complete subproject hierarchy for a project
- * @param int $p_project_id Project ID
- * @param bool $p_show_disabled Whether or not to consider projects which are disabled
- * @return array
- */
- function project_hierarchy_get_all_subprojects( $p_project_id, $p_show_disabled = false ) {
- $t_todo = project_hierarchy_get_subprojects( $p_project_id, $p_show_disabled );
- $t_subprojects = Array();
- while( $t_todo ) {
- $t_elem = array_shift( $t_todo );
- if( !in_array( $t_elem, $t_subprojects ) ) {
- array_push( $t_subprojects, $t_elem );
- $t_todo = array_merge( $t_todo, project_hierarchy_get_subprojects( $t_elem, $p_show_disabled ) );
- }
- }
- return $t_subprojects;
- }