X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Fbanana.php;h=8193a4375014f57540d72ed586825d91f3ffb9b9;hb=5122b820e488b28e0b62ec09cd76d87f1d22fc99;hp=3dab3d1e44a4b0ee504d1ef13d4a677b6e1216dc;hpb=cab0809050d58f8484608e91f7555ebd69dcb451;p=platal.git diff --git a/modules/banana.php b/modules/banana.php index 3dab3d1..8193a43 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/rss' => $this->make_hook('rss', AUTH_PUBLIC), ); } + function on_subscribe($forlife, $uid, $promo, $password) + { + $cible = array('xorg.general', 'xorg.pa.divers', 'xorg.pa.logements'); + $p_for = "xorg.promo.x$promo"; + + // récupération de l'id du forum promo + $res = XDB::query("SELECT fid FROM forums.list WHERE nom={?}", $p_for); + if ($res->numRows()) { + $cible[] = $p_for; + } else { // pas de forum promo, il faut le créer + $res = XDB::query("SELECT SUM(perms IN ('admin','user') AND deces=0),COUNT(*) + 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->assign('promo', $promo); + $mymail->send(); + } + } + + while (list ($key, $val) = each ($cible)) { + XDB::execute("INSERT INTO forums.abos (fid,uid) + SELECT fid,{?} FROM forums.list WHERE nom={?}", $uid, $val); + } + } + 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['banana'] = '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; - } + $get['updateall'] = Post::v('updateall'); } - 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) @@ -66,7 +79,7 @@ class BananaModule extends PLModule if (!(Post::has('action') && Post::has('banananame') && Post::has('bananasig') && Post::has('bananadisplay') && Post::has('bananamail') - && Post::has('bananaupdate') && Post::get('action')=="OK" )) + && Post::has('bananaupdate') && Post::v('action')=="OK" )) { $req = XDB::query(" SELECT nom,mail,sig,if(FIND_IN_SET('threads',flags),'1','0'), @@ -89,39 +102,57 @@ class BananaModule extends PLModule XDB::execute( 'REPLACE INTO forums.profils (uid,sig,mail,nom,flags) VALUES ({?},{?},{?},{?},{?})', - S::v('uid'), Post::get('bananasig'), - Post::get('bananamail'), Post::get('banananame'), - (Post::getBool('bananadisplay') ? 'threads,' : '') . - (Post::getBool('bananaupdate') ? 'automaj' : '') + S::v('uid'), Post::v('bananasig'), + Post::v('bananamail'), Post::v('banananame'), + (Post::b('bananadisplay') ? 'threads,' : '') . + (Post::b('bananaupdate') ? 'automaj' : '') ); } } function handler_subscription(&$page) { - return $this->run_banana($page, Array('subscribe' => 1)); + $page->changeTpl('banana/index.tpl'); + $page->assign('xorg_title','Polytechnique.org - Forums & PA'); + + require_once 'banana/forum.inc.php'; + run_banana($page, 'ForumsBanana', Array('action' => 'subscribe')); } - function handler_xface(&$page, $face = null) + function handler_rss(&$page, $group, $alias, $hash, $file = null) { - header('Content-Type: image/gif'); - passthru('echo ' . escapeshellarg(base64_decode(strtr($face, '.:', '+/'))) - . '| uncompface -X ' - . '| convert -transparent white xbm:- gif:-'); + 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 run_banana(&$page, $params = null) + static function run_banana(&$page, $params = null) { $page->changeTpl('banana/index.tpl'); - $page->addCssLink('css/banana.css'); $page->assign('xorg_title','Polytechnique.org - Forums & PA'); - require_once('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: ?>