Removed most Google Account management and mailing stuff.
This commit is contained in:
parent
ba7520caad
commit
608854b57d
@ -1,17 +1,15 @@
|
|||||||
{
|
{
|
||||||
"name": "Fake Reservation System",
|
"name": "mbirth/FRS",
|
||||||
"description": "Send mails with markup to yourself to trigger Google Now features",
|
"description": "Fake Reservation System - Send mails with markup to yourself to trigger Google Now features",
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=5.3.0",
|
"php": ">=5.6.0",
|
||||||
"mustache/mustache": "~2.10",
|
"mustache/mustache": "~2.11",
|
||||||
"bower-asset/material-design-lite": "*",
|
"bower-asset/material-design-lite": "*",
|
||||||
"npm-asset/mdl-ext": "*",
|
"npm-asset/mdl-ext": "*"
|
||||||
"pear/mail_mime": "^1.10",
|
|
||||||
"google/apiclient": "^2.0.0@RC"
|
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"phpunit/phpunit": "4.*",
|
"phpunit/phpunit": "4.*",
|
||||||
"npm-asset/coffee-script": "*"
|
"npm-asset/coffee-script": "~1.12"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"classmap": ["lib/"]
|
"classmap": ["lib/"]
|
||||||
|
161
index.php
161
index.php
@ -11,7 +11,6 @@ use \Frs\Output\Transport\GScriptTransport;
|
|||||||
|
|
||||||
$stdout = new StdoutTransport();
|
$stdout = new StdoutTransport();
|
||||||
$ho = new HtmlOutput($stdout, dirname(__FILE__) . '/templates');
|
$ho = new HtmlOutput($stdout, dirname(__FILE__) . '/templates');
|
||||||
$ho->setTemplateVar('session_time_left', 0);
|
|
||||||
|
|
||||||
$sm = new SessionManager();
|
$sm = new SessionManager();
|
||||||
|
|
||||||
@ -21,115 +20,75 @@ if (isset($_GET['action'])) {
|
|||||||
}
|
}
|
||||||
$ho->setTemplateVar('action', $action);
|
$ho->setTemplateVar('action', $action);
|
||||||
$ho->setTemplateVar('action_uc', ucwords($action));
|
$ho->setTemplateVar('action_uc', ucwords($action));
|
||||||
|
$ho->setTemplateVar('date_today', date('Y-m-d'));
|
||||||
|
|
||||||
if (isset($_GET['code']) && $_GET['code']) {
|
|
||||||
$sm->authAndRedirect($_GET['code']); // exits
|
|
||||||
}
|
|
||||||
|
|
||||||
$tpl_done = false;
|
|
||||||
|
|
||||||
// route pages that work with and without login
|
|
||||||
switch ($action) {
|
switch ($action) {
|
||||||
case 'logout':
|
|
||||||
$sm->logoutAndRedirect(); // exits
|
|
||||||
case 'faq':
|
case 'faq':
|
||||||
$ho->setTemplate('faq_html');
|
$ho->setTemplate('faq_html');
|
||||||
$tpl_done = true;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'send':
|
case 'send':
|
||||||
// Store input in session, in case the token timed out
|
// Store input in session, in case something happens
|
||||||
$sm->storeFormData($_POST['form_type']);
|
$sm->storeFormData($_POST['form_type']);
|
||||||
break;
|
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'];
|
||||||
|
|
||||||
if (!$tpl_done && $sm->hasSessionToken()) {
|
$data = $ho->getTemplateVars();
|
||||||
// Authenticated
|
$data['email_date'] = date('r');
|
||||||
$created = $_SESSION['access_token']['created'];
|
$data = array_merge($data, $fields);
|
||||||
$expires = $_SESSION['access_token']['expires_in'];
|
$mo->setTemplateVars($data);
|
||||||
$expire_stamp = intval($created) + intval($expires);
|
$mo->setTemplateVar('form_type', $form_type);
|
||||||
$ho->setTemplateVar('session_created', $created);
|
$mo->setTemplateVar('form_type_uc', ucwords($form_type));
|
||||||
$ho->setTemplateVar('session_expires', $expires);
|
$mo->setSubject('[FRS] ' . ucwords($form_type) . ' Reservation');
|
||||||
$ho->setTemplateVar('session_time_left', ($expire_stamp) - time());
|
$mo->addRecipient($data['user']['email'], $data['user']['name_first'] . ' ' . $data['user']['name_last']);
|
||||||
|
$mail_sent = $mo->send();
|
||||||
try {
|
if ($mail_sent) {
|
||||||
$sm->verifySession();
|
$ho->setTemplate('mail_sent_html');
|
||||||
} catch (Exception $e) {
|
} else {
|
||||||
echo $e->getMessage();
|
$ho->setTemplate('mail_failed_html');
|
||||||
#session_destroy();
|
|
||||||
die();
|
|
||||||
}
|
|
||||||
|
|
||||||
$userInfo = $sm->getUserinfo();
|
|
||||||
$ho->setTemplateVar('user', $userInfo);
|
|
||||||
$ho->setTemplateVar('date_today', date('Y-m-d'));
|
|
||||||
|
|
||||||
// Check $userdata->verifiedEmail and deny if not verified.
|
|
||||||
if (!$userInfo['verifiedEmail']) {
|
|
||||||
$ho->setTemplate('notverified_html');
|
|
||||||
$tpl_done = true;
|
|
||||||
} else {
|
|
||||||
switch ($action) {
|
|
||||||
case 'send':
|
|
||||||
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;
|
|
||||||
default:
|
|
||||||
if (in_array($action, array('event', 'flight', 'hotel', 'restaurant', 'rentalcar', 'train', 'bus'))) {
|
|
||||||
$ho->setTemplate($action . '_html');
|
|
||||||
$tpl_done = true;
|
|
||||||
$skey = 'form_' . $action;
|
|
||||||
|
|
||||||
$placeholders = array(
|
|
||||||
'USER_NAME' => $userInfo['name_first'] . ' ' . $userInfo['name_last'],
|
|
||||||
'USER_EMAIL' => $userInfo['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);
|
|
||||||
}
|
|
||||||
if (!$tpl_done) {
|
|
||||||
$ho->setTemplate('loggedin_html');
|
|
||||||
$tpl_done = true;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
break;
|
||||||
} elseif (!$tpl_done) {
|
|
||||||
// Not authenticated
|
case 'event':
|
||||||
$ho->setTemplateVar('auth_url', $sm->getAuthUrl());
|
case 'flight':
|
||||||
$ho->setTemplate('index_html');
|
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();
|
$ho->send();
|
||||||
|
@ -1,16 +0,0 @@
|
|||||||
window.page_load_time = Math.floor(Date.now() / 1000);
|
|
||||||
window.expire_time = window.page_load_time + window.seconds_left;
|
|
||||||
|
|
||||||
window.updateTimeLeft = ->
|
|
||||||
now = Math.floor Date.now() / 1000
|
|
||||||
time_left = window.expire_time - now
|
|
||||||
obj = document.getElementById 'session_expires'
|
|
||||||
minutes = Math.floor time_left / 60
|
|
||||||
seconds = time_left % 60
|
|
||||||
if minutes+seconds > 0
|
|
||||||
obj.innerHTML = ' (' + ('0' + minutes).slice(-2) + ':' + ('0' + seconds).slice(-2) + ')'
|
|
||||||
else
|
|
||||||
obj?.innerHTML = ''
|
|
||||||
window.clearInterval window.updateTimer
|
|
||||||
|
|
||||||
window.updateTimer = window.setInterval 'updateTimeLeft();', 1000
|
|
@ -1,73 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Frs\Output\Transport;
|
|
||||||
|
|
||||||
class GmailTransport implements TransportInterface
|
|
||||||
{
|
|
||||||
private $gms;
|
|
||||||
private $recipients;
|
|
||||||
private $subject;
|
|
||||||
private $headers;
|
|
||||||
private $content;
|
|
||||||
|
|
||||||
public function __construct(\Frs\SessionManager $sm)
|
|
||||||
{
|
|
||||||
$this->gms = new \Google_Service_Gmail($sm->getGoogleClient());
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setContent($content)
|
|
||||||
{
|
|
||||||
$this->content = $content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setParam($key, $value)
|
|
||||||
{
|
|
||||||
switch ($key) {
|
|
||||||
case 'to':
|
|
||||||
$this->recipients = $value;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'subject':
|
|
||||||
$this->subject = $value;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'headers':
|
|
||||||
$this->headers = $value;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Base64 encoding with URL/filename safe characters.
|
|
||||||
* Taken from http://php.net/manual/en/function.base64-encode.php#103849
|
|
||||||
*
|
|
||||||
* @param string $data Date to encode
|
|
||||||
* @return string Encoded data
|
|
||||||
*/
|
|
||||||
private function base64UrlEncode($data)
|
|
||||||
{
|
|
||||||
return rtrim(strtr(base64_encode($data), '+/', '-_'), '=');
|
|
||||||
}
|
|
||||||
|
|
||||||
public function transmit()
|
|
||||||
{
|
|
||||||
$mime = new \Mail_mime();
|
|
||||||
$mime->setParam('html_charset', 'utf-8');
|
|
||||||
$mime->setParam('html_encoding', '8bit');
|
|
||||||
$mime->addTo($this->recipients);
|
|
||||||
$mime->setHTMLBody($this->content);
|
|
||||||
$mime->setSubject($this->subject);
|
|
||||||
|
|
||||||
$message_body = $mime->getMessage(null, null, $this->headers);
|
|
||||||
$encoded_message = $this->base64UrlEncode($message_body);
|
|
||||||
|
|
||||||
$postBody = new \Google_Service_Gmail_Message();
|
|
||||||
$postBody->setRaw($encoded_message);
|
|
||||||
|
|
||||||
$msg = $this->gms->users_messages->send('me', $postBody);
|
|
||||||
if ($msg->getId()) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,46 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Frs\Output\Transport;
|
|
||||||
|
|
||||||
class MailTransport implements TransportInterface
|
|
||||||
{
|
|
||||||
private $recipients;
|
|
||||||
private $subject;
|
|
||||||
private $headers;
|
|
||||||
private $content;
|
|
||||||
|
|
||||||
public function setContent($content)
|
|
||||||
{
|
|
||||||
$this->content = $content;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setParam($key, $value)
|
|
||||||
{
|
|
||||||
switch ($key) {
|
|
||||||
case 'to':
|
|
||||||
$this->recipients = $value;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'subject':
|
|
||||||
$this->subject = $value;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'headers':
|
|
||||||
$this->setHeaders($value);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private function setHeaders($headers)
|
|
||||||
{
|
|
||||||
$this->headers = '';
|
|
||||||
foreach ($headers as $key=>$value) {
|
|
||||||
$this->headers .= $key . ': ' . $value . "\r\n";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function transmit()
|
|
||||||
{
|
|
||||||
return mail($this->recipients, $this->subject, $this->content, $this->headers);
|
|
||||||
}
|
|
||||||
}
|
|
@ -4,97 +4,14 @@ namespace Frs;
|
|||||||
|
|
||||||
class SessionManager
|
class SessionManager
|
||||||
{
|
{
|
||||||
private $client;
|
|
||||||
private $googleAuthValid;
|
|
||||||
|
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
$this->googleAuthValid = false;
|
|
||||||
$this->client = new \Google_Client();
|
|
||||||
$this->client->setApplicationName('Fake Reservation System');
|
|
||||||
$this->client->setAuthConfigFile('client_secret.json');
|
|
||||||
$this->client->addScope(\Google_Service_Oauth2::USERINFO_EMAIL);
|
|
||||||
$this->client->addScope(\Google_Service_Gmail::GMAIL_SEND);
|
|
||||||
|
|
||||||
session_start();
|
session_start();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getAuthUrl()
|
|
||||||
{
|
|
||||||
return $this->client->createAuthUrl();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function authAndRedirect($authCode)
|
|
||||||
{
|
|
||||||
// Validate OAuth2 result, set access token and redirect to self
|
|
||||||
$this->client->authenticate($authCode);
|
|
||||||
$_SESSION['access_token'] = $this->client->getAccessToken();
|
|
||||||
$this->redirectAndExit();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function logoutAndRedirect()
|
|
||||||
{
|
|
||||||
// Delete session and redirect to self
|
|
||||||
#$this->client->setAccessToken($_SESSION['access_token']);
|
|
||||||
#$this->client->revokeToken(); // removed granted permissions from account
|
|
||||||
$_SESSION = array();
|
|
||||||
if (ini_get('session.use_cookies')) {
|
|
||||||
$params = session_get_cookie_params();
|
|
||||||
setcookie(session_name(), '', time()-42000, $params['path'], $params['domain'], $params['secure'], $params['httponly']);
|
|
||||||
}
|
|
||||||
session_destroy();
|
|
||||||
$this->redirectAndExit();
|
|
||||||
}
|
|
||||||
|
|
||||||
private function redirectAndExit()
|
|
||||||
{
|
|
||||||
header('Location: ' . $this->client->getRedirectUri());
|
|
||||||
exit(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function storeFormData($form_type)
|
public function storeFormData($form_type)
|
||||||
{
|
{
|
||||||
$skey = 'form_' . $form_type;
|
$skey = 'form_' . $form_type;
|
||||||
$_SESSION[$skey] = $_POST;
|
$_SESSION[$skey] = $_POST;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function hasSessionToken()
|
|
||||||
{
|
|
||||||
return (isset($_SESSION['access_token']) && $_SESSION['access_token']);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function verifySession()
|
|
||||||
{
|
|
||||||
$this->client->setAccessToken($_SESSION['access_token']);
|
|
||||||
if ($this->client->isAccessTokenExpired()) {
|
|
||||||
throw new \Exception('Token expired. <a href="' . $this->getAuthUrl() . '">Request new one</a>.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->googleAuthValid = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getUserinfo()
|
|
||||||
{
|
|
||||||
if (!$this->googleAuthValid) {
|
|
||||||
return array();
|
|
||||||
}
|
|
||||||
$oauth = new \Google_Service_Oauth2($this->client);
|
|
||||||
$userdata = $oauth->userinfo->get();
|
|
||||||
|
|
||||||
$result = array(
|
|
||||||
'name_first' => $userdata->givenName,
|
|
||||||
'name_last' => $userdata->familyName,
|
|
||||||
'name' => $userdata->name,
|
|
||||||
'picture' => $userdata->picture,
|
|
||||||
'email' => $userdata->email,
|
|
||||||
'gender' => $userdata->gender,
|
|
||||||
'verifiedEmail' => $userdata->verifiedEmail,
|
|
||||||
);
|
|
||||||
return $result;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getGoogleClient()
|
|
||||||
{
|
|
||||||
return $this->client;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -8,11 +8,49 @@
|
|||||||
|
|
||||||
<h3>Frequently Asked Questions</h3>
|
<h3>Frequently Asked Questions</h3>
|
||||||
|
|
||||||
|
<h4>What is this?</h4>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Some time ago, Google introduced features to highlight special items from your
|
||||||
|
mails, like hotel reservations, event tickets, car rentals and more.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Later, they added features to Google Now on Android smartphones so that you
|
||||||
|
get notified when to leave to catch your flight or event … or how to get to
|
||||||
|
your booked hotel and when the checkin opens.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
And recently, they even added a feature to Google Search, that shows your
|
||||||
|
booked items when you search for similar things. All that from a mail in your
|
||||||
|
inbox.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
A nice overview with sample images can be found on Google's Developer pages:<br/>
|
||||||
|
<a href="https://developers.google.com/gmail/markup/">https://developers.google.com/gmail/markup/</a>.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
But while the needed data is easy to be added to confirmation mails, many
|
||||||
|
companies didn't do this yet. And sometimes, you don't even get any confirmation
|
||||||
|
by email. To make those things show up in Google Now, I made this tool.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h4>What does it do?</h4>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
You can select a type of reservation, fill in all your details and have it sent to the mail address
|
||||||
|
of your account. We will add all the neccessary markup to the mail so that Google Now can
|
||||||
|
recognise it. This will make the events/reservations show up when you need them.
|
||||||
|
</p>
|
||||||
|
|
||||||
<h4>What happens to my data?</h4>
|
<h4>What happens to my data?</h4>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Your data won't be stored on our servers. It is solely used to compose the mail.
|
Your data won't be stored on our servers. It is solely used to compose the mail. After the mail is
|
||||||
After the mail is sent, your data is deleted from our servers.
|
sent, your data is deleted from our servers.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,58 +0,0 @@
|
|||||||
{{> html_head}}
|
|
||||||
{{> mdl_head}}
|
|
||||||
{{> mdl_content_head}}
|
|
||||||
|
|
||||||
<div class="frs-crumbs mdl-color-text--grey-500">
|
|
||||||
<a href="./">Fake Reservation System</a> > Welcome
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h3>What is this?</h3>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
Some time ago, Google introduced features to highlight special items from your
|
|
||||||
mails, like hotel reservations, event tickets, car rentals and more.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
Later, they added features to Google Now on Android smartphones so that you
|
|
||||||
get notified when to leave to catch your flight or event … or how to get to
|
|
||||||
your booked hotel and when the checkin opens.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
And recently, they even added a feature to Google Search, that shows your
|
|
||||||
booked items when you search for similar things. All that from a mail in your
|
|
||||||
inbox.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
A nice overview with sample images can be found on Google's Developer pages:<br/>
|
|
||||||
<a href="https://developers.google.com/gmail/markup/">https://developers.google.com/gmail/markup/</a>.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
But while the needed data is easy to be added to confirmation mails, many
|
|
||||||
companies didn't do this yet. And sometimes, you don't even get any confirmation
|
|
||||||
by email. To make those things show up in Google Now, I made this tool.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
<h3>What does it do?</h3>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
After login with your Google account, you can select a type of reservation,
|
|
||||||
fill in all your details and send it to the mail address of your account.
|
|
||||||
We will add all the neccessary markup to the mail so that Google Now can
|
|
||||||
recognise it. This will make the events/reservations show up when you need
|
|
||||||
them.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
To begin, please sign in:<br/>
|
|
||||||
<a href="{{auth_url}}"><img id="signin-button" src="img/btn_google_signin_dark_normal_web.png"/></a>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
{{> mdl_content_foot}}
|
|
||||||
{{> mdl_foot}}
|
|
||||||
<a href="https://github.com/mbirth/php-frs/" target="_blank" id="view-source" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-color--accent mdl-color-text--accent-contrast">View Source</a>
|
|
||||||
{{> html_foot}}
|
|
@ -1,21 +0,0 @@
|
|||||||
{{> html_head}}
|
|
||||||
{{> mdl_head}}
|
|
||||||
{{> mdl_content_head}}
|
|
||||||
|
|
||||||
<div class="frs-crumbs mdl-color-text--grey-500">
|
|
||||||
<a href="./">Fake Reservation System</a> > Logged in
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h3>Your email address is not verified!</h3>
|
|
||||||
<p>
|
|
||||||
To use this system, you must verify your Google email address first!
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
You can find more information at this address:<br/>
|
|
||||||
<a href="https://support.google.com/accounts/answer/63950">https://support.google.com/accounts/answer/63950</a>.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
{{> mdl_content_foot}}
|
|
||||||
{{> mdl_foot}}
|
|
||||||
{{> html_foot}}
|
|
@ -5,22 +5,15 @@
|
|||||||
<div class="mdl-layout-spacer"></div>
|
<div class="mdl-layout-spacer"></div>
|
||||||
<!-- Navigation -->
|
<!-- Navigation -->
|
||||||
<nav class="mdl-navigation">
|
<nav class="mdl-navigation">
|
||||||
{{# user.name_first}}
|
<span class="mdl-navigation__link mdl-color-text--grey-800">Hello, User!</span>
|
||||||
<span class="mdl-navigation__link mdl-color-text--grey-800">Hello, {{user.name_first}}!<span id="session_expires"></span></span>
|
<!--button id="frs-menu-top" class="mdl-button mdl-js-button mdl-button--icon">
|
||||||
{{/ user.name_first}}
|
|
||||||
<button id="frs-menu-top" class="mdl-button mdl-js-button mdl-button--icon">
|
|
||||||
<span class="material-icons">more_vert</span>
|
<span class="material-icons">more_vert</span>
|
||||||
</button>
|
</button>
|
||||||
<ul class="mdl-menu mdl-menu--bottom-right mdl-js-menu mdl-js-ripple-effect" for="frs-menu-top">
|
<ul class="mdl-menu mdl-menu--bottom-right mdl-js-menu mdl-js-ripple-effect" for="frs-menu-top">
|
||||||
<li id="frs-menuitem-logout" class="mdl-menu__item" onclick="location.href='?action=logout';">Logout</li>
|
<li id="frs-menuitem-logout" class="mdl-menu__item" onclick="location.href='?action=logout';">Logout</li>
|
||||||
</ul>
|
</ul-->
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
<div class="frs-ribbon"></div>
|
<div class="frs-ribbon"></div>
|
||||||
<main class="frs-main mdl-layout__content">
|
<main class="frs-main mdl-layout__content">
|
||||||
|
|
||||||
<script>
|
|
||||||
var seconds_left = {{session_time_left}};
|
|
||||||
</script>
|
|
||||||
<script src="js/session.js"></script>
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
{{> mdl_content_head}}
|
{{> mdl_content_head}}
|
||||||
|
|
||||||
<div class="frs-crumbs mdl-color-text--grey-500">
|
<div class="frs-crumbs mdl-color-text--grey-500">
|
||||||
<a href="./">Fake Reservation System</a> > Logged in
|
<a href="./">Fake Reservation System</a> > Welcome
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h3>Select the type of reservation you want to create</h3>
|
<h3>Select the type of reservation you want to create</h3>
|
||||||
@ -81,4 +81,5 @@
|
|||||||
|
|
||||||
{{> mdl_content_foot}}
|
{{> mdl_content_foot}}
|
||||||
{{> mdl_foot}}
|
{{> mdl_foot}}
|
||||||
|
<a href="https://github.com/mbirth/php-frs/" target="_blank" id="view-source" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-color--accent mdl-color-text--accent-contrast">View Source</a>
|
||||||
{{> html_foot}}
|
{{> html_foot}}
|
Reference in New Issue
Block a user