FolderSubscription.inc
4.98 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
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
<?php
/**
*
* $Id$
*
* Represents a folder subscription.
*
* 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.subscriptions
*/
class FolderSubscription {
/**
* Primary key
*/
var $iID;
/**
* The ID of the folder subscribed to
*/
var $iFolderID;
/**
* The ID of the user subscribed to the folder
*/
var $iUserID;
/**
* Creates a new folder subscription object
*
* @param integer the folder ID
* @param integer the user ID
*/
function FolderSubscription($iFolderID, $iUserID) {
//id of -1 means that the object has not yet been stored in the database
$this->iID = -1;
$this->iFolderID = $iFolderID;
$this->iUserID = $iUserID;
}
/**
* Get the primary key of the current folder subscription object
*
* @return integer primary key of folder subscription
*/
function getID() {
return $this->iID;
}
/**
* Get the primary key of the folder.
*
* @return integer primary key of folder
*/
function getFolderID() {
return $this->iFolderID;
}
/**
* Set the folder id
*
* @param integer new folder primary key
*/
function setFolderID($iNewValue) {
$this->iFolderID = $iNewValue;
}
/**
* Get the primary key of the user
*
* @return integer primary key of user
*/
function getUserID() {
return $this->iUserID;
}
/**
* Set the user id
*
* @param integer new user primary key
*/
function setUserID($iNewValue) {
$this->iUserID = $iNewValue;
}
/**
* Create the current folder subscription in the database
*
* @return boolean true and set $this->iID with new primary key, false otherwise and set $_SESSION["errorMessage"]
*/
function create() {
global $default, $lang_err_database; $lang_err_object_exists;
//if the object has not already been stored
if ($this->iID < 0) {
$sql = $default->db;
$result = $sql->query("INSERT INTO " . $default->owl_folder_subscriptions_table . " (user_id, folder_id) " .
"VALUES ($this->iUserID, $this->iFolderID)");
if ($result) {
$this->iID = $sql->insert_id();
// TODO: now create subscriptions for all the documents in this folder
return true;
}
$_SESSION["errorMessage"] = $lang_err_database;
return false;
}
$_SESSION["errorMessage"] = $lang_err_object_exists . "id = " . $this->iID . " table = folder_subscriptions";
return false;
}
/**
* Update the current folder subscription values in the database
*
* @return boolean true on successful update, false otherwise and set $_SESSION["errorMessage"]
*/
function update() {
global $default, $lang_err_database, $lang_err_object_key;
//can only update the object if it has already been stored
if ($this->iID >= 0) {
$sql = $default->db;
$result = $sql->query("UPDATE " . $default->owl_folder_subscriptions_table . " SET " .
"user_id = $this->iUserID, " .
"folder_id = $this->iFolderID " .
"WHERE id = " . $this->iID);
if ($result) {
return true;
}
$_SESSION["errorMessage"] = $lang_err_database;
return false;
}
$_SESSION["errorMessage"] = $lang_err_object_key;
}
/**
* Delete the current object from the database
*
* @return boolean true and reset id to -1 on successful delete, false otherwise and set $_SESSION["errorMessage"]
*/
function delete() {
global $default, $lang_err_database, $lang_err_object_key;
if ($this->iID >= 0) {
$sql = $default->db;
$result = $sql->query("DELETE FROM " . $default->owl_folder_subscriptions_table . " WHERE id = " . $this->iID);
if ($result) {
$this->iID = -1;
// TODO: remove all document subscriptions?
return true;
}
$_SESSION["errorMessage"] = $lang_err_database;
return false;
}
$_SESSION["errorMessage"] = $lang_err_object_key;
return false;
}
/**
* Static function.
* Given a folder subscription primary key will create
* a folder subscription object and populate it with the corresponding
* database values
*
* @param integer primary key of folder subscription to get
*
* @return object folder subscription object on successful retrieval, false otherwise and set $_SESSION["errorMessage"]
*/
function get($iFolderSubscriptionID) {
global $default, $lang_err_object_not_exist;
$sql = $default->db;
$sql->query("SELECT * FROM " . $default->owl_folder_subscriptions_table . " WHERE id = " . $iFolderSubscriptionID);
if ($sql->next_record()) {
$oFolderSubscription = & new FolderSubscription($sql->f("folder_id"), $sql->f("user_id"));
$oFolderSubscription->iID = $iFolderSubscriptionID;
return $oFolderSubscription;
}
$_SESSION["errorMessage"] = $lang_err_object_not_exist . "id = " . $iFolderSubscriptionID . " table = folder_subscriptions";
return false;
}
}
?>