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
|
<?php
/**
* GForge Forums Facility
*
* Copyright 2002 GForge, LLC
* http://gforge.org/
*
* @version $Id: ForumMessageFactory.class 1706 2003-02-12 17:23:48Z bigdisk $
*
* 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
*/
/*
Message Forums
By Tim Perdue, Sourceforge, 11/99
Massive rewrite by Tim Perdue 7/2000 (nested/views/save)
Complete OO rewrite by Tim Perdue 12/2002
*/
require_once('common/include/Error.class');
require_once('common/forum/ForumMessage.class');
class ForumMessageFactory extends Error {
/**
* The Forum object.
*
* @var object $Forum.
*/
var $Forum;
/**
* The forum_messages array.
*
* @var array forum_messages.
*/
var $forum_messages;
var $style;
var $offset;
var $max_rows;
var $fetched_rows;
/**
* Constructor.
*
* @param object The Forum object to which this ForumMessageFactory is associated.
* @return boolean success.
*/
function ForumMessageFactory(&$Forum) {
$this->Error();
if (!$Forum || !is_object($Forum)) {
$this->setError("ForumMessage:: Invalid group_form_id");
return false;
}
if ($Forum->isError()) {
$this->setError('ForumMessage:: '.$Forum->getErrorMessage());
return false;
}
$this->Forum =& $Forum;
return true;
}
/**
* setup - call this function before getThreaded/nested/etc to set up the user preferences.
*
* @param int The number of rows to skip.
* @param string The style of forum, whether it's nested, ultimate, etc.
* @param int The maximum number of rows to return.
* @param int Whether to set these prefs into the database - use "custom".
*/
function setup($offset,$style,$max_rows,$set) {
//echo "<BR>offset: $offset| style: $style|max_rows: $max_rows|set: $set+";
if ((!$offset) || ($offset < 0)) {
$this->offset=0;
} else {
$this->offset=$offset;
}
if (!$style || ($style != 'ultimate' && $style != 'flat' && $style != 'nested' && $style != 'threaded')) {
$style='ultimate';
}
if (!$max_rows || $max_rows < 5) {
$max_rows=25;
}
if (session_loggedin()) {
$u =& session_get_user();
$_pref=$style.'|'.$max_rows;
if ($set=='custom') {
if ($u->getPreference('forum_style')) {
if ($_pref == $u->getPreference('forum_style')) {
//do nothing - pref already stored
} else {
//set the pref
$u->setPreference ('forum_style',$_pref);
}
} else {
//set the pref
$u->setPreference ('forum_style',$_pref);
}
} else {
if ($u->getPreference('forum_style')) {
$_pref_arr=explode ('|',$u->getPreference('forum_style'));
$style=$_pref_arr[0];
$max_rows=$_pref_arr[1];
} else {
//no saved pref and we're not setting
//one because this is all default settings
}
}
}
if (!$style || ($style != 'ultimate' && $style != 'flat' && $style != 'nested' && $style != 'threaded')) {
$style='ultimate';
}
$this->style=$style;
if (!$max_rows || $max_rows < 5) {
$max_rows=25;
}
$this->max_rows=$max_rows;
}
/**
* getStyle - the style of forum this is - nested/ultimate/etc.
*
* @return string The style.
*/
function getStyle() {
return $this->style;
}
/**
* nestArray - take an array of Forum Messages and building a multi-dimensional associative array for followups.
*
* @return array The nested multi-dimensional associative array.
*/
function &nestArray(&$row) {
$cnt=count($row);
for ($i=0; $i<$cnt; $i++) {
if ($row[$i]) {
$msg_arr["".$row[$i]->getParentID().""][] =& $row[$i];
}
}
return $msg_arr;
}
/**
* getNested - Return an array of ForumMessage objects arranged for nested forum views.
*
* @return array The array of ForumMessages.
*/
function &getNested($thread_id=false) {
if ($this->forum_messages) {
return $this->forum_messages;
}
if ($thread_id) {
$thread_sql=" AND thread_id='$thread_id' ";
}
$sql="SELECT * FROM forum_user_vw
WHERE group_forum_id='".$this->Forum->getID()."'
$thread_sql
ORDER BY most_recent_date DESC";
$result=db_query($sql,($this->max_rows+25),$this->offset);
$rows = db_numrows($result);
$this->fetched_rows=$rows;
if (!$result || $rows < 1) {
$this->setError('No Messages Found '.db_error());
return false;
} else {
while ($arr = db_fetch_array($result)) {
$this->forum_messages[] = new ForumMessage($this->Forum, $arr['msg_id'], $arr);
}
}
return $this->forum_messages;
}
/**
* getThreaded - Return an array of ForumMessage objects arranged for threaded forum views.
*
* @return array The array of ForumMessages.
*/
function &getThreaded($thread_id=false) {
if ($this->forum_messages) {
return $this->forum_messages;
}
if ($thread_id) {
$thread_sql=" AND thread_id='$thread_id' ";
}
$sql="SELECT * FROM forum_user_vw
WHERE group_forum_id='".$this->Forum->getID()."'
$thread_sql
ORDER BY most_recent_date DESC";
$result=db_query($sql,($this->max_rows+25),$this->offset);
$rows = db_numrows($result);
$this->fetched_rows=$rows;
if (!$result || $rows < 1) {
$this->setError('No Messages Found '.db_error());
return false;
} else {
while ($arr = db_fetch_array($result)) {
$this->forum_messages[] = new ForumMessage($this->Forum, $arr['msg_id'], $arr);
}
}
return $this->forum_messages;
}
/**
* getFlat - Return an array of ForumMessage objects arranged for flat forum views.
*
* @return array The array of ForumMessages.
*/
function &getFlat($thread_id=false) {
if ($this->forum_messages) {
return $this->forum_messages;
}
if ($thread_id) {
$thread_sql=" AND thread_id='$thread_id' ";
}
$sql="SELECT * FROM forum_user_vw
WHERE group_forum_id='".$this->Forum->getID()."'
$thread_sql
ORDER BY msg_id DESC";
$result=db_query($sql,($this->max_rows+1),$this->offset);
$rows = db_numrows($result);
$this->fetched_rows=$rows;
if (!$result || $rows < 1) {
$this->setError('No Messages Found '.db_error());
return false;
} else {
while ($arr = db_fetch_array($result)) {
$this->forum_messages[] = new ForumMessage($this->Forum, $arr['msg_id'], $arr);
}
}
return $this->forum_messages;
}
}
?>
|