]> CyberLeo.Net >> Repos - Github/YOURLS.git/blob - includes/load-yourls.php
Improved: all admin URLs handled by function yourls_admin_url(), which allows SSL...
[Github/YOURLS.git] / includes / load-yourls.php
1 <?php\r
2 // This file initialize everything needed for YOURLS\r
3 \r
4 // Include settings and functions\r
5 if( !file_exists(dirname(__FILE__).'/config.php') ) {\r
6         require_once (dirname(__FILE__).'/functions.php');\r
7         require_once (dirname(__FILE__).'/functions-html.php');\r
8         define('YOURLS_SITE', dirname($_SERVER['REQUEST_URI'])); // LOL. Wild guess.\r
9         yourls_die('<p class="error">Cannot find <tt>config.php</tt>.</p><p>Please read the <tt>readme.html</tt> to learn how to install YOURLS</p>');\r
10 }\r
11         \r
12 require_once (dirname(__FILE__).'/config.php');\r
13 require_once (dirname(__FILE__).'/version.php');\r
14 require_once (dirname(__FILE__).'/functions.php');\r
15 require_once (dirname(__FILE__).'/functions-baseconvert.php');\r
16 require_once (dirname(__FILE__).'/class-mysql.php');\r
17 // Load auth functions if needed\r
18 if( yourls_is_private() )\r
19         require_once( dirname(__FILE__).'/functions-auth.php' );\r
20 // Load template functions if needed\r
21 if( yourls_has_interface() )\r
22         require_once( dirname(__FILE__).'/functions-html.php' );\r
23 \r
24 // Check if config.php was properly updated for 1.4\r
25 if( !defined('YOURLS_DB_PREFIX') )\r
26         yourls_die('<p class="error">Your <tt>config.php</tt> does not contain all the required constant definitions.</p><p>Please check <tt>config-sample.php</tt> and update your config accordingly, there are new stuffs!</p>');\r
27 \r
28 \r
29 // Define constants that have not been user defined in config.php\r
30 if( !defined('YOURLS_DB_TABLE_URL') )\r
31         define('YOURLS_DB_TABLE_URL', YOURLS_DB_PREFIX.'url'); // table to store URLs\r
32 if( !defined('YOURLS_DB_TABLE_OPTIONS') )\r
33         define('YOURLS_DB_TABLE_OPTIONS', YOURLS_DB_PREFIX.'options'); // table to store options\r
34 if( !defined('YOURLS_DB_TABLE_LOG') )\r
35         define('YOURLS_DB_TABLE_LOG', YOURLS_DB_PREFIX.'log');  // table to store hits, for stats\r
36 if( !defined('YOURLS_FLOOD_DELAY_SECONDS') )\r
37         define('YOURLS_FLOOD_DELAY_SECONDS', 15 ); // minimum delay in sec before a same IP can add another URL. Note: logged in users are not throttled down.\r
38 if( !defined('YOURLS_FLOOD_IP_WHITELIST') )\r
39         define('YOURLS_FLOOD_IP_WHITELIST', '' ); // comma separated list of IPs that can bypass flood check.\r
40 if( !defined('YOURLS_COOKIE_LIFE') )\r
41         define( 'YOURLS_COOKIE_LIFE', 60*60*24*7 ); // life span of an auth cookie in seconds (60*60*24*7 = 7 days)\r
42 if( !defined('YOURLS_NONCE_LIFE') )\r
43         define( 'YOURLS_NONCE_LIFE', 3600 ); // life span of a nonce in seconds\r
44 if( !defined('YOURLS_NOSTATS') )\r
45         define( 'YOURLS_NOSTATS', false ); // if set to true, disable stat logging (no use for it, too busy servers, ...)\r
46 if( !defined('YOURLS_ADMIN_SSL') )\r
47         define( 'YOURLS_ADMIN_SSL', false ); // if set to true, force https:// in the admin area\r
48 if( !defined('YOURLS_DEBUG') )\r
49         define( 'YOURLS_DEBUG', false ); // if set to true, verbose debug infos. Will break things. Don't enable.\r
50 \r
51 \r
52 // If request for an admin page is http:// and SSL is required, redirect\r
53 if( yourls_is_admin() && yourls_needs_ssl() && !yourls_is_ssl() ) {\r
54         if ( 0 === strpos($_SERVER['REQUEST_URI'], 'http') ) {\r
55                 yourls_redirect( preg_replace('|^http://|', 'https://', $_SERVER['REQUEST_URI']) );\r
56                 exit();\r
57         } else {\r
58                 yourls_redirect( 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] );\r
59                 exit();\r
60         }\r
61 }\r
62 \r
63 // Create the YOURLS object $ydb that will contain everything we globally need\r
64 if ( function_exists( 'yourls_db_connect' ) ) {\r
65         global $ydb;\r
66         yourls_db_connect();\r
67 }\r
68 \r
69 // Read options right from start\r
70 yourls_get_all_options();\r
71 \r
72 // Check if need to redirect to install procedure\r
73 if( !yourls_is_installed() && ( !defined('YOURLS_INSTALLING') || YOURLS_INSTALLING != true ) ) {\r
74         yourls_redirect( YOURLS_SITE .'/admin/install.php' );\r
75 }\r
76 \r
77 // Check if upgrade is needed.\r
78 // Note: this is bypassable with define('YOURLS_NO_UPGRADE_CHECK', true)\r
79 // This is also bypassed if YOURLS_INSTALLING\r
80 if (\r
81         ( !defined('YOURLS_NO_UPGRADE_CHECK') || YOURLS_NO_UPGRADE_CHECK != true )\r
82         &&  \r
83         ( !defined('YOURLS_INSTALLING') || YOURLS_INSTALLING != true )\r
84 ) {\r
85         if ( yourls_upgrade_is_needed() ) {\r
86                 yourls_redirect( YOURLS_SITE .'/admin/upgrade.php' );\r
87         }\r
88 }