2 /***************************************************************************
3 * Copyright (C) 2003-2006 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
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. *
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. *
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 *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
22 class BananaModule
extends PLModule
27 'banana' => $this->make_hook('banana', AUTH_COOKIE
),
28 'banana/profile' => $this->make_hook('profile', AUTH_MDP
),
29 'banana/subscription' => $this->make_hook('subscription', AUTH_COOKIE
),
30 'banana/xface' => $this->make_hook('xface', AUTH_COOKIE
),
34 function on_subscribe($forlife, $uid, $promo, $password)
36 $cible = array('xorg.general', 'xorg.pa.divers', 'xorg.pa.logements');
37 $p_for = "xorg.promo.x$promo";
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()) {
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
48 require_once("xorg.mailer.inc.php");
49 $mymail = new XOrgMailer('mails/forums.promo.tpl');
50 $mymail->assign('promo', $promo);
55 while (list ($key, $val) = each ($cible)) {
56 XDB
::execute("INSERT INTO forums.abos (fid,uid)
57 SELECT fid,{?} FROM forums.list WHERE nom={?}", $uid, $val);
61 function handler_banana(&$page, $group = null
, $action = null
, $artid = null
)
64 if (!is_null($group)) {
65 $get['group'] = $group;
67 if (Post
::has('updateall')) {
68 $get['updateall'] = Post
::v('updateall');
70 if (!is_null($action)) {
71 if ($action == 'new') {
72 $get['action'] = 'new';
73 } elseif ($action == 'reply' && !is_null($artid)) {
74 $get['action'] = 'new';
75 $get['artid'] = $artid;
76 } elseif ($action == 'cancel' && !is_null($artid)) {
77 $get['action'] = $action;
78 $get['artid'] = $artid;
79 } elseif ($action == 'from' && !is_null($artid)) {
80 $get['first'] = $artid;
81 } elseif ($action == 'read' && !is_null($artid)) {
82 $get['artid'] = $artid;
85 return BananaModule
::run_banana($page, $get);
88 function handler_profile(&$page, $action = null
)
92 $page->changeTpl('banana/profile.tpl');
94 if (!(Post
::has('action') && Post
::has('banananame') && Post
::has('bananasig')
95 && Post
::has('bananadisplay') && Post
::has('bananamail')
96 && Post
::has('bananaupdate') && Post
::v('action')=="OK" ))
99 SELECT nom,mail,sig,if(FIND_IN_SET('threads',flags),'1','0'),
100 IF(FIND_IN_SET('automaj',flags),'1','0')
102 WHERE uid = {?}", S
::v('uid'));
103 if (!(list($nom,$mail,$sig,$disp,$maj) = $req->fetchOneRow())) {
104 $nom = S
::v('prenom').' '.S
::v('nom');
105 $mail = S
::v('forlife').'@'.$globals->mail
->domain
;
106 $sig = $nom.' ('.S
::v('promo').')';
110 $page->assign('nom' , $nom);
111 $page->assign('mail', $mail);
112 $page->assign('sig' , $sig);
113 $page->assign('disp', $disp);
114 $page->assign('maj' , $maj);
117 'REPLACE INTO forums.profils (uid,sig,mail,nom,flags)
118 VALUES ({?},{?},{?},{?},{?})',
119 S
::v('uid'), Post
::v('bananasig'),
120 Post
::v('bananamail'), Post
::v('banananame'),
121 (Post
::b('bananadisplay') ?
'threads,' : '') .
122 (Post
::b('bananaupdate') ?
'automaj' : '')
127 function handler_subscription(&$page)
129 return $this->run_banana($page, Array('subscribe' => 1));
132 function handler_xface(&$page, $face = null
)
134 header('Content-Type: image/gif');
135 passthru('echo ' . escapeshellarg(base64_decode(strtr($face, '.:', '+/')))
137 . '| convert -transparent white xbm:- gif:-');
140 function run_banana(&$page, $params = null
)
142 $page->changeTpl('banana/index.tpl');
143 $page->addCssLink('banana.css');
144 $page->assign('xorg_title','Polytechnique.org - Forums & PA');
146 require_once dirname(__FILE__
).'/banana/banana.inc.php';
148 $res = PlatalBanana
::run($params);
149 $page->assign_by_ref('banana', $banana);
150 $page->assign('banana_res', $res);