-
Notifications
You must be signed in to change notification settings - Fork 0
/
Module.php
414 lines (360 loc) · 10.4 KB
/
Module.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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
<?php
namespace marsoltys\yii2user;
use marsoltys\yii2user\models\User;
use Yii;
use yii\db\ActiveRecord;
use yii\swiftmailer\Mailer;
class Module extends \yii\base\Module
{
const ALERT_ERROR = 'danger';
const ALERT_INFO = 'info';
const ALERT_WARNING = 'warning';
const ALERT_SUCCESS = 'success';
public $userClass = 'marsoltys\yii2user\components\User';
public $identityClass = 'marsoltys\yii2user\models\User';
public $userModel = 'marsoltys\yii2user\models\User';
public $mainLayout = '@app/views/layouts/main.php';
public $layout = "topmenu";
public $mailViews = '@marsoltys/yii2user/mail';
public $urlPrefix = 'users';
/** @var array The rules to be used in URL management. */
public $urlRules = [
'class' => 'yii\web\GroupUrlRule',
'login' => 'user/security/login',
'logout' => 'user/security/logout',
[
'class' => 'yii\web\GroupUrlRule',
'prefix' => 'user',
'rules' => [
'/' => 'user/index',
'registration' => 'registration/registration',
'admin/<action:(view|update|delete)>/<id:\d+>' => 'admin/<action>',
'admin' => 'admin/admin',
'profile-field/<id:\d+>' => 'profile-field/view',
'profile-field/<action:(view|update|delete)>/<id:\d+>' => 'profile-field/<action>'
],
]
];
/**
* @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 string
* @desc Email address present in "From" field
*/
public $emailFrom;
/**
* @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 = ["/user/registration/registration"];
public $recoveryUrl = ["/user/security/recovery"];
public $activationUrl = ["/user/security/activation"];
public $loginUrl = ["/user/security/login"];
public $logoutUrl = ["/user/security/logout"];
public $profileUrl = ["/user/profile"];
public $returnUrl = ["/user/profile"];
public $returnLogoutUrl = ["/user/security/login"];
public $captchaParams = [
'class'=>'yii\captcha\CaptchaAction',
'backColor'=>0xFFFFFF,
'foreColor'=>0x2040A0,
];
private $menu = [];
/**
* @var int
* @desc Remember Me Time (seconds), defalt = 2592000 (30 days)
*/
public $rememberMeTime = 2592000; // 30 days
public $fieldsMessage = '';
/**
* @var array
* @desc Profile model relation from other models
*/
public $profileRelations = [];
/**
* @var array
*/
public $captcha = ['registration' =>true];
/**
* @var boolean
*/
//public $cacheEnable = false;
public $tableUsers = '{{users}}';
public $tableProfiles = '{{profiles}}';
public $tableProfileFields = '{{profiles_fields}}';
public $defaultScope = [
'with'=> ['profile'],
];
static private $user;
static private $users= [];
static private $userByName= [];
static private $admin;
static private $admins;
/**
* @var array
* @desc Behaviors for models
*/
public $componentBehaviors= [];
/**
* @inheritdoc
*/
public $controllerNamespace = 'marsoltys\yii2user\controllers';
/**
* @inheritdoc
*/
public $defaultRoute = 'user';
/**
* @return Module
*/
public static function getInstance()
{
return parent::getInstance();
}
public function init()
{
parent::init();
$this->setAliases([
'@user-assets' => __DIR__ . '/views/assets',
]);
if (is_file(__DIR__ . '/config.php')) {
Yii::configure($this, require(__DIR__ . '/config.php'));
}
$this->registerTranslations();
}
public function getBehaviorsFor($componentName)
{
if (isset($this->componentBehaviors[$componentName])) {
return $this->componentBehaviors[$componentName];
} else {
return [];
}
}
public function registerTranslations()
{
Yii::$app->i18n->translations['user*'] = [
'class' => 'yii\i18n\PhpMessageSource',
'sourceLanguage' => 'en-US',
'basePath' => '@marsoltys/yii2user/messages'
];
}
/**
* @param $str
* @param $params
* @param $dic
* @return string
*/
public static function t($str = '', $params = [], $dic = 'user')
{
if (Yii::t("user", $str)==$str) {
return Yii::t("user.".$dic, $str, $params);
} else {
return Yii::t("user", $str, $params);
}
}
/**
* @param string $string string to encrypt
* @return string hash.
* @throws \yii\base\Exception
* @throws \yii\base\InvalidConfigException
*/
public static function encrypting($string = "")
{
return Yii::$app->getSecurity()->generatePasswordHash($string);
}
/**
* @param $place
* @return boolean
*/
public static function doCaptcha($place = '')
{
if (!extension_loaded('gd')) {
return false;
}
if (in_array($place, Module::getInstance()->captcha)) {
return Module::getInstance()->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 superusers names
*/
public static function getAdmins()
{
if (!self::$admins) {
$admins = User::find()->active()->superuser()->all();
$return_name = [];
foreach ($admins as $admin) {
array_push($return_name, $admin->username);
}
self::$admins = ($return_name)?$return_name: [''];
}
return self::$admins;
}
/**
* Send emails to specified $email address
* @param string $email
* @param string $subject
* @param string $view
* @param array $params
* @return bool
*/
public static function sendMail($email, $subject, $view, $params = [])
{
if (empty($params['from'])) {
$params['from'] = Yii::$app->params['adminEmail'];
}
/** @var $mailer Mailer*/
$mailer = Yii::$app->mailer;
$view = Module::getInstance()->mailViews."/".$view;
$mailer->compose($view, $params)
->setFrom($params['from'])
->setTo($email)
->setSubject($subject)
->send();
return $mailer;
}
/**
* Send email to user based on user id
* @param int $user_id
* @param string $subject
* @param string $view
* @param array $params
* @return bool
*/
public function sendMailToUser($user_id, $subject, $view, $params = [])
{
/**@var User $user*/
$user = User::findOne($user_id);
return $this->sendMail($user->email, $subject, $view, $params);
}
/**
* Return safe user data.
* @param $id int user id not required
* @param bool $clearCache
* @return User object or false
*/
public static function user($id = 0, $clearCache = false)
{
/* @var $userModel ActiveRecord */
$userModel = Yii::$app->getModule('user')->userModel;
if (!$id&&!Yii::$app->user->isGuest) {
$id = Yii::$app->user->id;
}
if ($id) {
if (!isset(self::$users[$id])||$clearCache) {
self::$users[$id] = $userModel::findOne($id);
}
return self::$users[$id];
} else {
return false;
}
}
/**
* Return safe user data.
* @param $username string user name
* @return user object or false
*/
public static function getUserByName($username)
{
$_userByName = [];
if (!isset(self::$userByName[$username])) {
$_userByName[$username] = User::findOne(['username'=>$username]);
}
return $_userByName[$username];
}
public function initMenu()
{
if (Module::isAdmin()) {
$this->menu = [
['label' => Module::t('Create User'), 'url' => ['/user/admin/create']],
['label' => Module::t('Manage Users'), 'url' => ['/user/admin/admin']],
['label' => Module::t('Manage Profile Field'), 'url' => ['/user/profile-field/admin']],
['label' => Module::t('List User'), 'url' => ['/user/user/index']],
];
}
}
public function getMenu()
{
if (empty($this->menu)) {
$this->initMenu();
}
return $this->menu;
}
/**
* Position is counted starting from number 1 (not 0 as in arrays)
* @param array $option
* @param false|int $position
*/
public function addMenu($option, $position = 0)
{
if (empty($this->menu)) {
$this->initMenu();
}
if ($position !== 0) {
$this->menu = array_splice($this->menu, $position-1, 0, $option);
} else {
$this->menu[] = $option;
}
}
public function setMenu($options)
{
$this->menu = $options;
}
// /**
// * Return safe user data.
// * @param user id not required
// * @return user object or false
// */
// public function users() {
// return User;
// }
}