first reimport from platal
[platal.git] / include / banana.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2004 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 $banana;
26 if ($_header == 'x-org-id') {
27 return "$_text [<a href=\"../fiche.php?user=$_text\" class='popup2'>fiche</a>]";
28 }
29 }
30
31 function hook_headerTranslate($hdr) {
32 if ($hdr == 'x-org-id') {
33 return 'Identité';
34 }
35 }
36
37 function hook_checkcancel($_headers) {
38 return ($_headers['x-org-id'] == Session::get('forlife') or has_perms());
39 }
40
41 class PlatalBanana extends Banana
42 {
43 var $profile = Array( 'name' => '', 'sig' => '', 'org' => 'Utilisateur de Polytechnique.org',
44 'customhdr' =>'', 'display' => 0, 'lastnews' => 0, 'locale' => 'fr_FR', 'subscribe' => array());
45
46 function PlatalBanana()
47 {
48 global $globals;
49
50 $uid = Session::getInt('uid');
51 $req = $globals->xdb->query(
52 "SELECT nom, mail, sig, FIND_IN_SET('threads',flags), FIND_IN_SET('automaj',flags)
53 FROM {$globals->banana->table_prefix}profils
54 WHERE uid={?}", $uid);
55
56 if (!(list($nom,$mail,$sig,$disp,$maj) = $req->fetchOneRow())) {
57 $nom = Session::get('prenom')." ".Session::get('nom');
58 $mail = Session::get('forlife')."@polytechnique.org";
59 $sig = $nom." (".Session::getInt('promo').")";
60 $disp = 0;
61 $maj = 1;
62 }
63 $this->profile['name'] = "$nom <$mail>";
64 $this->profile['sig'] = $sig;
65 $this->profile['display'] = $disp;
66 $this->profile['autoup'] = $maj;
67 $this->profile['lastnews'] = Session::get('banana_last');
68
69 if ($maj) {
70 $globals->xdb->execute("UPDATE auth_user_quick SET banana_last={?} WHERE user_id={?}", gmdate("YmdHis"), $uid);
71 }
72
73 $req = $globals->xdb->query(
74 "SELECT nom
75 FROM {$globals->banana->table_prefix}abos
76 LEFT JOIN {$globals->banana->table_prefix}list ON list.fid=abos.fid
77 WHERE uid={?}", $uid);
78 $this->profile['subscribe'] = $req->fetchColumn();
79
80 array_splice($this->show_hdr, count($this->show_hdr) - 2, 0, 'x-org-id');
81 array_splice($this->parse_hdr, count($this->parse_hdr) - 2, 0, 'x-org-id');
82
83 $this->host = 'news://web_'.Session::get('forlife')
84 .":{$globals->banana->password}@{$globals->banana->server}:{$globals->banana->port}/";
85
86 parent::Banana();
87 }
88
89 function run()
90 {
91 global $banana, $globals;
92
93 if (Get::get('banana') == 'updateall') {
94 $globals->xdb->execute('UPDATE auth_user_quick SET banana_last={?} WHERE user_id={?}', gmdate('YmdHis'), Session::getInt('uid'));
95 $_SESSION['banana_last'] = time();
96 header('Location: ?');
97 }
98 return Banana::run('PlatalBanana');
99 }
100
101 function action_saveSubs()
102 {
103 global $globals;
104 $uid = Session::getInt('uid');
105
106 $this->profile['subscribe'] = Array();
107 $globals->xdb->execute("DELETE FROM {$globals->banana->table_prefix}abos WHERE uid={?}", $uid);
108 if (!count($_POST['subscribe'])) {
109 return true;
110 }
111
112 $req = $globals->xdb->iterRow("SELECT fid,nom FROM {$globals->banana->table_prefix}list");
113 $fids = array();
114 while (list($fid,$fnom) = $req->next()) {
115 $fids[$fnom] = $fid;
116 }
117
118 $diff = array_diff($_POST['subscribe'], array_keys($fids));
119 foreach ($diff as $g) {
120 $globals->xdb->execute("INSERT INTO {$globals->banana->table_prefix}list (nom) VALUES ({?})", $g);
121 $fids[$g] = mysql_insert_id();
122 }
123
124 foreach ($_POST['subscribe'] as $g) {
125 $globals->xdb->execute("INSERT INTO {$globals->banana->table_prefix}abos (fid,uid) VALUES ({?},{?})", $fids[$g], $uid);
126 $this->profile['subscribe'][] = $g;
127 }
128 }
129 }
130
131 ?>