]> git.mxchange.org Git - hub.git/blob
0ce455121d9afc9c1f7daa031703dbf7c932defc
[hub.git] /
1 <?php
2 // Own namespace
3 namespace Org\Shipsimu\Hub\Handler\Node\Answer\Announcement;
4
5 // Import application-specific stuff
6 use Org\Shipsimu\Hub\Factory\Node\NodeObjectFactory;
7 use Org\Shipsimu\Hub\Handler\Message\BaseMessageHandler;
8 use Org\Shipsimu\Hub\Handler\Message\HandleableMessage;
9 use Org\Shipsimu\Hub\Network\Receive\Receivable;
10 use Org\Shipsimu\Hub\Template\Engine\Xml\Announcement\XmlAnnouncementTemplateEngine;
11 use Org\Shipsimu\Hub\Template\Engine\Xml\Answer\Announcement\XmlAnnouncementAnswerTemplateEngine;
12 use Org\Shipsimu\Hub\Template\Engine\Xml\Network\Answer\BaseXmlAnswerTemplateEngine;
13
14 // Import framework stuff
15 use Org\Mxchange\CoreFramework\Criteria\Storing\StoreableCriteria;
16 use Org\Mxchange\CoreFramework\Generic\UnsupportedOperationException;
17 use Org\Mxchange\CoreFramework\Registry\Registerable;
18
19 /**
20  * A NodeMessageAnnouncementAnswer handler
21  *
22  * @author              Roland Haeder <webmaster@shipsimu.org>
23  * @version             0.0.0
24  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2018 Hub Developer Team
25  * @license             GNU GPL 3.0 or any newer version
26  * @link                http://www.shipsimu.org
27  *
28  * This program is free software: you can redistribute it and/or modify
29  * it under the terms of the GNU General Public License as published by
30  * the Free Software Foundation, either version 3 of the License, or
31  * (at your option) any later version.
32  *
33  * This program is distributed in the hope that it will be useful,
34  * but WITHOUT ANY WARRANTY; without even the implied warranty of
35  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
36  * GNU General Public License for more details.
37  *
38  * You should have received a copy of the GNU General Public License
39  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
40  */
41 class NodeMessageAnnouncementAnswerHandler extends BaseMessageHandler implements HandleableMessage, Registerable {
42         /**
43          * Protected constructor
44          *
45          * @return      void
46          */
47         protected function __construct () {
48                 // Call parent constructor
49                 parent::__construct(__CLASS__);
50
51                 // Set handler name
52                 $this->setHandlerName('message_announcement_answer');
53
54                 // Init message data array
55                 $this->messageDataElements = array(
56                         XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_EXTERNAL_ADDRESS,
57                         XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_INTERNAL_ADDRESS,
58                         XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_NODE_STATUS,
59                         XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_NODE_ID,
60                         XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_SESSION_ID,
61                         XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_PRIVATE_KEY_HASH,
62                         BaseXmlAnswerTemplateEngine::ANSWER_STATUS,
63                 );
64
65                 // Init message-data->configuration translation array
66                 $this->messageToConfig = array(
67                 /*
68                         XmlAnnouncementTemplateEngine::ANNOUNCEMENT_DATA_EXTERNAL_ADDRESS => 'your_external_address',
69                         XmlAnnouncementTemplateEngine::ANNOUNCEMENT_DATA_INTERNAL_ADDRESS => 'your_internal_address',
70                         XmlAnnouncementTemplateEngine::ANNOUNCEMENT_DATA_SESSION_ID       => 'your_session_id'
71                         XmlAnnouncementTemplateEngine::ANNOUNCEMENT_DATA_PRIVATE_KEY_HASH => 'your_private_key_hash'
72                 */
73                 );
74
75                 // Init config-copy array
76                 $this->configCopy = array(
77                         XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_EXTERNAL_ADDRESS => 'external_address',
78                         XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_INTERNAL_ADDRESS => 'internal_address',
79                         XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_NODE_STATUS      => 'node_status',
80                         XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_SESSION_ID       => 'session_id',
81                         XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_PRIVATE_KEY_HASH => 'private_key_hash',
82                 );
83
84                 // Init array
85                 $this->searchData = array(
86                         XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_SESSION_ID,
87                         XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_EXTERNAL_ADDRESS,
88                 );
89         }
90
91         /**
92          * Creates an instance of this class
93          *
94          * @return      $handlerInstance        An instance of a HandleableMessage class
95          */
96         public final static function createNodeMessageAnnouncementAnswerHandler () {
97                 // Get new instance
98                 $handlerInstance = new NodeMessageAnnouncementAnswerHandler();
99
100                 // Return the prepared instance
101                 return $handlerInstance;
102         }
103
104         /**
105          * Handles data array of the message
106          *
107          * @param       $messageData            An array with message data to handle
108          * @param       $packageInstance        An instance of a Receivable class
109          * @return      void
110          * @throws      NoAnnouncementAttemptedException        If this node has not attempted to announce itself
111          */
112         public function handleMessageData (array $messageData, Receivable $packageInstance) {
113                 // Get node instance
114                 $nodeInstance = NodeObjectFactory::createNodeInstance();
115
116                 // Has this node attempted to announce itself?
117                 if (!$nodeInstance->ifNodeIsAnnouncing()) {
118                         /*
119                          * This node has never announced itself, so it doesn't expect
120                          * announcement answer messages.
121                          */
122                         throw new NoAnnouncementAttemptedException(array($this, $nodeInstance, $messageData), self::EXCEPTION_ANNOUNCEMENT_NOT_ATTEMPTED);
123                 } // END - if
124
125                 // Register the announcing node with this node
126                 $this->registerNodeByMessageData($messageData);
127
128                 // Handle the answer status element
129                 $nodeInstance->handleAnswerStatusByMessageData($messageData, $packageInstance);
130         }
131
132         /**
133          * Adds all required elements from given array into data set instance
134          *
135          * @param       $dataSetInstance        An instance of a StoreableCriteria class
136          * @param       $messageData            An array with all message data
137          * @return      void
138          */
139         public function addArrayToDataSet (StoreableCriteria $dataSetInstance, array $messageData) {
140                 // Add generic first
141                 parent::addArrayToDataSet($dataSetInstance, $messageData);
142
143                 // Add all ements
144                 foreach ($this->messageDataElements as $key) {
145                         // Is it there?
146                         assert(isset($messageData[$key]));
147
148                         /*
149                          * Add it, but remove any 'my-' prefixes as they are not used in
150                          * database layer.
151                          */
152                         $dataSetInstance->addCriteria(str_replace('my-', '', $key), $messageData[$key]);
153                 } // END - foreach
154         }
155
156         /**
157          * Initializes configuration data from given message data array
158          *
159          * @param       $messageData    An array with all message data
160          * @return      void
161          * @throws      UnsupportedOperationException   If this method is called
162          */
163         protected function initMessageConfigurationData (array $messageData) {
164                 // Please don't call this method
165                 throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
166         }
167
168         /**
169          * Removes configuration data with given message data array from global
170          * configuration
171          *
172          * @param       $messageData    An array with all message data
173          * @return      void
174          * @throws      UnsupportedOperationException   If this method is called
175          */
176         protected function removeMessageConfigurationData (array $messageData) {
177                 // Please don't call this method
178                 throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
179         }
180 }
181
182 // [EOF]
183 ?>