Encoding issues and update ChangeLog
[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),
6544d0e1 30 'banana/rss' => $this->make_hook('rss', AUTH_PUBLIC),
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
78b276cf 39 // récupération de l'id du forum promo
8d8f7607 40 $res = XDB::query("SELECT fid FROM forums.list WHERE nom={?}", $p_for);
41 if ($res->numRows()) {
42 $cible[] = $p_for;
78b276cf 43 } else { // pas de forum promo, il faut le créer
8d8f7607 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 {
4f355064 62 $page->changeTpl('banana/index.tpl');
63 $page->assign('xorg_title','Polytechnique.org - Forums & PA');
64
a3a1d23b 65 $get = Array();
7e6495d4 66 if (Post::has('updateall')) {
85b9d118 67 $get['updateall'] = Post::v('updateall');
7e6495d4 68 }
4f355064 69 require_once 'banana/forum.inc.php';
70 get_banana_params($get, $group, $action, $artid);
71 run_banana($page, 'ForumsBanana', $get);
f585e5a4 72 }
73
3d9b1d30 74 function handler_profile(&$page, $action = null)
f585e5a4 75 {
76 global $globals;
77
78 $page->changeTpl('banana/profile.tpl');
79
80 if (!(Post::has('action') && Post::has('banananame') && Post::has('bananasig')
81 && Post::has('bananadisplay') && Post::has('bananamail')
5e2307dc 82 && Post::has('bananaupdate') && Post::v('action')=="OK" ))
f585e5a4 83 {
08cce2ff 84 $req = XDB::query("
f585e5a4 85 SELECT nom,mail,sig,if(FIND_IN_SET('threads',flags),'1','0'),
86 IF(FIND_IN_SET('automaj',flags),'1','0')
87 FROM forums.profils
cab08090 88 WHERE uid = {?}", S::v('uid'));
f585e5a4 89 if (!(list($nom,$mail,$sig,$disp,$maj) = $req->fetchOneRow())) {
cab08090 90 $nom = S::v('prenom').' '.S::v('nom');
91 $mail = S::v('forlife').'@'.$globals->mail->domain;
92 $sig = $nom.' ('.S::v('promo').')';
f585e5a4 93 $disp = 0;
94 $maj = 0;
95 }
96 $page->assign('nom' , $nom);
97 $page->assign('mail', $mail);
98 $page->assign('sig' , $sig);
99 $page->assign('disp', $disp);
100 $page->assign('maj' , $maj);
101 } else {
08cce2ff 102 XDB::execute(
f585e5a4 103 'REPLACE INTO forums.profils (uid,sig,mail,nom,flags)
104 VALUES ({?},{?},{?},{?},{?})',
5e2307dc 105 S::v('uid'), Post::v('bananasig'),
106 Post::v('bananamail'), Post::v('banananame'),
107 (Post::b('bananadisplay') ? 'threads,' : '') .
108 (Post::b('bananaupdate') ? 'automaj' : '')
f585e5a4 109 );
110 }
f585e5a4 111 }
3d9b1d30 112
a3a1d23b 113 function handler_subscription(&$page)
114 {
4f355064 115 $page->changeTpl('banana/index.tpl');
116 $page->assign('xorg_title','Polytechnique.org - Forums & PA');
117
118 require_once 'banana/forum.inc.php';
119 run_banana($page, 'ForumsBanana', Array('action' => 'subscribe'));
a3a1d23b 120 }
3d9b1d30 121
6544d0e1 122 function handler_rss(&$page, $group, $alias, $hash, $file = null)
f107d806 123 {
6544d0e1 124 if (is_null($file)) {
125 if (is_null($hash)) {
126 exit;
127 }
128 $this->handler_rss($page, null, $group, $alias, $hash);
129 }
130 require_once('rss.inc.php');
131 $uid = init_rss(null, $alias, $hash);
132 if (!$uid) {
133 exit;
134 }
135 $res = XDB::query("SELECT id AS uid, alias AS forlife
136 FROM aliases
137 WHERE type = 'a_vie' AND id = {?}", $uid);
138 $row = $res->fetchOneAssoc();
139 $_SESSION = array_merge($row, $_SESSION);
140
141 require_once 'banana/forum.inc.php';
b2bffbe6 142 $banana = new ForumsBanana(S::v('forlife'), array('group' => $group, 'action' => 'rss2'));
4f355064 143 $banana->run();
6544d0e1 144 exit;
f107d806 145 }
146
5f4a0314 147 static function run_banana(&$page, $params = null)
a3a1d23b 148 {
3d9b1d30 149 $page->changeTpl('banana/index.tpl');
3d9b1d30 150 $page->assign('xorg_title','Polytechnique.org - Forums & PA');
151
24cec3d8 152 require_once 'banana/forum.inc.php';
4f355064 153 run_banana($page, 'ForumsBanana', $params);
a3a1d23b 154 }
f585e5a4 155}
156
a7de4ef7 157// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
f585e5a4 158?>