This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
php-frs/index.php

95 lines
2.8 KiB
PHP

<?php
require_once __DIR__ . '/vendor' . '/autoload.php';
use \Frs\FieldDefinition;
use \Frs\SessionManager;
use \Frs\Output\HtmlOutput;
use \Frs\Output\MailOutput;
use \Frs\Output\Transport\StdoutTransport;
use \Frs\Output\Transport\GScriptTransport;
$stdout = new StdoutTransport();
$ho = new HtmlOutput($stdout, dirname(__FILE__) . '/templates');
$sm = new SessionManager();
$action = '';
if (isset($_GET['action'])) {
$action = $_GET['action'];
}
$ho->setTemplateVar('action', $action);
$ho->setTemplateVar('action_uc', ucwords($action));
$ho->setTemplateVar('date_today', date('Y-m-d'));
switch ($action) {
case 'faq':
$ho->setTemplate('faq_html');
break;
case 'send':
// Store input in session, in case something happens
$sm->storeFormData($_POST['form_type']);
echo 'This would send the mail...';
//$mt = new MailTransport($sm);
$mt = new GScriptTransport();
$mo = new MailOutput($mt, dirname(__FILE__) . '/templates');
$form_type = $_REQUEST['form_type'];
$mo->setTemplate('mail_' . $form_type);
$skey = 'form_' . $form_type;
$fd = new FieldDefinition($form_type);
$fd->setFieldValues($_SESSION[$skey]);
$fieldData = $fd->getFieldData();
$fields = $fieldData['fields'];
$data = $ho->getTemplateVars();
$data['email_date'] = date('r');
$data = array_merge($data, $fields);
$mo->setTemplateVars($data);
$mo->setTemplateVar('form_type', $form_type);
$mo->setTemplateVar('form_type_uc', ucwords($form_type));
$mo->setSubject('[FRS] ' . ucwords($form_type) . ' Reservation');
$mo->addRecipient($data['user']['email'], $data['user']['name_first'] . ' ' . $data['user']['name_last']);
$mail_sent = $mo->send();
if ($mail_sent) {
$ho->setTemplate('mail_sent_html');
} else {
$ho->setTemplate('mail_failed_html');
}
break;
case 'event':
case 'flight':
case 'hotel':
case 'restaurant':
case 'rentalcar':
case 'train':
case 'bus':
$ho->setTemplate($action . '_html');
$skey = 'form_' . $action;
$placeholders = array(
'USER_NAME' => '',
'USER_EMAIL' => '',
);
$fd = new FieldDefinition($action);
$fd->setPlaceholders($placeholders);
if (isset($_SESSION[$skey])) {
$fd->setFieldValues($_SESSION[$skey]);
}
$by_group = $fd->getGroups();
// Convert hash to list for Mustache compatibility
$by_group = array_values($by_group);
$ho->setTemplateVar('form_data', $by_group);
break;
default:
// Show welcome page
$ho->setTemplate('welcome_html');
break;
}
$ho->send();