Blame view

common/models/Customer.php 6.51 KB
7ba4acc5   Administrator   after marge
1
2
3
  <?php
  
  namespace common\models;
84b2aead   Administrator   add active menu
4
  use common\components\Mailer;
7ba4acc5   Administrator   after marge
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
  use Yii;
  
  class Customer extends \yii\db\ActiveRecord implements \yii\web\IdentityInterface
  {
      public $password_repeat;
  	public $role;
  	public $verifyCode;
  	public $old_image;
  	public $authKey;
  
  	
  	public static function tableName()
      {
          return 'customer';
      }
  
  	public function rules()
  	{
  		return [
  			[['username', 'password','phone','verifyCode','name','surname'], 'required','on'=>['person','company','customer']],
  			[['verifyCode'], 'captcha','captchaAction'=>'reg/captcha','on'=>['person','company','customer']],
  			[['password_repeat'], 'required','on'=>['person','company','customer','edit_person']],
  			[['password_repeat'], 'password_repeat','on'=>['person','company','customer','edit_person']],
  			[['username'], 'is_username','on'=>['person','company','customer']],
  			[['username'], 'email','on'=>['person','company','customer','edit_person']],
  			[['company'], 'required','on'=>['company']],
  			
  			[['username', 'password','phone','role','name','surname'], 'required','on'=>['edit_person','edit_customer','edit_company']],
  			[['company'], 'required','on'=>['edit_company']],
                          [['sex','body','birth_day','birth_mouth','birth_year'], 'safe','on'=>['edit_person']],
  			[['sex','status','children','body','old_image','birth_day','birth_mouth','birth_year'], 'safe','on'=>['edit_customer']],
                          [['body'], 'safe','on'=>['edit_company']],
                         // [['image'], 'file', 'extensions'=>'jpg, gif, png','skipOnEmpty'=>true,'on'=>['edit_person','edit_customer','edit_company']],
  		];
  	}	
  	
  	public function attributeLabels()
  	{
  		return [
  			'username'=>'Логин (E-mail)',
  			'password'=>'Пароль',
  			'password_repeat'=>'Повторить пароль',
  			'phone'=>'Телефон',
  			'verifyCode'=>'Код проверки',
  			'name'=>'Имя',
  			'surname'=>'Фамилия',
  			'company'=>'Компания',
  			'sex'=>'Пол',
  			'status'=>'Семейное положение',
  			'children'=>'Дети',
  			'edu'=>'Образование',
  			'work'=>'Работа',
  			'langs'=>'Иностранные языки',
  			'prava'=>'Водительское удостоверение',
  			'body'=>'О себе',
  			'image'=>'Изображения',
  		];
  	}
  	
  	public function password_repeat($attribute){
  		if($this->password != $this->password_repeat)
  			$this->addError('password_repeat','Не правильный повтор пароля.');
  	}
  
  	public function is_username($attribute)
      {	
  		if(Customer::find()
  			//->where( ['username' => $this->username],['id!='.$_GET['id']] )
  			->where('username = :username', [':username' => $this->username])
  			->exists())
              $this->addError('username','Такой пользователь уже есть.');
      }
84b2aead   Administrator   add active menu
77
  
7ba4acc5   Administrator   after marge
78
  	
84b2aead   Administrator   add active menu
79
80
81
82
83
84
85
86
87
88
89
90
      public function afterSave($insert, $changedAttributes)
      {
          parent::afterSave($insert, $changedAttributes);
  
          // установка роли пользователя
          $auth = Yii::$app->authManager;
          $role = $auth->getRole($this->role);
          if (!$insert) {
              $auth->revokeAll($this->id);
          }
          $auth->assign($role, $this->id);
  
429f17c1   Administrator   проапдейтил роли
91
  
84b2aead   Administrator   add active menu
92
      }
7ba4acc5   Administrator   after marge
93
94
95
96
  
  	public function beforeSave($insert) {
  	
  
429f17c1   Administrator   проапдейтил роли
97
98
          $this->date_time = new \yii\db\Expression('NOW()');
  
7ba4acc5   Administrator   after marge
99
                  /**
429f17c1   Administrator   проапдейтил роли
100
101
  		if($image = UploadedFile::getInstance($this,'image')){
  
7ba4acc5   Administrator   after marge
102
103
104
105
                          $this->deleteImage($this->old_image);
                          //$this->image = $image;
  						$this->image = time() . '_' . rand(1, 1000) . '.' . $image->extension;
                          $image->saveAs('upload/profile/'.$this->image);
429f17c1   Administrator   проапдейтил роли
106
  
7ba4acc5   Administrator   after marge
107
108
109
110
  						$resizeObj = new resize('upload/profile/'.$this->image);
  						$resizeObj -> resizeImage(240, 240, 'crop');
                          $resizeObj -> saveImage('upload/profile/ico/'.$this->image, 100);
                      }elseif(!empty($this->old_image)) $this->image = $this->old_image;
429f17c1   Administrator   проапдейтил роли
111
112
                    **/
  
7ba4acc5   Administrator   after marge
113
114
115
  		return parent::beforeSave($insert);
  	}
  
84b2aead   Administrator   add active menu
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
      public function beforeDelete() {
          //$this->deleteImage($this->image);
          return parent::beforeDelete();
      }
  
      public function deleteImage($file){
                      if(!empty($file)){
                          @unlink('upload/profile/'.$file);
                          @unlink('upload/profile/ico/'.$file);
                         // @unlink('upload/fotos/big/'.$file);
                      }
      }
  
  
      public function getOld(){
          if(empty($this->birth_year) || empty($this->birth_mouth) || empty($this->birth_day))return;
          $birthday = $this->birth_year.'-'.$this->birth_mouth.'-'.$this->birth_day;
          if($birthday=="0000-00-00")return;
          $birthday_timestamp = strtotime($birthday);
          $age = date('Y') - date('Y', $birthday_timestamp);
          if (date('md', $birthday_timestamp) > date('md')) {
            $age--;
7ba4acc5   Administrator   after marge
138
          }
84b2aead   Administrator   add active menu
139
140
141
          return $age;
  
      }
7ba4acc5   Administrator   after marge
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
          
      /**
       * @inheritdoc
       */
      public static function findIdentity($id)
      {
          
          /**Yii::$app->db->createCommand()
                              ->update('user', [ 
                                  'time_online' => (time() + (10*60)),
                                  ], 'id = '.$id)
                              ->execute(); **/       
          return static::find()->select(['customer.*','auth_assignment.item_name as role'])->where(['id'=>$id])->join('LEFT JOIN','auth_assignment','auth_assignment.user_id = customer.id')->one();
      }
  
      /**
       * @inheritdoc
       */
      public static function findIdentityByAccessToken($token, $type = null)
      {
            return static::findOne(['access_token' => $token]);
      }
  
      /**
       * Finds user by username
       *
       * @param  string      $username
       * @return static|null
       */
      public static function findByUsername($username)
      {
          return static::findOne(['username' => $username]);
      }
  
      /**
       * @inheritdoc
       */
      public function getId()
      {
          return $this->id;
      }
  
      /**
       * @inheritdoc
       */
      public function getAuthKey()
      {
          return $this->authKey;
      }
  
      /**
       * @inheritdoc
       */
      public function validateAuthKey($authKey)
      {
          return $this->authKey === $authKey;
      }
  
      /**
       * Validates password
       *
       * @param  string  $password password to validate
       * @return boolean if password provided is valid for current user
       */
      public function validatePassword($password)
      {
          return $this->password === $password;
      }
  	
  	public function getImageProfile(){
  		return !empty($this->image) ? $this->image : 'user_photo.png';
  	}	
  }