X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Frss.inc.php;h=2ee4bd57e30e15438b5aac95b02add177f1e928f;hb=9e1816c7666767755abbc24f6a0df290efff81b6;hp=0117fc0f65c814b715a6e5ecf3cf2a3a293cbdd0;hpb=c700d16b2402b1d246383097f6f22f716e294eaf;p=platal.git diff --git a/include/rss.inc.php b/include/rss.inc.php index 0117fc0..2ee4bd5 100644 --- a/include/rss.inc.php +++ b/include/rss.inc.php @@ -1,6 +1,6 @@ changeTpl($template, NO_SKIN); - $page->register_modifier('rss_date', '_rss_encode_date'); - - $res = XDB::query( - 'SELECT a.id - FROM aliases AS a - INNER JOIN auth_user_md5 AS u ON (a.id = u.user_id AND u.perms IN ("admin", "user")) - INNER JOIN auth_user_quick AS q ON (a.id = q.user_id AND q.core_rss_hash = {?}) - WHERE a.alias = {?} AND a.type != "homonyme"', $hash, $alias); - $uid = $res->fetchOneCell(); - - if (empty($uid)) { + $user = Platal::session()->tokenAuth($alias, $hash); + if (is_null($user)) { if ($require_uid) { exit; } else { - $uid = null; + $user = null; } } if ($template) { $page->assign('rss_hash', $hash); - header('Content-Type: application/rss+xml; charset=utf8'); + pl_content_headers("application/rss+xml"); } - return $uid; + return is_null($user) ? null : $user->id(); } // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: