Sindbad~EG File Manager

Current Path : /home/escuelai/public_html/eihu.edu.uy/wp-content/plugins/mailoptin/src/authifly/src/
Upload File :
Current File : /home/escuelai/public_html/eihu.edu.uy/wp-content/plugins/mailoptin/src/authifly/src/Authifly.php

<?php
/*!
* Hybridauth
* https://hybridauth.github.io | https://github.com/hybridauth/hybridauth
*  (c) 2017 Hybridauth authors | https://hybridauth.github.io/license.html
*/

namespace Authifly;
use Authifly\Exception\InvalidArgumentException;
use Authifly\Exception\UnexpectedValueException;
use Authifly\Storage\StorageInterface;
use Authifly\Logger\LoggerInterface;
use Authifly\Logger\Logger;
use Authifly\HttpClient\HttpClientInterface;
/**
 * Authifly\Authifly
 *
 * For ease of use of multiple providers, Authifly implements the class Authifly\Authifly,
 * a sort of factory/façade which acts as an unified interface or entry point, and it expects a
 * configuration array containing the list of providers you want to use, their respective credentials
 * and authorized callback.
 */
class Authifly
{
    /**
     * Authifly config.
     *
     * @var array
     */
    protected $config;
    /**
     * Storage.
     *
     * @var StorageInterface
     */
    protected $storage;
    /**
     * HttpClient.
     *
     * @var HttpClientInterface
     */
    protected $httpClient;
    /**
     * Logger.
     *
     * @var LoggerInterface
     */
    protected $logger;
    /**
     * @param array|string        $config     Array with configuration or Path to PHP file that will return array
     * @param HttpClientInterface $httpClient
     * @param StorageInterface    $storage
     * @param LoggerInterface     $logger
     *
     * @throws InvalidArgumentException
     */
    public function __construct(
        $config = [],
        HttpClientInterface $httpClient = null,
        StorageInterface $storage = null,
        LoggerInterface $logger = null
    ) {
        if (is_string($config) && file_exists($config)) {
            $config = include $config;
        } elseif (! is_array($config)) {
            throw new InvalidArgumentException('Hybriauth config does not exist on the given path.');
        }
        $this->config = $config + [
                'debug_mode'   => Logger::NONE,
                'debug_file'   => '',
                'curl_options' => null,
                'providers'    => []
            ];
        $this->storage = $storage;
        $this->logger = $logger;
        $this->httpClient = $httpClient;
    }
    /**
     * Instantiate the given provider and authentication or authorization protocol.
     *
     * If not authenticated yet, the user will be redirected to the provider's site for
     * authentication/authorisation, otherwise it will simply return an instance of
     * provider's adapter.
     *
     * @param string $name adapter's name (case insensitive)
     *
     * @return Adapter\AdapterInterface
     */
    public function authenticate($name)
    {
        $adapter = $this->getAdapter($name);
        $adapter->authenticate();
        return $adapter;
    }
    /**
     * Returns a new instance of a provider's adapter by name
     *
     * @param string $name adapter's name (case insensitive)
     *
     * @return Adapter\AdapterInterface
     */
    public function getAdapter($name)
    {
        $config = $this->getProviderConfig($name);
        $adapter = isset($config['adapter']) ? $config['adapter'] : sprintf('Authifly\\Provider\\%s', $name);
        return new $adapter($config, $this->httpClient, $this->storage, $this->logger);
    }
    /**
     * Get provider config by name.
     *
     * @param string $name adapter's name (case insensitive)
     *
     * @throws Exception\UnexpectedValueException
     * @throws Exception\InvalidArgumentException
     *
     * @return array
     */
    public function getProviderConfig($name)
    {
        $name = strtolower($name);
        $providersConfig = array_change_key_case($this->config['providers'], CASE_LOWER);
        if (! isset($providersConfig[$name])) {
            throw new InvalidArgumentException('Unknown Provider.');
        }
        if (! $providersConfig[$name]['enabled']) {
            throw new UnexpectedValueException('Disabled Provider.');
        }
        $config = $providersConfig[$name];
        if (! isset($config['callback']) && isset($this->config['callback'])) {
            $config['callback'] = $this->config['callback'];
        }
        return $config;
    }
    /**
     * Returns a boolean of whether the user is connected with a provider
     *
     * @param string $name adapter's name (case insensitive)
     *
     * @return boolean
     */
    public function isConnectedWith($name)
    {
        return $this->getAdapter($name)->isConnected();
    }
    /**
     * Returns a list of currently connected adapters names
     *
     * @return array
     */
    public function getConnectedProviders()
    {
        $providers = [];
        foreach ($this->config['providers'] as $name => $config) {
            if ($config['enabled'] && $this->isConnectedWith($name)) {
                $providers[] = $name;
            }
        }
        return $providers;
    }
    /**
     * Returns a list of new instances of currently connected adapters
     *
     * @return array
     */
    public function getConnectedAdapters()
    {
        $adapters = [];
        foreach ($this->config['providers'] as $name => $config) {
            if ($config['enabled']) {
                $adapter = $this->getAdapter($name);
                if ($adapter->isConnected()) {
                    $adapters[$name] = $adapter;
                }
            }
        }
        return $adapters;
    }
    /**
     * Disconnect all currently connected adapters at once
     */
    public function disconnectAllAdapters()
    {
        foreach ($this->config['providers'] as $name => $config) {
            if ($config['enabled']) {
                $adapter = $this->getAdapter($name);
                if ($adapter->isConnected()) {
                    $adapter->disconnect();
                }
            }
        }
    }
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists