-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap.php
More file actions
225 lines (171 loc) · 5.71 KB
/
bootstrap.php
File metadata and controls
225 lines (171 loc) · 5.71 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<?php
/**
* Mike Mackintosh
*/
// Load SlimAuth stuff
use JeremyKendall\Password\PasswordValidator as Auth_Validator;
use JeremyKendall\Slim\Auth\Adapter\Db\PdoAdapter as Auth_DBAdapter;
use JeremyKendall\Slim\Auth\Bootstrap as Auth_Bootstrap;
// Load Composer Autoload
require_once('vendor/autoload.php');
// Set cookies to httponly
ini_set( 'session.cookie_httponly', 1 );
// Set NYC as the default timezone
date_default_timezone_set( 'America/New_York' );
// Start session tracking
session_start();
// Try/Catch block
try{
// Init Slim
$app = new \Slim\Slim();
// Set Configurations
$app->config(array(
'debug' => true,
'templates.path' => 'views/',
'view' => new \Slim\Views\Twig(),
'cookies.encrypt' => true,
'cookies.secret_key' => '(mz nJAk1-_ 912= kakcm!9zka:!,c) =',
));
// Validator Library for Forms
$app->container->singleton('validate', function () {
return new Respect\Validation\Validator;
});
// Assign user
$app->user = (is_array($_SESSION['user']) ?
$_SESSION['user'] : ['authed' => false, 'username' => 'Guest']);
$app->twig = $app->view()->getEnvironment();
$app->twig->addGlobal('user', $app->user);
// Set security headers
$app->response()->header('X-Content-Type-Options', 'nosniff');
$app->response()->header('X-XSS-Protection', '1; mode=block');
$app->response()->header('X-Frame-Options', 'SAMEORIGIN');
/**
* Detect config.ini
*
* If config.ini exists, then`
* create the database connection
* else, error
**/
if(file_exists('config.ini')){
$config = parse_ini_file('config.ini');
$app->db = new \bakery\orm($config['host'], $config['name'],
$config['user'], $config['password'], $config['driver']);
/*$auth_adapter = new Auth_DBAdapter(
$app->db,
'users',
'email',
'authentication_token',
new Auth_Validator()
);
$authBootstrap = new Auth_Bootstrap($app, $auth_adapter, new \Bakery\Auth\Acl());
$authBootstrap->bootstrap(); */
}
else{
$app->render('status/no_database.twig');
die();
}
// Add Slim Session Middleware
$app->add(new \Slim\Middleware\SessionCookie());
// Set up default 404
///*
$app->notFound(function () use ($app) {
$app->render('404.html');
});
//*/
// Autoload Routes
foreach(
new RecursiveIteratorIterator(
new RecursiveDirectoryIterator(
'./lib/routes/'
)
) as $file){
//
if(is_file($file->getPathname())){
require_once $file->getPathname();
}
}
/**
* Generate CSFR
*
* @key is unique csrf token key
*
* returns password_hash
**/
function generate_csrf( $key = NULL ){
if(is_null($key)){
$key = substr(md5(microtime(true)), 2, 8);
}
$nonce = mcrypt_create_iv(22, MCRYPT_DEV_URANDOM);
$_SESSION["nonce_key_{$key}"] = $nonce;
return password_hash( $nonce, PASSWORD_BCRYPT, ["cost" => 13] );
}
/**
* Validate CSFR
*
* @key is unique csrf token key
*
* returns boolean true/false
**/
function validate_csrf( $key = NULL, $field='hdnonce_' ){
if(password_verify($_SESSION["nonce_key_{$key}"], $_POST[$field])){
return true;
}
return false;
}
/**
*
**/
function create_slug($slug, $hyphenate = true){
$slug = strtolower($slug);
if($hyphenate){
$slug = preg_replace("/[-\s\W]/","-",$slug);
}
return preg_replace("/[^a-z0-9-]/", "",strtolower($slug));
}
/** Login route MUST be named 'login' **/
$app->map('/login', function () use ($app) {
$username = null;
if ($app->request()->isPost()) {
if(!validate_csrf('login')){
$app->flashNow('error', 'Please try your request again.');
}
$username = $app->request->post('login');
$password = $app->request->post('authentication_token');
$result = $app->authenticator->authenticate($username, $password);
if ($result->isValid()) {
$_SESSION['user']['username'] = $username;
$_SESSION['user']['authed'] = true;
$app->redirect('/');
} else {
$messages = $result->getMessages();
$app->flashNow('error', $messages[0]);
}
}
$app->render('login.twig', array('login' => $username, "nonce" => generate_csrf('new_request')));
})->via('GET', 'POST')->name('login');
/** Logout **/
$app->get('/logout', function () use ($app) {
unset($_SESSION['user']);
$app->authenticator->logout();
$app->redirect('/');
});
/** Lets validate that Token Header first **/
$app->hook('slim.before', function() use ($app){
if( !isset($app->request->headers['X-Titan-Token']) || 'default' == $app->request->headers['X-Titan-Token']){
$app->halt(402, 'Token Required');
return;
}
});
/** Lets log **/
$app->hook('slim.after.router', function () use ($app) {
$request = $app->request;
$response = $app->response;
$app->log->debug(date('Y/M/d H:i:s - ').$response->getStatus().' - '. $request->getMethod().' '. $request->getPathInfo());
});
/** Run **/
$app->run();
}
catch(\Exception $e){
print_r($e->getMessage());
//$app->render('error.twig');
}