-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
118 lines (85 loc) · 3.42 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?php
require 'vendor/autoload.php';
use RedBean_Facade as R;
$settings = include 'settings.php';
session_cache_limiter(false);
session_start();
R::setup('mysql:host=' . $settings->db_host . ';dbname=' . $settings->db_name, $settings->db_user, $settings->db_pass);
$app = new \Slim\Slim(array(
'debug' => $settings->debug,
'view' => new \Slim\Views\Twig(),
'templates.path' => $settings->templates_path
));
$app->get('/', function() use ($app, $settings) {
$app->render('index.html', compact('settings'));
});
$app->get('/success', function() use ($app, $settings) {
$flash = $app->view()->getData('flash');
$booking = $flash['booking'];
if ($booking === NULL) {
$app->redirect('/');
}
$app->render('success.html', compact('settings'));
});
$app->post('/booking', function () use ($app, $settings) {
if ($app->request->post('username') != $settings->username
|| $app->request->post('password') != $settings->password) {
$app->response->setStatus(401);
return;
}
$booking = R::dispense('booking');
$date = new DateTime($app->request->post('date'));
$booking->number = strtoupper(base_convert($date->format('Hidm'), 10, 36));
$booking->date = $app->request->post('date');
$booking->first_name = $app->request->post('first_name');
$booking->job_type = $app->request->post('job_type');
$booking->amount = $app->request->post('amount');
$booking->amount_paid = 0;
if ($id = R::store($booking)) {
echo "Done. Booking number: {$booking->number}";
};
});
$app->get('/:booking_number', function ($booking_number) use ($app, $settings) {
if (!preg_match('/^[A-Z0-9]+$/', $booking_number)) {
$app->redirect('/' . strtoupper($booking_number));
}
$booking = R::findOne('booking', ' number = ? ORDER BY date', array($booking_number));
if (!$booking) {
$app->render('not_found.html', compact('booking_number', 'settings'), 404);
return;
}
$app->render('booking.html', compact('booking', 'settings'));
})->conditions(array('booking_number' => '[A-Za-z0-9]+'));;
$app->post('/:booking_number', function ($booking_number) use ($app, $settings) {
$booking = R::findOne('booking', ' number = ? ORDER BY date', array($booking_number));
if (!$booking) {
$app->redirect('/' . $booking_number);
}
if (!$app->request->post('terms')) {
$app->flash('error', 'You have to agree to the Terms & Conditions');
$app->redirect('/' . $booking_number);
}
Stripe::setApiKey($settings->stripe_api_key);
$token = $app->request->post('stripeToken');
try {
$charge = Stripe_Charge::create(array(
"amount" => $booking->amount * 100,
"currency" => "gbp",
"card" => $token,
"description" => $booking->first_name . ' ' . $booking->job_type)
);
} catch(Stripe_CardError $e) {
$body = $e->getJsonBody();
$app->flash('error', $body['error']['message']);
$app->redirect('/' . $booking_number);
}
$booking->amount_paid = $booking->amount;
$booking->terms = $app->request->post('terms');
R::store($booking);
$app->flash('booking', $booking);
$app->redirect('/success');
});
$app->notFound(function () use ($app, $settings) {
$app->render('404.html', compact('settings'));
});
$app->run();