Пример #1
0
 public function action_update($id = false)
 {
     if (!is_numeric($id)) {
         \Response::redirect('admin/product/list');
     }
     // Get news item to edit
     if (!($item = Model_Product::find_one_by_id($id))) {
         \Response::redirect('admin/product/list');
     }
     \View::set_global('title', 'Edit Product');
     if (\Input::post()) {
         $val = Model_Product::validate('update');
         // Upload image and display errors if there are any
         $image = $this->upload_image();
         if (!$image['exists'] && \Config::get('details.image.required', false) && empty($item->images)) {
             // No previous images and image is not selected and it is required
             \Messages::error('<strong>There was an error while trying to upload content image</strong>');
             \Messages::error('You have to select image');
         } elseif ($image['errors']) {
             \Messages::error('<strong>There was an error while trying to upload content image</strong>');
             foreach ($image['errors'] as $error) {
                 \Messages::error($error);
             }
         }
         if ($val->run() && $image['is_valid'] && !(!$image['exists'] && \Config::get('details.image.required', false) && empty($item->images))) {
             /** IMAGES **/
             // Get all alt texts to update if there is no image change
             foreach (\Arr::filter_prefixed(\Input::post(), 'alt_text_') as $image_id => $alt_text) {
                 if (strpos($image_id, 'new_') === false) {
                     $item_images[$image_id] = array('id' => $image_id, 'data' => array('alt_text' => \Input::post('alt_text_' . $image_id, '')));
                 }
             }
             // Save images if new files are submitted
             if (isset($this->_image_data)) {
                 foreach ($this->_image_data as $image_data) {
                     chmod($image_data['saved_to'] . $image_data['saved_as'], 0755);
                     chmod($image_data['saved_to'] . 'large/' . $image_data['saved_as'], 0755);
                     chmod($image_data['saved_to'] . 'medium/' . $image_data['saved_as'], 0755);
                     chmod($image_data['saved_to'] . 'thumbs/' . $image_data['saved_as'], 0755);
                     $cover_count = count($item->images);
                     if (strpos($image_data['field'], 'new_') === false) {
                         // Update existing image
                         if (str_replace('image_', '', $image_data['field']) != 0) {
                             $image_id = (int) str_replace('image_', '', $image_data['field']);
                             $cover_count--;
                             $item_images[$image_id] = array('id' => $image_id, 'data' => array('content_id' => $item->id, 'image' => $image_data['saved_as'], 'alt_text' => \Input::post('alt_text_' . $image_id, '')));
                             $this->delete_image(\Input::post('image_db_' . $image_id, ''));
                         }
                     } else {
                         // Save new image
                         $image_tmp = str_replace('image_new_', '', $image_data['field']);
                         $item_images[0] = array('id' => 0, 'data' => array('content_id' => $item->id, 'image' => $image_data['saved_as'], 'alt_text' => \Input::post('alt_text_new_' . $image_tmp, ''), 'cover' => $cover_count == 0 ? 1 : 0, 'sort' => $cover_count + 1));
                     }
                 }
             }
             Model_Product::bind_images($item_images);
             /** END OF IMAGES **/
             // Get POST values
             $insert = \Input::post();
             // Prepare some values
             //				$insert['published_at'] = !empty($insert['published_at']) ? strtotime($insert['published_at']) : $news->created_at;
             $insert['active_from'] = !empty($insert['active_from']) ? strtotime($insert['active_from']) : NULL;
             $insert['active_to'] = !empty($insert['active_to']) ? strtotime($insert['active_to']) : NULL;
             if ($insert['status'] != 2) {
                 unset($insert['active_from']);
                 unset($insert['active_to']);
             }
             // Check if product code is not exists
             if (!$this->check_code_exist($item->id, $insert['code'])) {
                 $item->set($insert);
                 try {
                     $item->save();
                     // First delete old categories
                     $tmp_categories = Model_Product_To_Categories::find_by_product_id($item->id);
                     foreach ($tmp_categories as $tmp_cat) {
                         $tmp_cat->delete();
                     }
                     foreach ($insert['cat_ids'] as $parent_category) {
                         $item_categories = Model_Product_To_Categories::forge(array('product_id' => $item->id, 'category_id' => $parent_category));
                         $item_categories->save();
                     }
                     /**  PROPERTY GROUPS  **/
                     // First delete old groups
                     $tmp_categories = \Product\Model_Product_To_Groups::find_by_product_id($item->id);
                     if ($tmp_categories) {
                         foreach ($tmp_categories as $tmp_cat) {
                             $tmp_cat->delete();
                         }
                     }
                     // Insert product property groups
                     $a_group_ids = isset($insert['group_ids']) ? $insert['group_ids'] : array();
                     foreach ($a_group_ids as $parent_group) {
                         $related = \Product\Model_Product_To_Groups::forge(array('group_id' => $parent_group, 'product_id' => $item->id));
                         $related->save();
                     }
                     /**  END OF: PROPERTY GROUPS  **/
                     /**  PRICING GROUPS  **/
                     // Insert product pricing group
                     if (\Input::post('group', false)) {
                         $pricing = \Product\Model_Product_To_Groups::forge(array('group_id' => \Input::post('group'), 'product_id' => $item->id));
                         $pricing->save();
                     }
                     /**  END OF: PRICING GROUPS  **/
                     \Messages::success('Product successfully updated.');
                     \Response::redirect(\Input::post('exit', false) ? \Uri::create('admin/product/list/') : \Uri::admin('current'));
                 } catch (\Database_Exception $e) {
                     // show validation errors
                     \Messages::error('<strong>There was an error while trying to update product</strong>');
                     // Uncomment lines below to show database errors
                     //$errors = $e->getMessage();
                     //\Messages::error($errors);
                 }
             } else {
                 \Messages::error('<strong>Product code already exists</strong>');
             }
         } else {
             // Delete uploaded images if there is product saving error
             if (isset($this->_image_data)) {
                 foreach ($this->_image_data as $image_data) {
                     $this->delete_image($image_data['saved_as']);
                 }
             }
             if ($val->error() != array()) {
                 // show validation errors
                 \Messages::error('<strong>There was an error while trying to update product</strong>');
                 foreach ($val->error() as $e) {
                     \Messages::error($e->get_message());
                 }
             }
         }
     }
     $product = Model_Product::find_one_by_id($id);
     \Theme::instance()->set_partial('content', $this->view_dir . 'update')->set('product', $product);
 }