1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
|
<?php
/**
* GForge Project Management Facility
*
* Copyright 2002 GForge, LLC
* http://gforge.org/
*
* @version $Id: ProjectGroup.class,v 1.10 2003/06/23 19:47:54 tcopeland Exp $
*
* This file is part of GForge.
*
* GForge 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.
*
* GForge 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 GForge; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US
*/
/*
Project/Task Manager
By Tim Perdue, Sourceforge, 11/99
Heavy rewrite by Tim Perdue April 2000
Total rewrite in OO and GForge coding guidelines 12/2002 by Tim Perdue
*/
require_once('common/include/Error.class');
/**
* Fetches a ProjectGroup object from the database
*
* @param group_project_id the projectgroup id
* @param data whether or not the db result handle is passed in
* @return the ProjectGroup object
*/
function &projectgroup_get_object($group_project_id,$data=false) {
global $PROJECTGROUP_OBJ;
if (!isset($PROJECTGROUP_OBJ["_".$group_project_id."_"])) {
if ($data) {
//the db result handle was passed in
} else {
$res=db_query("SELECT * FROM project_group_list
WHERE group_project_id='$group_project_id'");
if (db_numrows($res) <1 ) {
$PROJECTGROUP_OBJ["_".$group_project_id."_"]=false;
return false;
}
$data =& db_fetch_array($res);
}
$Group =& group_get_object($data["group_id"]);
$PROJECTGROUP_OBJ["_".$group_project_id."_"]= new ProjectGroup($Group,$group_project_id,$data);
}
return $PROJECTGROUP_OBJ["_".$group_project_id."_"];
}
class ProjectGroup extends Error {
/**
* Associative array of data from db.
*
* @var array $data_array.
*/
var $data_array;
/**
* The Group object.
*
* @var object $Group.
*/
var $Group;
var $statuses;
var $categories;
var $technicians;
/**
* Constructor.
*
* @param object The Group object to which this forum is associated.
* @param int The group_project_id.
* @param array The associative array of data.
* @return boolean success.
*/
function ProjectGroup(&$Group, $group_project_id=false, $arr=false) {
$this->Error();
if (!$Group || !is_object($Group)) {
$this->setError('ProjectGroup:: No Valid Group Object');
return false;
}
if ($Group->isError()) {
$this->setError('ProjectGroup:: '.$Group->getErrorMessage());
return false;
}
$this->Group =& $Group;
if ($group_project_id) {
if (!$arr || !is_array($arr)) {
if (!$this->fetchData($group_project_id)) {
return false;
}
} else {
$this->data_array =& $arr;
if ($this->data_array['group_id'] != $this->Group->getID()) {
$this->setError('Group_id in db result does not match Group Object');
return false;
}
}
if (!$this->isPublic()) {
$perm =& $this->Group->getPermission( session_get_user() );
if (!$perm || !is_object($perm) || !$perm->isMember()) {
$this->setPermissionDeniedError();
$this->data_array = null;
return false;
}
}
}
return true;
}
/**
* create - create a new ProjectGroup in the database.
*
* @param string The project name.
* @param string The project description.
* @param int Whether it is (1) public or (0) private .
* @param string The email address to send new notifications to.
* @return boolean success.
*/
function create($project_name,$description,$is_public=1,$send_all_posts_to='') {
global $Language;
if (strlen($project_name) < 3) {
$this->setError($Language->getText('pm_projectgroup','error_min_name_length'));
return false;
}
if (strlen($description) < 10) {
$this->setError($Language->getText('pm_projectgroup','error_min_desc_length'));
return false;
}
if ($send_all_posts_to && !validate_email($send_all_posts_to)) {
$this->setInvalidEmailError();
return false;
}
$perm =& $this->Group->getPermission( session_get_user() );
if (!$perm || !is_object($perm) || !$perm->isPMAdmin()) {
$this->setPermissionDeniedError();
return false;
}
$sql="INSERT INTO project_group_list (group_id,project_name,is_public,
description,send_all_posts_to)
VALUES ('".$this->Group->getId()."','". htmlspecialchars($project_name) ."','$is_public',
'". htmlspecialchars($description) ."','$send_all_posts_to')";
db_begin();
$result=db_query($sql);
if (!$result) {
db_rollback();
$this->setError('Error Adding ProjectGroup: '.db_error());
return false;
}
$this->group_project_id=db_insertid($result,'project_group_list','group_project_id');
$this->fetchData($this->group_project_id);
db_commit();
return true;
}
/**
* fetchData - re-fetch the data for this ProjectGroup from the database.
*
* @param int The project group ID.
* @return boolean success.
*/
function fetchData($group_project_id) {
$res=db_query("SELECT * FROM project_group_list
WHERE group_project_id='$group_project_id'
AND group_id='". $this->Group->getID() ."'");
if (!$res || db_numrows($res) < 1) {
$this->setError('ProjectGroup:: Invalid group_project_id');
return false;
}
$this->data_array =& db_fetch_array($res);
db_free_result($res);
return true;
}
/**
* getGroup - get the Group object this ProjectGroup is associated with.
*
* @return object The Group object.
*/
function &getGroup() {
return $this->Group;
}
/**
* getID - get this GroupProjectID.
*
* @return int The group_project_id #.
*/
function getID() {
return $this->data_array['group_project_id'];
}
/**
* isPublic - Is this projectGroup open to the general public.
*
* @return boolean allow.
*/
function isPublic() {
return $this->data_array['is_public'];
}
/**
* getName - get the name of this projectGroup.
*
* @return string The name of this projectGroup.
*/
function getName() {
return $this->data_array['project_name'];
}
/**
* getSendAllPostsTo - an optional email address to send all task updates to.
*
* @return string The email address.
*/
function getSendAllPostsTo() {
return $this->data_array['send_all_posts_to'];
}
/**
* getDescription - the description of this ProjectGroup.
*
* @return string The description.
*/
function getDescription() {
return $this->data_array['description'];
}
/**
* getTaskCount - the total number of tasks in this ProjectGroup.
*
* @return int The count.
* /
function getTaskCount() {
return $this->data_array['total'];
}*/
/**
* getStatuses - Return result set of statuses.
*
* @returns Database result set.
*/
function getStatuses () {
if (!$this->statuses) {
$sql='SELECT * FROM project_status';
$this->statuses=db_query($sql);
}
return $this->statuses;
}
/**
* getCategories - Return result set of categories.
*
* @returns Database result set.
*/
function getCategories () {
if (!$this->categories) {
$sql="SELECT category_id,category_name
FROM project_category
WHERE group_project_id='".$this->getID()."'";
$this->categories=db_query($sql);
}
return $this->categories;
}
/**
* getTechnicians - Return a result set of pm technicians in this group.
*
* @returns Datbase result set.
*/
function getTechnicians () {
if (!$this->technicians) {
$sql="SELECT users.user_id,users.realname
FROM users,user_group
WHERE users.user_id=user_group.user_id
AND user_group.group_id='". $this->Group->getID() ."'
AND user_group.project_flags IN (1,2)
ORDER BY users.user_name";
$this->technicians=db_query($sql);
}
return $this->technicians;
}
/**
* create - create a new ProjectGroup in the database.
*
* @param string The project name.
* @param string The project description.
* @param int Whether it is (1) public or (0) private .
* @param string The email address to send new notifications to.
* @return boolean success.
*/
function update($project_name,$description,$is_public=1,$send_all_posts_to='') {
global $Language;
if (strlen($project_name) < 3) {
$this->setError($Language->getText('pm_projectgroup','error_min_name_length'));
return false;
}
if (strlen($description) < 10) {
$this->setError($Language->getText('pm_projectgroup','error_min_desc_length'));
return false;
}
if ($send_all_posts_to && !validate_email($send_all_posts_to)) {
$this->setInvalidEmailError();
return false;
}
$perm =& $this->Group->getPermission( session_get_user() );
if (!$perm || !is_object($perm) || !$perm->isPMAdmin()) {
$this->setPermissionDeniedError();
return false;
}
$res=db_query("UPDATE project_group_list SET
project_name='". htmlspecialchars($project_name) ."',
description='". htmlspecialchars($description) ."',
is_public='$is_public',
send_all_posts_to='$send_all_posts_to'
WHERE group_id='".$this->Group->getID()."'
AND group_project_id='".$this->getID()."'");
if (!$res || db_affected_rows($res) < 1) {
$this->setError('Error On Update: '.db_error());
return false;
}
return true;
}
}
?>
|