]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/nodes/master/class_HubMasterNode.php
A lot files renamed (sorry guys for the mess) and moved to sub directories
[hub.git] / application / hub / main / nodes / master / class_HubMasterNode.php
index c68d0a321612891f96265d80f1ff35409eaa08dc..5d75473f560c4e8569b90352116b7debc2ca6c03 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Hub Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Hub Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -38,7 +38,7 @@ class HubMasterNode extends BaseHubNode implements NodeHelper, Registerable {
         * @param       $requestInstance        An instance of a Requestable class
         * @return      $nodeInstance           An instance of this hub-node class
         */
-       public final static function createHubMasterNode (Requestable $requestInstance) {
+       public static final function createHubMasterNode (Requestable $requestInstance) {
                // Get a new instance
                $nodeInstance = new HubMasterNode();
 
@@ -58,14 +58,7 @@ class HubMasterNode extends BaseHubNode implements NodeHelper, Registerable {
         * @todo        Implement this method
         */
        public function doBootstrapping () {
-               // Do more here
-               $this->partialStub('Do something before hub descriptor is published.');
-
-               // Publish the descriptor of this hub, this will "announce" us to upper hubs
-               $this->publishHubDescriptor();
-
-               // Do more here
-               $this->partialStub('Do something after hub descriptor is published.');
+               $this->partialStub();
        }
 
        /**
@@ -81,17 +74,24 @@ class HubMasterNode extends BaseHubNode implements NodeHelper, Registerable {
        }
 
        /**
-        * Adds some node-specific filters to the filter chains
+        * Add some node-specific filters
         *
-        * @param       $requestInstance        A Requestable class
-        * @param       $responseInstance       A Responseable class
         * @return      void
-        * @todo        0%
         */
-       public function addExtraFilters (Requestable $requestInstance, Responseable $responseInstance) {
-               $this->partialStub('Please implement this method.');
+       public function addExtraNodeFilters () {
+               // Get the application instance from registry
+               $applicationInstance = Registry::getRegistry()->getInstance('app');
+
+               // Get the controller from the application
+               $controllerInstance = $applicationInstance->getControllerInstance();
+
+               // Self-announcement task
+               $controllerInstance->addActivationFilter(ObjectFactory::createObjectByConfiguredName('node_activation_self_announcement_task_filter'));
+
+               // @TODO Add some filters here
+               $this->partialStub('Add some filters here.');
        }
 }
 
-//
+// [EOF]
 ?>