| Total Complexity | 41 |
| Total Lines | 261 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 1 | Features | 1 |
Complex classes like ProfileController often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use ProfileController, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 24 | class ProfileController extends Controller |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * @return string |
||
| 28 | * @throws NotFoundHttpException |
||
| 29 | */ |
||
| 30 | public function actionIndex() |
||
| 31 | { |
||
| 32 | $model = $this->findModel(); |
||
| 33 | |||
| 34 | $assignModel = new Assignment(); |
||
| 35 | $assignModel->user = $model; |
||
| 36 | |||
| 37 | return $this->render('index', [ |
||
| 38 | 'model' => $model, |
||
| 39 | 'assignModel' => $assignModel |
||
| 40 | ]); |
||
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return string |
||
| 45 | * @throws NotFoundHttpException |
||
| 46 | */ |
||
| 47 | public function actionUpdate() |
||
| 48 | { |
||
| 49 | $model = $this->findModel(); |
||
| 50 | $uploadFormModel = new UploadForm(); |
||
| 51 | if ($model->profile->load(Yii::$app->request->post()) && $model->profile->save()) { |
||
| 52 | /** @var yii\web\Session $session */ |
||
| 53 | $session = Yii::$app->session; |
||
| 54 | $session->setFlash('success', Module::t('module', 'Profile successfully save.')); |
||
| 55 | return $this->redirect(['update', 'tab' => 'profile']); |
||
|
|
|||
| 56 | } |
||
| 57 | return $this->render('update', [ |
||
| 58 | 'model' => $model, |
||
| 59 | 'uploadFormModel' => $uploadFormModel, |
||
| 60 | 'passwordForm' => new UpdatePasswordForm($model) |
||
| 61 | ]); |
||
| 62 | } |
||
| 63 | |||
| 64 | /** |
||
| 65 | * @return Response |
||
| 66 | * @throws NotFoundHttpException |
||
| 67 | * @throws Exception |
||
| 68 | */ |
||
| 69 | public function actionUpdateAvatar() |
||
| 70 | { |
||
| 71 | $model = $this->findModel(); |
||
| 72 | /** @var yii\web\Session $session */ |
||
| 73 | $session = Yii::$app->session; |
||
| 74 | if ($model->profile->load(Yii::$app->request->post()) && $model->profile->save()) { |
||
| 75 | $session->setFlash('success', Module::t('module', 'Form successfully saved.')); |
||
| 76 | } else { |
||
| 77 | $session->setFlash('error', Module::t('module', 'Error! Failed to save the form.')); |
||
| 78 | } |
||
| 79 | return $this->redirect(['update', 'tab' => 'avatar']); |
||
| 80 | } |
||
| 81 | |||
| 82 | /** |
||
| 83 | * @return array|Response |
||
| 84 | * @throws NotFoundHttpException |
||
| 85 | */ |
||
| 86 | public function actionAjaxValidateAvatarForm() |
||
| 87 | { |
||
| 88 | $model = $this->findModel(); |
||
| 89 | if (Yii::$app->request->isAjax && $model->profile->load(Yii::$app->request->post())) { |
||
| 90 | Yii::$app->response->format = Response::FORMAT_JSON; |
||
| 91 | return ActiveForm::validate($model->profile); |
||
| 92 | } |
||
| 93 | return $this->redirect(['index']); |
||
| 94 | } |
||
| 95 | |||
| 96 | /** |
||
| 97 | * Upload file |
||
| 98 | * @return Response |
||
| 99 | * @throws Exception |
||
| 100 | */ |
||
| 101 | public function actionUploadImage() |
||
| 102 | { |
||
| 103 | $model = new UploadForm(); |
||
| 104 | if (Yii::$app->request->isPost) { |
||
| 105 | $session = Yii::$app->session; |
||
| 106 | $model->imageFile = UploadedFile::getInstance($model, 'imageFile'); |
||
| 107 | if (($result = $model->upload()) && !is_string($result)) { |
||
| 108 | if (isset($result['imageFile'][0])) { |
||
| 109 | $session->setFlash('error', $result['imageFile'][0]); |
||
| 110 | } else { |
||
| 111 | $session->setFlash('error', Module::t('module', 'Failed to upload file.')); |
||
| 112 | } |
||
| 113 | return $this->redirect(['update', 'tab' => 'avatar']); |
||
| 114 | } |
||
| 115 | } |
||
| 116 | return $this->redirect(['update', 'tab' => 'avatar', 'modal' => 'show']); |
||
| 117 | } |
||
| 118 | |||
| 119 | /** |
||
| 120 | * Crop image |
||
| 121 | * @return Response |
||
| 122 | */ |
||
| 123 | public function actionCropAvatar() |
||
| 124 | { |
||
| 125 | $model = new UploadForm(); |
||
| 126 | $session = Yii::$app->session; |
||
| 127 | if (($post = Yii::$app->request->post()) && $model->load($post) && $model->crop()) { |
||
| 128 | $session->setFlash('success', Module::t('module', 'User avatar successfully save.')); |
||
| 129 | } |
||
| 130 | return $this->redirect(['update', 'tab' => 'avatar']); |
||
| 131 | } |
||
| 132 | |||
| 133 | /** |
||
| 134 | * Get Avatar |
||
| 135 | * @throws NotFoundHttpException |
||
| 136 | */ |
||
| 137 | public function actionAvatar() |
||
| 138 | { |
||
| 139 | if ($file = Yii::$app->request->get('filename')) { |
||
| 140 | $id = Yii::$app->request->get('id') ?: Yii::$app->user->id; |
||
| 141 | $model = new UploadForm(); |
||
| 142 | $storagePath = $model->getPath($id); |
||
| 143 | $response = Yii::$app->getResponse(); |
||
| 144 | $response->headers->set('Content-Type', 'image/jpg'); |
||
| 145 | $response->format = Response::FORMAT_RAW; |
||
| 146 | $response->stream = fopen("$storagePath/$file", 'rb'); |
||
| 147 | return $response->send(); |
||
| 148 | } |
||
| 149 | throw new NotFoundHttpException('The requested page does not exist.'); |
||
| 150 | } |
||
| 151 | |||
| 152 | /** |
||
| 153 | * Delete Avatar files |
||
| 154 | * @param int $id |
||
| 155 | * @return Response |
||
| 156 | */ |
||
| 157 | public function actionDeleteAvatar($id) |
||
| 158 | { |
||
| 159 | $model = new UploadForm(); |
||
| 160 | $fileName = $model->getFileName(); |
||
| 161 | $avatar = $model->getPath($id) . DIRECTORY_SEPARATOR . $fileName; |
||
| 162 | $thumb = $model->getPath($id) . DIRECTORY_SEPARATOR . UploadForm::PREFIX_THUMBNAIL . $fileName; |
||
| 163 | $original = $model->getPath($id) . DIRECTORY_SEPARATOR . UploadForm::PREFIX_ORIGINAL . $fileName; |
||
| 164 | $model->delete([$avatar, $thumb, $original]); |
||
| 165 | $session = Yii::$app->session; |
||
| 166 | $session->setFlash('success', Module::t('module', 'Successfully deleted.')); |
||
| 167 | return $this->redirect(Yii::$app->request->referrer); |
||
| 168 | } |
||
| 169 | |||
| 170 | /** |
||
| 171 | * @return Response |
||
| 172 | * @throws NotFoundHttpException |
||
| 173 | * @throws Exception |
||
| 174 | */ |
||
| 175 | public function actionUpdatePassword() |
||
| 176 | { |
||
| 177 | $model = new UpdatePasswordForm($this->findModel()); |
||
| 178 | /** @var yii\web\Session $session */ |
||
| 179 | $session = Yii::$app->session; |
||
| 180 | if ($model->load(Yii::$app->request->post()) && $model->resetPassword()) { |
||
| 181 | $session->setFlash('success', Module::t('module', 'Password changed successfully.')); |
||
| 182 | } else { |
||
| 183 | $session->setFlash('error', Module::t('module', 'Error! Password changed not successfully.')); |
||
| 184 | } |
||
| 185 | return $this->redirect(['update', 'tab' => 'password']); |
||
| 186 | } |
||
| 187 | |||
| 188 | /** |
||
| 189 | * @return array|Response |
||
| 190 | * @throws NotFoundHttpException |
||
| 191 | */ |
||
| 192 | public function actionAjaxValidatePasswordForm() |
||
| 193 | { |
||
| 194 | $model = new UpdatePasswordForm($this->findModel()); |
||
| 195 | if (Yii::$app->request->isAjax && $model->load(Yii::$app->request->post())) { |
||
| 196 | Yii::$app->response->format = Response::FORMAT_JSON; |
||
| 197 | return ActiveForm::validate($model); |
||
| 198 | } |
||
| 199 | return $this->redirect(['index']); |
||
| 200 | } |
||
| 201 | |||
| 202 | /** |
||
| 203 | * @return array|Response |
||
| 204 | * @throws NotFoundHttpException |
||
| 205 | */ |
||
| 206 | public function actionAjaxValidatePasswordDeleteForm() |
||
| 207 | { |
||
| 208 | $model = new UserDeleteForm($this->findModel()); |
||
| 209 | if (Yii::$app->request->isAjax && $model->load(Yii::$app->request->post())) { |
||
| 210 | Yii::$app->response->format = Response::FORMAT_JSON; |
||
| 211 | return ActiveForm::validate($model); |
||
| 212 | } |
||
| 213 | return $this->redirect(['delete']); |
||
| 214 | } |
||
| 215 | |||
| 216 | /** |
||
| 217 | * @return array|Response |
||
| 218 | * @throws Exception |
||
| 219 | * @throws NotFoundHttpException |
||
| 220 | */ |
||
| 221 | public function actionGenerateAuthKey() |
||
| 222 | { |
||
| 223 | $model = $this->processGenerateAuthKey(); |
||
| 224 | if (Yii::$app->request->isAjax) { |
||
| 225 | Yii::$app->response->format = Response::FORMAT_JSON; |
||
| 226 | return [ |
||
| 227 | 'success' => $model->auth_key |
||
| 228 | ]; |
||
| 229 | } |
||
| 230 | return $this->redirect(['index']); |
||
| 231 | } |
||
| 232 | |||
| 233 | /** |
||
| 234 | * @return User |
||
| 235 | * @throws Exception |
||
| 236 | * @throws NotFoundHttpException |
||
| 237 | */ |
||
| 238 | private function processGenerateAuthKey() |
||
| 239 | { |
||
| 240 | $model = $this->findModel(); |
||
| 241 | $model->generateAuthKey(); |
||
| 242 | $model->save(); |
||
| 243 | return $model; |
||
| 244 | } |
||
| 245 | |||
| 246 | /** |
||
| 247 | * @return string|Response |
||
| 248 | * @throws NotFoundHttpException |
||
| 249 | * @throws \Throwable |
||
| 250 | * @throws StaleObjectException |
||
| 251 | */ |
||
| 252 | public function actionDelete() |
||
| 253 | { |
||
| 254 | $model = new UserDeleteForm($this->findModel()); |
||
| 255 | if ($model->load(Yii::$app->request->post()) && $model->userDelete()) { |
||
| 256 | /** @var \yii\web\User $user */ |
||
| 257 | $user = Yii::$app->user; |
||
| 258 | $user->logout(); |
||
| 259 | /** @var yii\web\Session $session */ |
||
| 260 | $session = Yii::$app->session; |
||
| 261 | $session->setFlash('success', Module::t('module', 'Your profile has been successfully deleted!')); |
||
| 262 | return $this->goHome(); |
||
| 263 | } |
||
| 264 | return $this->render('delete', [ |
||
| 265 | 'model' => $model |
||
| 266 | ]); |
||
| 267 | } |
||
| 268 | |||
| 269 | /** |
||
| 270 | * @return User |
||
| 271 | * @throws NotFoundHttpException |
||
| 272 | */ |
||
| 273 | private function findModel() |
||
| 285 | } |
||
| 286 | } |
||
| 287 |