Blame view

frontend/controllers/FilterController.php 7.48 KB
d8c1a2e0   Yarik   Big commit artbox
1
2
3
4
  <?php
      
      namespace frontend\controllers;
      
cc658b4c   Yarik   Big commit
5
6
7
8
      use common\modules\product\models\Brand;
      use common\modules\product\models\Category;
      use common\modules\product\models\ProductSearch;
      use common\modules\rubrication\models\TaxOption;
d8c1a2e0   Yarik   Big commit artbox
9
      use yii\web\Controller;
cc658b4c   Yarik   Big commit
10
      use yii\web\NotFoundHttpException;
d8c1a2e0   Yarik   Big commit artbox
11
12
13
14
15
16
17
      
      /**
       * Filter controller
       */
      class FilterController extends Controller
      {
          
cc658b4c   Yarik   Big commit
18
19
20
21
22
          public function actionIndex($category_id, $purpose_id)
          {
              $category = $this->findCategory($category_id);
              $purpose = $this->findPurpose($purpose_id);
              $brands = Brand::find()
d55d2fe0   Yarik   Multilanguage
23
24
25
26
                             ->joinWith('lang', true, 'INNER JOIN')
                             ->joinWith('products.lang')
                             ->joinWith('products.categories.lang')
                             ->joinWith('products.options.lang')
cc658b4c   Yarik   Big commit
27
28
29
30
31
32
33
34
35
36
37
38
                             ->where([
                                 'category.category_id'     => $category->category_id,
                                 'tax_option.tax_option_id' => $purpose->tax_option_id,
                             ])
                             ->all();
              return $this->render('index', [
                  'category' => $category,
                  'purpose'  => $purpose,
                  'brands'   => $brands,
              ]);
          }
          
d8c1a2e0   Yarik   Big commit artbox
39
40
41
42
          /**
           * Filter by type.
           * @return string
           */
cc658b4c   Yarik   Big commit
43
          public function actionCategory($id)
d8c1a2e0   Yarik   Big commit artbox
44
          {
cc658b4c   Yarik   Big commit
45
46
              $category = $this->findCategory($id);
              $purposes = TaxOption::find()
d55d2fe0   Yarik   Multilanguage
47
                                   ->joinWith('lang', true, 'INNER JOIN')
d441cb07   Yarik   Filter fix
48
49
50
51
52
                                  ->joinWith(['products' => function($query)use($category) {
                                      $query->joinWith(['categories' => function($query)use($category) {
                                          $query->andWhere(['category.category_id' => $category->category_id]);
                                      }]);
                                  }])
d55d2fe0   Yarik   Multilanguage
53
                                   ->joinWith('products.categories.lang')
d441cb07   Yarik   Filter fix
54
                                  ->joinWith('products.lang')
d55d2fe0   Yarik   Multilanguage
55
                                   ->joinWith('products.brand.lang')
cc658b4c   Yarik   Big commit
56
57
                                   ->joinWith('taxGroup')
                                   ->where([
27ad59d9   Yarik   Purpose public fix.
58
59
                                       'category.category_id'   => $category->category_id,
                                       'tax_group.tax_group_id' => 5,
cc658b4c   Yarik   Big commit
60
61
                                   ])
                                   ->all();
cc658b4c   Yarik   Big commit
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
              $brands = [];
              foreach($purposes as $purpose) {
                  /**
                   * @var TaxOption $purpose
                   */
                  $brands[ $purpose->tax_option_id ] = [];
                  foreach($purpose->products as $product) {
                      /**
                       * @var Brand $brand
                       */
                      $brand = $product->brand;
                      if(!empty( $brand )) {
                          $brands[ $purpose->tax_option_id ][ $brand->brand_id ] = $brand;
                      }
                  }
              }
              return $this->render('category', [
                  'category' => $category,
                  'purposes' => $purposes,
                  'brands'   => $brands,
              ]);
d8c1a2e0   Yarik   Big commit artbox
83
84
85
86
87
88
          }
          
          /**
           * Filter by purpose.
           * @return string
           */
cc658b4c   Yarik   Big commit
89
90
91
92
          public function actionPurpose($id)
          {
              $purpose = $this->findPurpose($id);
              $categories = Category::find()
d55d2fe0   Yarik   Multilanguage
93
94
95
96
                                    ->joinWith('products.lang')
                                    ->joinWith('products.brand.lang')
                                    ->joinWith('products.options.lang')
                                    ->where([ 'tax_option.tax_option_id' => $purpose->tax_option_id ])
cc658b4c   Yarik   Big commit
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
                                    ->all();
              $brands = [];
              foreach($categories as $category) {
                  $brands[ $category->category_id ] = [];
                  foreach($category->products as $product) {
                      /**
                       * @var Brand $brand
                       */
                      $brand = $product->brand;
                      if(!empty( $brand )) {
                          $brands[ $category->category_id ][ $brand->brand_id ] = $brand;
                      }
                  }
              }
              return $this->render('purpose', [
                  'purpose'    => $purpose,
                  'categories' => $categories,
                  'brands'     => $brands,
              ]);
          }
          
          public function actionBrand($category_id, $purpose_id, $brand_id)
          {
              $category = $this->findCategory($category_id);
              $purpose = $this->findPurpose($purpose_id);
              $brand = $this->findBrand($brand_id);
              $searchModel = new ProductSearch();
              $dataProvider = $searchModel->search(\Yii::$app->request->queryParams);
              $dataProvider->pagination = false;
              $query = $dataProvider->query;
d55d2fe0   Yarik   Multilanguage
127
              $query->with('variants.lang')
d55d2fe0   Yarik   Multilanguage
128
129
130
                    ->joinWith('brand.lang')
                    ->joinWith('options.lang')
                    ->joinWith('categories.lang')
cc658b4c   Yarik   Big commit
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
                    ->andWhere([
                        'category.category_id'     => $category->category_id,
                        'tax_option.tax_option_id' => $purpose->tax_option_id,
                        'brand.brand_id'           => $brand->brand_id,
                    ]);
              return $this->render('brand', [
                  'category'     => $category,
                  'purpose'      => $purpose,
                  'brand'        => $brand,
                  'searchModel'  => $searchModel,
                  'dataProvider' => $dataProvider,
              ]);
          }
          
          /**
           * @param $id
           *
           * @return TaxOption
           * @throws NotFoundHttpException
           */
          private function findPurpose($id)
          {
              $model = TaxOption::find()
                                ->joinWith('taxGroup')
                                ->where([
d55d2fe0   Yarik   Multilanguage
156
                                    'tax_option.tax_option_id' => $id,
27ad59d9   Yarik   Purpose public fix.
157
                                    'tax_group.tax_group_id'   => 5,
cc658b4c   Yarik   Big commit
158
                                ])
cc658b4c   Yarik   Big commit
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
                                ->one();
              if(empty( $model )) {
                  throw new NotFoundHttpException();
              }
              return $model;
          }
          
          /**
           * @param $id
           *
           * @return Category
           * @throws NotFoundHttpException
           */
          private function findCategory($id)
          {
              $model = Category::find()
                               ->where([
d55d2fe0   Yarik   Multilanguage
176
                                   'category.category_id' => $id,
cc658b4c   Yarik   Big commit
177
                               ])
cc658b4c   Yarik   Big commit
178
179
180
181
182
183
184
185
186
187
188
189
190
191
                               ->one();
              if(empty( $model )) {
                  throw new NotFoundHttpException();
              }
              return $model;
          }
          
          /**
           * @param $id
           *
           * @return Brand
           * @throws NotFoundHttpException
           */
          private function findBrand($id)
d8c1a2e0   Yarik   Big commit artbox
192
          {
cc658b4c   Yarik   Big commit
193
194
195
196
197
              /**
               * @var Brand $model
               */
              $model = Brand::find()
                            ->where([
d55d2fe0   Yarik   Multilanguage
198
                                'brand.brand_id' => $id,
cc658b4c   Yarik   Big commit
199
                            ])
cc658b4c   Yarik   Big commit
200
201
202
203
204
                            ->one();
              if(empty( $model )) {
                  throw new NotFoundHttpException();
              }
              return $model;
d8c1a2e0   Yarik   Big commit artbox
205
206
          }
      }