blob: c6e9ee0191367dbe1fcc7e90e7c50c4bc13a622c [file] [log] [blame]
Andreu78e5bb02019-09-22 13:38:04 +02001<?php
2 require './credentials.php';
3 require './php/utils.php';
Andreu0d0f9fd2019-09-23 03:56:08 +02004
Andreu20af6c22019-09-24 18:33:50 +02005 $credentials = new Credentials();
6 $usersdb = $credentials->usersdb;
7 $mortsdb = $credentials->mortsdb;
8
Andreua0fc8272019-09-23 00:35:25 +02009 $user = (int)$_POST['user'];
Andreu0d0f9fd2019-09-23 03:56:08 +020010 $password = isset($_POST['password']) ? md5($_POST['password']) : '';
Andreu4b2fbd92019-09-22 22:30:25 +020011
Andreua0fc8272019-09-23 00:35:25 +020012 // Check if password is correct
Andreu20af6c22019-09-24 18:33:50 +020013 $query_password = "SELECT password FROM $usersdb WHERE id=$user";
Andreua0fc8272019-09-23 00:35:25 +020014 $real_password = query($query_password)->fetch_row()[0];
15 if ($real_password != $password) die("<script>window.location.href = './index.php?wrongpassword=1'</script>");
16
Andreu0d0f9fd2019-09-23 03:56:08 +020017 if (!isset($_POST['user']) or $_POST['user'] == '') {
Andreu4b2fbd92019-09-22 22:30:25 +020018 die("<script>window.location.href = './index.php'</script>");
Andreua0fc8272019-09-23 00:35:25 +020019 } else if (isset($_POST['password'])) {
Andreu20af6c22019-09-24 18:33:50 +020020 $query_password = "SELECT password FROM $usersdb WHERE id=$user";
Andreua0fc8272019-09-23 00:35:25 +020021 if (query($query_password)->fetch_row()[0] != $password) {
Andreu78e5bb02019-09-22 13:38:04 +020022 // Unset variables
23 setcookie('user', '', -1, "/");
24 setcookie('password', '', -1, "/");
25
Andreu4b2fbd92019-09-22 22:30:25 +020026 die("<script>window.location.href = './index.php?passwordchanged=1'</script>");
Andreu78e5bb02019-09-22 13:38:04 +020027 }
Andreu09b8b052019-09-21 21:47:20 +020028 }
29?>
Andreu66ad5cf2019-09-18 17:15:44 +020030<html>
31 <head>
32 <meta charset="UTF-8">
Andreu0d0f9fd2019-09-23 03:56:08 +020033 <title>PastanagAPP</title>
avm99963db383ed2019-09-22 02:14:42 +020034
35 <meta name="viewport" content="width=device-width, initial-scale=1">
Andreu0d0f9fd2019-09-23 03:56:08 +020036 <link rel="manifest" href="https://api.myjson.com/bins/u6r41">
37
38 <!-- Apple web app -->
39 <link rel="apple-touch-icon" href="./bin/images/icons/icon-72x72.png">
40 <meta name="apple-mobile-web-app-title" content="PastanagAPP">
41 <meta name="apple-mobile-web-app-capable" content="yes">
42 <meta name="apple-mobile-web-app-status-bar-style" content="green">
43
avm99963db383ed2019-09-22 02:14:42 +020044
Andreu4b2fbd92019-09-22 22:30:25 +020045 <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans" />
46
Andreu66ad5cf2019-09-18 17:15:44 +020047 <link rel="stylesheet" href="./css/basic.css" />
48 <link rel="stylesheet" href="./css/main.css" />
avm99963db383ed2019-09-22 02:14:42 +020049
Andreu66ad5cf2019-09-18 17:15:44 +020050 <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
Andreued8e1f92019-09-18 22:26:04 +020051 <script src="https://rawgit.com/notifyjs/notifyjs/master/dist/notify.js"></script>
avm99963db383ed2019-09-22 02:14:42 +020052
Andreu10cb3042019-09-18 19:55:36 +020053 <script src="./js/utils.js"></script>
Andreuefe66eb2019-09-21 18:41:49 +020054 <script src="./js/animations.js"></script>
avm99963db383ed2019-09-22 02:14:42 +020055
56 <?php
Andreua0fc8272019-09-23 00:35:25 +020057 $user = get_users($user);
Andreu09b8b052019-09-21 21:47:20 +020058 $victim = get_users($user->quimata);
Andreu0530b302019-09-24 04:18:20 +020059 if ($user->mort) die("<script>window.location.href = './dead.php'</script>");
Andreu779c3b72019-09-24 03:14:35 +020060
61 $bits = dec2bits($user->bits);
62 $bit_counter = 0;
Andreudca79f42019-09-18 23:53:19 +020063 ?>
avm99963db383ed2019-09-22 02:14:42 +020064
Andreu66ad5cf2019-09-18 17:15:44 +020065 <script>
Andreued491672019-09-20 13:09:18 +020066 let user = {
Andreu99501052019-09-22 20:09:08 +020067 'id': <?=(int)$user->id?>,
68 'quimata': <?=(int)$user->quimata?>,
69 'requested': <?=(int)$user->requested?>,
70 'mort': <?=(int)$user->mort?>,
avm99963db383ed2019-09-22 02:14:42 +020071
Andreuabbcb7e2019-09-21 18:22:14 +020072 'nom': "<?=$user->nomcomplet?>",
Andreu99501052019-09-22 20:09:08 +020073 'curs': <?=(int)$user->curs?>,
74 'grau': <?=(int)$user->grau?>
Andreued491672019-09-20 13:09:18 +020075 };
Andreu66ad5cf2019-09-18 17:15:44 +020076 </script>
avm99963db383ed2019-09-22 02:14:42 +020077
Andreu66ad5cf2019-09-18 17:15:44 +020078 </head>
79 <body>
80 <div id="outter-container">
81 <div id="inner-container">
Andreu0d0f9fd2019-09-23 03:56:08 +020082 <a href="./index.php" class="goback">Torna a la pàgina principal</a><br />
Andreu66ad5cf2019-09-18 17:15:44 +020083 <h2>Hola <name id="user_name"><?=$user->nom()?></name>,</h2>
avm99963db383ed2019-09-22 02:14:42 +020084
Andreu4b2fbd92019-09-22 22:30:25 +020085 <div class="formulari_contrasenya">
Andreua0fc8272019-09-23 00:35:25 +020086 <p>Sembla que no tens clau d'accés, la gent podrà entrar al teu compte...</p>
Andreu20cbd1d2019-09-22 00:00:57 +020087 <form action="./php/change_password.php" method="POST">
Andreua0fc8272019-09-23 00:35:25 +020088 <input type="hidden" value="<?=(int)$_POST['user']?>" name="userid">
Andreu543e70c2019-09-22 14:08:49 +020089 <input type="password" placeholder="Nova clau d'accés..." name="password" /><br />
90 <input type="password" placeholder="Repeteix la clau d'accés" name="confirmation"/><br />
Andreu4b2fbd92019-09-22 22:30:25 +020091 <input type="submit" value="Posar clau d'accés">
Andreu20cbd1d2019-09-22 00:00:57 +020092 </form>
93 </div>
avm99963db383ed2019-09-22 02:14:42 +020094
95 <p>La teva víctima és:</p>
96
Andreu04f79ef2019-09-22 18:52:19 +020097 <div class="victima">
98 <table>
99 <tr>
Andreu779c3b72019-09-24 03:14:35 +0200100 <td class="table_img">
101 <div id="victim_img">
102 <table cellspacing="0" cellpadding="0">
103 <tr>
104 <td><img src="./bin/images/imgs/<?=$victim->id?>/slice_01_01.png" width="33" class="<?=(int)$bits[$bit_counter++] ? 'black' : ''?>" /></td>
105 <td><img src="./bin/images/imgs/<?=$victim->id?>/slice_01_02.png" width="33" class="<?=(int)$bits[$bit_counter++] ? 'black' : ''?>" /></td>
106 <td><img src="./bin/images/imgs/<?=$victim->id?>/slice_01_03.png" width="33" class="<?=(int)$bits[$bit_counter++] ? 'black' : ''?>" /></td>
107 </tr>
108 <tr>
109 <td><img src="./bin/images/imgs/<?=$victim->id?>/slice_02_01.png" width="33" class="<?=(int)$bits[$bit_counter++] ? 'black' : ''?>" /></td>
110 <td><img src="./bin/images/imgs/<?=$victim->id?>/slice_02_02.png" width="33" class="<?=(int)$bits[$bit_counter++] ? 'black' : ''?>" /></td>
111 <td><img src="./bin/images/imgs/<?=$victim->id?>/slice_02_03.png" width="33" class="<?=(int)$bits[$bit_counter++] ? 'black' : ''?>" /></td>
112 </tr>
113 <tr>
114 <td><img src="./bin/images/imgs/<?=$victim->id?>/slice_03_01.png" width="33" class="<?=(int)$bits[$bit_counter++] ? 'black' : ''?>" /></td>
115 <td><img src="./bin/images/imgs/<?=$victim->id?>/slice_03_02.png" width="33" class="<?=(int)$bits[$bit_counter++] ? 'black' : ''?>" /></td>
116 <td><img src="./bin/images/imgs/<?=$victim->id?>/slice_03_03.png" width="33" class="<?=(int)$bits[$bit_counter++] ? 'black' : ''?>" /></td>
117 </tr>
118 </table>
119 </div>
120 </td>
Andreu0d0f9fd2019-09-23 03:56:08 +0200121 <td class="table_text">
Andreu04f79ef2019-09-22 18:52:19 +0200122 <div id="victim_name"><?=$victim->nomcomplet?></div>
123 <div id="victim_curs_i_grau">
Andreu4b2fbd92019-09-22 22:30:25 +0200124 <span id="victim_curs"><?=$victim->nomcurs()?></span>
Andreu04f79ef2019-09-22 18:52:19 +0200125 -
Andreu4b2fbd92019-09-22 22:30:25 +0200126 <span id="victim_grau"><?=$victim->nomgrau()?></span>
Andreu04f79ef2019-09-22 18:52:19 +0200127 </div>
128 <div id="butons" class="options">
129 <button id="win" onclick="js: send_request(user, 'REQ KILL');">L'he matat</button>
130 </div>
131 </td>
132 </tr>
133 </table>
134 </div>
avm99963db383ed2019-09-22 02:14:42 +0200135
136 <div style="clear: both;"></div>
Andreu66ad5cf2019-09-18 17:15:44 +0200137 </div>
138 </div>
avm99963db383ed2019-09-22 02:14:42 +0200139
Andreu66ad5cf2019-09-18 17:15:44 +0200140 <script>
Andreudca79f42019-09-18 23:53:19 +0200141 $(document).ready(function() {
Andreuabbcb7e2019-09-21 18:22:14 +0200142 // Set interval of checking
Andreuefe66eb2019-09-21 18:41:49 +0200143 let checking = setInterval(function() { update_info(user); }, 1500);
Andreu96f1bcd2019-09-22 00:33:09 +0200144 // Set to hidden or not the password prompt
Andreu543e70c2019-09-22 14:08:49 +0200145 if (<?=$user->md5password=="" ? 1 : 0?>) {
146 $.notify("No tens clau d'accés", "info");
147 $(".formulari_contrasenya").show();
148 }
Andreudca79f42019-09-18 23:53:19 +0200149 });
Andreu66ad5cf2019-09-18 17:15:44 +0200150 </script>
151 </body>
152</html>