Example #1
0
 public function __construct($name, $instance, $method)
 {
     $class = new \Wingu\OctopusCore\Reflection\ReflectionClass($instance);
     $this->method = $class->getMethod($method);
     $doc = $this->method->getReflectionDocComment();
     parent::__construct($name, $doc);
     $this->instance = $instance;
     $this->methodName = $method;
 }
Example #2
0
 /**
  * @deprecated
  */
 public static function reflections($instance, $method = null)
 {
     $class = new \Wingu\OctopusCore\Reflection\ReflectionClass($instance);
     if ($method != null) {
         $method = $class->getMethod($method);
         $doc = $method->getReflectionDocComment();
         $annotations = $doc->getAnnotationsCollection();
         return array($method, $annotations, $class, $doc);
     }
     $doc = $class->getReflectionDocComment();
     $annotations = $doc->getAnnotationsCollection();
     return array($class, $annotations, $doc);
 }
Example #3
0
 /**
  * Los archivos copiados seran aquellos contenidos en el directrorio Resources del bundle
  * 
  * @param string $bundle El bundle que se copiara los recursos
  * @param boolean $extPreCompile Si este parametro es true, se ejecutaram ademas una rutina de busqueda dentro de los recursos para la compilacion de recursos Extjs
  */
 public static function run($bundle, $extPreCompile = false)
 {
     $class = new \Wingu\OctopusCore\Reflection\ReflectionClass($bundle);
     $location = dirname($class->getFileName());
     if (file_exists($location . DIRECTORY_SEPARATOR . 'Resources')) {
         $fileBundle = str_replace('Bundle', '', $class->getNamespaceName());
         $fileBundle = str_replace('\\', '/', $fileBundle);
         $web = \Raptor\Core\Location::get(\Raptor\Core\Location::WEBBUNDLES);
         if (!file_exists($web . '/' . $fileBundle)) {
             mkdir($web . '/' . $fileBundle, 0777, true);
         }
         \Raptor\Util\Files::copy($location . DIRECTORY_SEPARATOR . 'Resources', $web . '/' . $fileBundle);
         if ($extPreCompile) {
             Extjs::preCompileApp($web . '/' . $fileBundle);
         }
     }
 }
 private function constructServiceFile()
 {
     $body = '';
     $bundles = $this->app->getConfigurationLoader()->getBundlesSpecifications();
     foreach ($bundles as $key => $value) {
         $location = $value['location'];
         if (file_exists($location . DIRECTORY_SEPARATOR . 'Services' . DIRECTORY_SEPARATOR . 'Service.php')) {
             $ref = new \Wingu\OctopusCore\Reflection\ReflectionClass($value['namespace'] . '\\Services\\Service');
             $body .= $ref->getBody();
         }
     }
     $body = $this->getDeclarative() . $body . "\n} \n?>\n";
     $dirClass = __DIR__ . '/../Soap';
     if (!file_exists($dirClass)) {
         mkdir($dirClass, 0777, true);
     }
     if (!file_exists($dirClass . DIRECTORY_SEPARATOR . 'wsdl')) {
         mkdir($dirClass . DIRECTORY_SEPARATOR . 'wsdl');
     }
     file_put_contents($dirClass . DIRECTORY_SEPARATOR . 'Service.php', $body);
 }
Example #5
0
 /**
  * Registra la instancia de una clase en el contenedor
  * 
  * @param mixed $instance la instancia
  */
 public function add($instance)
 {
     $reflect = new \Wingu\OctopusCore\Reflection\ReflectionClass($instance);
     $this->container[strtolower($reflect->getShortName())] = $instance;
 }
