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
|
<?php
/**
* GForge Doc Mgr Facility
*
* Copyright 2002 GForge, LLC
* http://gforge.org/
*
* @version $Id: DocumentGroup.class 5148 2005-12-16 17:21:36Z marcelo $
*
* 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 USA
*/
/*
Document Manager
by Quentin Cregan, SourceForge 06/2000
Complete OO rewrite by Tim Perdue 1/2003
*/
require_once('common/include/Error.class');
class DocumentGroup extends Error {
/**
* The Group object.
*
* @var object $Group.
*/
var $Group; //object
/**
* Array of data.
*
* @var array $data_array.
*/
var $data_array;
/**
* DocumentGroup - constructor.
*
* Use this constructor if you are modifying an existing doc_group.
*
* @param object Group object.
* @param array (all fields from doc_groups) OR doc_group from database.
* @return boolean success.
*/
function DocumentGroup(&$Group, $data=false) {
$this->Error();
//was Group legit?
if (!$Group || !is_object($Group)) {
$this->setError('DocumentGroup: No Valid Group');
return false;
}
//did Group have an error?
if ($Group->isError()) {
$this->setError('DocumentGroup: '.$Group->getErrorMessage());
return false;
}
$this->Group =& $Group;
if ($data) {
if (is_array($data)) {
$this->data_array =& $data;
//
// should verify group_id
//
return true;
} else {
if (!$this->fetchData($data)) {
return false;
} else {
return true;
}
}
}
}
/**
* create - create a new item in the database.
*
* @param string Item name.
* @return id on success / false on failure.
*/
function create($name,$parent_doc_group=0) {
global $Language;
//
// data validation
//
if (!$name) {
$this->setError($Language->getText('docman_common_docgroup','name_required'));
return false;
}
if ($parent_doc_group) {
// check if parent group exists
$res=db_query("SELECT * FROM doc_groups WHERE doc_group='$parent_doc_group' AND group_id=".$this->Group->getID());
if (!$res || db_numrows($res) < 1) {
$this->setError($Language->getText('docman_common_docgroup','invalid_parent_id'));
return false;
}
} else {
$parent_doc_group = 0;
}
$perm =& $this->Group->getPermission (session_get_user());
if (!$perm || !$perm->isDocEditor()) {
$this->setPermissionDeniedError();
return false;
}
$sql="INSERT INTO doc_groups (group_id,groupname,parent_doc_group)
VALUES ('".$this->Group->getID()."','".htmlspecialchars($name)."','".$parent_doc_group."')";
$result=db_query($sql);
if ($result && db_affected_rows($result) > 0) {
$this->clearError();
} else {
$this->setError('DocumentGroup::create() Error Adding Group: '.db_error());
return false;
}
$doc_group = db_insertid($result, 'doc_groups', 'doc_group');
// Now set up our internal data structures
if (!$this->fetchData($doc_group)) {
return false;
}
return true;
}
/**
* fetchData - re-fetch the data for this DocumentGroup from the database.
*
* @param int ID of the doc_group.
* @return boolean.
*/
function fetchData($id) {
global $Language;
$res=db_query("SELECT * FROM doc_groups WHERE doc_group='$id'");
if (!$res || db_numrows($res) < 1) {
$this->setError($Language->getText('docman_common_docgroup','invalid_id'));
return false;
}
$this->data_array =& db_fetch_array($res);
db_free_result($res);
return true;
}
/**
* getGroup - get the Group Object this DocumentGroup is associated with.
*
* @return Object Group.
*/
function &getGroup() {
return $this->Group;
}
/**
* getID - get this DocumentGroup's ID.
*
* @return int The id #.
*/
function getID() {
return $this->data_array['doc_group'];
}
/**
* getID - get parent DocumentGroup's id.
*
* @return int The id #.
*/
function getParentID() {
return $this->data_array['parent_doc_group'];
}
/**
* getName - get the name.
*
* @return String The name.
*/
function getName() {
return $this->data_array['groupname'];
}
/**
* update - update a DocumentGroup.
*
* @param string Name of the category.
* @return boolean.
*/
function update($name,$parent_doc_group) {
global $Language;
$perm =& $this->Group->getPermission (session_get_user());
if (!$perm || !$perm->isDocEditor()) {
$this->setPermissionDeniedError();
return false;
}
if (!$name) {
$this->setMissingParamsError();
return false;
}
if ($parent_doc_group) {
// check if parent group exists
$res=db_query("SELECT * FROM doc_groups WHERE doc_group='$parent_doc_group' AND group_id=".$this->Group->getID());
if (!$res || db_numrows($res) < 1) {
$this->setError($Language->getText('docman_common_docgroup','invalid_parent_id'));
return false;
}
} else {
$parent_doc_group=0;
}
$sql="UPDATE doc_groups
SET groupname='".htmlspecialchars($name)."',
parent_doc_group='".$parent_doc_group."'
WHERE doc_group='". $this->getID() ."'
AND group_id='".$this->Group->getID()."'";
$result=db_query($sql);
if ($result && db_affected_rows($result) > 0) {
return true;
} else {
$this->setError(db_error());
return false;
}
}
/**
* hasDocuments - Recursive function that checks if this group or any of it childs has documents associated to it
*
* A group has associated documents if and only if there are documents associated to this
* group or to any of its childs
*
* @param array Array of nested groups information, fetched from DocumentGroupFactory class
* @param object The DocumentFactory object
* @param int (optional) State of the documents
*/
function hasDocuments(&$nested_groups, &$document_factory, $stateid=0) {
static $result = array(); // this function will probably be called several times so we better store results in order to speed things up
if (!is_array($result[$stateid])) $result[$stateid] = array();
if (array_key_exists($doc_group_id, $result[$stateid])) return $result[$stateid][$doc_group_id];
$doc_group_id = $this->getID();
// check if it has documents
if ($stateid) {
$document_factory->setStateID($stateid);
}
$document_factory->setDocGroupID($doc_group_id);
$docs = $document_factory->getDocuments();
if (is_array($docs) && count($docs) > 0) { // this group has documents
$result[$stateid][$doc_group_id] = true;
return true;
}
// this group doesn't have documents... check recursively on the childs
if (is_array($nested_groups["$doc_group_id"])) {
$count = count($nested_groups["$doc_group_id"]);
for ($i=0; $i < $count; $i++) {
if ($nested_groups["$doc_group_id"][$i]->hasDocuments($nested_groups, $document_factory, $stateid)) {
// child has documents
$result[$stateid][$doc_group_id] = true;
return true;
}
}
// no child has documents, then this group doesn't have associated documents
$result[$stateid][$doc_group_id] = false;
return false;
} else { // this group doesn't have childs
$result[$stateid][$doc_group_id] = false;
return false;
}
}
/**
* hasSubgroup - Checks if this group has a specified subgroup associated to it
*
* @param array Array of nested groups information, fetched from DocumentGroupFactory class
* @param int ID of the subgroup
*/
function hasSubgroup(&$nested_groups, $doc_subgroup_id) {
$doc_group_id = $this->getID();
if (is_array($nested_groups["$doc_group_id"])) {
$count = count($nested_groups["$doc_group_id"]);
for ($i=0; $i < $count; $i++) {
// child is a match?
if ($nested_groups["$doc_group_id"][$i]->getID() == $doc_subgroup_id) {
return true;
} else {
// recursively check if this child has this subgroup
if ($nested_groups["$doc_group_id"][$i]->hasSubgroup($nested_groups, $doc_subgroup_id)) {
return true;
}
}
}
}
return false;
}
}
?>
|