/**
  * Updated the Webhook delivery URL.
  *
  * @param WC_Webhook $webhook
  */
 private function update_delivery_url($webhook)
 {
     $delivery_url = !empty($_POST['webhook_delivery_url']) ? $_POST['webhook_delivery_url'] : '';
     if (wc_is_valid_url($delivery_url)) {
         $webhook->set_delivery_url($delivery_url);
     }
 }
 /**
  * Test wc_is_valid_url()
  *
  * @since 2.3.0
  */
 public function test_wc_is_valid_url()
 {
     // Test some invalid URLs
     $this->assertEquals(false, wc_is_valid_url('google.com'));
     $this->assertEquals(false, wc_is_valid_url('ftp://google.com'));
     $this->assertEquals(false, wc_is_valid_url('sftp://google.com'));
     $this->assertEquals(false, wc_is_valid_url('https://google.com/test invalid'));
     // Test some valid URLs
     $this->assertEquals(true, wc_is_valid_url('http://google.com'));
     $this->assertEquals(true, wc_is_valid_url('https://google.com'));
     $this->assertEquals(true, wc_is_valid_url('https://google.com/test%20valid'));
     $this->assertEquals(true, wc_is_valid_url('https://google.com/test-valid/?query=test'));
     $this->assertEquals(true, wc_is_valid_url('https://google.com/test-valid/#hash'));
 }
 /**
  * Edit a webhook
  *
  * @since 2.2
  * @param int $id webhook ID
  * @param array $data parsed webhook data
  * @return array
  */
 public function edit_webhook($id, $data)
 {
     $data = isset($data['webhook']) ? $data['webhook'] : array();
     try {
         $id = $this->validate_request($id, 'shop_webhook', 'edit');
         if (is_wp_error($id)) {
             return $id;
         }
         $data = apply_filters('woocommerce_api_edit_webhook_data', $data, $id, $this);
         $webhook = new WC_Webhook($id);
         // update topic
         if (!empty($data['topic'])) {
             if (wc_is_webhook_valid_topic(strtolower($data['topic']))) {
                 $webhook->set_topic($data['topic']);
             } else {
                 throw new WC_API_Exception('woocommerce_api_invalid_webhook_topic', __('Webhook topic must be valid', 'woocommerce'), 400);
             }
         }
         // update delivery URL
         if (!empty($data['delivery_url'])) {
             if (wc_is_valid_url($data['delivery_url'])) {
                 $webhook->set_delivery_url($data['delivery_url']);
             } else {
                 throw new WC_API_Exception('woocommerce_api_invalid_webhook_delivery_url', __('Webhook delivery URL must be a valid URL starting with http:// or https://', 'woocommerce'), 400);
             }
         }
         // update secret
         if (!empty($data['secret'])) {
             $webhook->set_secret($data['secret']);
         }
         // update status
         if (!empty($data['status'])) {
             $webhook->update_status($data['status']);
         }
         // update user ID
         $webhook_data = array('ID' => $webhook->id, 'post_author' => get_current_user_id());
         // update name
         if (!empty($data['name'])) {
             $webhook_data['post_title'] = $data['name'];
         }
         // update post
         wp_update_post($webhook_data);
         do_action('woocommerce_api_edit_webhook', $webhook->id, $this);
         delete_transient('woocommerce_webhook_ids');
         return $this->get_webhook($id);
     } catch (WC_API_Exception $e) {
         return new WP_Error($e->getErrorCode(), $e->getMessage(), array('status' => $e->getCode()));
     }
 }
 /**
  * Update a single webhook.
  *
  * @param WP_REST_Request $request Full details about the request.
  * @return WP_Error|WP_REST_Response
  */
 public function update_item($request)
 {
     $id = (int) $request['id'];
     $post = get_post($id);
     if (empty($id) || empty($post->ID) || $this->post_type !== $post->post_type) {
         return new WP_Error("woocommerce_rest_{$this->post_type}_invalid_id", __('ID is invalid.', 'woocommerce'), array('status' => 400));
     }
     $webhook = new WC_Webhook($id);
     // Update topic.
     if (!empty($request['topic'])) {
         if (wc_is_webhook_valid_topic(strtolower($request['topic']))) {
             $webhook->set_topic($request['topic']);
         } else {
             return new WP_Error("woocommerce_rest_{$this->post_type}_invalid_topic", __('Webhook topic must be valid.', 'woocommerce'), array('status' => 400));
         }
     }
     // Update delivery URL.
     if (!empty($request['delivery_url'])) {
         if (wc_is_valid_url($request['delivery_url'])) {
             $webhook->set_delivery_url($request['delivery_url']);
         } else {
             return new WP_Error("woocommerce_rest_{$this->post_type}_invalid_delivery_url", __('Webhook delivery URL must be a valid URL starting with http:// or https://.', 'woocommerce'), array('status' => 400));
         }
     }
     // Update secret.
     if (!empty($request['secret'])) {
         $webhook->set_secret($request['secret']);
     }
     // Update status.
     if (!empty($request['status'])) {
         $webhook->update_status($request['status']);
     }
     $post = $this->prepare_item_for_database($request);
     if (is_wp_error($post)) {
         return $post;
     }
     // Convert the post object to an array, otherwise wp_update_post will expect non-escaped input.
     $post_id = wp_update_post((array) $post, true);
     if (is_wp_error($post_id)) {
         if (in_array($post_id->get_error_code(), array('db_update_error'))) {
             $post_id->add_data(array('status' => 500));
         } else {
             $post_id->add_data(array('status' => 400));
         }
         return $post_id;
     }
     $post = get_post($post_id);
     $this->update_additional_fields_for_object($post, $request);
     /**
      * Fires after a single item is created or updated via the REST API.
      *
      * @param WP_Post         $post      Inserted object.
      * @param WP_REST_Request $request   Request object.
      * @param boolean         $creating  True when creating item, false when updating.
      */
     do_action("woocommerce_rest_insert_{$this->post_type}", $post, $request, false);
     $request->set_param('context', 'edit');
     $response = $this->prepare_item_for_response($post, $request);
     // Clear cache.
     delete_transient('woocommerce_webhook_ids');
     return rest_ensure_response($response);
 }
 /**
  * Data provider for test_wc_is_valid_url.
  *
  * @since 2.4
  */
 public function data_provider_test_wc_is_valid_url()
 {
     return array(array(false, wc_is_valid_url('google.com')), array(false, wc_is_valid_url('ftp://google.com')), array(false, wc_is_valid_url('sftp://google.com')), array(false, wc_is_valid_url('https://google.com/test invalid')), array(true, wc_is_valid_url('http://google.com')), array(true, wc_is_valid_url('https://google.com')), array(true, wc_is_valid_url('https://google.com/test%20valid')), array(true, wc_is_valid_url('https://google.com/test-valid/?query=test')), array(true, wc_is_valid_url('https://google.com/test-valid/#hash')));
 }