LISTS_URL = "{$this->BASE_URL}/forms"; } /** * Generates the URL for adding subscribers. * * @param $list_id * * @since 1.1.0 * * @return string */ protected function _get_subscribe_url( $list_id ) { return "{$this->LISTS_URL}/{$list_id}/subscribe"; } protected function _get_subscriber_counts( $forms ) { $result = array(); foreach ( (array) $forms as $form_info ) { $url = $this->_generate_url_for_request( "{$this->LISTS_URL}/{$form_info['id']}/subscriptions", true ); $this->prepare_request( $url ); $this->make_remote_request(); if ( $this->response->ERROR || ! isset( $this->response->DATA['total_subscriptions'] ) ) { continue; } $form_info['total_subscriptions'] = $this->response->DATA['total_subscriptions']; $result[] = $form_info; } return $result; } /** * Adds default args for all API requests to given url. * * @since 1.1.0 * * @param string $url * @param bool $with_secret * * @return string */ protected function _generate_url_for_request( $url, $with_secret = false ) { $key = $with_secret ? $this->data['api_secret'] : $this->data['api_key']; $key_type = $with_secret ? 'api_secret' : 'api_key'; return esc_url_raw( add_query_arg( $key_type, $key, $url ) ); } /** * @inheritDoc */ public function get_account_fields() { return array( 'api_key' => array( 'label' => esc_html__( 'API Key', 'et_core' ), ), 'api_secret' => array( 'label' => esc_html__( 'API Secret', 'et_core' ), ), ); } /** * @inheritDoc */ public function get_data_keymap( $keymap = array(), $custom_fields_key = '' ) { $custom_fields_key = 'fields'; $keymap = array( 'list' => array( 'list_id' => 'id', 'name' => 'name', 'subscribers_count' => 'total_subscriptions', ), 'subscriber' => array( 'email' => 'email', 'name' => 'first_name', ), 'error' => array( 'error_message' => 'message', ) ); return parent::get_data_keymap( $keymap, $custom_fields_key ); } /** * @inheritDoc */ public function fetch_subscriber_lists() { if ( empty( $this->data['api_key'] ) ) { return $this->API_KEY_REQUIRED; } $url = $this->_generate_url_for_request( $this->LISTS_URL ); $result = 'success'; $this->response_data_key = ''; $this->prepare_request( $url ); parent::fetch_subscriber_lists(); if ( ! $this->response->ERROR && ! empty( $this->response->DATA['forms'] ) ) { $with_subscriber_counts = $this->_get_subscriber_counts( $this->response->DATA['forms'] ); $this->data['lists'] = $this->_process_subscriber_lists( $with_subscriber_counts ); $this->data['is_authorized'] = 'true'; $this->save_data(); } else if ( $this->response->ERROR ) { $result = $this->get_error_message(); } return $result; } /** * @inheritDoc */ public function subscribe( $args, $url = '' ) { $url = $this->_generate_url_for_request( $this->_get_subscribe_url( $args['list_id'] ) ); $params = $this->transform_data_to_provider_format( $args, 'subscriber' ); $params['fields']['notes'] = $this->SUBSCRIBED_VIA; $this->prepare_request( $url, 'POST', false, $params ); return parent::subscribe( $params, $url ); } }