HEX
Server: LiteSpeed
System: Linux s3604.bom1.stableserver.net 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User: dmstechonline (1480)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/dmstechonline/social.dmstech.online/Lib/Social/gmb/Google_my_business.php
<?php

/**
 * Google My Business Class
 * 
 * Handles functions to get and posting to user account, pages and groups
 * 
 * @package Social Auto Poster
 * @since 3.0.7
 */
class Google_my_business
{

    private $client_id;
    private $client_secret;
    private $redirect_uri;    
    private $root_uri = 'https://mybusinessaccountmanagement.googleapis.com/v1/';
    private $posting_url = 'https://mybusiness.googleapis.com/v4/';
    private $info_uri = 'https://mybusinessbusinessinformation.googleapis.com/v1/';
    private $token_uri = 'https://www.googleapis.com/oauth2/v4/token?';
    private $oauth2_uri = "https://accounts.google.com/o/oauth2/v2/auth?";
    private $scopes = array("https://www.googleapis.com/auth/plus.business.manage");
    private $state = "Gmb";
    private $limit = 100;

    public function __construct($params)
    {
        if (empty($params['client_id']))
        {
            $this->_show_error("Client ID is missing");
        }

        if (empty($params['client_secret']))
        {
            $this->_show_error("Client secret is missing");
        }

        if (empty($params['redirect_uri']))
        {
            $this->_show_error("Redirect URI is missing");
        }

        if (empty($params['scope']))
        {
            $this->scopes = $this->scopes;
        }

        $this->client_id = $params['client_id'];

        $this->client_secret = $params['client_secret'];

        $this->redirect_uri = $params['redirect_uri'];
    }

    public function gmb_login($state)
    {
        $params = array(
            'client_id' => $this->client_id,
            'redirect_uri' => $this->redirect_uri,
            'prompt' => 'consent',
            'response_type' => 'code',
            'access_type' => 'offline',
            'state' => $state,
            'scope' => implode(",", $this->scopes)
        );


        $http_query = http_build_query($params);

        return $this->oauth2_uri . $http_query;
    }

    public function get_access_token($code)
    {
        if (empty($code))
        {
            $this->_show_error("Code is missing");
        }

        $params = array(
            'code' => $code,
            'client_id' => $this->client_id,
            'client_secret' => $this->client_secret,
            'redirect_uri' => $this->redirect_uri,
            'grant_type' => 'authorization_code'
        );

        $json_data = json_encode($params);

        return $this->_apiCall($this->token_uri, 'POST', $json_data);
    }

    public function get_exchange_token($refresh_token)
    {
        if (empty($refresh_token))
        {
            $this->_show_error("Refresh token is missing");
        }

        $params = array(
            'client_id' => $this->client_id,
            'client_secret' => $this->client_secret,
            'refresh_token' => $refresh_token,
            'grant_type' => 'refresh_token'
        );

        $json_data = json_encode($params);

        return $this->_apiCall($this->token_uri, 'POST', $json_data);
    }

    /*
     * Account related functions
     */

    public function get_accounts($access_token)
    {
        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }

        $params = array(
            'pageSize' => $this->limit,
            'access_token' => $access_token
        );

        $build_query = http_build_query($params);

