Blame view

src/app/frontend/controllers/AjaxController.php 8.71 KB
1ea3b987   Administrator   maby first commit
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
  <?php
  
  ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  
  namespace controllers;
  
  ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  use \Phalcon\Mvc\View;
  
  class AjaxController extends \controllers\ControllerBase
  {
      ///////////////////////////////////////////////////////////////////////////
  
      public function getItemsAction(  )
      {
          header('Content-Type: application/json; charset=utf8');
         
          $term       = $this->request->getPost('term', 'string', '' );
  
          $items_     = $this->models->getItems()->getItemsByTermFromCatalog( $term, 'items_dropdown', 1, $this->lang_id );
          if(!$items_) {
              $items_     = $this->models->getItems()->getItemsByTerm( $term, 'items_dropdown', 1, $this->lang_id );
          }
  
          $items      = [];
          if( !empty( $items_ ) )
          {
              $items_ids  = $this->common->array_column( $items_, 'item_id' );
  
              $items      = $this->models->getItems()->getItemsByIds( $this->lang_id, $items_ids );
              foreach( $items as &$i )
              {
                  $i['cover']         = !empty( $i['group_cover'] ) ? $this->storage->getPhotoUrl( $i['group_cover'], 'avatar', '200x' ) : '/images/packet.jpg';
                  $i['alias']         = $this->seoUrl->setUrl($this->url->get([ 'for' => 'item', 'subtype' => $i['catalog_alias'], 'group_alias' => $i['group_alias'], 'item_id' => $i['id'] ]));
              }
          }
  
          die( json_encode( $items ) );
      }
  
  
      public function addItemsForCompareAction( )
      {
          header('Content-Type: application/json; charset=utf8');
  
          if( $this->request->isAjax() && $this->request->isPost() )
          {
              $item_properties    = $this->request->getPost( 'item_id', 'string', '' );
              $item_properties    = explode( '-', $item_properties );
              $check              = $this->request->getPost( 'check', 'int', '' );
  
              $type_id            = $item_properties['0'];
              $subtype_id         = $item_properties['1'];
              $item_id            = $item_properties['2'];
  
              $compare            = $this->session->get('compare', []);
  
              if( !isset($compare[$type_id][$subtype_id]) || ( isset($compare[$type_id][$subtype_id]) && !in_array( $item_id, $compare[$type_id][$subtype_id] ) ) )
              {
                  $compare[$type_id][$subtype_id][] = $item_id;
              }
  
              elseif( isset($compare[$type_id][$subtype_id]) && in_array( $item_id, $compare[$type_id][$subtype_id] ) )
              {
                  foreach( $compare[$type_id][$subtype_id] as $k => $v )
                  {
                      if( $v == $item_id )
                      {
  
                          unset( $compare[$type_id][$subtype_id][$k] );
  
                          if( empty( $compare[$type_id][$subtype_id] ) )
                          {
                              unset($compare[$type_id][$subtype_id]);
                          }
                          if( empty( $compare[$type_id] ) )
                          {
                              unset($compare[$type_id]);
                          }
  
                      }
                  }
              }
  
              $count = 0;
              $compare_ = [];
  
              if( !empty( $compare ) )
              {
  
                  foreach( $compare as $key => $comp )
                  {
                      $type_ids[] = $key;
  
                      foreach( $comp as $k => $c )
                      {
                          $subtype_ids[] = $k;
  
                          $count += count($c);
                      }
                  }
                  $catalogs = $this->common->getTypeSubtype2( $this->lang_id );
  
                  foreach( $compare as $key => $comp )
                  {
                      foreach( $comp as $k => $c )
                      {
                          $compare_[$key][$k] =
                              [
                                  'title' => $catalogs[$k]['title'],
                                  'count' => count($c),
                                  'items' => $c,
                                  'url'       => $this->url->get([ 'for' => 'compare_items',  'subtype' => $catalogs[$k]['alias'], 'compare_ids' => join('-', $c) ]),
  								'url_del'   => $this->url->get([ 'for' => 'compare_items_del',  'subtype' => $catalogs[$k]['alias'], 'compare_ids' => join('-', $c) ])
  
  							];
                      }
                  }
              }
  
              $this->session->set( 'compare', $compare );
          }
  
          die(json_encode($compare_));
      }
  
      public function toggleCabinetAction() {
          $this->view->disable();
          if( $this->request->isAjax() ) {
              if(!$this->session->has('isToggled')) {
                  $this->session->set('isToggled', true);
              } else {
                  if($this->session->get('isToggled')) {
                      $this->session->set('isToggled', false);
                  } else {
                      $this->session->set('isToggled', true);
                  }
              }
  
          }
          echo json_encode($this->session->get('isToggled'));
      }
  
      public function getActionDiscountAction($action_id) {
          if($this->request->isAjax()) {
              $action_discount = $this->models->getActions()->getActionDiscountByActionId($action_id);
          }
          $this->view->setVar('action_discount', $action_discount);
          $this->view->setRenderLevel(View::LEVEL_ACTION_VIEW);
      }
  
      public function setActionDiscountAction() {
          $this->view->disable();
          if($this->request->isAjax()) {
              $action_id = $this->request->getPost('action_id', 'string', '' );
              $firm_total = $this->request->getPost('firm_total', 'string', '');
  
              $this->session->set('action_id', $action_id);
              $this->session->set('firm_total', $firm_total);
          }
      }
  
      public function getItemGroupAction() {
          $this->view->disable();
          $group_id = $this->request->getPost( 'group_id', 'int', '' );
          $item_id = $this->request->getPost('item_id', 'int', '');
          if(isset($item_id) && !empty($item_id)) {
              $item = $this->models->getItems()->getOneItem($this->lang_id, $item_id);
          } else {
              $item = $this->models->getItems()->getSizesByGroupId($this->lang_id, $group_id);
          }
          echo json_encode($item[0]);
      }
  
      public function applyPromoCodeAction() {
c73b1869   Administrator   add new promocode...
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
          try {
  
              $this->view->disable();
              $in_cart = $this->session->get('in_cart', []);
              $cart = $this->common->getCartItems($in_cart, $this->lang_id);
  
              $promo_code = $this->request->getPost( 'promo_code', 'string', '' );
  
              $promo_code	= $this->models->getPromoCodes()->getOneDataByCode($promo_code);
              $user =   isset($this->models->getCustomers()->getOneData($this->session->get('id'))['0']) ? $this->models->getCustomers()->getOneData($this->session->get('id'))['0'] : '';
  
              if(!empty($promo_code) && $promo_code[0]['single_use']){
                  if( !empty($user)){
                      if(!empty($user['email'])){
                          $data['code'] = $promo_code[0]['code'];
                          $data['email'] = $user['email'];
                          $promo_code_check	= $this->models->getPromoToUser()->getOneDataByCode($data);
                          if(!empty($promo_code_check)){
                              throw new \Exception($this->t->_('error_promo_code_already_used'));
                          }
                      } else {
                          throw new \Exception($this->t->_('error_promo_code_empty_email'));
                      }
                  } else {
                      throw new \Exception($this->t->_('error_promo_code_empty_user'));
                  }
5ead64b0   Administrator   090316
202
  
1ea3b987   Administrator   maby first commit
203
  
1ea3b987   Administrator   maby first commit
204
  
1ea3b987   Administrator   maby first commit
205
              }
c73b1869   Administrator   add new promocode...
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
  
              if(!empty($promo_code)) {
                  if($this->common->applyPromoCode($promo_code[0], $cart['items'])) {
                      $this->session->set('promo_code', $promo_code[0]);
                      $this->common->countOrderSum($cart);
                      echo json_encode(['cart' => $cart,
                      'successMessage' => $this->t->_('success_promo_code'),
                          'status'=>'success'
                      ]);
                      return;
                  } else {
                      throw new \Exception($this->t->_('error_promo_code'));
                  }
              } else {
                  throw new \Exception($this->t->_('error_promo_code_is_empty'));
              }
  
          } catch (\Exception $e) {
  
              echo json_encode(['status'=>'error',
                  'errorMessage' => $e->getMessage()
              ]);
              return null;
1ea3b987   Administrator   maby first commit
229
          }
c73b1869   Administrator   add new promocode...
230
231
  
  
1ea3b987   Administrator   maby first commit
232
233
234
      }
  }