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
/**
* Copyright (c) STMicroelectronics, 2004-2009. All rights reserved
*
* This file is a part of Codendi.
*
* Codendi 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.
*
* Codendi 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 Codendi. If not, see <http://www.gnu.org/licenses/>.
*/
require_once 'common/dao/include/DataAccessObject.class.php';
/*
define('FORUMML_MESSAGE_ID', 1);
define('FORUMML_DATE', 2);
define('FORUMML_FROM', 3);
define('FORUMML_SUBJECT', 4);
define('FORUMML_CONTENT_TYPE', 12);
define('FORUMML_CC', 34);
*/
class ForumML_MessageDao extends DataAccessObject {
function __construct($da) {
parent::__construct($da);
}
function searchHeaderValue($messageId, $headerId) {
$messageId = $this->da->quoteSmart($messageId);
$headerId = $this->da->quoteSmart($headerId);
$sql = 'SELECT mh.value'.
' FROM plugin_forumml_message m'.
' JOIN plugin_forumml_messageheader mh'.
' ON (mh.id_message = m.id_message)'.
' JOIN plugin_forumml_header h'.
' ON (h.id_header = mh.id_header)'.
' WHERE m.id_message = $1'.
' AND h.id_header = $2';
return $this->retrieve($sql,array($messageId,$headerId));
}
function getMessageHeaders($id_message) {
$id_message = $this->da->quoteSmart($id_message);
$sql = 'SELECT value'.
' FROM plugin_forumml_messageheader'.
' WHERE id_message = $1'.
' AND id_header < 5'.
' ORDER BY id_header';
return $this->retrieve($sql,array($id_message));
}
function getSpecificMessage($id_message,$list_id) {
$id_message = $this->da->quoteSmart($id_message);
$list_id = $this->da->quoteSmart($list_id);
$sql ='SELECT value, body'.
' FROM plugin_forumml_message m, plugin_forumml_messageheader mh'.
' WHERE m.id_message =$1 '.
' AND mh.id_message = m.id_message'.
' AND m.id_list = $2'.
' AND mh.id_header = $3';
return $this->retrieve($sql,array($id_message,$list_id,FORUMML_SUBJECT));
}
function getHeaderValue($id, $ids) {
$id = $this->da->quoteSmart($id);
$ids = $this->da->quoteSmart($ids);
if (!isset($ids)) {
$ids = 'SELECT id_header FROM plugin_forumml_messageheader';
}
$sql = 'SELECT value , id_header FROM plugin_forumml_messageheader'.
' WHERE id_message =$1 and id_header IN ($2,$3) ORDER BY id_header DESC';
return $this->retrieve($sql,array($id,$ids[0],$ids[1]));
}
function getAllThreadsFromList($list_id,$offset,$chunks) {
$list_id = $this->da->quoteSmart($list_id);
$offset = $this->da->quoteSmart($offset);
$chunks = $this->da->quoteSmart($chunks);
$sql = 'SELECT m.id_message, m.last_thread_update as lastup, mh_d.value as date, mh_f.value as sender, mh_s.value as subject'.
' FROM plugin_forumml_message m'.
' LEFT JOIN plugin_forumml_messageheader mh_d ON (mh_d.id_message = m.id_message AND mh_d.id_header = $1)'.
' LEFT JOIN plugin_forumml_messageheader mh_f ON (mh_f.id_message = m.id_message AND mh_f.id_header = $2) '.
' LEFT JOIN plugin_forumml_messageheader mh_s ON (mh_s.id_message = m.id_message AND mh_s.id_header = $3) '.
' WHERE m.id_parent = 0'.
' AND id_list = $4 '.
' ORDER BY m.last_thread_update DESC'.
' LIMIT $6'.
' OFFSET $5';
return $this->retrieve($sql,array(FORUMML_DATE,FORUMML_FROM,FORUMML_SUBJECT,$list_id,$offset,$chunks));
}
function countAllThreadsFromList($list_id) {
$list_id = $this->da->quoteSmart($list_id);
$sql = 'SELECT COUNT(*) as nb'.
' FROM plugin_forumml_message m'.
' LEFT JOIN plugin_forumml_messageheader mh_d ON (mh_d.id_message = m.id_message AND mh_d.id_header = $1)'.
' LEFT JOIN plugin_forumml_messageheader mh_f ON (mh_f.id_message = m.id_message AND mh_f.id_header = $2) '.
' LEFT JOIN plugin_forumml_messageheader mh_s ON (mh_s.id_message = m.id_message AND mh_s.id_header = $3) '.
' WHERE m.id_parent = 0'.
' AND id_list = $4 GROUP BY m.last_thread_update'.
' ORDER BY m.last_thread_update DESC';
return $this->retrieve($sql,array(FORUMML_DATE,FORUMML_FROM,FORUMML_SUBJECT,$list_id));
}
function countChildrenFromParents ($parents) {
$sql = 'SELECT id_message'.
' FROM plugin_forumml_message m'.
' WHERE m.id_parent IN ($1)';
return $this->retrieve($sql,array($parents));
}
function getChildrenFromDepthLevel($parents) {
$sql = 'SELECT m.*, mh_d.value as date, mh_f.value as sender, mh_s.value as subject, mh_ct.value as content_type, mh_cc.value as cc, a.id_attachment, a.file_name, a.file_type, a.file_size, a.file_path, a.content_id'.
' FROM plugin_forumml_message m'.
' LEFT JOIN plugin_forumml_messageheader mh_d ON (mh_d.id_message = m.id_message AND mh_d.id_header = $1)'.
' LEFT JOIN plugin_forumml_messageheader mh_f ON (mh_f.id_message = m.id_message AND mh_f.id_header = $2) '.
' LEFT JOIN plugin_forumml_messageheader mh_s ON (mh_s.id_message = m.id_message AND mh_s.id_header = $3) '.
' LEFT JOIN plugin_forumml_messageheader mh_ct ON (mh_ct.id_message = m.id_message AND mh_ct.id_header = $4) '.
' LEFT JOIN plugin_forumml_messageheader mh_cc ON (mh_cc.id_message = m.id_message AND mh_cc.id_header = $5) '.
" LEFT JOIN plugin_forumml_attachment a ON (a.id_message = m.id_message AND a.content_id = '')".
' WHERE m.id_parent IN ($6)';
return $this->retrieve($sql,array(FORUMML_DATE,FORUMML_FROM,FORUMML_SUBJECT,FORUMML_CONTENT_TYPE,FORUMML_CC,$parents));
}
function getFlattenedThread($topic) {
$topic = $this->da->quoteSmart($topic);
$sql = 'SELECT m.*, mh_d.value as date, mh_f.value as sender, mh_s.value as subject, mh_ct.value as content_type, mh_cc.value as cc, a.id_attachment, a.file_name, a.file_type, a.file_size, a.file_path, a.content_id'.
' FROM plugin_forumml_message m'.
' LEFT JOIN plugin_forumml_messageheader mh_d ON (mh_d.id_message = m.id_message AND mh_d.id_header = $1)'.
' LEFT JOIN plugin_forumml_messageheader mh_f ON (mh_f.id_message = m.id_message AND mh_f.id_header = $2)'.
' LEFT JOIN plugin_forumml_messageheader mh_s ON (mh_s.id_message = m.id_message AND mh_s.id_header = $3)'.
' LEFT JOIN plugin_forumml_messageheader mh_ct ON (mh_ct.id_message = m.id_message AND mh_ct.id_header = $4)'.
' LEFT JOIN plugin_forumml_messageheader mh_cc ON (mh_cc.id_message = m.id_message AND mh_cc.id_header = $5)'.
" LEFT JOIN plugin_forumml_attachment a ON (a.id_message = m.id_message AND a.content_id = '')".
' WHERE m.id_message =$6 ';
return $this->retrieve($sql,array(FORUMML_DATE,FORUMML_FROM,FORUMML_SUBJECT,FORUMML_CONTENT_TYPE,FORUMML_CC,$topic));
}
function updateCacheHTML($cache,$id) {
$cache = $this->da->quoteSmart($cache);
$id = $this->da->quoteSmart($id);
return $this->update('UPDATE plugin_forumml_message SET cached_html= $1 WHERE id_message= $2',array($cache,$id));
}
function getAttachment($id_message,$match) {
$id_message = $this->da->quoteSmart($id_message);
$match = $this->da->quoteSmart($match);
$sql = 'SELECT id_attachment FROM plugin_forumml_attachment WHERE id_message=$1 and content_id=<$2>';
return $this->retrieve($sql,array($id_message , $match));
}
function searchArchives($list_id,$pattern) {
$list_id = $this->da->quoteSmart($list_id);
$pattern = $this->da->quoteSmart($pattern);
$sql = 'SELECT mh.id_message, mh.value'.
' FROM plugin_forumml_message m, plugin_forumml_messageheader mh'.
' WHERE mh.id_header = $1'.
' AND m.id_list = $2'.
' AND m.id_parent = 0'.
' AND m.id_message = mh.id_message'.
' AND mh.value LIKE $3';
return $this->retrieve($sql,array(FORUMML_SUBJECT,$list_id,$pattern));
}
function hasArchives($list_id) {
$list_id = $this->da->quoteSmart($list_id);
$qry = 'SELECT NULL FROM plugin_forumml_message WHERE id_list = $1 LIMIT 1';
return $this->retrieve($qry,array($list_id));
}
function insertMessageHeader($id_message, $id_header,$value) {
$id_message = $this->da->quoteSmart($id_message);
$id_header = $this->da->quoteSmart($id_header);
$value = $this->da->quoteSmart($value);
$qry = 'INSERT INTO plugin_forumml_messageheader'.
' (id_message, id_header, value)'.
' VALUES ($1,$2,$3)';
return $this->update($qry,array($id_message , $id_header , $value));
}
function insertAttachment ($id_message, $filename,$filetype,$filesize,$filepath,$content_id) {
$id_message = $this->da->quoteSmart($id_message);
$filename = $this->da->quoteSmart($filename);
$filetype = $this->da->quoteSmart($filetype);
$filesize = $this->da->quoteSmart($filesize);
$filepath = $this->da->quoteSmart($filepath);
$content_id = $this->da->quoteSmart($content_id);
$qry = 'INSERT INTO plugin_forumml_attachment'.
' (id_message, file_name, file_type, file_size, file_path, content_id)'.
' VALUES ($1,$2,$3,$4,$5,$6)';
return $this->update($qry,array($id_message , $filename , $filetype , $filesize , $filepath , $content_id));
}
function searchHeader ($header) {
$header = $this->da->quoteSmart($header);
$qry = 'SELECT id_header'.
' FROM plugin_forumml_header'.
' WHERE name = $1';
return $this->retrieve($qry,array($header));
}
function insertHeader($header) {
$header = $this->da->quoteSmart($header);
$sql = 'INSERT INTO plugin_forumml_header'.
' (name)'.
' VALUES ($1)';
return db_insertid($this->update($sql,array($header)),'plugin_forumml_header','id_header');
}
function getParentMessageFromHeader ($id_header) {
$id_header = $this->da->quoteSmart($id_header);
$qry = 'SELECT id_message'.
' FROM plugin_forumml_messageheader'.
' WHERE id_header = 1'.
' AND value = $1 ';
return $this->retrieve($qry,array($id_header));
}
function getParents($messageId) {
$messageId = $this->da->quoteSmart($messageId);
$sql = 'SELECT id_parent, last_thread_update FROM plugin_forumml_message WHERE id_message = $1';
return $this->retrieve($sql,array($messageId));
}
function updateParentDate($messageId,$date) {
$messageId = $this->da->quoteSmart($messageId);
$date = $this->da->quoteSmart($date);
$sql = 'UPDATE plugin_forumml_message'.
' SET last_thread_update =$1 '.
' WHERE id_message=$2';
$this->update($sql,array($date,$messageId));
}
function insertMessage ($id_list,$id_parent, $body, $messageDate, $ctype) {
$id_list = $this->da->quoteSmart($id_list);
$id_parent = $this->da->quoteSmart($id_parent);
$body = $this->da->quoteSmart($body);
$messageDate = $this->da->quoteSmart($messageDate);
$ctype = $this->da->quoteSmart($ctype);
$sql = 'INSERT INTO plugin_forumml_message'.
' ( id_list, id_parent, body, last_thread_update, msg_type)'.
' VALUES ($1, $2, $3, $4, $5)';
return db_insertid($this->update($sql,array($id_list , $id_parent , $body , $messageDate , $ctype)),'plugin_forumml_message' ,'id_message');
}
}
|