Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
mailoptin/connections / SendGridConnect / AbstractSendGridConnect.php
Size: Mime:
<?php

namespace MailOptin\SendGridConnect;

use MailOptin\Core\Connections\AbstractConnect;
use MailOptin\Core\PluginSettings\Connections;
use MailOptin\Core\PluginSettings\Settings;

class AbstractSendGridConnect extends AbstractConnect
{
    /** @var \MailOptin\Core\PluginSettings\Settings */
    protected $plugin_settings;

    /** @var \MailOptin\Core\PluginSettings\Connections */
    protected $connections_settings;

    protected $api_key;

    public function __construct()
    {
        $this->plugin_settings      = Settings::instance();
        $this->connections_settings = Connections::instance();
        $this->api_key              = $this->connections_settings->sendgrid_api_key();

        parent::__construct();
    }

    /**
     * Is Constant Contact successfully connected to?
     *
     * @return bool
     */
    public static function is_connected($return_error = false)
    {
        $db_options = isset($_POST['mailoptin_connections']) ? $_POST['mailoptin_connections'] : get_option(MAILOPTIN_CONNECTIONS_DB_OPTION_NAME);
        $api_key    = isset($db_options['sendgrid_api_key']) ? $db_options['sendgrid_api_key'] : '';

        if (empty($api_key)) {
            delete_transient('_mo_sendgrid_is_connected');

            return false;
        }

        if (isset($_POST['wp_csa_nonce'])) {
            delete_transient('_mo_sendgrid_is_connected');
        }

        //Check for connection status from cache
        if ('true' == get_transient('_mo_sendgrid_is_connected')) {
            return true;
        }

        try {

            $result = (new APIClass($api_key))->make_request('marketing/lists');

            if (self::is_http_code_success($result['status_code'])) {
                set_transient('_mo_sendgrid_is_connected', 'true', WEEK_IN_SECONDS);

                return true;
            }

        } catch (\Exception $e) {

            return $return_error === true ? $e->getMessage() : false;
        }
    }

    /**
     * Returns instance of API class.
     *
     * @return APIClass
     * @throws \Exception
     *
     */
    public function sendgrid_instance()
    {
        $api_key = $this->connections_settings->sendgrid_api_key();

        if (empty($api_key)) {
            throw new \Exception('SendGrid API Key not found.');
        }

        return new APIClass($api_key);
    }
}