PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
platform
/
plugins
/
analytics
/
src
<?php namespace Botble\Analytics; use Google\Client; use Google\Exception; use LogicException; class GoogleClient extends Client { /** * Set the auth config from new or deprecated JSON config. * This structure should match the file downloaded from * the "Download JSON" button on in the Google Developer * Console. * @param string|array $config the configuration json * @throws Exception */ public function setAuthConfig($config) { if (is_string($config)) { if (!$config = json_decode($config, true)) { throw new LogicException('Invalid data for auth config'); } } $key = isset($config['installed']) ? 'installed' : 'web'; if (isset($config['type']) && $config['type'] == 'service_account') { // application default credentials $this->useApplicationDefaultCredentials(); // set the information from the config $this->setClientId($config['client_id']); $this->setConfig('client_email', $config['client_email']); $this->setConfig('signing_key', $config['private_key']); $this->setConfig('signing_algorithm', 'HS256'); } elseif (isset($config[$key])) { // old-style $this->setClientId($config[$key]['client_id']); $this->setClientSecret($config[$key]['client_secret']); if (isset($config[$key]['redirect_uris'])) { $this->setRedirectUri($config[$key]['redirect_uris'][0]); } } else { // new-style $this->setClientId($config['client_id']); $this->setClientSecret($config['client_secret']); if (isset($config['redirect_uris'])) { $this->setRedirectUri($config['redirect_uris'][0]); } } } }
[+]
Exceptions
[-] Plugin.php
[edit]
[-] AnalyticsClient.php
[edit]
[+]
..
[-] Analytics.php
[edit]
[-] GoogleClient.php
[edit]
[+]
Facades
[+]
Providers
[-] Period.php
[edit]
[+]
Http
[-] AnalyticsClientFactory.php
[edit]