3 * The own template engine for loading caching and sending out images
5 * @author Roland Haeder <webmaster@ship-simu.org>
7 * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team
8 * @license GNU GPL 3.0 or any newer version
9 * @link http://www.ship-simu.org
11 * This program is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation, either version 3 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 class MailTemplateEngine extends BaseTemplateEngine implements CompileableTemplate {
26 * Main nodes in the XML tree
28 private $mainNodes = array("mail-data");
31 * Sub nodes in the XML tree
33 private $subNodes = array(
43 private $mailerInstance = null;
48 private $currMainNode = '';
51 * Protected constructor
55 protected function __construct () {
56 // Call parent constructor
57 parent::__construct(__CLASS__);
61 * Creates an instance of the class TemplateEngine and prepares it for usage
63 * @param $appInstance A manageable application
64 * @return $tplInstance An instance of TemplateEngine
65 * @throws BasePathIsEmptyException If the provided $templateBasePath is empty
66 * @throws InvalidBasePathStringException If $templateBasePath is no string
67 * @throws BasePathIsNoDirectoryException If $templateBasePath is no
68 * directory or not found
69 * @throws BasePathReadProtectedException If $templateBasePath is
72 public final static function createMailTemplateEngine (ManageableApplication $appInstance) {
74 $tplInstance = new MailTemplateEngine();
76 // Get language and file I/O instances from application
77 $langInstance = $appInstance->getLanguageInstance();
78 $ioInstance = $appInstance->getFileIoInstance();
80 // Determine base path
81 $templateBasePath = $tplInstance->getConfigInstance()->getConfigEntry('application_base_path') . $appInstance->getRequestInstance()->getRequestElement('app') . '/';
83 // Is the base path valid?
84 if (empty($templateBasePath)) {
86 throw new BasePathIsEmptyException($tplInstance, self::EXCEPTION_UNEXPECTED_EMPTY_STRING);
87 } elseif (!is_string($templateBasePath)) {
89 throw new InvalidBasePathStringException(array($tplInstance, $templateBasePath), self::EXCEPTION_INVALID_STRING);
90 } elseif (!is_dir($templateBasePath)) {
92 throw new BasePathIsNoDirectoryException(array($tplInstance, $templateBasePath), self::EXCEPTION_INVALID_PATH_NAME);
93 } elseif (!is_readable($templateBasePath)) {
95 throw new BasePathReadProtectedException(array($tplInstance, $templateBasePath), self::EXCEPTION_READ_PROTECED_PATH);
98 // Get configuration instance
99 $configInstance = FrameworkConfiguration::getInstance();
102 $tplInstance->setTemplateBasePath($templateBasePath);
104 // Set the language and IO instances
105 $tplInstance->setLanguageInstance($langInstance);
106 $tplInstance->setFileIoInstance($ioInstance);
108 // Set template extensions
109 $tplInstance->setRawTemplateExtension($configInstance->getConfigEntry('raw_template_extension'));
110 $tplInstance->setCodeTemplateExtension($configInstance->getConfigEntry('code_template_extension'));
112 // Absolute output path for compiled templates
113 $tplInstance->setCompileOutputPath($configInstance->getConfigEntry('base_path') . $configInstance->getConfigEntry('compile_output_path'));
115 // Return the prepared instance
120 * Getter for current main node
122 * @return $currMainNode Current main node
124 public final function getCurrMainNode () {
125 return $this->currMainNode;
129 * Getter for main node array
131 * @return $mainNodes Array with valid main node names
133 public final function getMainNodes () {
134 return $this->mainNodes;
138 * Getter for sub node array
140 * @return $subNodes Array with valid sub node names
142 public final function getSubNodes () {
143 return $this->subNodes;
147 * Handles the start element of an XML resource
149 * @param $resource XML parser resource (currently ignored)
150 * @param $element The element we shall handle
151 * @param $attributes All attributes
153 * @throws InvalidXmlNodeException If an unknown/invalid XML node name was found
155 protected function startElement ($resource, $element, array $attributes) {
156 // Initial method name which will never be called...
157 $methodName = 'initEmail';
159 // Make the element name lower-case
160 $element = strtolower($element);
162 // Is the element a main node?
163 //* DEBUG: */ echo "START: >".$element."<<br />\n";
164 if (in_array($element, $this->getMainNodes())) {
165 // Okay, main node found!
166 $methodName = 'setEmail' . $this->convertToClassName($element);
167 } elseif (in_array($element, $this->getSubNodes())) {
169 $methodName = 'setEmailProperty' . $this->convertToClassName($element);
170 } elseif ($element != 'text-mail') {
171 // Invalid node name found
172 throw new InvalidXmlNodeException(array($this, $element, $attributes), XmlParser::EXCEPTION_XML_NODE_UNKNOWN);
176 //* DEBUG: */ echo "call: ".$methodName."<br />\n";
177 call_user_func_array(array($this, $methodName), $attributes);
181 * Ends the main or sub node by sending out the gathered data
183 * @param $resource An XML resource pointer (currently ignored)
184 * @param $nodeName Name of the node we want to finish
186 * @throws XmlNodeMismatchException If current main node mismatches the closing one
188 protected function endElement ($resource, $nodeName) {
189 // Make all lower-case
190 $nodeName = strtolower($nodeName);
192 // Does this match with current main node?
193 //* DEBUG: */ echo "END: >".$nodeName."<<br />\n";
194 if (($nodeName != $this->getCurrMainNode()) && (in_array($nodeName, $this->getMainNodes()))) {
196 throw new XmlNodeMismatchException (array($this, $nodeName, $this->getCurrMainNode()), XmlParser::EXCEPTION_XML_NODE_MISMATCH);
197 } elseif (in_array($nodeName, $this->getSubNodes())) {
198 // Silently ignore sub nodes
202 // Construct method name
203 $methodName = 'finish' . $this->convertToClassName($nodeName);
205 // Call the corresponding method
206 call_user_func_array(array($this, $methodName), array());
210 * Adds the message text to the template engine
212 * @param $resource XML parser resource (currently ignored)
213 * @param $characters Characters to handle
216 protected function characterHandler ($resource, $characters) {
217 // Trim all spaces away
218 $characters = trim($characters);
220 // Is this string empty?
221 if (empty($characters)) {
222 // Then skip it silently
226 // Add the message now
227 $this->assignVariable('message', $characters);
231 * Intializes the mail
234 * @todo Add cache creation here
236 private function initEmail () {
241 * Setter for mail data node
244 * @todo Should we call back the mailer class here?
246 private function setEmailMailData () {
247 // Set current main node
248 $this->currMainNode = 'mail-data';
252 * Setter for sender address property
254 * @param $senderAddress Sender address to set in email
257 private function setEmailPropertySenderAddress ($senderAddress) {
258 // Set the template variable
259 $this->assignVariable('sender', $senderAddress);
263 * Setter for recipient address property
265 * @param $recipientAddress Recipient address to set in email
268 private function setEmailPropertyRecipientAddress ($recipientAddress) {
269 // Set the template variable
270 $this->assignVariable('recipient', $recipientAddress);
274 * Setter for subject line property
276 * @param $subjectLine Subject line to set in email
279 private function setEmailPropertySubjectLine ($subjectLine) {
280 // Set the template variable
281 $this->assignVariable('subject', $subjectLine);
285 * Method stub to avoid output
289 private function setEmailPropertyMessage () {
294 * Gets the template variable "message", stores it back as raw template data
295 * and compiles all variables so the mail message got prepared for output
299 private function finishMailData () {
300 // Get the message and set it as new raw template data back
301 $message = $this->readVariable('message');
302 $this->setRawTemplateData($message);
304 // Get some variables to compile
305 //$sender = $this->compileRawCode($this->readVariable('sender'));
306 //$this->assignVariable('sender', $sender);
308 // Then compile all variables
309 $this->compileVariables();
313 * Invokes the final mail process
317 private function finishTextMail () {
318 $this->getMailerInstance()->invokeMailDelivery();
322 * Getter for image cache file (FQFN)
324 * @return $fqfn Full-qualified file name of the image cache
327 public function getMailCacheFqfn () {
330 $this->debugBackTrace();
337 * Setter for mailer instance
339 * @param $mailerInstance A mailer instance
342 public final function setMailerInstance (DeliverableMail $mailerInstance) {
343 $this->mailerInstance = $mailerInstance;
347 * Getter for mailer instance
349 * @return $mailerInstance A mailer instance
351 protected final function getMailerInstance () {
352 return $this->mailerInstance;
356 * Outputs the mail to the world. This should only the mailer debug class do!
358 * @param $responseInstance An instance of a Responseable class
361 public function transferToResponse (Responseable $responseInstance) {
362 $responseInstance->writeToBody($this->getCompiledData());