Made proper template for send form. Remodelled data/templating handling.

This commit is contained in:
Markus Birth 2017-02-09 14:26:51 +01:00
parent bcec4867ac
commit 239b63ce8a
5 changed files with 76 additions and 58 deletions

View File

@ -6,7 +6,7 @@ use \Frs\FieldDefinition;
use \Frs\Output\HtmlOutput; use \Frs\Output\HtmlOutput;
use \Frs\Output\MailOutput; use \Frs\Output\MailOutput;
use \Frs\Output\Transport\StdoutTransport; use \Frs\Output\Transport\StdoutTransport;
use \Frs\Output\Transport\GScriptTransport; use \Frs\Output\Transport\NullTransport;
$stdout = new StdoutTransport(); $stdout = new StdoutTransport();
$ho = new HtmlOutput($stdout, dirname(__FILE__) . '/templates'); $ho = new HtmlOutput($stdout, dirname(__FILE__) . '/templates');
@ -25,9 +25,7 @@ switch ($action) {
break; break;
case 'send': case 'send':
echo 'This would send the mail...'; $mo = new MailOutput(new NullTransport(), dirname(__FILE__) . '/templates');
$mt = new GScriptTransport();
$mo = new MailOutput($mt, dirname(__FILE__) . '/templates');
$form_type = $_REQUEST['form_type']; $form_type = $_REQUEST['form_type'];
$mo->setTemplate('mail_' . $form_type); $mo->setTemplate('mail_' . $form_type);
$fd = new FieldDefinition($form_type); $fd = new FieldDefinition($form_type);
@ -41,13 +39,15 @@ switch ($action) {
$mo->setTemplateVars($data); $mo->setTemplateVars($data);
$mo->setTemplateVar('form_type', $form_type); $mo->setTemplateVar('form_type', $form_type);
$mo->setTemplateVar('form_type_uc', ucwords($form_type)); $mo->setTemplateVar('form_type_uc', ucwords($form_type));
$mo->setSubject('[FRS] ' . ucwords($form_type) . ' Reservation'); $mo->setSubject('[FRS] ' . ucwords($form_type) . ' Reservation'); // default subject
$mail_sent = $mo->send(); $mail_html = $mo->getRenderedOutput(); // contains headers + body
if ($mail_sent) { list($headers, $mailbody) = preg_split('/\r?\n\r?\n/', $mail_html, 2);
$ho->setTemplate('mail_sent_html'); $mo->setHeadersFromString($headers); // updates Subject line
} else {
$ho->setTemplate('mail_failed_html'); $ho->setTemplate('mail_prep_html');
} $ho->setTemplateVar('gscript_url', 'https://script.google.com/macros/s/AKfycbxVcugiTBTvWx8DK_HhuQh_vXdteir6GTXE_Anir3rfovatjQM/exec');
$ho->setTemplateVar('mail_subject', $mo->getSubject());
$ho->setTemplateVar('mail_body', $mailbody);
break; break;
case 'event': case 'event':

View File

@ -37,6 +37,16 @@ class MailOutput extends GenericOutput
$this->subject = $newSubject; $this->subject = $newSubject;
} }
/**
* Gets the currently set subject for the mail.
*
* @return string Subject currently set.
*/
public function getSubject()
{
return $this->subject;
}
/** /**
* Sets the given header $key to $value. A Subject: header sets * Sets the given header $key to $value. A Subject: header sets
* the subject via $this->setSubject(). A To: header is ignored. * the subject via $this->setSubject(). A To: header is ignored.

View File

@ -1,47 +0,0 @@
<?php
namespace Frs\Output\Transport;
class GScriptTransport implements TransportInterface
{
private $content;
private $subject;
private $headers = array();
public function __construct()
{
$this->post_url = 'https://script.google.com/macros/s/AKfycbxVcugiTBTvWx8DK_HhuQh_vXdteir6GTXE_Anir3rfovatjQM/exec';
}
public function setParam($key, $value)
{
switch ($key) {
case 'to':
// ignored
break;
case 'subject':
$this->subject = $value;
break;
case 'headers':
$this->headers = $value;
break;
}
}
public function setContent($content)
{
$this->content = $content;
}
public function transmit()
{
echo '<html><body><form method="post" action="' . $this->post_url . '">';
echo '<input type="text" name="subject" value="' . $this->subject . '"/>';
echo '<textarea name="body">' . $this->content . '</textarea>';
echo '<input type="submit" value="Send"/>';
echo '</form></body></html>';
return true;
}
}

View File

@ -0,0 +1,19 @@
<?php
namespace Frs\Output\Transport;
class NullTransport implements TransportInterface
{
public function setParam($key, $value)
{
}
public function setContent($content)
{
}
public function transmit()
{
return true;
}
}

View File

@ -0,0 +1,36 @@
{{> html_head}}
{{> mdl_head}}
{{> mdl_content_head}}
<div class="frs-crumbs mdl-color-text--grey-500">
<a href="./">Fake Reservation System</a> &gt; Send Reservation
</div>
<h3>Sending Mail</h3>
<p>
This is what will be sent to your account:
</p>
<p>
<form method="post" action="{{ gscript_url }}">
<input type="hidden" name="return_url" value="{{ return_url }}"/>
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label" style="width: 100%;">
<input class="mdl-textfield__input" type="text" required id="mail_subject" name="subject" value="{{ mail_subject }}"/>
<label class="mdl-textfield__label" for="mail_subject">Subject</label>
<span class="mdl-textfield__error">Please input a value!</span>
</div><br/>
<div class="mdl-textfield mdl-js-textfield" style="width: 100%;">
<textarea class="mdl-textfield__input" type="text" id="mail_body" rows="20" name="body">{{ mail_body }}</textarea>
<label class="mdl-textfield__label" for="mail_body">Body</label>
</div><br/>
<button type="submit" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--accent">Send</button>
</form>
</p>
{{> mdl_content_foot}}
{{> mdl_foot}}
{{> html_foot}}