Example #6
0
 /**
  * [USO INTERNO DEL SISTEMA]
  */
 public function load()
 {
     foreach ($this->bundles as $bundle) {
         $class = new \Wingu\OctopusCore\Reflection\ReflectionClass($bundle);
         $prefix = '';
         $this->location[$class->getShortName()] = \Raptor\Util\ClassLocation::getLocation($bundle);
         $this->specif[$class->getShortName()] = array('location' => \Raptor\Util\ClassLocation::getLocation($bundle), 'namespace' => $class->getNamespaceName(), 'name' => $class->getName());
         if (!$class->getReflectionDocComment()->isEmpty() and $class->getReflectionDocComment()->getAnnotationsCollection()->hasAnnotationTag('Route')) {
             $doc = $class->getReflectionDocComment();
             $obj = $doc->getAnnotationsCollection()->getAnnotation('Route');
             $prefix = $obj[0]->getDescription();
         }
         $controllerDir = \Raptor\Util\ClassLocation::getLocation($bundle) . '/Controller';
         $listfiles = \Raptor\Util\Files::find($controllerDir, "*Controller.php");
         foreach ($listfiles as $nombre_fichero) {
             $prefixController = $prefix;
             $namespaceSrc = explode('src', $nombre_fichero);
             $real = array();
             if (count($namespaceSrc) > 1) {
                 $real = $namespaceSrc[1];
             } else {
                 $namespaceSrc = explode('libs', $nombre_fichero);
                 $real = $namespaceSrc[1];
             }
             $namespaceClass = str_replace('.php', '', $real);
             $namespace = str_replace('/', '\\', $namespaceClass);
             $controller = new \Wingu\OctopusCore\Reflection\ReflectionClass($namespace);
             if (!$controller->getReflectionDocComment()->isEmpty() and $controller->getReflectionDocComment()->getAnnotationsCollection()->hasAnnotationTag('Route')) {
                 $doc = $controller->getReflectionDocComment();
                 $obj = $doc->getAnnotationsCollection()->getAnnotation('Route');
                 $prefixController = $prefixController . $obj[0]->getDescription();
             }
             foreach ($controller->getMethods() as $method) {
                 /**
                  * Searching the API in any method of controller classes
                  */
                 $api = new \stdClass();
                 $api->hasApi = false;
                 $api->version = '0.0.0';
                 $api->text = '';
                 $doc = $method->getReflectionDocComment();
                 if ($method->getReflectionDocComment()->getAnnotationsCollection()->hasAnnotationTag('api')) {
                     $api->text = $method->getReflectionDocComment()->getFullDescription();
                     $collectionDescrip = $doc->getAnnotationsCollection()->getAnnotation('api');
                     $api->category = $collectionDescrip[0]->getDescription();
                     $api->class = $method->getDeclaringClass()->getName();
                     $api->bundle = $class->getName();
                     $api->method = $method->getName();
                     $api->hasApi = true;
                     if ($method->getReflectionDocComment()->getAnnotationsCollection()->hasAnnotationTag('Route')) {
                         $doc = $method->getReflectionDocComment();
                         $collectionRouteObj = $doc->getAnnotationsCollection()->getAnnotation('Route');
                         $collectionRoute = $collectionRouteObj[0];
                         $api->route = $prefixController . $collectionRoute->getDescription();
                     } else {
                         $api->route = false;
                     }
                     if ($method->getReflectionDocComment()->getAnnotationsCollection()->hasAnnotationTag('version')) {
                         $doc = $method->getReflectionDocComment();
                         $collectionRouteObj = $doc->getAnnotationsCollection()->getAnnotation('version');
                         $collectionRoute = $collectionRouteObj[0];
                         $api->version = $collectionRoute->getDescription();
                     }
                 }
                 if ($api->hasApi) {
                     if (!isset($this->api[$api->category])) {
                         $this->api[$api->category] = array();
                     }
                     $this->api[$api->category][] = $api;
                 }
                 if (!$method->getReflectionDocComment()->isEmpty() and $method->getReflectionDocComment()->getAnnotationsCollection()->hasAnnotationTag('Route')) {
                     if ($method->getReflectionDocComment()->getAnnotationsCollection()->hasAnnotationTag('RouteName')) {
                         $collectionNameObj = $doc->getAnnotationsCollection()->getAnnotation('RouteName');
                         $collectionName = $collectionNameObj[0]->getDescription();
                     } else {
                         $routeArray = $doc->getAnnotationsCollection()->getAnnotation('Route');
                         $Route = $routeArray[0];
                         $collectionName = str_replace('/', '_', $prefixController . $Route->getDescription());
                     }
                     $collectionRouteObj = $doc->getAnnotationsCollection()->getAnnotation('Route');
                     $collectionRoute = $collectionRouteObj[0];
                     $descrip = "";
                     if ($method->getReflectionDocComment()->getAnnotationsCollection()->hasAnnotationTag('Description')) {
                         $collectionDescrip = $doc->getAnnotationsCollection()->getAnnotation('Description');
                         $descrip = $collectionDescrip[0]->getDescription();
                     }
                     $methodName = 'ANY';
                     if ($method->getReflectionDocComment()->getAnnotationsCollection()->hasAnnotationTag('Method')) {
                         $collectionMethod = $doc->getAnnotationsCollection()->getAnnotation('Method');
                         $methodName = $collectionMethod[0]->getDescription();
                     }
                     $this->definitions[$collectionName] = $api;
                     $this->definitions[$collectionName] = array($prefixController . $collectionRoute->getDescription(), $method->getDeclaringClass()->getName(), $method->getName(), $class->getName(), 'method' => $methodName);
                     $this->description[$prefixController . $collectionRoute->getDescription()] = array($descrip, $method->getReflectionDocComment()->getFullDescription());
                 }
             }
         }
     }
 }