Add height parameter to makeImg hook
[platal.git] / include / banana.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
50a40a33 3 * Copyright (C) 2003-2006 Polytechnique.org *
0337d704 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');
23
24function hook_formatDisplayHeader($_header,$_text) {
6aa9d0c4 25 global $globals;
0337d704 26 if ($_header == 'x-org-id') {
6aa9d0c4 27 return $_text . ' [<a href="' . $globals->baseurl . '/fiche.php?user='
28 . $_text . '" class="popup2">fiche</a>]';
0337d704 29 }
30}
31
32function hook_headerTranslate($hdr) {
33 if ($hdr == 'x-org-id') {
34 return 'Identité';
35 }
36}
37
38function hook_checkcancel($_headers) {
39 return ($_headers['x-org-id'] == Session::get('forlife') or has_perms());
40}
41
3d9b1d30 42function 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
cce828e5 74function hook_makeImg($img, $alt, $height, $width)
63e3b9ae 75{
76 global $globals;
77 $url = $globals->baseurl . '/images/banana/' . $img . '.gif';
78
79 if (!is_null($width)) {
80 $width = ' width="' . $width . '"';
81 }
cce828e5 82 if (!is_null($height)) {
83 $height = ' height="' . $height . '"';
84 }
63e3b9ae 85
cce828e5 86 return '<img src="' . $url . '"' . $height . $width . ' alt="' . $alt . '" />';
63e3b9ae 87}
88
0337d704 89class PlatalBanana extends Banana
90{
4475197c 91 var $profile = Array( 'name' => '', 'sig' => '', 'org' => 'Utilisateur de Polytechnique.org',
0337d704 92 'customhdr' =>'', 'display' => 0, 'lastnews' => 0, 'locale' => 'fr_FR', 'subscribe' => array());
4475197c 93 var $can_attach = false;
0337d704 94
95 function PlatalBanana()
96 {
97 global $globals;
98
99 $uid = Session::getInt('uid');
100 $req = $globals->xdb->query(
101 "SELECT nom, mail, sig, FIND_IN_SET('threads',flags), FIND_IN_SET('automaj',flags)
102 FROM {$globals->banana->table_prefix}profils
103 WHERE uid={?}", $uid);
104
105 if (!(list($nom,$mail,$sig,$disp,$maj) = $req->fetchOneRow())) {
106 $nom = Session::get('prenom')." ".Session::get('nom');
107 $mail = Session::get('forlife')."@polytechnique.org";
108 $sig = $nom." (".Session::getInt('promo').")";
109 $disp = 0;
110 $maj = 1;
111 }
112 $this->profile['name'] = "$nom <$mail>";
113 $this->profile['sig'] = $sig;
114 $this->profile['display'] = $disp;
115 $this->profile['autoup'] = $maj;
116 $this->profile['lastnews'] = Session::get('banana_last');
117
118 if ($maj) {
119 $globals->xdb->execute("UPDATE auth_user_quick SET banana_last={?} WHERE user_id={?}", gmdate("YmdHis"), $uid);
120 }
121
f585e5a4 122 $req = $globals->xdb->query("
123 SELECT nom
0337d704 124 FROM {$globals->banana->table_prefix}abos
125 LEFT JOIN {$globals->banana->table_prefix}list ON list.fid=abos.fid
126 WHERE uid={?}", $uid);
127 $this->profile['subscribe'] = $req->fetchColumn();
128
129 array_splice($this->show_hdr, count($this->show_hdr) - 2, 0, 'x-org-id');
130 array_splice($this->parse_hdr, count($this->parse_hdr) - 2, 0, 'x-org-id');
131
132 $this->host = 'news://web_'.Session::get('forlife')
133 .":{$globals->banana->password}@{$globals->banana->server}:{$globals->banana->port}/";
134
135 parent::Banana();
136 }
137
3d9b1d30 138 function run($params = null)
0337d704 139 {
140 global $banana, $globals;
141
3d9b1d30 142 if (Get::get('banana') == 'updateall'
143 || (!is_null($params) && isset($params['banana']) && $params['banana'] == 'updateall')) {
0337d704 144 $globals->xdb->execute('UPDATE auth_user_quick SET banana_last={?} WHERE user_id={?}', gmdate('YmdHis'), Session::getInt('uid'));
145 $_SESSION['banana_last'] = time();
0337d704 146 }
3d9b1d30 147 return Banana::run('PlatalBanana', $params);
0337d704 148 }
149
150 function action_saveSubs()
151 {
152 global $globals;
153 $uid = Session::getInt('uid');
154
155 $this->profile['subscribe'] = Array();
156 $globals->xdb->execute("DELETE FROM {$globals->banana->table_prefix}abos WHERE uid={?}", $uid);
157 if (!count($_POST['subscribe'])) {
158 return true;
159 }
160
161 $req = $globals->xdb->iterRow("SELECT fid,nom FROM {$globals->banana->table_prefix}list");
162 $fids = array();
163 while (list($fid,$fnom) = $req->next()) {
164 $fids[$fnom] = $fid;
165 }
166
167 $diff = array_diff($_POST['subscribe'], array_keys($fids));
168 foreach ($diff as $g) {
169 $globals->xdb->execute("INSERT INTO {$globals->banana->table_prefix}list (nom) VALUES ({?})", $g);
170 $fids[$g] = mysql_insert_id();
171 }
172
173 foreach ($_POST['subscribe'] as $g) {
174 $globals->xdb->execute("INSERT INTO {$globals->banana->table_prefix}abos (fid,uid) VALUES ({?},{?})", $fids[$g], $uid);
175 $this->profile['subscribe'][] = $g;
176 }
177 }
178}
179
180?>