Fixes
[platal.git] / modules / forums.php
CommitLineData
f585e5a4 1<?php
2/***************************************************************************
179afa7f 3 * Copyright (C) 2003-2008 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
9c30fe48 22class ForumsModule extends PLModule
f585e5a4 23{
24 function handlers()
25 {
26 return array(
3d9b1d30 27 'banana' => $this->make_hook('banana', AUTH_COOKIE),
1d42a639 28 'banana/rss' => $this->make_hook('rss', AUTH_PUBLIC, 'user', NO_HTTPS),
20f6e3ac 29 'admin/forums' => $this->make_hook('forums_bans', AUTH_MDP, 'admin'),
a3a1d23b 30 );
f585e5a4 31 }
32
8d8f7607 33 function on_subscribe($forlife, $uid, $promo, $password)
34 {
35 $cible = array('xorg.general', 'xorg.pa.divers', 'xorg.pa.logements');
36 $p_for = "xorg.promo.x$promo";
37
78b276cf 38 // récupération de l'id du forum promo
8d8f7607 39 $res = XDB::query("SELECT fid FROM forums.list WHERE nom={?}", $p_for);
40 if ($res->numRows()) {
41 $cible[] = $p_for;
78b276cf 42 } else { // pas de forum promo, il faut le créer
8d8f7607 43 $res = XDB::query("SELECT SUM(perms IN ('admin','user') AND deces=0),COUNT(*)
44 FROM auth_user_md5 WHERE promo={?}", $promo);
45 list($effau, $effid) = $res->fetchOneRow();
46 if (5*$effau>$effid) { // + de 20% d'inscrits
b71f7275 47 $mymail = new PlMailer('admin/forums-promo.mail.tpl');
8d8f7607 48 $mymail->assign('promo', $promo);
49 $mymail->send();
50 }
51 }
52
53 while (list ($key, $val) = each ($cible)) {
54 XDB::execute("INSERT INTO forums.abos (fid,uid)
55 SELECT fid,{?} FROM forums.list WHERE nom={?}", $uid, $val);
56 }
57 }
58
3d9b1d30 59 function handler_banana(&$page, $group = null, $action = null, $artid = null)
f585e5a4 60 {
4f355064 61 $page->changeTpl('banana/index.tpl');
62 $page->assign('xorg_title','Polytechnique.org - Forums & PA');
63
a3a1d23b 64 $get = Array();
7e6495d4 65 if (Post::has('updateall')) {
85b9d118 66 $get['updateall'] = Post::v('updateall');
7e6495d4 67 }
4f355064 68 require_once 'banana/forum.inc.php';
69 get_banana_params($get, $group, $action, $artid);
70 run_banana($page, 'ForumsBanana', $get);
f585e5a4 71 }
72
6544d0e1 73 function handler_rss(&$page, $group, $alias, $hash, $file = null)
f107d806 74 {
6544d0e1 75 if (is_null($file)) {
76 if (is_null($hash)) {
77 exit;
78 }
79 $this->handler_rss($page, null, $group, $alias, $hash);
80 }
81 require_once('rss.inc.php');
82 $uid = init_rss(null, $alias, $hash);
83 if (!$uid) {
84 exit;
85 }
86 $res = XDB::query("SELECT id AS uid, alias AS forlife
87 FROM aliases
88 WHERE type = 'a_vie' AND id = {?}", $uid);
89 $row = $res->fetchOneAssoc();
90 $_SESSION = array_merge($row, $_SESSION);
91
92 require_once 'banana/forum.inc.php';
b2bffbe6 93 $banana = new ForumsBanana(S::v('forlife'), array('group' => $group, 'action' => 'rss2'));
4f355064 94 $banana->run();
6544d0e1 95 exit;
f107d806 96 }
97
669cb0e0 98 function handler_forums_bans(&$page, $action = 'list', $id = null)
99 {
100 $page->assign('xorg_title','Polytechnique.org - Administration - Bannissements des forums');
101 $page->assign('title', 'Gestion des mises au ban');
102 $table_editor = new PLTableEditor('admin/forums','forums.innd','id_innd');
48e11686
PC
103 $table_editor->add_sort_field('priority', true, true);
104 $table_editor->describe('read_perm','lecture',true);
105 $table_editor->describe('write_perm','écriture',true);
d90cbe1a 106 $table_editor->describe('priority','priorité',true);
669cb0e0 107 $table_editor->describe('comment','commentaire',true);
108 $table_editor->apply($page, $action, $id);
48e11686 109 $page->changeTpl('forums/admin.tpl');
e73e78b9 110 $page->addJsLink('jquery.js');
669cb0e0 111 }
112
5f4a0314 113 static function run_banana(&$page, $params = null)
a3a1d23b 114 {
3d9b1d30 115 $page->changeTpl('banana/index.tpl');
3d9b1d30 116 $page->assign('xorg_title','Polytechnique.org - Forums & PA');
117
24cec3d8 118 require_once 'banana/forum.inc.php';
4f355064 119 run_banana($page, 'ForumsBanana', $params);
a3a1d23b 120 }
f585e5a4 121}
122
a7de4ef7 123// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
f585e5a4 124?>