FolderBrowser.inc
6.4 KB
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
<?php
require_once("$default->fileSystemRoot/lib/browse/Browser.inc");
require_once("$default->fileSystemRoot/lib/security/permission.inc");
require_once("$default->fileSystemRoot/lib/users/User.inc");
require_once("$default->fileSystemRoot/lib/documentmanagement/Document.inc");
require_once("$default->fileSystemRoot/lib/foldermanagement/Folder.inc");
/**
*
* $Id$
*
* Contains document browsing business logic.
*
* Licensed under the GNU GPL. For full terms see the file COPYING.
*
* @version $Revision$
* @author Michael Joseph <michael@jamwarehouse.com>, Jam Warehouse (Pty) Ltd, South Africa
*
* @package lib.documentmanagement
*/
class FolderBrowser extends Browser {
/**
* Construct a new FolderBrowser instance with the specified sort criteria
*
* @param string the field to sort the results by
* @param string the direction to sort the results
*/
function FolderBrowser($sSortField = "name", $sSortDirection = "asc", $aNewSortCriteria = array()) {
Browser::Browser($sSortField, $sSortDirection, $aNewSortCriteria);
}
/**
* Browse the documents by folder
*
* @return array folders and documents
*/
function browse() {
global $default, $fFolderID;
// we're browsing folders
$this->setBrowseStart($fFolderID);
$iFolderID = $fFolderID;
// instantiate and initialise
$results = array();
$sql = $default->db;
// no folder specified, so depending on the users groups, resolve to the right folderID
if ($iFolderID == "") {
// no folder specified, so start at the root folder
// look up this users unit
$unitID = User::getUnitID($_SESSION["userID"]);
if ($unitID) {
// if the user is in a unit, start at the unit's root folder
// lookup the unit name
$unitName = lookupField($default->owl_units_table, "name", "id", $unitID);
// the unit root folder has the same name as the unit
// FIXME: dodgy i know, but its easy
$unitRootFolderName = $unitName;
// now lookup the folderID
$aFolders = Folder::getList("name='$unitRootFolderName' and parent_id=1");
if (!$aFolders) {
// no folder exists with this name, so start at the root
$iFolderID = lookupID($default->owl_folders_table, "parent_id", 0);
} else {
$iFolderID = $aFolders[0]->getID();
}
} else {
// else just start at the root
// FIXME: start at the root folder for the default organisation
$iFolderID = lookupID($default->owl_folders_table, "parent_id", 0);
}
}
$default->log->debug("FolderBrowser::browseByFolder: folderID=$iFolderID");
// get the folder
$results["folders"][] = & Folder::get($iFolderID);
if ($results["folders"][0]) {
// now find all the child folders relative to this one
// FIXME: in the same unit?
$aLookupCriteria = $this->aSortCriteria[$this->sSortField]["lookup"];
// if we're sorting by name or creator_id then sort folders in the appropriate direction
$sFolderQuery = "SELECT f.id FROM $default->owl_folders_table AS f ";
if (in_array($this->sSortField, array("name", "creator_id"))) {
if (isset($aLookupCriteria)) {
$sFolderQuery .= "INNER JOIN " . $aLookupCriteria["table"] . " lt ON f.$this->sSortField=lt.id WHERE parent_id=" . $iFolderID;
$sFolderQuery .= " ORDER BY lt." . $aLookupCriteria["field"] . " $this->sSortDirection";
} else {
$sFolderQuery .= "WHERE parent_id=$iFolderID ORDER BY $this->sSortField $this->sSortDirection";
}
} else {
$sFolderQuery .= "WHERE parent_id=$iFolderID ORDER BY f.name asc";
}
$default->log->debug("folderQuery = $sFolderQuery");
if ($sql->query($sFolderQuery)) {
while ($sql->next_record()) {
// add the child folders to the array
$results["folders"][] = & Folder::get($sql->f("id"));
}
}
// create query to retrieve documents in this folder
$documentQuery = "SELECT d.id as id FROM $default->owl_documents_table AS d ";
if ( isset($aLookupCriteria) ) {
$documentQuery .= "INNER JOIN " . $aLookupCriteria["table"] . " lt ON ";
$documentQuery .= "d.$this->sSortField" . "=lt." . (isset($aLookupCriteria["joinColumn"]) ? $aLookupCriteria["joinColumn"] : "id");
}
$documentQuery .= " WHERE d.folder_id=$iFolderID " . (isset($aLookupCriteria["whereClause"]) ? "AND lt." . $aLookupCriteria["whereClause"] : "") . " ";
if ( isset($aLookupCriteria) ) {
$documentQuery .= "ORDER BY lt." . $aLookupCriteria["field"] . " $this->sSortDirection";
} else {
$documentQuery .= "ORDER BY $this->sSortField $this->sSortDirection";
}
$default->log->debug("docQuery=$documentQuery");
// initialise access flag;
$results["accessDenied"] = false;
if ($sql->query($documentQuery)) {
while ($sql->next_record()) {
// check permissions
if (Permission::userHasDocumentReadPermission($sql->f("id"))) {
// add documents to array
// set file attributes
$oDocument = & Document::get($sql->f("id"));
if ($oDocument->isLive()) {
$results["documents"][] = $oDocument;
}
} else {
// set access denied message
$results["accessDenied"] = true;
}
}
} else {
$_SESSION["errorMessage"] = "documents table select failed";
}
return $results;
}
}
function getSectionName() {
return "Manage Documents";
}
}