Adds an update script for version 0.10.2.
[platal.git] / include / banana / forum.inc.php
CommitLineData
24cec3d8 1<?php
2/***************************************************************************
8d84c630 3 * Copyright (C) 2003-2009 Polytechnique.org *
24cec3d8 4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22require_once 'banana/banana.inc.php';
23require_once 'banana/hooks.inc.php';
24
25function hook_checkcancel($_headers)
26{
dd70cd28 27 return ($_headers['x-org-id'] == S::v('hruid') or S::admin());
24cec3d8 28}
29
fa7d6c7b 30class ForumsBanana extends Banana
24cec3d8 31{
e3a55098 32 private $user;
b2bffbe6 33
e3a55098 34 public function __construct(User &$user, $params = null)
24cec3d8 35 {
e3a55098 36 $this->user = &$user;
b2bffbe6 37
24cec3d8 38 global $globals;
39 Banana::$msgedit_canattach = false;
580d1c7d 40 Banana::$spool_root = $globals->banana->spool_root;
24cec3d8 41 array_push(Banana::$msgparse_headers, 'x-org-id', 'x-org-mail');
e3a55098 42 Banana::$nntp_host = 'news://web_' . $user->login()
24cec3d8 43 . ":{$globals->banana->password}@{$globals->banana->server}:{$globals->banana->port}/";
dd70cd28 44 if (S::admin()) {
1515e65a 45 Banana::$msgshow_mimeparts[] = 'source';
46 }
81e9c63f 47 Banana::$debug_nntp = ($globals->debug & DEBUG_BT);
48 Banana::$debug_smarty = ($globals->debug & DEBUG_SMARTY);
6544d0e1 49 if (!S::v('core_rss_hash')) {
50 Banana::$feed_active = false;
51 }
b8458bd1 52 parent::__construct($params, 'NNTP', 'PlatalBananaPage');
ed0c62e4 53 if (@$params['action'] == 'profile') {
b5163f52
FB
54 Banana::$action = 'profile';
55 }
24cec3d8 56 }
57
58 public function run()
59 {
60 global $platal, $globals;
61
62 // Update last unread time
63 $time = null;
64 if (!is_null($this->params) && isset($this->params['updateall'])) {
65 $time = intval($this->params['updateall']);
66 $_SESSION['banana_last'] = $time;
67 }
68
69 // Get user profile from SQL
70 $req = XDB::query("SELECT nom, mail, sig,
43cddb05
FB
71 FIND_IN_SET('threads',flags), FIND_IN_SET('automaj',flags),
72 tree_unread, tree_read
24cec3d8 73 FROM {$globals->banana->table_prefix}profils
74 WHERE uid={?}", S::i('uid'));
43cddb05 75 if (!(list($nom, $mail, $sig, $disp, $maj, $unread, $read) = $req->fetchOneRow())) {
24cec3d8 76 $nom = S::v('prenom')." ".S::v('nom');
e3a55098 77 $mail = $this->user->forlifeEmail();
24cec3d8 78 $sig = $nom." (".S::v('promo').")";
79 $disp = 0;
80 $maj = 1;
2a0d8734 81 $unread = 'o';
43cddb05 82 $read = 'dg';
24cec3d8 83 }
84 if ($maj) {
85 $time = time();
86 }
87
88 // Build user profile
eaf30d86
PH
89 $req = XDB::query("
90 SELECT nom
24cec3d8 91 FROM {$globals->banana->table_prefix}abos
92 LEFT JOIN {$globals->banana->table_prefix}list ON list.fid=abos.fid
93 WHERE uid={?}", S::i('uid'));
fa2056fe 94 Banana::$profile['headers']['From'] = "$nom <$mail>";
437a98e0 95 Banana::$profile['headers']['Organization'] = make_Organization();
fa2056fe 96 Banana::$profile['signature'] = $sig;
24cec3d8 97 Banana::$profile['display'] = $disp;
98 Banana::$profile['autoup'] = $maj;
99 Banana::$profile['lastnews'] = S::v('banana_last');
100 Banana::$profile['subscribe'] = $req->fetchColumn();
43cddb05
FB
101 Banana::$tree_unread = $unread;
102 Banana::$tree_read = $read;
24cec3d8 103
eaf30d86 104 // Update the "unread limit"
24cec3d8 105 if (!is_null($time)) {
106 XDB::execute("UPDATE auth_user_quick
107 SET banana_last = FROM_UNIXTIME({?})
108 WHERE user_id={?}",
109 $time, S::i('uid'));
110 }
111
4f355064 112 if (!empty($GLOBALS['IS_XNET_SITE'])) {
113 Banana::$page->killPage('forums');
114 Banana::$page->killPage('subscribe');
115 Banana::$spool_boxlist = false;
eaf30d86 116 } else {
4f355064 117 // Register custom Banana links and tabs
118 if (!Banana::$profile['autoup']) {
119 Banana::$page->registerAction('<a href=\'javascript:dynpostkv("'
120 . $platal->path . '", "updateall", ' . time() . ')\'>'
121 . 'Marquer tous les messages comme lus'
122 . '</a>', array('forums', 'thread', 'message'));
eaf30d86 123 }
4f355064 124 Banana::$page->registerPage('profile', 'Préférences', null);
125 }
24cec3d8 126
b5163f52
FB
127 // Run Bananai
128 if (Banana::$action == 'profile') {
129 Banana::$page->run();
130 return $this->action_updateProfile();
131 } else {
132 return parent::run();
133 }
24cec3d8 134 }
135
b2bffbe6 136 public function post($dest, $reply, $subject, $body)
137 {
138 global $globals;
e3a55098 139 $res = XDB::query('SELECT nom, prenom, promo
b2bffbe6 140 FROM auth_user_md5 AS u
e3a55098
VZ
141 WHERE u.user_id = {?}', $this->user->id());
142 list($nom, $prenom, $promo) = $res->fetchOneRow();
143 Banana::$profile['headers']['From'] = "$prenom $nom ($promo) <{$this->user->bestEmail()}>";
437a98e0 144 Banana::$profile['headers']['Organization'] = make_Organization();
b2bffbe6 145 return parent::post($dest, $reply, $subject, $body);
146 }
147
24cec3d8 148 protected function action_saveSubs($groups)
149 {
150 global $globals;
151 $uid = S::v('uid');
152
153 Banana::$profile['subscribe'] = array();
154 XDB::execute("DELETE FROM {$globals->banana->table_prefix}abos WHERE uid={?}", $uid);
155 if (!count($groups)) {
156 return true;
157 }
158
159 $req = XDB::iterRow("SELECT fid,nom FROM {$globals->banana->table_prefix}list");
160 $fids = array();
161 while (list($fid,$fnom) = $req->next()) {
162 $fids[$fnom] = $fid;
163 }
164
165 $diff = array_diff($groups, array_keys($fids));
166 foreach ($diff as $g) {
167 XDB::execute("INSERT INTO {$globals->banana->table_prefix}list (nom) VALUES ({?})", $g);
168 $fids[$g] = XDB::insertId();
169 }
170
171 foreach ($groups as $g) {
172 XDB::execute("INSERT INTO {$globals->banana->table_prefix}abos (fid,uid) VALUES ({?},{?})",
173 $fids[$g], $uid);
174 Banana::$profile['subscribe'][] = $g;
175 }
176 }
b5163f52
FB
177
178 protected function action_updateProfile()
179 {
d7610c35
FB
180 global $globals;
181 $page = Platal::page();
b5163f52 182
43cddb05
FB
183 $colors = glob(dirname(__FILE__) . '/../../htdocs/images/banana/m2*.gif');
184 foreach ($colors as $key=>$path) {
185 $path = basename($path, '.gif');
186 $colors[$key] = substr($path, 2);
187 }
188 $page->assign('colors', $colors);
189
190 if (Post::has('action') && Post::v('action') == 'Enregistrer') {
191 S::assert_xsrf_token();
748b472c 192 $flags = new FlagSet();
b5163f52 193 if (Post::b('bananadisplay')) {
748b472c 194 $flags->addFlag('threads');
b5163f52
FB
195 }
196 if (Post::b('bananaupdate')) {
748b472c 197 $flags->addFlag('automaj');
b5163f52
FB
198 }
199 if (Post::b('bananaxface')) {
748b472c 200 $flags->addFlag('xface');
b5163f52 201 }
43cddb05
FB
202 $unread = Post::s('unread');
203 $read = Post::s('read');
204 if (!in_array($unread, $colors) || !in_array($read, $colors)) {
205 $page->trigError('Le choix de type pour l\'arborescence est invalide');
206 } elseif (XDB::execute("REPLACE INTO forums.profils (uid, sig, mail, nom, flags, tree_unread, tree_read)
207 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?})",
208 S::v('uid'), Post::v('bananasig'),
209 Post::v('bananamail'), Post::v('banananame'),
210 $flags, $unread, $read)) {
748b472c
FB
211 $page->trigSuccess("Ton profil a été enregistré avec succès.");
212 } else {
213 $page->trigError("Une erreur s'est produite lors de l'enregistrement de ton profil");
214 }
215 }
216
217 $req = XDB::query("
218 SELECT nom, mail, sig,
219 FIND_IN_SET('threads', flags),
220 FIND_IN_SET('automaj', flags),
43cddb05
FB
221 FIND_IN_SET('xface', flags),
222 tree_unread,
223 tree_read
748b472c
FB
224 FROM forums.profils
225 WHERE uid = {?}", S::v('uid'));
43cddb05 226 if (!(list($nom, $mail, $sig, $disp, $maj, $xface, $unread, $read) = $req->fetchOneRow())) {
748b472c 227 $nom = S::v('prenom').' '.S::v('nom');
eb0dd7ad 228 $mail = S::user()->forlifeEmail();
748b472c
FB
229 $sig = $nom.' ('.S::v('promo').')';
230 $disp = 0;
231 $maj = 0;
232 $xface = 0;
2a0d8734 233 $unread = 'o';
43cddb05 234 $read = 'dg';
b5163f52 235 }
748b472c
FB
236 $page->assign('nom' , $nom);
237 $page->assign('mail', $mail);
238 $page->assign('sig', $sig);
239 $page->assign('disp', $disp);
240 $page->assign('maj', $maj);
241 $page->assign('xface', $xface);
43cddb05
FB
242 $page->assign('unread', $unread);
243 $page->assign('read', $read);
b5163f52
FB
244 return null;
245 }
24cec3d8 246}
247
a7de4ef7 248// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
24cec3d8 249?>