Ejemplo n.º 1
0
 public function testDecode()
 {
     //        /**
     //         * @var \PHPUnit_Framework_MockObject_MockObject
     //         */
     //        $guzzle = $this->getMockBuilder('GuzzleHttp\Client')
     //            ->getMock();
     //        $guzzle->method('get')->willReturn();
     return $this->assertTrue(true);
     //hacer mas portable para que pase el travis.
     $cliente = new \GuzzleHttp\Client(array('base_url' => "http://localhost:8000/oauth/tokeninfo"));
     $decoder = new oauth_token_decoder_web($cliente);
     $decoder->set_cache_manager(new \Doctrine\Common\Cache\ApcCache());
     $decoder->decode('fb430584b384ea78b201b77946b545149f57f02b2');
 }
Ejemplo n.º 2
0
 /**
  * Configurar la libreria de rest, seteando las dependencias o configuracion que permite la misma
  * @param $app
  * @throws toba_error_modelo si hay errores de configuracion
  */
 public function configurar_libreria_rest($app)
 {
     $app->container->singleton('logger', function () {
         return new toba_rest_logger();
     });
     $conf = $this->get_conf();
     $autenticacion = $conf->get('autenticacion', null, 'basic');
     $modelo_proyecto = $this->get_modelo_proyecto();
     switch ($autenticacion) {
         case 'basic':
             $app->container->singleton('autenticador', function () use($modelo_proyecto) {
                 $passwords = new toba_usuarios_rest_conf($modelo_proyecto);
                 return new autenticacion\autenticacion_basic_http($passwords);
             });
             break;
         case 'digest':
             $app->container->singleton('autenticador', function () use($modelo_proyecto) {
                 $passwords = new toba_usuarios_rest_conf($modelo_proyecto);
                 return new autenticacion\autenticacion_digest_http($passwords);
             });
             break;
         case 'api_key':
             $app->container->singleton('autenticador', function () use($modelo_proyecto) {
                 $passwords = new toba_usuarios_rest_conf($modelo_proyecto);
                 return new autenticacion\autenticacion_api_key($passwords);
             });
             break;
         case 'oauth2':
             $app->container->singleton('autenticador', function () use($conf) {
                 $conf_auth = $conf->get('oauth2');
                 $decoder = null;
                 switch ($conf_auth['decodificador_tokens']) {
                     case 'local':
                         die('not implemented');
                         break;
                     case 'web':
                         $cliente = new \GuzzleHttp\Client(array('base_url' => $conf_auth['endpoint_decodificador_url']));
                         $decoder = new oauth_token_decoder_web($cliente);
                         $decoder->set_cache_manager(new \Doctrine\Common\Cache\ApcCache());
                         $decoder->set_tokeninfo_translation_helper(new autenticacion\oauth2\tokeninfo_translation_helper_arai());
                         break;
                 }
                 $auth = new autenticacion\autenticacion_oauth2();
                 $auth->set_decoder($decoder);
                 return $auth;
             });
             $app->container->singleton('autorizador', function () use($conf) {
                 $conf_auth = $conf->get('oauth2');
                 if (!isset($conf_auth['scopes'])) {
                     die("es necesario definir el parámetro 'scopes' en el bloque oauth2 de la configuración");
                 }
                 $auth = new autorizacion_scopes();
                 $auth->set_scopes_requeridos(array_map('trim', explode(',', $conf_auth['scopes'])));
                 return $auth;
             });
             break;
         case 'toba':
             $app->container->singleton('autenticador', function () use($modelo_proyecto) {
                 $toba_aut = new toba_autenticacion_basica();
                 $user_prov = new toba_usuarios_rest_bd($toba_aut);
                 return new autenticacion\autenticacion_basic_http($user_prov);
             });
             break;
         default:
             throw new toba_error_modelo("Debe especificar un tipo de autenticacion valido [digest, basic] en el campo 'autenticacion'");
     }
     $app->container->singleton('rest_quoter', function () {
         return toba::db();
     });
 }