Commit | Line | Data |
---|---|---|
b62f8858 | 1 | <?php |
2 | /*************************************************************************** | |
179afa7f | 3 | * Copyright (C) 2003-2008 Polytechnique.org * |
b62f8858 | 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 | ||
88a4c51b FB |
22 | class S |
23 | { | |
24 | /** Set a constructor because this is called prior to S::s(), so we can | |
25 | * define S::s() for other usages. | |
26 | */ | |
27 | private function __construct() | |
28 | { | |
29 | assert(false); | |
30 | } | |
31 | ||
32 | public static function has($key) | |
33 | { | |
34 | return isset($_SESSION[$key]); | |
35 | } | |
36 | ||
37 | public static function kill($key) | |
38 | { | |
39 | unset($_SESSION[$key]); | |
40 | } | |
41 | ||
42 | public static function v($key, $default = null) | |
43 | { | |
44 | return isset($_SESSION[$key]) ? $_SESSION[$key] : $default; | |
45 | } | |
46 | ||
47 | public static function s($key, $default = '') | |
48 | { | |
49 | return (string)S::v($key, $default); | |
50 | } | |
51 | ||
52 | public static function i($key, $default = 0) | |
53 | { | |
54 | $i = S::v($key, $default); | |
55 | return is_numeric($i) ? intval($i) : $default; | |
56 | } | |
57 | ||
58 | public static function l(array $keys) | |
59 | { | |
60 | return array_map(array('S', 'v'), $keys); | |
61 | } | |
62 | ||
63 | public static function set($key, &$value) | |
64 | { | |
65 | $_SESSION[$key] =& $value; | |
66 | } | |
67 | ||
68 | public static function bootstrap($key, &$value) | |
69 | { | |
70 | if (!S::has($key)) { | |
71 | S::set($key, $value); | |
72 | } | |
73 | } | |
74 | ||
75 | public static function has_perms() | |
76 | { | |
77 | global $session; | |
78 | return $session->checkPerms(PERMS_ADMIN); | |
79 | } | |
80 | ||
81 | public static function logged() | |
82 | { | |
83 | return S::v('auth', AUTH_PUBLIC) > AUTH_PUBLIC; | |
84 | } | |
85 | ||
86 | public static function identified() | |
87 | { | |
88 | global $session; | |
89 | return S::v('auth', AUTH_PUBLIC) >= $session->sureLevel(); | |
90 | } | |
91 | ||
92 | // Anti-XSRF protections. | |
93 | public static function has_xsrf_token() | |
94 | { | |
95 | return S::has('xsrf_token') && S::v('xsrf_token') == Env::v('token'); | |
96 | } | |
97 | ||
98 | public static function assert_xsrf_token() | |
99 | { | |
100 | if (!S::has_xsrf_token()) { | |
101 | Platal::page()->kill('L\'opération n\'a pas pu aboutir, merci de réessayer.'); | |
102 | } | |
103 | } | |
104 | ||
105 | public static function rssActivated() | |
106 | { | |
107 | return S::has('core_rss_hash') && S::v('core_rss_hash'); | |
108 | } | |
6995a9b9 | 109 | } |
b62f8858 | 110 | |
a7de4ef7 | 111 | // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: |
b62f8858 | 112 | ?> |