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 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
|
<?php
/**
* FusionForge document manager
*
* Copyright 2000, Quentin Cregan/Sourceforge
* Copyright 2002-2003, Tim Perdue/GForge, LLC
* Copyright 2009, Roland Mas
* Copyright 2010-2011, Franck Villaume - Capgemini
* Copyright (C) 2012 Alain Peyrat - Alcatel-Lucent
* Copyright 2012-2013, Franck Villaume - TrivialDev
* http://fusionforge.org
*
* This file is part of FusionForge. FusionForge 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 Licence, or (at your option)
* any later version.
*
* FusionForge 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 FusionForge; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
require_once $gfcommon.'include/Error.class.php';
require_once $gfcommon.'docman/Document.class.php';
class DocumentFactory extends Error {
/**
* The Group object.
*
* @var object $Group.
*/
var $Group;
/**
* The Documents dictionary.
*
* @var array Contains doc_group_id as key and the array of documents associated to that id.
*/
var $Documents;
/**
* The stateid limit
* @var integer Contains the stateid to limit return documents in getDocuments.
*/
var $stateid;
/**
* The doc_group_id limit
* @var integer Contains the doc_group id to limit return documents in getDocuments.
*/
var $docgroupid;
/**
* The sort order
* @var string Contains the order to return documents in getDocuments.
* Default value is ASC
*/
var $sort = 'ASC';
/**
* The columns order
* @var array Contains the order of columns to sort before return documents in getDocuments.
* Default value is title order
*/
var $order = array('title');
/**
* The limit
* @var integer Contains the limit of documents retrieve by getDocuments.
* Default value is 0 which means NO LIMIT
*/
var $limit = 0;
/**
* Constructor.
*
* @param $Group
* @internal param \The $object Group object to which this DocumentFactory is associated.
* @return \DocumentFactory
* @access public
*/
function __construct(&$Group) {
$this->Error();
if (!$Group || !is_object($Group)) {
$this->setError(_('No Valid Group Object'));
return;
}
if ($Group->isError()) {
$this->setError('ProjectGroup:: '.$Group->getErrorMessage());
return;
}
$this->Group =& $Group;
}
/**
* getGroup - get the Group object this DocumentFactory is associated with.
*
* @return object the Group object.
*/
function &getGroup() {
return $this->Group;
}
/**
* setStateID - call this before getDocuments() if you want to limit to a specific state.
*
* @param int $stateid The stateid from the doc_states table.
* @access public
*/
function setStateID($stateid) {
$this->stateid = $stateid;
}
/**
* setDocGroupID - call this before getDocuments() if you want to limit to a specific doc_group.
*
* @param int $docgroupid The doc_group from the doc_groups table.
* @access public
*/
function setDocGroupID($docgroupid) {
$this->docgroupid = $docgroupid;
}
/**
* setSort - call this before getDocuments() if you want to order the query.
*
* @param string $sort ASC or DESC : default ASC
* @access public
*/
function setSort($sort) {
if ( $sort != 'ASC' && $sort != 'DESC') {
$this->sort = 'ASC';
} else {
$this->sort = $sort;
}
}
/**
* setOrder - call this before getDocuments() if you want to sort the query.
*
* @param array $columns Ordered Columns names: default title
* @access public
*/
function setOrder($columns = array('title')) {
// validate columns names
$localColumns = array();
foreach ($columns as $column) {
switch ($column) {
case "title": {
$localColumns[] = "title";
break;
}
case "createdate": {
$localColumns[] = "createdate";
break;
}
case "updatedate": {
$localColumns[] = "updatedate";
break;
}
case "user_name": {
$localColumns[] = "user_name";
break;
}
case "realname": {
$localColumns[] = "realname";
break;
}
case "email": {
$localColumns[] = "email";
break;
}
case "group_id": {
$localColumns[] = "group_id";
break;
}
case "docid": {
$localColumns[] = "docid";
break;
}
case "stateid": {
$localColumns[] = "stateid";
break;
}
case "create_by": {
$localColumns[] = "create_by";
break;
}
case "doc_group": {
$localColumns[] = "doc_group";
break;
}
case "description": {
$localColumns[] = "description";
break;
}
case "filename": {
$localColumns[] = "filename";
break;
}
case "filetype": {
$localColumns[] = "filetype";
break;
}
case "reserved": {
$localColumns[] = "reserved";
break;
}
case "reserved_by": {
$localColumns[] = "reserved_by";
break;
}
case "locked": {
$localColumns[] = "locked";
break;
}
case "locked_by": {
$localColumns[] = "locked_by";
break;
}
case "lockdate": {
$localColumns[] = "lockdate";
break;
}
case "state_name": {
$localColumns[] = "state_name";
break;
}
case "group_name": {
$localColumns[] = "group_name";
break;
}
default: {
//unknown column: skip it
break;
}
}
}
$this->order = $localColumns;
}
/**
* setLimit - call this before getDocuments() if you want to limit number of documents retrieve.
* default value is 0 which means : no limit.
*
* @param int The limit of documents
* @access public
*/
function setLimit($limit) {
$this->limit = $limit;
}
/**
* getDocuments - returns an array of Document objects.
*
* @param int $nocache
* @internal param \no $integer cache : force reinit $this->Documents : default: cache is used
* @return array Document objects.
* @access public
*/
function &getDocuments($nocache = 0) {
if (!$this->Documents || $nocache) {
$this->getFromStorage();
}
$return = array();
// limit scope to the doc_group_id if any. Useful when you retrieve all documents
if ($this->docgroupid) {
$keys = array($this->docgroupid);
} else {
$keys = array_keys($this->Documents);
}
foreach ($keys as $key) {
if (!array_key_exists($key, $this->Documents)) continue; // Should not happen
$count = count($this->Documents[$key]);
for ($i=0; $i < $count; $i++) {
$valid = true; // do we need to return this document?
$doc =& $this->Documents[$key][$i];
if (!$this->stateid) {
$perm =& $this->Group->getPermission();
if (!$perm || !is_object($perm)) {
if ($doc->getStateID() != 1) {
$valid = false;
}
if ($perm->isDocEditor()) {
$valid = true;
}
}
} else {
if ($this->stateid != "ALL" && $doc->getStateID() != $this->stateid) {
$valid = false;
}
}
if ($valid) {
$return[] =& $doc;
}
}
}
if (count($return) === 0) {
$this->setError(_('No Documents Found'));
$return = NULL;
return $return;
}
return $return;
}
/**
* getFromStorage - Retrieve documents from storage (database for all informations).
* you can limit query to speed up: warning, once $this->documents is retrieve, it's cached.
*
* @return boolean success or not
* @access private
*/
private function getFromStorage() {
$this->Documents = array();
$qpa = db_construct_qpa();
$qpa = db_construct_qpa($qpa, 'SELECT * FROM docdata_vw WHERE group_id = $1 ',
array($this->Group->getID()));
if ($this->docgroupid) {
$qpa = db_construct_qpa($qpa, 'AND doc_group = $1 ', array($this->docgroupid));
}
$qpa = db_construct_qpa($qpa, 'ORDER BY ');
for ($i=0; $i<count($this->order); $i++) {
$qpa = db_construct_qpa($qpa, $this->order[$i]);
if (count($this->order) != $i + 1) {
$qpa = db_construct_qpa($qpa, ',');
} else {
$qpa = db_construct_qpa($qpa, ' ');
}
}
$qpa = db_construct_qpa($qpa, $this->sort);
if ($this->limit !== 0 ) {
$qpa = db_construct_qpa($qpa, ' LIMIT $1', array($this->limit));
}
$result = db_query_qpa($qpa);
if (!$result) {
$this->setError('getFromStorage::'.db_error());
return false;
}
while ($arr = db_fetch_array($result)) {
$doc_group_id = $arr['doc_group'];
if (!is_array(@$this->Documents[$doc_group_id])) {
$this->Documents[$doc_group_id] = array();
}
$this->Documents[$doc_group_id][] = new Document($this->Group, $arr['docid'], $arr);
}
return true;
}
}
// Local Variables:
// mode: php
// c-file-style: "bsd"
// End:
|