Fix link to user in headers
[platal.git] / include / banana.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2006 Polytechnique.org *
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
22 require_once('banana/banana.inc.php');
23
24 function hook_formatDisplayHeader($_header,$_text) {
25 global $globals;
26 if ($_header == 'x-org-id') {
27 return $_text . ' [<a href="' . $globals->baseurl . '/fiche.php?user='
28 . $_text . '" class="popup2">fiche</a>]';
29 }
30 }
31
32 function hook_headerTranslate($hdr) {
33 if ($hdr == 'x-org-id') {
34 return 'Identité';
35 }
36 }
37
38 function hook_checkcancel($_headers) {
39 return ($_headers['x-org-id'] == Session::get('forlife') or has_perms());
40 }
41
42 function hook_makeLink($params) {
43 global $globals;
44 $base = $globals->baseurl . '/banana';
45 if ($params['subscribe'] == 1) {
46 return $base . '/subscription';
47 }
48
49 if (!isset($params['group'])) {
50 return $base;
51 }
52 $base .= '/' . $params['group'];
53
54 if (isset($params['first'])) {
55 return $base . '/from/' . $params['first'];
56 }
57 if (isset($params['artid'])) {
58 if ($params['action'] == 'new') {
59 $base .= '/reply';
60 } elseif ($params['action'] == 'cancel') {
61 $base .= '/cancel';
62 } else {
63 $base .= '/read';
64 }
65 return $base . '/' . $params['artid'];
66 }
67
68 if ($params['action'] == 'new') {
69 return $base . '/new';
70 }
71 return $base;
72 }
73
74 class PlatalBanana extends Banana
75 {
76 var $profile = Array( 'name' => '', 'sig' => '', 'org' => 'Utilisateur de Polytechnique.org',
77 'customhdr' =>'', 'display' => 0, 'lastnews' => 0, 'locale' => 'fr_FR', 'subscribe' => array());
78 var $can_attach = false;
79
80 function PlatalBanana()
81 {
82 global $globals;
83
84 $uid = Session::getInt('uid');
85 $req = $globals->xdb->query(
86 "SELECT nom, mail, sig, FIND_IN_SET('threads',flags), FIND_IN_SET('automaj',flags)
87 FROM {$globals->banana->table_prefix}profils
88 WHERE uid={?}", $uid);
89
90 if (!(list($nom,$mail,$sig,$disp,$maj) = $req->fetchOneRow())) {
91 $nom = Session::get('prenom')." ".Session::get('nom');
92 $mail = Session::get('forlife')."@polytechnique.org";
93 $sig = $nom." (".Session::getInt('promo').")";
94 $disp = 0;
95 $maj = 1;
96 }
97 $this->profile['name'] = "$nom <$mail>";
98 $this->profile['sig'] = $sig;
99 $this->profile['display'] = $disp;
100 $this->profile['autoup'] = $maj;
101 $this->profile['lastnews'] = Session::get('banana_last');
102
103 if ($maj) {
104 $globals->xdb->execute("UPDATE auth_user_quick SET banana_last={?} WHERE user_id={?}", gmdate("YmdHis"), $uid);
105 }
106
107 $req = $globals->xdb->query("
108 SELECT nom
109 FROM {$globals->banana->table_prefix}abos
110 LEFT JOIN {$globals->banana->table_prefix}list ON list.fid=abos.fid
111 WHERE uid={?}", $uid);
112 $this->profile['subscribe'] = $req->fetchColumn();
113
114 array_splice($this->show_hdr, count($this->show_hdr) - 2, 0, 'x-org-id');
115 array_splice($this->parse_hdr, count($this->parse_hdr) - 2, 0, 'x-org-id');
116
117 $this->host = 'news://web_'.Session::get('forlife')
118 .":{$globals->banana->password}@{$globals->banana->server}:{$globals->banana->port}/";
119
120 parent::Banana();
121 }
122
123 function run($params = null)
124 {
125 global $banana, $globals;
126
127 if (Get::get('banana') == 'updateall'
128 || (!is_null($params) && isset($params['banana']) && $params['banana'] == 'updateall')) {
129 $globals->xdb->execute('UPDATE auth_user_quick SET banana_last={?} WHERE user_id={?}', gmdate('YmdHis'), Session::getInt('uid'));
130 $_SESSION['banana_last'] = time();
131 }
132 return Banana::run('PlatalBanana', $params);
133 }
134
135 function action_saveSubs()
136 {
137 global $globals;
138 $uid = Session::getInt('uid');
139
140 $this->profile['subscribe'] = Array();
141 $globals->xdb->execute("DELETE FROM {$globals->banana->table_prefix}abos WHERE uid={?}", $uid);
142 if (!count($_POST['subscribe'])) {
143 return true;
144 }
145
146 $req = $globals->xdb->iterRow("SELECT fid,nom FROM {$globals->banana->table_prefix}list");
147 $fids = array();
148 while (list($fid,$fnom) = $req->next()) {
149 $fids[$fnom] = $fid;
150 }
151
152 $diff = array_diff($_POST['subscribe'], array_keys($fids));
153 foreach ($diff as $g) {
154 $globals->xdb->execute("INSERT INTO {$globals->banana->table_prefix}list (nom) VALUES ({?})", $g);
155 $fids[$g] = mysql_insert_id();
156 }
157
158 foreach ($_POST['subscribe'] as $g) {
159 $globals->xdb->execute("INSERT INTO {$globals->banana->table_prefix}abos (fid,uid) VALUES ({?},{?})", $fids[$g], $uid);
160 $this->profile['subscribe'][] = $g;
161 }
162 }
163 }
164
165 ?>