Fix ML templates inclusion path
[platal.git] / modules / banana.php
CommitLineData
f585e5a4 1<?php
2/***************************************************************************
5ddeb07c 3 * Copyright (C) 2003-2007 Polytechnique.org *
f585e5a4 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
22class BananaModule extends PLModule
23{
24 function handlers()
25 {
26 return array(
3d9b1d30 27 'banana' => $this->make_hook('banana', AUTH_COOKIE),
28 'banana/profile' => $this->make_hook('profile', AUTH_MDP),
a3a1d23b 29 'banana/subscription' => $this->make_hook('subscription', AUTH_COOKIE),
f107d806 30 'banana/xface' => $this->make_hook('xface', AUTH_COOKIE),
a3a1d23b 31 );
f585e5a4 32 }
33
8d8f7607 34 function on_subscribe($forlife, $uid, $promo, $password)
35 {
36 $cible = array('xorg.general', 'xorg.pa.divers', 'xorg.pa.logements');
37 $p_for = "xorg.promo.x$promo";
38
39 // récupération de l'id du forum promo
40 $res = XDB::query("SELECT fid FROM forums.list WHERE nom={?}", $p_for);
41 if ($res->numRows()) {
42 $cible[] = $p_for;
43 } else { // pas de forum promo, il faut le créer
44 $res = XDB::query("SELECT SUM(perms IN ('admin','user') AND deces=0),COUNT(*)
45 FROM auth_user_md5 WHERE promo={?}", $promo);
46 list($effau, $effid) = $res->fetchOneRow();
47 if (5*$effau>$effid) { // + de 20% d'inscrits
1e33266a 48 $mymail = new PlMailer('mails/forums.promo.tpl');
8d8f7607 49 $mymail->assign('promo', $promo);
50 $mymail->send();
51 }
52 }
53
54 while (list ($key, $val) = each ($cible)) {
55 XDB::execute("INSERT INTO forums.abos (fid,uid)
56 SELECT fid,{?} FROM forums.list WHERE nom={?}", $uid, $val);
57 }
58 }
59
3d9b1d30 60 function handler_banana(&$page, $group = null, $action = null, $artid = null)
f585e5a4 61 {
a3a1d23b 62 $get = Array();
63 if (!is_null($group)) {
64 $get['group'] = $group;
65 }
7e6495d4 66 if (Post::has('updateall')) {
85b9d118 67 $get['updateall'] = Post::v('updateall');
7e6495d4 68 }
a3a1d23b 69 if (!is_null($action)) {
70 if ($action == 'new') {
71 $get['action'] = 'new';
aafe5c09 72 } elseif ($action == 'reply' && !is_null($artid)) {
73 $get['action'] = 'new';
74 $get['artid'] = $artid;
75 } elseif ($action == 'cancel' && !is_null($artid)) {
a3a1d23b 76 $get['action'] = $action;
77 $get['artid'] = $artid;
78 } elseif ($action == 'from' && !is_null($artid)) {
79 $get['first'] = $artid;
80 } elseif ($action == 'read' && !is_null($artid)) {
81 $get['artid'] = $artid;
5f4a0314 82 $get['part'] = @$_GET['part'];
83 } elseif ($action == 'source' && !is_null($artid)) {
84 $get['artid'] = $artid;
85 $get['part'] = 'source';
86 } elseif ($action == 'xface' && !is_null($artid)) {
87 $get['artid'] = $artid;
88 $get['part'] = 'xface';
a3a1d23b 89 }
5f4a0314 90 }
a3a1d23b 91 return BananaModule::run_banana($page, $get);
f585e5a4 92 }
93
3d9b1d30 94 function handler_profile(&$page, $action = null)
f585e5a4 95 {
96 global $globals;
97
98 $page->changeTpl('banana/profile.tpl');
99
100 if (!(Post::has('action') && Post::has('banananame') && Post::has('bananasig')
101 && Post::has('bananadisplay') && Post::has('bananamail')
5e2307dc 102 && Post::has('bananaupdate') && Post::v('action')=="OK" ))
f585e5a4 103 {
08cce2ff 104 $req = XDB::query("
f585e5a4 105 SELECT nom,mail,sig,if(FIND_IN_SET('threads',flags),'1','0'),
106 IF(FIND_IN_SET('automaj',flags),'1','0')
107 FROM forums.profils
cab08090 108 WHERE uid = {?}", S::v('uid'));
f585e5a4 109 if (!(list($nom,$mail,$sig,$disp,$maj) = $req->fetchOneRow())) {
cab08090 110 $nom = S::v('prenom').' '.S::v('nom');
111 $mail = S::v('forlife').'@'.$globals->mail->domain;
112 $sig = $nom.' ('.S::v('promo').')';
f585e5a4 113 $disp = 0;
114 $maj = 0;
115 }
116 $page->assign('nom' , $nom);
117 $page->assign('mail', $mail);
118 $page->assign('sig' , $sig);
119 $page->assign('disp', $disp);
120 $page->assign('maj' , $maj);
121 } else {
08cce2ff 122 XDB::execute(
f585e5a4 123 'REPLACE INTO forums.profils (uid,sig,mail,nom,flags)
124 VALUES ({?},{?},{?},{?},{?})',
5e2307dc 125 S::v('uid'), Post::v('bananasig'),
126 Post::v('bananamail'), Post::v('banananame'),
127 (Post::b('bananadisplay') ? 'threads,' : '') .
128 (Post::b('bananaupdate') ? 'automaj' : '')
f585e5a4 129 );
130 }
f585e5a4 131 }
3d9b1d30 132
a3a1d23b 133 function handler_subscription(&$page)
134 {
5f4a0314 135 return $this->run_banana($page, Array('action' => 'subscribe'));
a3a1d23b 136 }
3d9b1d30 137
7e6495d4 138 function handler_xface(&$page, $face = null)
f107d806 139 {
a011eab2 140 header('Content-Type: image/gif');
7e6495d4 141 passthru('echo ' . escapeshellarg(base64_decode(strtr($face, '.:', '+/')))
f107d806 142 . '| uncompface -X '
7e6495d4 143 . '| convert -transparent white xbm:- gif:-');
f107d806 144 }
145
5f4a0314 146 static function run_banana(&$page, $params = null)
a3a1d23b 147 {
3d9b1d30 148 $page->changeTpl('banana/index.tpl');
c99ef281 149 $page->addCssLink('banana.css');
3d9b1d30 150 $page->assign('xorg_title','Polytechnique.org - Forums & PA');
151
57e834ac 152 require_once dirname(__FILE__).'/banana/banana.inc.php';
3d9b1d30 153
5f4a0314 154 $banana = new PlatalBanana($params);
155 $res = $banana->run();
3d9b1d30 156 $page->assign_by_ref('banana', $banana);
157 $page->assign('banana_res', $res);
a3a1d23b 158 }
f585e5a4 159}
160
161?>