        return $this->_apiCall($this->root_uri . "accounts?" . $build_query);
    }

    public function get_account_details($account_name, $access_token)
    {

        if (empty($account_name))
        {
            $this->_show_error("Account name is missing");
        }

        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }

        $params = array(
            'name' => $account_name,
            'access_token' => $access_token
        );

        $build_query = http_build_query($params);

        return $this->_apiCall($this->root_uri . "accounts?" . $build_query);
    }

    public function generate_account_number($account_name, $access_token)
    {
        if (empty($account_name))
        {
            $this->_show_error("Account name is missing");
        }

        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }

        $params = array('name' => $account_name);

        $json_data = json_encode($params);

        return $this->_apiCall($this->root_uri . $account_name . ":generateAccountNumber?access_token=" . $access_token, 'POST', $json_data);
    }

    public function get_notifications($account_name, $access_token)
    {
        if (empty($account_name))
        {
            $this->_show_error("Account name is missing");
        }

        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }

        $params = array('name' => $account_name, 'access_token' => $access_token);

        $build_query = http_build_query($params);

        return $this->_apiCall($this->root_uri . $account_name . "/notifications?" . $build_query);
    }

    /*
     * Location related functions
     */

    public function get_locations($account_name, $access_token, $optional = array())
    {
        if (empty($account_name))
        {
            $this->_show_error("Account name is missing");
        }

        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }

         $params = array(
            'parent' => $account_name,
            'access_token' => $access_token,
            'pageSize' => $this->limit,
            'read_mask' => 'storeCode,regularHours,name,languageCode,title,phoneNumbers,categories,storefrontAddress,websiteUri,regularHours,specialHours,serviceArea,labels,adWordsLocationExtensions,latlng,openInfo,metadata,profile,relationshipData,moreHours'
        );

        if (is_array($optional) && count($optional) > 0)
        {
            $params = array_merge($params, $optional);
        }

        $build_query = http_build_query($params);

        return $this->_apiCall($this->info_uri . $account_name . "/locations?" . $build_query);
    }

    /*
     * Location details functions
     */

    public function get_locations_details($location_name, $access_token)
    {
        if (empty($location_name))
        {
            $this->_show_error("Account name is missing");
        }

        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }

        $params = array('access_token' => $access_token);

        $build_query = http_build_query($params);

        return $this->_apiCall($this->root_uri . $location_name . "?" . $build_query);
    }

    /*
     * Location details update function
     */

    public function update_locations_details($location_name, $access_token, $fieldMask, $post_body = array(), $validateOnly = NULL)
    {
        if (empty($location_name))
        {
            $this->_show_error("Account name is missing");
        }

        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }

        if (!is_array($post_body) || count($post_body) === 0)
        {
            $this->_show_error("Post body must be an array");
        }

        $params = array('access_token' => $access_token, 'update_mask' => $fieldMask);

        if (!empty($validateOnly))
        {
            $params['validateOnly'] = TRUE;
        }

        $build_query = http_build_query($params);

        $json_econde = json_encode($post_body);

        return $this->_apiCall($this->root_uri . $location_name . "?" . $build_query, 'patch', $json_econde);
    }

    /*
     * Location media functions
     */

    public function get_locations_media($location_name, $access_token)
    {
        if (empty($location_name))
        {
            $this->_show_error("Account name is missing");
        }

        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }

        $params = array('access_token' => $access_token);

        $build_query = http_build_query($params);

        return $this->_apiCall($this->root_uri . $location_name . "?" . $build_query);
    }

    /*
     * Location media insert functions
     */

    public function insert_media($name, $access_token, $post_body = array())
    {
        if (empty($name))
        {
            $this->_show_error("Account name is missing");
        }

        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }

        $params = array('access_token' => $access_token);

        $build_query = http_build_query($params);

        $json_econde = json_encode($post_body);

        return $this->_apiCall($this->root_uri . $name . "?" . $build_query, 'post', $json_econde);
    }

    /*
     * Location media insert functions
     */

    public function update_media($location_name, $access_token, $fieldMask, $post_body = array(), $validateOnly = NULL)
    {
        if (empty($location_name))
        {
            $this->_show_error("Account name is missing");
        }

        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }

        if (!is_array($post_body) || count($post_body) === 0)
        {
            $this->_show_error("Post body must be an array");
        }

        $params = array('access_token' => $access_token, 'update_mask' => $fieldMask);

        if (!empty($validateOnly))
        {
            $params['validateOnly'] = TRUE;
        }

        $build_query = http_build_query($params);

        $json_econde = json_encode($post_body);

        return $this->_apiCall($this->root_uri . $location_name . "?" . $build_query, 'patch', $json_econde);
    }

    /*
     * Delete Location media functions
     */

    public function delete_media($name, $access_token)
    {
        if (empty($name))
        {
            $this->_show_error("Account name is missing");
        }

        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }

        $params = array('access_token' => $access_token);

        $build_query = http_build_query($params);

        return $this->_apiCall($this->root_uri . $name . "?" . $build_query, 'delete');
    }

    /*
     * Location reviews functions
     */

    public function get_reviews($review_name, $access_token)
    {
        if (empty($review_name))
        {
            $this->_show_error("Account name is missing");
        }

        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }

        $params = array('access_token' => $access_token);

        $build_query = http_build_query($params);

        return $this->_apiCall($this->root_uri . $review_name . "?" . $build_query);
    }

    public function reply_review($review_name, $access_token, $post_body)
    {
        if (empty($review_name))
        {
            $this->_show_error("Account name is missing");
        }

        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }

        $params = array('access_token' => $access_token);

        $build_query = http_build_query($params);

        $json_econde = json_encode($post_body);

        return $this->_apiCall($this->root_uri . $review_name . "?" . $build_query, 'PUT', $json_econde);
    }

    public function qa_reply($question_name, $access_token, $post_body)
    {
        if (empty($question_name))
        {
            $this->_show_error("Question name is missing");
        }

        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }

        $params = array('access_token' => $access_token);

        $build_query = http_build_query($params);

        $json_econde = json_encode($post_body);

        return $this->_apiCall($this->root_uri . $question_name . "/answers:upsert?" . $build_query, 'post', $json_econde);
    }

    public function delete_qa_reply($question_name, $access_token)
    {
        if (empty($question_name))
        {
            $this->_show_error("Account name is missing");
        }

        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }

        $params = array('access_token' => $access_token);

        $build_query = http_build_query($params);

        return $this->_apiCall($this->root_uri . $question_name . "/answers:delete?" . $build_query, 'DELETE');
    }

    public function delete_review_reply($review_name, $access_token)
    {
        if (empty($review_name))
        {
            $this->_show_error("Account name is missing");
        }

        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }

        $params = array('access_token' => $access_token);

        $build_query = http_build_query($params);

        return $this->_apiCall($this->root_uri . $review_name . "?" . $build_query, 'delete');
    }

    /*
     * Local post functions
     */

    public function get_local_post($post_name, $access_token)
    {
        if (empty($post_name))
        {
            $this->_show_error("Account name is missing");
        }

        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }

        $params = array('access_token' => $access_token);

        $build_query = http_build_query($params);

        return $this->_apiCall($this->root_uri . $post_name . "?" . $build_query);
    }

    public function post_local_post($location_name, $access_token, $post_body = array())
    {
        if (empty($location_name))
        {
            $this->_show_error("Account name is missing");
        }
        
        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }
        
        if (!is_array($post_body) && count($post_body) === 0)
        {
            $this->_show_error("Post body must be an array set");
        }
        
        $params = array('access_token' => $access_token);
        
        $build_query = http_build_query($params);

        $json_econde = json_encode($post_body);

        
        return $this->_apiCall($this->posting_url . $location_name . "?" . $build_query, 'post', $json_econde);
    }

    public function delete_localpost($post_name, $access_token)
    {
        if (empty($post_name))
        {
            $this->_show_error("Account name is missing");
        }

        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }

        $params = array('access_token' => $access_token);

        $build_query = http_build_query($params);

        return $this->_apiCall($this->root_uri . $post_name . "?" . $build_query, 'delete');
    }

    /*
     * GMB Question & Answers functions
     */

    public function get_questions($location_name, $access_token)
    {
        if (empty($location_name))
        {
            $this->_show_error("Account name is missing");
        }

        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }

        $params = array('access_token' => $access_token);

        $build_query = http_build_query($params);

        return $this->_apiCall($this->root_uri . $location_name . "?" . $build_query);
    }

    public function get_answers($location_name, $access_token)
    {
        if (empty($location_name))
        {
            $this->_show_error("Account name is missing");
        }

        if (empty($access_token))
        {
            $this->_show_error("Access token is missing");
        }

        $params = array('access_token' => $access_token);

        $build_query = http_build_query($params);

        return $this->_apiCall($this->root_uri . $location_name . "?" . $build_query);
    }

    /*
     * Common functions
     */

    public function _pre($data = array())
    {
        echo "<pre>";
        print_r($data);
        echo "</pre>";
    }

    function redirect($uri)
    {
        header('Location: ' . $uri);
    }

    private function _apiCall($uri, $req_method = 'GET', $params = array())
    {
        $curinit = curl_init($uri);
        curl_setopt($curinit, CURLOPT_SSL_VERIFYPEER, false);
        $method = strtoupper($req_method);

        if ($method == 'POST')
        {
            curl_setopt($curinit, CURLOPT_POST, true);
            curl_setopt($curinit, CURLOPT_POSTFIELDS, $params);
            curl_setopt($curinit, CURLOPT_HTTPHEADER, array(
                'Content-Type: application/json',
                'Content-Length: ' . strlen($params)
                )
            );
            curl_setopt($curinit, CURLOPT_CUSTOMREQUEST, $method);
        } elseif ($method === 'PUT')
        {
            curl_setopt($curinit, CURLOPT_POST, true);
            curl_setopt($curinit, CURLOPT_CUSTOMREQUEST, 'PUT');
            curl_setopt($curinit, CURLOPT_POSTFIELDS, $params);
            curl_setopt($curinit, CURLOPT_HTTPHEADER, array(
                'Content-Type: application/json',
                'Content-Length: ' . strlen($params)
                )
            );
        } elseif ($method == 'DELETE')
        {
            curl_setopt($curinit, CURLOPT_CUSTOMREQUEST, $method);
        } elseif ($method == 'PATCH')
        {
            curl_setopt($curinit, CURLOPT_CUSTOMREQUEST, $method);
            curl_setopt($curinit, CURLOPT_POST, true);
            curl_setopt($curinit, CURLOPT_POSTFIELDS, $params);
            curl_setopt($curinit, CURLOPT_HTTPHEADER, array(
                'Content-Type: application/json',
                'Content-Length: ' . strlen($params)
                )
            );
        }

        curl_setopt($curinit, CURLOPT_RETURNTRANSFER, true);

        $json = curl_exec($curinit);

        curl_close($curinit);

        $phpObj = json_decode($json, true);
        
        return $phpObj;
    }

    private function _show_error($data)
    {
        throw new Exception($data, 500);
    }

}