-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphp-pure.php
93 lines (69 loc) · 2.11 KB
/
php-pure.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
<?php
/**
* Detect if SSL is enabled / on - force to HTTPS if not
*/
function forceSSL () {
if($_SERVER["HTTPS"] != "on") {
header("Location: https://" . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]);
}
}
/**
* Call API to get list of Accounts
*/
function getAccountCodes () {
//Email isn't set, kick out of the function
if (!isset($_SESSION['email'])) {
return false;
}
//Fetch accountVerCode via $email from API
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => 'json_file_location?email='. strtolower($_SESSION['email']),
CURLOPT_USERAGENT => 'API Data Request'
));
$resp = json_decode(curl_exec($curl));
//Log error if cURL fails (likely due to network issue)
//Switch to a fallback if so
if($errno = curl_errno($curl)) {
$error_message = curl_strerror($errno);
error_log("cURL error ({$errno}): {$error_message}");
//Close the failed connection
curl_close($curl);
}
foreach ($resp as $response) {
$_SESSION['accountVerCode'] = $response->accountVerCode;
}
//Close our connection
curl_close($curl);
return true;
}
/**
* Checks a .txt file for a given email to display admin options
*/
function checkAuthFile ($email) {
//Open Auth File
$authFile = file($_SERVER['DOCUMENT_ROOT'] .'/emails.txt');
foreach ($authFile as $line_num => $line) {
if ((strpos($line, $email) !== false)) {
return true;
}
}
}
/*
* Helper function to debug all sessions and variables
*/
function debugAll () {
error_reporting(E_ALL);
//Session Info
echo 'SESSION Data:';
echo '<pre>';
var_dump($_SESSION);
echo '</pre>';
//SSL
echo '<strong>URI Data:</strong>';
echo '<b>HTTPS:</b> '. $_SERVER["HTTPS"];
echo '<br><b>URL:</b> '. (isset($_SERVER['HTTPS']) ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
echo '<br><b>IP:</b> '. $_SERVER["SERVER_ADDR"];
echo '<br><br><b>Referrer:</b> '. $_SERVER["REQUEST_URI"];
}