Let say this is a 'typo'.
[platal.git] / classes / s.php
CommitLineData
b62f8858 1<?php
2/***************************************************************************
2ab75571 3 * Copyright (C) 2003-2010 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
22class 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
7adcbe0e
FB
52 public static function b($key, $default = false)
53 {
54 return (bool)S::v($key, $default);
55 }
56
88a4c51b
FB
57 public static function i($key, $default = 0)
58 {
59 $i = S::v($key, $default);
60 return is_numeric($i) ? intval($i) : $default;
61 }
62
f1c8bb75
FB
63 public static function t($key, $default = '')
64 {
65 return trim(S::s($key, $default));
66 }
67
68 public static function blank($key, $strict = false)
69 {
70 if (!S::has($key)) {
71 return true;
72 }
73 $var = $strict ? S::s($key) : S::t($key);
74 return empty($var);
75 }
76
88a4c51b
FB
77 public static function l(array $keys)
78 {
79 return array_map(array('S', 'v'), $keys);
80 }
81
c0799142 82 public static function set($key, $value)
88a4c51b
FB
83 {
84 $_SESSION[$key] =& $value;
85 }
86
c0799142 87 public static function bootstrap($key, $value)
88a4c51b
FB
88 {
89 if (!S::has($key)) {
90 S::set($key, $value);
91 }
92 }
93
47fa97fe 94 public static function logger($uid = null)
c0799142 95 {
7c8d7022
FB
96 $uid = S::i('uid', $uid);
97 if (!S::has('log') || !S::v('log')->isValid($uid)) {
c0799142
FB
98 if (S::has('suid')) {
99 $suid = S::v('suid');
7c8d7022 100 S::set('log', PlLogger::get(S::i('uid', $uid), $suid['uid']));
732e5855 101 } else if (S::has('uid') || $uid) {
7c8d7022
FB
102 S::set('log', PlLogger::get(S::i('uid', $uid)));
103 } else {
104 S::set('log', PlLogger::dummy($uid));
c0799142
FB
105 }
106 }
107 return S::v('log');
108 }
109
c12e9211
VZ
110 /** User object storage and accessor. The user object (an instance of the
111 * local subclass of PlUser) is currently stored as a S class variable, and
112 * not as a session variable, so as to avoid bloating the global on-disk
113 * session.
114 * TODO: When all the codebase will use S::user() as the only source for
115 * user ids, fullname/displayname, and forlife/bestalias, S::$user should
116 * move into the php session (and data it helds should be removed from
117 * the php session). */
118 private static $user = null;
119 public static function &user()
120 {
be2abdd1 121 if (self::$user == null && class_exists('User')) {
324d1fa0
FB
122 if (S::has('user') && S::v('user') instanceof User) {
123 self::$user = S::v('user');
124 } else {
125 self::$user = User::getSilentWithValues(S::i('uid'), $_SESSION);
126 }
c12e9211
VZ
127 }
128 return self::$user;
129 }
130
88a4c51b
FB
131 public static function logged()
132 {
8cd8f58b 133 return S::i('auth', AUTH_PUBLIC) >= Platal::session()->loggedLevel();
88a4c51b
FB
134 }
135
136 public static function identified()
137 {
8cd8f58b 138 return S::i('auth', AUTH_PUBLIC) >= Platal::session()->sureLevel();
88a4c51b
FB
139 }
140
f1c8bb75
FB
141 public static function admin()
142 {
143 return Platal::session()->checkPerms(PERMS_ADMIN);
144 }
145
146 public static function suid($field = null, $default = null)
147 {
148 if (is_null($field)) {
149 return !S::blank('suid');
150 } else {
151 $suid = S::v('suid', array());
152 if (!empty($suid) && isset($suid[$field])) {
153 return $suid[$field];
154 } else {
155 return $default;
156 }
157 }
158 }
159
88a4c51b
FB
160 // Anti-XSRF protections.
161 public static function has_xsrf_token()
162 {
163 return S::has('xsrf_token') && S::v('xsrf_token') == Env::v('token');
164 }
165
166 public static function assert_xsrf_token()
167 {
168 if (!S::has_xsrf_token()) {
169 Platal::page()->kill('L\'opération n\'a pas pu aboutir, merci de réessayer.');
170 }
171 }
172
f1c8bb75
FB
173 public static function hasAuthToken()
174 {
175 return !S::blank('token');
176 }
177
88a4c51b
FB
178 public static function rssActivated()
179 {
f1c8bb75 180 // XXX: Deprecated, to be replaced by S::hasToken()
88a4c51b
FB
181 return S::has('core_rss_hash') && S::v('core_rss_hash');
182 }
6995a9b9 183}
b62f8858 184
a7de4ef7 185// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
b62f8858 186?>