Blame view

frontend/controllers/AccountController.php 8.23 KB
6ba3c88a   Alex Savenko   all
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
  <?php
      
      namespace frontend\controllers;
      
      use artbox\order\models\Customer;
      use artbox\order\models\Order;
      use artbox\order\models\PasswordForm;
      use artbox\order\models\Wishlist;
      use yii\data\ActiveDataProvider;
      use yii\db\ActiveQuery;
      use yii\filters\AccessControl;
      use yii\web\Controller;
      use yii\web\NotFoundHttpException;
      use yii\web\Response;
      
      /**
       * Class AccountController
       *
       * @package frontend\controllers
       */
      class AccountController extends Controller
      {
          /**
           * @inheritdoc
           */
          public function behaviors()
          {
              return [
                  'access' => [
                      'class' => AccessControl::className(),
                      'rules' => [
                          [
                              'allow' => true,
                              'roles' => [ '@' ],
                          ],
                      ],
                  ],
              ];
          }
      
          /**
           * Account main page with orders
           *
           * @return string
           */
          public function actionIndex()
          {
              /**
               * @var Customer $user
               */
              $user = \Yii::$app->user->identity;
              
              $orders = $user->getOrders()
                             ->with(
                                 [
                                     'label.lang',
                                     'orderProducts',
                                 ]
                             )
                             ->orderBy(
                                 [
                                     'id' => SORT_DESC,
                                 ]
                             )
                             ->all();
              
              return $this->render(
                  'index',
                  [
                      'orders' => $orders,
                  ]
              );
          }
      
          /**
           * Account detail order page
           *
           * @param $id
           *
           * @return string
           * @throws \yii\web\NotFoundHttpException
           */
          public function actionOrder($id)
          {
              /**
               * @var Customer $user
               */
              $user = \Yii::$app->user->identity;
              /**
               * @var Order $order
               */
              $order = $user->getOrders()
                            ->with('orderProducts.variant.product.lang')
                            ->where(
                                [
                                    'id' => $id,
                                ]
                            )
                            ->one();
      
              if (empty($order)) {
                  throw new NotFoundHttpException(\Yii::t('app', 'Order not found'));
              }
      
              return $this->render(
                  'order',
                  [
                      'order' => $order,
                  ]
              );
          }
      
          /**
           * Acount info page
           *
           * @return string
           */
          public function actionAccount()
          {
              $user = \Yii::$app->user->identity;
              return $this->render(
                  'account',
                  [
                      'userModel'     => $user,
                      'passwordModel' => new PasswordForm(),
                  ]
              );
          }
      
          /**
           * Account wishlist page
           *
           * @return string
           */
          public function actionWishlist()
          {
              /**
               * @var Customer $user
               */
              $user = \Yii::$app->user->identity;
              $query = $user->getWishVariants()
                            ->with(
                                [
                                    'lang',
                                    'product' => function (ActiveQuery $query) {
                                        $query->with(
                                            [
                                                'lang',
                                                'image',
                                            ]
                                        );
                                    },
                                ]
                            );
              $dataProvider = new ActiveDataProvider(
                  [
                      'query'      => $query,
                      'pagination' => [
                          'pageSize' => 8,
                      ],
                  ]
              );
      
              return $this->render(
                  'wishlist',
                  [
                      'dataProvider' => $dataProvider,
                  ]
              );
          }
      
          /**
           * Account change password action
           *
           * @return string|\yii\web\Response
           */
          public function actionChangePassword()
          {
              /**
               * @var Customer $modeluser
               */
              $model = new PasswordForm();
              $modeluser = \Yii::$app->user->identity;
      
              if ($model->load(\Yii::$app->request->post())) {
                  if ($model->validate()) {
                      $modeluser->setPassword($model->newpass);
                      if ($modeluser->save()) {
                          return $this->redirect([ 'index' ]);
                      } else {
                          return $this->render(
                              'account',
                              [
                                  'userModel'     => $modeluser,
                                  'passwordModel' => $model,
                              ]
                          );
                      }
                  } else {
                      return $this->render(
                          'account',
                          [
                              'userModel'     => $modeluser,
                              'passwordModel' => $model,
                          ]
                      );
                  }
              }
              return $this->render(
                  'account',
                  [
                      'userModel'     => $modeluser,
                      'passwordModel' => $model,
                  ]
              );
      
          }
      
          /**
           * Account change data action
           *
           * @return string|\yii\web\Response
           */
          public function actionChangeData()
          {
              /**
               * @var Customer $model
               */
              $model = \Yii::$app->user->identity;
      
              if ($model->load(\Yii::$app->request->post())) {
                  //                VarDumper::dump($model, 10, 1);die();
                  $model->markAttributeDirty('birthday');
                  if ($model->save()) {
                      return $this->redirect([ 'index' ]);
                  }
              }
              return $this->render(
                  'account',
                  [
                      'userModel'     => $model,
                      'passwordModel' => new PasswordForm(),
                  ]
              );
          }
      
          /**
           * Account delete from wishlist action
           *
           * @return array
           */
          public function actionWishlistDelete()
          {
              \Yii::$app->response->format = Response::FORMAT_JSON;
              if (\Yii::$app->request->isPost) {
                  $model = Wishlist::find()
                                   ->where(
                                       [
                                           'user_id' => \Yii::$app->request->post('user'),
                                       ]
                                   )
                                   ->andWhere(
                                       [
                                           'variant_id' => \Yii::$app->request->post('variant'),
  
                                       ]
                                   )
                                   ->one();
                  if (!empty($model) && $model->delete()) {
                      return [
                          'success' => true,
                          'message' => \Yii::t('app', 'Товар удален из избранного'),
                      ];
                  }
      
                  return [
                      'success' => false,
                      'message' => \Yii::t('app', 'Ошибка'),
                  ];
              }
              return [];
          }
      }