forked from mishamx/yii-user
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UserModule.php
274 lines (241 loc) · 6.52 KB
/
UserModule.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
<?php
/**
* Yii-User module
*
* @author Mikhail Mangushev <[email protected]>
* @link http://yii-user.2mx.org/
* @license http://www.opensource.org/licenses/bsd-license.php
* @version $Id: UserModule.php 132 2011-10-30 10:45:01Z mishamx $
*/
class UserModule extends CWebModule
{
/**
* @var int
* @desc items on page
*/
public $user_page_size = 10;
/**
* @var int
* @desc items on page
*/
public $fields_page_size = 10;
/**
* @var string
* @desc hash method (md5,sha1 or algo hash function http://www.php.net/manual/en/function.hash.php)
*/
public $hash='md5';
/**
* @var boolean
* @desc use email for activation user account
*/
public $sendActivationMail=true;
/**
* @var boolean
* @desc allow auth for is not active user
*/
public $loginNotActiv=false;
/**
* @var boolean
* @desc activate user on registration (only $sendActivationMail = false)
*/
public $activeAfterRegister=false;
/**
* @var boolean
* @desc login after registration (need loginNotActiv or activeAfterRegister = true)
*/
public $autoLogin=true;
public $registrationUrl = array("/user/registration");
public $recoveryUrl = array("/user/recovery/recovery");
public $loginUrl = array("/user/login");
public $logoutUrl = array("/user/logout");
public $profileUrl = array("/user/profile");
public $returnUrl = array("/user/profile");
public $returnLogoutUrl = array("/user/login");
/**
* @var int
* @desc Remember Me Time (seconds), defalt = 2592000 (30 days)
*/
public $rememberMeTime = 2592000; // 30 days
public $fieldsMessage = '';
/**
* @var array
* @desc User model relation from other models
* @see http://www.yiiframework.com/doc/guide/database.arr
*/
public $relations = array();
/**
* @var array
* @desc Profile model relation from other models
*/
public $profileRelations = array();
/**
* @var boolean
*/
public $captcha = array('registration'=>true);
/**
* @var boolean
*/
//public $cacheEnable = false;
public $tableUsers = '{{users}}';
public $tableProfiles = '{{profiles}}';
public $tableProfileFields = '{{profiles_fields}}';
public $defaultScope = array(
'with'=>array('profile'),
);
static private $_user;
static private $_users=array();
static private $_userByName=array();
static private $_admin;
static private $_admins;
/**
* @var array
* @desc Behaviors for models
*/
public $componentBehaviors=array();
public function init()
{
// this method is called when the module is being created
// you may place code here to customize the module or the application
// import the module-level models and components
$this->setImport(array(
'user.models.*',
'user.components.*',
));
}
public function getBehaviorsFor($componentName){
if (isset($this->componentBehaviors[$componentName])) {
return $this->componentBehaviors[$componentName];
} else {
return array();
}
}
public function beforeControllerAction($controller, $action)
{
if(parent::beforeControllerAction($controller, $action))
{
// this method is called before any module controller action is performed
// you may place customized code here
return true;
}
else
return false;
}
/**
* @param $str
* @param $params
* @param $dic
* @return string
*/
public static function t($str='',$params=array(),$dic='user') {
if (Yii::t("UserModule", $str)==$str)
return Yii::t("UserModule.".$dic, $str, $params);
else
return Yii::t("UserModule", $str, $params);
}
/**
* @return hash string.
*/
public static function encrypting($string="") {
$hash = Yii::app()->getModule('user')->hash;
if ($hash=="md5")
return md5($string);
if ($hash=="sha1")
return sha1($string);
else
return hash($hash,$string);
}
/**
* @param $place
* @return boolean
*/
public static function doCaptcha($place = '') {
if(!extension_loaded('gd'))
return false;
if (in_array($place, Yii::app()->getModule('user')->captcha))
return Yii::app()->getModule('user')->captcha[$place];
return false;
}
/**
* Return admin status.
* @return boolean
*/
public static function isAdmin() {
if(Yii::app()->user->isGuest)
return false;
else {
if (!isset(self::$_admin)) {
if(self::user()->superuser)
self::$_admin = true;
else
self::$_admin = false;
}
return self::$_admin;
}
}
/**
* Return admins.
* @return array syperusers names
*/
public static function getAdmins() {
if (!self::$_admins) {
$admins = User::model()->active()->superuser()->findAll();
$return_name = array();
foreach ($admins as $admin)
array_push($return_name,$admin->username);
self::$_admins = ($return_name)?$return_name:array('');
}
return self::$_admins;
}
/**
* Send to user mail
*/
public static function sendMail($email,$subject,$message) {
$adminEmail = Yii::app()->params['adminEmail'];
$headers = "MIME-Version: 1.0\r\nFrom: $adminEmail\r\nReply-To: $adminEmail\r\nContent-Type: text/html; charset=utf-8";
$message = wordwrap($message, 70);
$message = str_replace("\n.", "\n..", $message);
return mail($email,'=?UTF-8?B?'.base64_encode($subject).'?=',$message,$headers);
}
/**
* Send to user mail
*/
public function sendMailToUser($user_id,$subject,$message,$from='') {
$user = User::model()->findbyPk($user_id);
if (!$from) $from = Yii::app()->params['adminEmail'];
$headers="From: ".$from."\r\nReply-To: ".Yii::app()->params['adminEmail'];
return mail($user->email,'=?UTF-8?B?'.base64_encode($subject).'?=',$message,$headers);
}
/**
* Return safe user data.
* @param user id not required
* @return user object or false
*/
public static function user($id=0,$clearCache=false) {
if (!$id&&!Yii::app()->user->isGuest)
$id = Yii::app()->user->id;
if ($id) {
if (!isset(self::$_users[$id])||$clearCache)
self::$_users[$id] = User::model()->with(array('profile'))->findbyPk($id);
return self::$_users[$id];
} else return false;
}
/**
* Return safe user data.
* @param user name
* @return user object or false
*/
public static function getUserByName($username) {
if (!isset(self::$_userByName[$username])) {
$_userByName[$username] = User::model()->findByAttributes(array('username'=>$username));
}
return $_userByName[$username];
}
/**
* Return safe user data.
* @param user id not required
* @return user object or false
*/
public function users() {
return User;
}
}