@@ -10,8 +10,8 @@ |
||
10 | 10 | 'common\interfaces\QuestionInterface' => \common\models\Question::class, |
11 | 11 | 'common\interfaces\BehaviorInterface' => \common\models\Behavior::class, |
12 | 12 | 'common\interfaces\CategoryInterface' => \common\models\Category::class, |
13 | - 'common\interfaces\TimeInterface' => function () { |
|
14 | - if(Yii::$app->user->getIsGuest()) { |
|
13 | + 'common\interfaces\TimeInterface' => function() { |
|
14 | + if (Yii::$app->user->getIsGuest()) { |
|
15 | 15 | return new \common\components\Time('UTC'); |
16 | 16 | } else { |
17 | 17 | return new \common\components\Time(Yii::$app->user->identity->timezone); |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | ['email', 'filter', 'filter' => 'trim'], |
43 | 43 | ['email', 'filter', 'filter' => 'strtolower'], |
44 | 44 | ['email', 'email'], |
45 | - ['email', 'unique', 'targetClass' => '\common\models\User', 'message' => 'This email address has already been taken.', 'filter' => "id <> ".Yii::$app->user->id], |
|
45 | + ['email', 'unique', 'targetClass' => '\common\models\User', 'message' => 'This email address has already been taken.', 'filter' => "id <> " . Yii::$app->user->id], |
|
46 | 46 | |
47 | 47 | |
48 | 48 | ['timezone', 'string', 'min' => 2, 'max' => 255], |
@@ -88,11 +88,11 @@ discard block |
||
88 | 88 | $graph = Yii::$container |
89 | 89 | ->get(\common\components\Graph::class, [$this->user]); |
90 | 90 | |
91 | - if($this->email) |
|
91 | + if ($this->email) |
|
92 | 92 | $user->email = $this->email; |
93 | - if($this->timezone) |
|
93 | + if ($this->timezone) |
|
94 | 94 | $user->timezone = $this->timezone; |
95 | - if($this->expose_graph) { |
|
95 | + if ($this->expose_graph) { |
|
96 | 96 | $user->expose_graph = true; |
97 | 97 | |
98 | 98 | // generate scores graph image |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | // if they haven't done a check-in in the last month this |
101 | 101 | // will explode because $scores_last_month is an empty |
102 | 102 | // array |
103 | - if($scores_last_month) { |
|
103 | + if ($scores_last_month) { |
|
104 | 104 | $graph->create($scores_last_month, true); |
105 | 105 | } |
106 | 106 | } else { |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | // remove scores graph image |
109 | 109 | $graph->destroy(); |
110 | 110 | } |
111 | - if($this->send_email) { |
|
111 | + if ($this->send_email) { |
|
112 | 112 | $user->email_threshold = $this->email_threshold; |
113 | 113 | $user->partner_email1 = $this->partner_email1; |
114 | 114 | $user->partner_email2 = $this->partner_email2; |
@@ -88,10 +88,12 @@ |
||
88 | 88 | $graph = Yii::$container |
89 | 89 | ->get(\common\components\Graph::class, [$this->user]); |
90 | 90 | |
91 | - if($this->email) |
|
92 | - $user->email = $this->email; |
|
93 | - if($this->timezone) |
|
94 | - $user->timezone = $this->timezone; |
|
91 | + if($this->email) { |
|
92 | + $user->email = $this->email; |
|
93 | + } |
|
94 | + if($this->timezone) { |
|
95 | + $user->timezone = $this->timezone; |
|
96 | + } |
|
95 | 97 | if($this->expose_graph) { |
96 | 98 | $user->expose_graph = true; |
97 | 99 |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | if ($form->load(Yii::$app->request->post()) && $form->validate()) { |
40 | 40 | $form->compiled_behaviors = $form->compileBehaviors(); |
41 | 41 | |
42 | - if(sizeof($form->compiled_behaviors) === 0) { |
|
42 | + if (sizeof($form->compiled_behaviors) === 0) { |
|
43 | 43 | return $this->redirect(['view']); |
44 | 44 | } |
45 | 45 | |
@@ -49,14 +49,14 @@ discard block |
||
49 | 49 | |
50 | 50 | // delete cached scores |
51 | 51 | $time = Yii::$container->get(\common\interfaces\TimeInterface::class); |
52 | - $key = "scores_of_last_month_".Yii::$app->user->id."_".$time->getLocalDate(); |
|
52 | + $key = "scores_of_last_month_" . Yii::$app->user->id . "_" . $time->getLocalDate(); |
|
53 | 53 | Yii::$app->cache->delete($key); |
54 | 54 | |
55 | 55 | // if the user has publicised their score graph, create the image |
56 | - if(Yii::$app->user->identity->expose_graph) { |
|
56 | + if (Yii::$app->user->identity->expose_graph) { |
|
57 | 57 | $user_behavior = Yii::$container->get(\common\interfaces\UserBehaviorInterface::class); |
58 | 58 | $scores_last_month = $user_behavior->calculateScoresOfLastMonth(); |
59 | - if($scores_last_month) { |
|
59 | + if ($scores_last_month) { |
|
60 | 60 | Yii::$container |
61 | 61 | ->get(\common\components\Graph::class) |
62 | 62 | ->create($scores_last_month, true); |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | $date = Yii::$container->get(\common\interfaces\TimeInterface::class)->getLocalDate(); |
82 | 82 | |
83 | 83 | $user_behaviors = $user_behavior->getUserBehaviorsWithCategory($date); |
84 | - if(count($user_behaviors) === 0) { |
|
84 | + if (count($user_behaviors) === 0) { |
|
85 | 85 | return $this->redirect(['view']); |
86 | 86 | } |
87 | 87 | |
@@ -91,10 +91,10 @@ discard block |
||
91 | 91 | $form->deleteToday(); |
92 | 92 | |
93 | 93 | $behaviors = $user_behavior->findAll($form->getUserBehaviorIds()); |
94 | - if($result = $form->saveAnswers($behaviors)) { |
|
94 | + if ($result = $form->saveAnswers($behaviors)) { |
|
95 | 95 | |
96 | 96 | $score = $user_behavior->getDailyScore(); |
97 | - if(Yii::$app->user->identity->isOverThreshold($score)) { |
|
97 | + if (Yii::$app->user->identity->isOverThreshold($score)) { |
|
98 | 98 | Yii::$app->user->identity->sendEmailReport($date); |
99 | 99 | Yii::$app->session->setFlash('warning', 'Your check-in is complete. A notification has been sent to your report partners because of your high score. Reach out to them!'); |
100 | 100 | } else { |
@@ -114,9 +114,9 @@ discard block |
||
114 | 114 | public function actionView(string $date = null) |
115 | 115 | { |
116 | 116 | $time = Yii::$container->get(\common\interfaces\TimeInterface::class); |
117 | - if(is_null($date)) { |
|
117 | + if (is_null($date)) { |
|
118 | 118 | $date = $time->getLocalDate(); |
119 | - } else if($dt = $time->parse($date)) { |
|
119 | + } else if ($dt = $time->parse($date)) { |
|
120 | 120 | $date = $dt->format('Y-m-d'); |
121 | 121 | } else { |
122 | 122 | $date = $time->getLocalDate(); |
@@ -71,9 +71,9 @@ discard block |
||
71 | 71 | public function actionIndex() |
72 | 72 | { |
73 | 73 | $time = Yii::$container->get(\common\interfaces\TimeInterface::class); |
74 | - $key = "index_blog_".$time->getLocalDate('UTC'); |
|
74 | + $key = "index_blog_" . $time->getLocalDate('UTC'); |
|
75 | 75 | $posts = Yii::$app->cache->get($key); |
76 | - if($posts === false) { |
|
76 | + if ($posts === false) { |
|
77 | 77 | $posts = \Yii::$app->getModule('blog') |
78 | 78 | ->fetch() |
79 | 79 | ->parse() |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | { |
107 | 107 | $model = new ContactForm(); |
108 | 108 | if ($model->load(Yii::$app->request->post()) && $model->validate()) { |
109 | - if($model->sendEmail(Yii::$app->params['adminEmail'])) { |
|
109 | + if ($model->sendEmail(Yii::$app->params['adminEmail'])) { |
|
110 | 110 | Yii::$app->session->setFlash('success', 'Thank you for contacting us. We will respond to you as soon as possible.'); |
111 | 111 | } else { |
112 | 112 | Yii::$app->session->setFlash('error', 'There was an error sending email.'); |
@@ -138,10 +138,10 @@ discard block |
||
138 | 138 | public function actionSignup() |
139 | 139 | { |
140 | 140 | $model = Yii::$container->get(\site\models\SignupForm::class); |
141 | - if($model->load(Yii::$app->request->post()) && $model->validate()) { |
|
141 | + if ($model->load(Yii::$app->request->post()) && $model->validate()) { |
|
142 | 142 | $model->signup(); |
143 | 143 | Yii::$app->getSession()->setFlash('success', 'We have sent a verification email to the email address you provided. Please check your inbox and follow the instructions to verify your account.'); |
144 | - return $this->redirect('/',302); |
|
144 | + return $this->redirect('/', 302); |
|
145 | 145 | } |
146 | 146 | |
147 | 147 | return $this->render('signup', [ |
@@ -152,10 +152,10 @@ discard block |
||
152 | 152 | public function actionRequestPasswordReset() |
153 | 153 | { |
154 | 154 | $model = Yii::$container->get(\site\models\PasswordResetRequestForm::class); |
155 | - if($model->load(Yii::$app->request->post()) && $model->validate()) { |
|
156 | - if(!$model->sendEmail()) { |
|
155 | + if ($model->load(Yii::$app->request->post()) && $model->validate()) { |
|
156 | + if (!$model->sendEmail()) { |
|
157 | 157 | $ip = Yii::$app->getRequest()->getUserIP() ?: "UNKNOWN"; |
158 | - Yii::warning("$ip has tried to reset the password for ".$model->email); |
|
158 | + Yii::warning("$ip has tried to reset the password for " . $model->email); |
|
159 | 159 | } |
160 | 160 | |
161 | 161 | Yii::$app->getSession()->setFlash('success', 'If there is an account with the submitted email address you will receive further instructions in your email inbox.'); |
@@ -198,14 +198,14 @@ discard block |
||
198 | 198 | throw new BadRequestHttpException("Wrong or expired email verification token. If you aren't sure why this error occurs perhaps you've already verified your account. Please try logging in."); |
199 | 199 | } |
200 | 200 | |
201 | - if($user->isTokenConfirmed($user->verify_email_token)) { |
|
201 | + if ($user->isTokenConfirmed($user->verify_email_token)) { |
|
202 | 202 | Yii::$app->getSession()->setFlash('success', 'Your account has already been verified. Please log in.'); |
203 | - return $this->redirect('/login',302); |
|
203 | + return $this->redirect('/login', 302); |
|
204 | 204 | } else if (Yii::$app->getUser()->login($user)) { |
205 | 205 | $user->confirmVerifyEmailToken(); |
206 | 206 | $user->save(); |
207 | 207 | Yii::$app->getSession()->setFlash('success', 'Your account has been verified. Please continue with your check-in.'); |
208 | - return $this->redirect('/welcome',302); |
|
208 | + return $this->redirect('/welcome', 302); |
|
209 | 209 | } |
210 | 210 | } |
211 | 211 | |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | public function actionExport() |
223 | 223 | { |
224 | 224 | header("Content-Type: text/csv"); |
225 | - header("Content-Disposition: attachment; filename=fsa-data-export-".Yii::$app->user->identity->email."-".date('Ymd').".csv"); |
|
225 | + header("Content-Disposition: attachment; filename=fsa-data-export-" . Yii::$app->user->identity->email . "-" . date('Ymd') . ".csv"); |
|
226 | 226 | |
227 | 227 | $reader = Yii::$app->user->identity->getExportData(); |
228 | 228 | $fp = fopen('php://output', 'w'); |
@@ -238,7 +238,7 @@ discard block |
||
238 | 238 | |
239 | 239 | fputcsv($fp, $header); |
240 | 240 | $user_behavior = Yii::$container->get(\common\interfaces\UserBehaviorInterface::class); |
241 | - while($row = $reader->read()) { |
|
241 | + while ($row = $reader->read()) { |
|
242 | 242 | $row = $user_behavior::decorateWithCategory([$row]); |
243 | 243 | $row = Yii::$app->user->identity->cleanExportData($row); |
244 | 244 | fputcsv($fp, $row[0]); |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | |
68 | 68 | if ($editProfileForm->load(Yii::$app->request->post())) { |
69 | 69 | $saved_user = $editProfileForm->saveProfile(); |
70 | - if($saved_user) { |
|
70 | + if ($saved_user) { |
|
71 | 71 | Yii::$app->getSession()->setFlash('success', 'New profile data saved!'); |
72 | 72 | } |
73 | 73 | } |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | $model = Yii::$container->get(\site\models\DeleteAccountForm::class, [Yii::$app->user->identity]); |
86 | 86 | |
87 | 87 | if ($model->load(Yii::$app->request->post()) && $model->validate()) { |
88 | - if($model->deleteAccount()) { |
|
88 | + if ($model->deleteAccount()) { |
|
89 | 89 | $this->redirect(['site/index']); |
90 | 90 | } else { |
91 | 91 | Yii::$app->getSession()->setFlash('error', 'Wrong password!'); |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | $model = Yii::$container->get(\site\models\ChangePasswordForm::class, [Yii::$app->user->identity]); |
101 | 101 | |
102 | 102 | if ($model->load(Yii::$app->request->post())) { |
103 | - if($model->validate() && $model->changePassword()) { |
|
103 | + if ($model->validate() && $model->changePassword()) { |
|
104 | 104 | Yii::$app->getSession()->setFlash('success', 'Password successfully changed'); |
105 | 105 | } else { |
106 | 106 | Yii::$app->getSession()->setFlash('error', 'Wrong password!'); |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | public function actionExport() |
114 | 114 | { |
115 | 115 | header("Content-Type: text/csv"); |
116 | - header("Content-Disposition: attachment; filename=fsa-data-export-".Yii::$app->user->identity->email."-".date('Ymd').".csv"); |
|
116 | + header("Content-Disposition: attachment; filename=fsa-data-export-" . Yii::$app->user->identity->email . "-" . date('Ymd') . ".csv"); |
|
117 | 117 | |
118 | 118 | $reader = Yii::$app->user->identity->getExportData(); |
119 | 119 | $fp = fopen('php://output', 'w'); |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | |
130 | 130 | fputcsv($fp, $header); |
131 | 131 | $user_behavior = Yii::$container->get(\common\interfaces\UserBehaviorInterface::class); |
132 | - while($row = $reader->read()) { |
|
132 | + while ($row = $reader->read()) { |
|
133 | 133 | $row = $user_behavior::decorateWithCategory([$row]); |
134 | 134 | $row = Yii::$app->user->identity->cleanExportData($row); |
135 | 135 | fputcsv($fp, $row[0]); |