-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathindex.php
54 lines (36 loc) · 1.04 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
<?php
# Configure
require_once __DIR__ . '/../config.php';
require_once __DIR__ . '/../lib.php';
$uri = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
# Route
$docs_handler = __DIR__ . '/../../bashupload-docs/index.php';
$action = 'default';
if ( in_array($_SERVER['REQUEST_METHOD'], ['POST', 'PUT']) ) {
$action = 'upload';
}
else {
# load documentation, if we have the docs repo cloned
if ( is_file($docs_handler) ) {
$has_docs = true;
$doc = include $docs_handler;
if ( $doc ) {
$action = 'docs';
}
}
# everything else is a possible file to download
if ( !$doc && ($uri != '/') ) {
$action = 'file';
}
}
# Execute routed handler
$accept = explode(',', $_SERVER['HTTP_ACCEPT']);
if ( $_POST['json'] == 'true' ) $renderer = 'json';
else if ( in_array('text/html', $accept) ) $renderer = 'html';
else $renderer = 'txt';
$action_handler = __DIR__ . "/../actions/{$action}.php";
if ( is_file($action_handler) ) {
include $action_handler;
}
# Render
include __DIR__ . "/../render/{$renderer}.php";