clockwerk-www – Diff between revs 44 and 57

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 44 Rev 57
1 <?php 1 <?php
2   2  
3 /////////////////////////////////////////////////////////////////////////// 3 ///////////////////////////////////////////////////////////////////////////
4 // Copyright (C) Wizardry and Steamworks 2014 - License: MIT // 4 // Copyright (C) Wizardry and Steamworks 2014 - License: MIT //
5 /////////////////////////////////////////////////////////////////////////// 5 ///////////////////////////////////////////////////////////////////////////
6   6  
7 require_once 'lib/recaptchalib.php'; 7 require_once 'lib/recaptchalib.php';
8 require_once 'lib/wasRemoteAdmin.php'; 8 require_once 'lib/wasRemoteAdmin.php';
9   9  
10 define('RECAPTCHA_PRIVATE_KEY', '6Lcz9ukSAAAAAC3u90rcOIdnNnaK_JgMjrOsSzZr'); 10 define('RECAPTCHA_PRIVATE_KEY', '6Lcz9ukSAAAAAC3u90rcOIdnNnaK_JgMjrOsSzZr');
11 11
12 $first = $_POST["first"]; 12 $first = $_POST["first"];
13 $last = $_POST["last"]; 13 $last = $_POST["last"];
14 $password = $_POST["password"]; 14 $password = $_POST["password"];
15   15  
16 $resp=recaptcha_check_answer(RECAPTCHA_PRIVATE_KEY, 16 $resp=recaptcha_check_answer(RECAPTCHA_PRIVATE_KEY,
17 $_SERVER["REMOTE_ADDR"], 17 $_SERVER["REMOTE_ADDR"],
18 $_POST["recaptcha_challenge_field"], 18 $_POST["recaptcha_challenge_field"],
19 $_POST["recaptcha_response_field"]); 19 $_POST["recaptcha_response_field"]);
-   20  
-   21 ?>
-   22  
-   23 <!DOCTYPE html>
-   24 <html>
-   25 <head>
-   26 <title>Clockwerk</title>
-   27 <link rel="stylesheet" href="css/gray.css" type="text/css" />
-   28 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
-   29 </head>
-   30 <body class=dark-grey>
-   31 <div class="center">
-   32 <img src="img/clockwerk-logo.png" alt="logo">
-   33 <h1><?php print gethostname(); ?></h1>
-   34 <hr>
-   35  
-   36 <?php
20   37  
21 if($resp->is_valid) { 38 if($resp->is_valid) {
22 $req = new wasRemoteAdmin('http://127.0.0.1:10000', 'opensim'); 39 $req = new wasRemoteAdmin('http://127.0.0.1:10000', 'opensim');
23 $ret = $req->admin_authenticate_user($first, $last, MD5($password), '1'); 40 $ret = $req->admin_authenticate_user($first, $last, MD5($password), '1');
24 $rep = new SimpleXMLElement($ret); 41 $rep = new SimpleXMLElement($ret);
25 foreach($rep->params->param->value->struct->member as $member) { 42 foreach($rep->params->param->value->struct->member as $member) {
26 if($member->name == "success" && $member->value->boolean == "0") { 43 if($member->name == "success" && $member->value->boolean == "0") {
27 echo 'Sorry, wrong password.'; 44 echo 'Sorry, wrong password.';
28 exit; 45 exit;
29 } 46 }
30 } 47 }
31 $iar_path = '/var/lib/iar/'.$first.'_'.$last.'/'.$first.'_'.$last.'.iar'; 48 $iar_path = '/var/lib/iar/'.$first.'_'.$last.'/'.$first.'_'.$last.'.iar';
32 if (file_exists($iar_path)) { 49 if (file_exists($iar_path)) {
33 header('Content-Description: File Transfer'); 50 header('Content-Description: File Transfer');
34 header('Content-Type: application/x-gzip-compressed'); 51 header('Content-Type: application/x-gzip-compressed');
35 header('Content-Disposition: attachment; filename='.basename($iar_path)); 52 header('Content-Disposition: attachment; filename='.basename($iar_path));
36 header('Content-Transfer-Encoding: binary'); 53 header('Content-Transfer-Encoding: binary');
37 header('Expires: 0'); 54 header('Expires: 0');
38 header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); 55 header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
39 header('Pragma: public'); 56 header('Pragma: public');
40 header('Content-Length: '.filesize($iar_path)); 57 header('Content-Length: '.filesize($iar_path));
41 readfile($iar_path); 58 readfile($iar_path);
42 exit; 59 exit;
43 } 60 }
44 } 61 }
45 62
46 echo '<p>Sorry, incorrect CAPTCHA. Please try again.</p>'; 63 echo '<p>Sorry, incorrect CAPTCHA. Please try again.</p>';
-   64  
-   65 ?>
-   66  
-   67 <p>
-   68 <a class="button" href="welcome.php">Main Page</a>
-   69 </p>
-   70 </div>
-   71 </body>
-   72 </html>
47   73  
48   74