Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5837 | Rev 6849 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 5837 Rev 6749
Línea 5... Línea 5...
5
namespace LeadersLinked\Library;
5
namespace LeadersLinked\Library;
Línea 6... Línea 6...
6
 
6
 
7
 
7
 
8
use \Firebase\JWT\JWT;
8
use \Firebase\JWT\JWT;
9
use GuzzleHttp\Client;
9
use GuzzleHttp\Client;
10
use Laminas\Cache\Storage\Adapter\AbstractAdapter;
10
use LeadersLinked\Cache\CacheInterface;
Línea 11... Línea 11...
11
use Laminas\Db\Adapter\Adapter;
11
use Laminas\Db\Adapter\Adapter;
Línea 30... Línea 30...
30
    private $config;
30
    private $config;
Línea 31... Línea 31...
31
    
31
    
32
    
32
    
33
    /**
33
    /**
34
     *
34
     *
35
     * @var AbstractAdapter
35
     * @var CacheInterface
Línea 36... Línea 36...
36
     */
36
     */
37
    private $cache;
37
    private $cache;
38
    
38
    
39
    
39
    
40
    
40
    
41
    /**
41
    /**
42
     * 
42
     * 
43
     * @param Adapter $adapter
43
     * @param Adapter $adapter
44
     * @param array config
44
     * @param array config
45
     * @param AbstractAdapter $cache
45
     * @param CacheInterface $cache
Línea 182... Línea 182...
182
    
182
    
183
    
183
    
Línea 184... Línea -...
184
    public  function getOAuthAccessToken()
-
 
185
    {
184
    public  function getOAuthAccessToken()
186
 
185
    {
187
 
186
 
188
        if($this->cache->hasItem(self::CACHE_OAUTH_TOOKEN)) {
187
        $data = $this->cache->get(self::CACHE_OAUTH_TOOKEN);
189
            $data = $this->cache->getItem(self::CACHE_OAUTH_TOOKEN);
188
        if($data) {
190
            
189
 
Línea 191... Línea 190...
191
            return [
190
            return [
Línea 267... Línea 266...
267
            $obj = new \stdClass();
266
            $obj = new \stdClass();
268
            $obj->accesstoken   = $response->access_token;
267
            $obj->accesstoken   = $response->access_token;
269
            $obj->expires       = $expires;
268
            $obj->expires       = $expires;
270
            $obj->scopes        = $scopes;
269
            $obj->scopes        = $scopes;
Línea 271... Línea 270...
271
            
270
            
Línea 272... Línea 271...
272
            $this->cache->setItem(self::CACHE_OAUTH_TOOKEN, $obj);
271
            $this->cache->add(self::CACHE_OAUTH_TOOKEN, $obj);
273
 
272
 
274
            return [
273
            return [
275
                'success' => true,
274
                'success' => true,