2020-06-26 09:00:22 -06:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include_once __DIR__ . '/vendor/autoload.php';
|
|
|
|
use Pagerange\Markdown\MetaParsedown;
|
2020-06-28 15:27:37 -06:00
|
|
|
include_once 'server/functions.php';
|
2020-06-26 09:00:22 -06:00
|
|
|
|
|
|
|
// Init router
|
|
|
|
$router = new AltoRouter();
|
|
|
|
|
2020-07-01 18:36:15 -06:00
|
|
|
// Init templating
|
|
|
|
$templates = new League\Plates\Engine('views');
|
|
|
|
|
2020-06-26 09:00:22 -06:00
|
|
|
// Router mapping
|
|
|
|
$router->map('GET', '/', function() {}, 'index');
|
2020-06-28 16:12:44 -06:00
|
|
|
$router->map('GET', '/guides', function() {}, 'guides');
|
|
|
|
$router->map('GET', '/guides/[:id]', function() {}, 'guideId');
|
2020-07-02 14:39:56 -06:00
|
|
|
$router->map('GET', '/util/qr/[:fp]', function() {}, 'util_qr');
|
2020-07-01 18:36:15 -06:00
|
|
|
$router->map('GET', '/util/[:id]', function() {}, 'util');
|
2020-06-28 16:12:44 -06:00
|
|
|
$router->map('GET', '/faq', function() {}, 'faq');
|
2020-06-26 09:00:22 -06:00
|
|
|
$router->map('GET', '/verify', function() {}, 'verify');
|
|
|
|
$router->map('GET', '/encrypt', function() {}, 'encrypt');
|
|
|
|
$router->map('GET', '/proofs', function() {}, 'proofs');
|
2020-06-28 15:58:31 -06:00
|
|
|
$router->map('GET', '/verify/hkp/[**:uid]', function() {}, 'verifyHKP');
|
2020-06-28 15:57:55 -06:00
|
|
|
$router->map('GET', '/verify/wkd/[**:uid]', function() {}, 'verifyWKD');
|
2020-07-05 07:04:12 -06:00
|
|
|
$router->map('GET', '/verify/keybase/[:uid]/[:fp]', function() {}, 'verifyKeybase');
|
2020-07-01 18:36:15 -06:00
|
|
|
$router->map('GET', '/verify/[**:uid]', function() {}, 'verifyAUTO');
|
2020-07-05 07:04:12 -06:00
|
|
|
$router->map('GET', '/encrypt/hkp/[**:uid]', function() {}, 'encryptHKP');
|
|
|
|
$router->map('GET', '/encrypt/wkd/[**:uid]', function() {}, 'encryptWKD');
|
|
|
|
$router->map('GET', '/encrypt/keybase/[:uid]/[:fp]', function() {}, 'encryptKeybase');
|
2020-07-01 18:36:15 -06:00
|
|
|
$router->map('GET', '/encrypt/[**:uid]', function() {}, 'encryptAUTO');
|
2020-07-05 07:04:12 -06:00
|
|
|
$router->map('GET', '/proofs/hkp/[**:uid]', function() {}, 'proofsHKP');
|
|
|
|
$router->map('GET', '/proofs/wkd/[**:uid]', function() {}, 'proofsWKD');
|
2020-07-01 18:36:15 -06:00
|
|
|
$router->map('GET', '/proofs/[**:uid]', function() {}, 'proofsAUTO');
|
2020-06-28 16:14:21 -06:00
|
|
|
$router->map('GET', '/hkp/[**:uid]', function() {}, 'profileHKP');
|
2020-06-28 16:09:31 -06:00
|
|
|
$router->map('GET', '/wkd/[**:uid]', function() {}, 'profileWKD');
|
2020-07-05 07:04:12 -06:00
|
|
|
$router->map('GET', '/keybase/[:uid]/[:fp]', function() {}, 'profileKeybase');
|
2020-06-28 16:12:44 -06:00
|
|
|
$router->map('GET', '/[**:uid]', function() {}, 'profile');
|
2020-06-26 09:00:22 -06:00
|
|
|
|
|
|
|
// Router matching
|
|
|
|
$match = $router->match();
|
|
|
|
|
|
|
|
// Render the appropriate route
|
|
|
|
if(is_array($match) && is_callable($match['target'])) {
|
|
|
|
switch ($match['name']) {
|
|
|
|
case 'index':
|
2020-07-01 18:36:15 -06:00
|
|
|
echo $templates->render('index');
|
2020-06-26 09:00:22 -06:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'verify':
|
2020-07-01 18:36:15 -06:00
|
|
|
echo $templates->render('verify', ['title' => 'Verify — ', 'mode' => 'auto']);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'verifyAUTO':
|
|
|
|
echo $templates->render('verify', ['title' => 'Verify — ', 'mode' => 'auto', 'auto_input' => $match['params']['uid']]);
|
|
|
|
break;
|
|
|
|
|
2020-06-28 15:27:37 -06:00
|
|
|
case 'verifyHKP':
|
2020-07-01 18:36:15 -06:00
|
|
|
echo $templates->render('verify', ['title' => 'Verify — ', 'mode' => 'hkp', 'hkp_input' => $match['params']['uid']]);
|
2020-06-28 15:27:37 -06:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'verifyWKD':
|
2020-07-01 18:36:15 -06:00
|
|
|
echo $templates->render('verify', ['title' => 'Verify — ', 'mode' => 'wkd', 'wkd_input' => $match['params']['uid']]);
|
2020-06-26 09:00:22 -06:00
|
|
|
break;
|
|
|
|
|
2020-07-05 07:04:12 -06:00
|
|
|
case 'verifyKeybase':
|
|
|
|
echo $templates->render('verify', ['title' => 'Verify — ', 'mode' => 'keybase', 'keybase_username' => htmlspecialchars($match['params']['uid']), 'keybase_fingerprint' => htmlspecialchars($match['params']['fp'])]);
|
|
|
|
break;
|
|
|
|
|
2020-06-26 09:00:22 -06:00
|
|
|
case 'encrypt':
|
2020-07-01 18:36:15 -06:00
|
|
|
echo $templates->render('encrypt', ['title' => 'Encrypt — ', 'mode' => 'auto']);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'encryptAUTO':
|
|
|
|
echo $templates->render('encrypt', ['title' => 'Encrypt — ', 'mode' => 'auto', 'auto_input' => $match['params']['uid']]);
|
|
|
|
break;
|
|
|
|
|
2020-06-28 15:27:37 -06:00
|
|
|
case 'encryptHKP':
|
2020-07-01 18:36:15 -06:00
|
|
|
echo $templates->render('encrypt', ['title' => 'Encrypt — ', 'mode' => 'hkp', 'hkp_input' => $match['params']['uid']]);
|
2020-06-28 15:27:37 -06:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'encryptWKD':
|
2020-07-01 18:36:15 -06:00
|
|
|
echo $templates->render('encrypt', ['title' => 'Encrypt — ', 'mode' => 'wkd', 'wkd_input' => $match['params']['uid']]);
|
2020-06-26 09:00:22 -06:00
|
|
|
break;
|
|
|
|
|
2020-07-05 07:04:12 -06:00
|
|
|
case 'encryptKeybase':
|
|
|
|
echo $templates->render('encrypt', ['title' => 'Encrypt — ', 'mode' => 'keybase', 'keybase_username' => htmlspecialchars($match['params']['uid']), 'keybase_fingerprint' => htmlspecialchars($match['params']['fp'])]);
|
|
|
|
break;
|
|
|
|
|
2020-06-26 09:00:22 -06:00
|
|
|
case 'proofs':
|
2020-07-01 18:36:15 -06:00
|
|
|
echo $templates->render('proofs', ['title' => 'Proofs — ', 'mode' => 'auto']);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'proofsAUTO':
|
|
|
|
echo $templates->render('proofs', ['title' => 'Proofs — ', 'mode' => 'auto', 'auto_input' => $match['params']['uid']]);
|
|
|
|
break;
|
|
|
|
|
2020-06-28 15:27:37 -06:00
|
|
|
case 'proofsHKP':
|
2020-07-01 18:36:15 -06:00
|
|
|
echo $templates->render('proofs', ['title' => 'Proofs — ', 'mode' => 'hkp', 'hkp_input' => $match['params']['uid']]);
|
2020-06-28 15:27:37 -06:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'proofsWKD':
|
2020-07-01 18:36:15 -06:00
|
|
|
echo $templates->render('proofs', ['title' => 'Proofs — ', 'mode' => 'wkd', 'wkd_input' => $match['params']['uid']]);
|
2020-06-26 09:00:22 -06:00
|
|
|
break;
|
2020-06-26 09:33:39 -06:00
|
|
|
|
|
|
|
case 'profile':
|
2020-07-01 18:36:15 -06:00
|
|
|
echo $templates->render('profile', ['mode' => 'auto', 'uid' => htmlspecialchars($match['params']['uid'])]);
|
2020-06-28 16:09:31 -06:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'profileHKP':
|
2020-07-01 18:36:15 -06:00
|
|
|
echo $templates->render('profile', ['mode' => 'hkp', 'uid' => htmlspecialchars($match['params']['uid'])]);
|
2020-06-28 16:09:31 -06:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'profileWKD':
|
2020-07-01 18:36:15 -06:00
|
|
|
echo $templates->render('profile', ['mode' => 'wkd', 'uid' => htmlspecialchars($match['params']['uid'])]);
|
2020-06-26 09:33:39 -06:00
|
|
|
break;
|
2020-06-27 06:51:31 -06:00
|
|
|
|
2020-07-05 07:04:12 -06:00
|
|
|
case 'profileKeybase':
|
|
|
|
echo $templates->render('profile', ['mode' => 'keybase', 'uid' => htmlspecialchars($match['params']['uid']).'/'.htmlspecialchars($match['params']['fp'])]);
|
|
|
|
break;
|
|
|
|
|
2020-06-28 12:14:31 -06:00
|
|
|
case 'guides':
|
2020-07-01 18:36:15 -06:00
|
|
|
echo $templates->render('guides');
|
2020-06-28 12:14:31 -06:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'guideId':
|
2020-07-01 07:47:14 -06:00
|
|
|
$id = htmlspecialchars($match['params']['id']);
|
2020-07-04 19:21:44 -06:00
|
|
|
if (file_exists("views/guides/$id.title.php") && file_exists("views/guides/$id.content.php")) {
|
|
|
|
echo $templates->render('guide', ['id' => $id]);
|
2020-07-01 07:49:39 -06:00
|
|
|
} else {
|
2020-07-01 18:36:15 -06:00
|
|
|
echo $templates->render("404");
|
2020-07-01 07:49:39 -06:00
|
|
|
}
|
2020-06-28 12:14:31 -06:00
|
|
|
break;
|
|
|
|
|
2020-06-29 12:58:34 -06:00
|
|
|
case 'util':
|
2020-07-01 07:47:14 -06:00
|
|
|
$id = htmlspecialchars($match['params']['id']);
|
2020-07-01 18:36:15 -06:00
|
|
|
echo $templates->render("util/$id");
|
2020-06-29 12:58:34 -06:00
|
|
|
break;
|
|
|
|
|
2020-07-02 14:39:56 -06:00
|
|
|
case 'util_qr':
|
|
|
|
$fp = htmlspecialchars($match['params']['fp']);
|
|
|
|
echo $templates->render("util/qr", ['input' => $fp]);
|
|
|
|
break;
|
|
|
|
|
2020-06-27 06:51:31 -06:00
|
|
|
case 'faq':
|
2020-07-01 18:36:15 -06:00
|
|
|
echo $templates->render("faq");
|
2020-06-27 06:51:31 -06:00
|
|
|
break;
|
2020-06-26 09:00:22 -06:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// No route was matched
|
2020-07-01 18:36:15 -06:00
|
|
|
echo $templates->render("404");
|
2020-06-26 09:00:22 -06:00
|
|
|
}
|