-
Notifications
You must be signed in to change notification settings - Fork 0
/
AppAjax.php
209 lines (202 loc) · 10.9 KB
/
AppAjax.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<?php
/**
* Created by PhpStorm.
* User: Álvaro
* Date: 09/08/2017
* Time: 18:49
*/
//namespace Lerp2PHP;
include 'Loader.php';
class AppAjax extends Core
{
public static function getAction()
{
AppLogger::$CurLogger->SetEventId(@$_REQUEST['action']);
$req = $_SERVER['REQUEST_METHOD'];
switch ($req) {
case 'GET':
if(isset($_GET["action"]))
{
switch ($_GET["action"])
{
case "get-profile":
$username = @$_GET['username'];
$data = UserUtils::getStatsBy("username", $username, self::SafeUserRows());
if(!$data)
AppLogger::$CurLogger->AddError("wrong_username", $username);
else
AppLogger::$CurLogger->AddParameter("data", $data);
break;
case "getAppId":
$prefix = @$_GET["prefix"];
$data = AppUtils::GetID($prefix);
if(!$data)
AppLogger::$CurLogger->AddError("wrong_app_prefix", $prefix);
else
AppLogger::$CurLogger->AddParameter("data", $data);
break;
default:
self::Kill("[GET] Action '".$_GET["action"]."' not set!");
break;
}
}
break;
case 'POST':
//$tokenKey = @$_POST["ak"];
$entityKey = false;
if(isset($_POST["ek"]))
$entityKey = @$_POST["ek"];
$tokenKey = false;
if(isset($_POST["tk"]))
$tokenKey = $_POST["tk"];
if(!empty($tokenKey) && !empty($entityKey))
{
if(isset($_POST["action"]))
{
switch ($_POST["action"])
{
/*case "regenAuth":
//La solicitación se hará a través de una OldKey, la cual se comprobará si ya existia en la base de datos, y si era asi se procederá a entregar un nuevo login
//Es como llamar a create-auth (pero comprobando la antigua key)
break;*/
case "rememberAuth":
//Este será el metodo que se llamará desde el timer cada minuto, si el valid_until es menor a PHP_NOW, entonces se devolverá un false, y en .NET habrá que llamar con otro post al regen-auth
//Si la opcion de remember estaba activada, si no se devolverá al usuario al login para que vuelva a poner sus datos
$date = @$_POST["creation_date"];
$data = AuthUtils::RememberAuth($entityKey, $tokenKey, $date, @$_POST["remember"] === 'true' ? true : false);
if(isset($data))
AppLogger::$CurLogger->AddParameter("data", $data);
break;
default:
self::Kill(self::StrFormat("[POST] Action '{0}' not registered with both tokenKey ('{1}') & entityKey ('{2}') defined!", $_POST["action"], $tokenKey, $entityKey));
break;
}
}
}
else if(!empty($tokenKey))
{ //There are the actions that need the key given to the app.
if($_POST["action"])
{
switch($_POST["action"]) //Voy a hacer que los cases esten mejor escritas, dos palabras la primera en miuscula y la segunda en mayuscula
{
case "logout":
break;
default:
self::Kill(self::StrFormat("[POST] Action '{0}' not registered with '{1}' tokenKey defined!", $_POST["action"], $tokenKey));
break;
}
}
}
else if(!empty($entityKey))
{ //Todas estas actions necesitan que la entityKey quede registrada o actualizada, por lo demás no es requerida salvo en los Auth, la creacion de nuevas sesiones y poco más
if(isset($_POST["action"]))
{
switch($_POST["action"]) //Voy a hacer que los cases esten mejor escritas, dos palabras la primera en miuscula y la segunda en mayuscula
{
case "createAuth":
$entId = EntityUtils::RegisterEntity($entityKey);
if(isset($entId))
{
$tokenKey = self::GenerateSha();
$username = @$_POST["username"];
$password = @$_POST["password"];
$data = AuthUtils::RegisterAuth($entId, $tokenKey, $username, $password);
if ($data)
AppLogger::$CurLogger->AddParameter("data", $data);
}
break;
case "registerEntity":
//Esto no se va a usar mucho...
$val = EntityUtils::RegisterEntity($entityKey);
if(isset($val))
AppLogger::$CurLogger->AddParameter("data", null);
break;
case "startAppSession":
$appId = @$_POST["app_id"];
$entId = EntityUtils::RegisterEntity($entityKey);
if(isset($entId))
{
$sessionSha = SessionUtils::Start($entId, $appId);
if (isset($sessionSha))
AppLogger::$CurLogger->AddParameter("data", array("sha" => $sessionSha));
}
break;
case "recordNewSession":
$entId = EntityUtils::RegisterEntity($entityKey);
$appId = @$_POST["app_id"];
$startTime = @$_POST["start_time"];
$endTime = @$_POST["end_time"];
if(isset($entId))
{
$sessionId = SessionUtils::RecordNewSession($entId, $appId, $startTime, $endTime);
if (isset($sessionId))
AppLogger::$CurLogger->AddParameter("data", array("session_id" => $sessionId));
}
break;
case "endStartedAppSession":
$entId = EntityUtils::RegisterEntity($entityKey);
$endTime = @$_POST["end_time"];
if(isset($entId))
{
$sha = @$_POST["sha"];
if (SessionUtils::EndStartedSession($sha, $endTime))
AppLogger::$CurLogger->AddParameter("data", null);
}
break;
case "endAppSession":
$entId = EntityUtils::RegisterEntity($entityKey);
if(isset($entId))
{
$sha = @$_POST["sha"];
if (SessionUtils::End($sha))
AppLogger::$CurLogger->AddParameter("data", null);
}
break;
default:
self::Kill(self::StrFormat("[POST] Action '{0}' not registered with '{1}' entityKey defined!", $_POST["action"], $entityKey));
break;
}
}
}
else
{ //This actions doesn't need any key, because they give it... At least login
if(isset($_POST["action"]))
{
switch ($_POST["action"]) //Voy a hacer que los cases esten mejor escritas, dos palabras la primera en miuscula y la segunda en mayuscula
{
case "login":
//$expireTime = @$_POST['duration'];
$username = mysqli_escape_string(Database::conn(), @$_POST['username']);
$password = @$_POST['password'];
if(!UserActions::AppLogin($username, $password))
Debug::Test(); //Restar aquí un intento de login... Aunq esto se puede hacer antes... Aqui no se lo q voy a hacer
break;
case "register":
$username = mysqli_escape_string(Database::conn(), @$_POST['username']);
$password = @$_POST['password'];
$email = mysqli_escape_string(Database::conn(), @$_POST['email']);
//$cpass = @$_POST['pass_confirm'];
if(!UserActions::AppRegister($username, $password, $email))
AppLogger::$CurLogger->AddError("error_registering_account");
else
AppLogger::$CurLogger->AddParameter("data", "SUCCESS");
break;
default:
self::Kill(self::StrFormat("Improper action used '{0}' with no keys defined!", $_POST["action"]));
break;
}
}
}
break;
default:
self::Kill(self::StrFormat("Undefined REQUEST_METHOD '{0}' used!", $req));
/*
header("Location: /");
exit;
* */
break;
}
}
}
//Do action...
AppAjax::getAction();