X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Fbanana.php;h=017aed017b6bdf10670e5c499b23b85ab80396d2;hb=3220eb8a2a1d8e0e0b89e33db0466b5b079f5ea3;hp=7a88b9ca5677b29bd486522b5162e499c940b0dd;hpb=1e33266a2f91e1af7a5cb3e8fbbc1c49ff9341f3;p=platal.git diff --git a/modules/banana.php b/modules/banana.php index 7a88b9c..017aed0 100644 --- a/modules/banana.php +++ b/modules/banana.php @@ -1,6 +1,6 @@ $this->make_hook('banana', AUTH_COOKIE), - 'banana/profile' => $this->make_hook('profile', AUTH_MDP), - 'banana/subscription' => $this->make_hook('subscription', AUTH_COOKIE), - 'banana/xface' => $this->make_hook('xface', AUTH_COOKIE), +// 'banana/profile' => $this->make_hook('profile', AUTH_MDP), +// 'banana/subscribe' => $this->make_hook('subscription', AUTH_COOKIE), + 'banana/rss' => $this->make_hook('rss', AUTH_PUBLIC, 'user', NO_HTTPS), + 'admin/forums' => $this->make_hook('forums_bans', AUTH_MDP, 'admin'), + 'forums/bans/service' => $this->make_hook('forums_bans_service', AUTH_PUBLIC) ); } @@ -45,7 +47,7 @@ class BananaModule extends PLModule FROM auth_user_md5 WHERE promo={?}", $promo); list($effau, $effid) = $res->fetchOneRow(); if (5*$effau>$effid) { // + de 20% d'inscrits - $mymail = new PlMailer('mails/forums.promo.tpl'); + $mymail = new PlMailer('admin/forums-promo.mail.tpl'); $mymail->assign('promo', $promo); $mymail->send(); } @@ -59,29 +61,16 @@ class BananaModule extends PLModule function handler_banana(&$page, $group = null, $action = null, $artid = null) { + $page->changeTpl('banana/index.tpl'); + $page->assign('xorg_title','Polytechnique.org - Forums & PA'); + $get = Array(); - if (!is_null($group)) { - $get['group'] = $group; - } if (Post::has('updateall')) { $get['updateall'] = Post::v('updateall'); } - if (!is_null($action)) { - if ($action == 'new') { - $get['action'] = 'new'; - } elseif ($action == 'reply' && !is_null($artid)) { - $get['action'] = 'new'; - $get['artid'] = $artid; - } elseif ($action == 'cancel' && !is_null($artid)) { - $get['action'] = $action; - $get['artid'] = $artid; - } elseif ($action == 'from' && !is_null($artid)) { - $get['first'] = $artid; - } elseif ($action == 'read' && !is_null($artid)) { - $get['artid'] = $artid; - } - } - return BananaModule::run_banana($page, $get); + require_once 'banana/forum.inc.php'; + get_banana_params($get, $group, $action, $artid); + run_banana($page, 'ForumsBanana', $get); } function handler_profile(&$page, $action = null) @@ -92,62 +81,116 @@ class BananaModule extends PLModule if (!(Post::has('action') && Post::has('banananame') && Post::has('bananasig') && Post::has('bananadisplay') && Post::has('bananamail') - && Post::has('bananaupdate') && Post::v('action')=="OK" )) + && Post::has('bananaupdate') && Post::v('action')=="Enregistrer" )) { $req = XDB::query(" - SELECT nom,mail,sig,if(FIND_IN_SET('threads',flags),'1','0'), - IF(FIND_IN_SET('automaj',flags),'1','0') + SELECT nom, mail, sig, + FIND_IN_SET('threads', flags), + FIND_IN_SET('automaj', flags), + FIND_IN_SET('xface', flags) FROM forums.profils WHERE uid = {?}", S::v('uid')); - if (!(list($nom,$mail,$sig,$disp,$maj) = $req->fetchOneRow())) { - $nom = S::v('prenom').' '.S::v('nom'); - $mail = S::v('forlife').'@'.$globals->mail->domain; - $sig = $nom.' ('.S::v('promo').')'; - $disp = 0; - $maj = 0; + if (!(list($nom, $mail, $sig, $disp, $maj, $xface) = $req->fetchOneRow())) { + $nom = S::v('prenom').' '.S::v('nom'); + $mail = S::v('forlife').'@'.$globals->mail->domain; + $sig = $nom.' ('.S::v('promo').')'; + $disp = 0; + $maj = 0; + $xface = 0; } - $page->assign('nom' , $nom); - $page->assign('mail', $mail); - $page->assign('sig' , $sig); - $page->assign('disp', $disp); - $page->assign('maj' , $maj); + $page->assign('nom' , $nom); + $page->assign('mail', $mail); + $page->assign('sig', $sig); + $page->assign('disp', $disp); + $page->assign('maj', $maj); + $page->assign('xface', $xface); } else { - XDB::execute( - 'REPLACE INTO forums.profils (uid,sig,mail,nom,flags) - VALUES ({?},{?},{?},{?},{?})', - S::v('uid'), Post::v('bananasig'), - Post::v('bananamail'), Post::v('banananame'), - (Post::b('bananadisplay') ? 'threads,' : '') . - (Post::b('bananaupdate') ? 'automaj' : '') - ); + $flags = array(); + if (Post::b('bananadisplay')) { + $flags[] = 'threads'; + } + if (Post::b('bananaupdate')) { + $flags[] = 'automaj'; + } + if (Post::b('bananaxface')) { + $flags[] = 'xface'; + } + XDB::execute("REPLACE INTO forums.profils (uid, sig, mail, nom, flags) + VALUES ({?}, {?}, {?}, {?}, {?})", + S::v('uid'), Post::v('bananasig'), + Post::v('bananamail'), Post::v('banananame'), + implode(',', $flags)); + } + } + + function handler_rss(&$page, $group, $alias, $hash, $file = null) + { + if (is_null($file)) { + if (is_null($hash)) { + exit; + } + $this->handler_rss($page, null, $group, $alias, $hash); } + require_once('rss.inc.php'); + $uid = init_rss(null, $alias, $hash); + if (!$uid) { + exit; + } + $res = XDB::query("SELECT id AS uid, alias AS forlife + FROM aliases + WHERE type = 'a_vie' AND id = {?}", $uid); + $row = $res->fetchOneAssoc(); + $_SESSION = array_merge($row, $_SESSION); + + require_once 'banana/forum.inc.php'; + $banana = new ForumsBanana(S::v('forlife'), array('group' => $group, 'action' => 'rss2')); + $banana->run(); + exit; } - function handler_subscription(&$page) + function handler_forums_bans(&$page, $action = 'list', $id = null) { - return $this->run_banana($page, Array('subscribe' => 1)); + $page->assign('xorg_title','Polytechnique.org - Administration - Bannissements des forums'); + $page->assign('title', 'Gestion des mises au ban'); + $table_editor = new PLTableEditor('admin/forums','forums.innd','id_innd'); + $table_editor->describe('ipmin','min plage IP',true); + $table_editor->describe('ipmax','max plage IP',true); + $table_editor->describe('uid','utilisateur',true); + $table_editor->describe('write_perm','perm. poster',true); + $table_editor->describe('read_perm','perm. lire',true); + $table_editor->describe('priority','priorite',true); + $table_editor->describe('comment','commentaire',true); + $table_editor->apply($page, $action, $id); } - function handler_xface(&$page, $face = null) + function handler_forums_bans_service(&$page, $action = 'list', $id = null) { - header('Content-Type: image/gif'); - passthru('echo ' . escapeshellarg(base64_decode(strtr($face, '.:', '+/'))) - . '| uncompface -X ' - . '| convert -transparent white xbm:- gif:-'); + global $globals; + + $ips = array_flip(explode(' ', $globals->banana->bans_authorized_ips)); + + if ($ips && isset($ips[$_SERVER['REMOTE_ADDR']])) { + + $res = XDB::query("SELECT priority, read_perm, write_perm, comment + FROM forums.innd AS i + INNER JOIN x4dat.aliases AS a ON ( a.id = i.uid AND a.type='a_vie' ) + INNER JOIN x4dat.aliases AS b ON ( b.id = a.id AND b.type != 'homonyme' ) + WHERE b.alias = '".addslashes(Env::v('forlife'))."'"); + $ban = $res->fetchOneAssoc(); + echo $res['priority']."\n".$res['read_perm']."\n".$res['write_perm']."\n".$res['comment']."\n"; + } + exit(); } - function run_banana(&$page, $params = null) + static function run_banana(&$page, $params = null) { $page->changeTpl('banana/index.tpl'); - $page->addCssLink('banana.css'); $page->assign('xorg_title','Polytechnique.org - Forums & PA'); - require_once dirname(__FILE__).'/banana/banana.inc.php'; - - $res = PlatalBanana::run($params); - $page->assign_by_ref('banana', $banana); - $page->assign('banana_res', $res); + require_once 'banana/forum.inc.php'; + run_banana($page, 'ForumsBanana', $params); } } +// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: ?>