File manager - Edit - /home/palg2351/public_html/wp-content/plugins/bit-integrations/includes/Actions/Sendy/SendyController.php
Back
<?php /** * Sendy Integration */ namespace BitCode\FI\Actions\Sendy; use BitCode\FI\Core\Util\HttpHelper; use BitCode\FI\Log\LogHandler; use WP_Error; /** * Provide functionality for Sendy integration */ class SendyController { /** * Process ajax request for generate_token * * @param object $requestsParams Params for generate token * * @return JSON zoho crm api response and status */ public static function sendyAuthorize($requestsParams) { if (empty($requestsParams->api_key) || empty($requestsParams->sendy_url)) { wp_send_json_error( __( 'Requested parameter is empty', 'bit-integrations' ), 400 ); } $apiEndpoint = "{$requestsParams->sendy_url}/api/brands/get-brands.php"; $authorizationHeader = ['Accept' => 'application/json']; $requestsParams = ['api_key' => $requestsParams->api_key]; $apiResponse = HttpHelper::post($apiEndpoint, $requestsParams, $authorizationHeader); if (HttpHelper::$responseCode !== 200 && (is_wp_error($apiResponse) || !\is_array($apiResponse))) { wp_send_json_error( empty($apiResponse->message) ? $apiResponse : $apiResponse->message, 400 ); } wp_send_json_success(true); } public function getAllBrands($queryParams) { if ( empty($queryParams->api_key) || empty($queryParams->sendy_url) ) { wp_send_json_error( __( 'Requested parameter is empty', 'bit-integrations' ), 400 ); } $apiKey = $queryParams->api_key; $sendy_url = $queryParams->sendy_url; $apiEndpoint = "{$sendy_url}/api/brands/get-brands.php"; $authorizationHeader['Accept'] = 'application/json'; $requestsParams = [ 'api_key' => $apiKey ]; // $authorizationHeader["api-key"] = $queryParams->api_key; $apiResponse = HttpHelper::post($apiEndpoint, $requestsParams, $authorizationHeader); $response = []; foreach ($apiResponse as $list) { $response[] = (object) [ 'brandId' => $list->id, 'brandName' => $list->name ]; } wp_send_json_success($response, 200); } public function getAllLists($queryParams) { if ( empty($queryParams->api_key) || empty($queryParams->sendy_url) ) { wp_send_json_error( __( 'Requested parameter is empty', 'bit-integrations' ), 400 ); } $apiKey = $queryParams->api_key; $sendy_url = $queryParams->sendy_url; $brand_id = $queryParams->brand_id; $apiEndpoint = "{$sendy_url}/api/lists/get-lists.php"; $authorizationHeader['Accept'] = 'application/json'; // $authorizationHeader["api-key"] = $queryParams->api_key; $requestsParams = [ 'api_key' => $apiKey, 'brand_id' => $brand_id ]; $apiResponse = HttpHelper::post($apiEndpoint, $requestsParams, $authorizationHeader); $response = []; foreach ($apiResponse as $list) { $response[] = (object) [ 'listId' => $list->id, 'listName' => $list->name, ]; } wp_send_json_success($response, 200); } public function execute($integrationData, $fieldValues) { $integrationDetails = $integrationData->flow_details; $fieldMap = $integrationDetails->field_map; $apiKey = $integrationDetails->api_key; $integId = $integrationData->id; if ( empty($apiKey) || empty($fieldMap) ) { $error = new WP_Error('REQ_FIELD_EMPTY', __('api key, fields map are required for sendy api', 'bit-integrations')); LogHandler::save($integId, 'contact', 'validation', $error); return $error; } $recordApiHelper = new RecordApiHelper($integId); $hubspotResponse = $recordApiHelper->execute( $integId, $integrationDetails, $fieldValues, $fieldMap, $apiKey ); if (is_wp_error($hubspotResponse)) { return $hubspotResponse; } return $hubspotResponse; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0.07 |
proxy
|
phpinfo
|
Settings