1
|
|
|
<?php |
|
|
|
|
2
|
|
|
|
3
|
|
|
include 'php/DatabaseConnect.php'; |
4
|
|
|
include 'php/Location.php'; |
5
|
|
|
include 'php/JodelAccount.php'; |
6
|
|
|
include 'php/Jodel.php'; |
7
|
|
|
include 'php/View.php'; |
8
|
|
|
|
9
|
|
|
include 'php/Requests/AbstractRequest.php'; |
10
|
|
|
include 'php/Requests/CreateUser.php'; |
11
|
|
|
include 'php/Requests/GetPosts.php'; |
12
|
|
|
include 'php/Requests/GetKarma.php'; |
13
|
|
|
include 'php/Requests/UpdateLocation.php'; |
14
|
|
|
include 'php/Requests/Upvote.php'; |
15
|
|
|
include 'php/Requests/Downvote.php'; |
16
|
|
|
include 'php/Requests/GetPostDetails.php'; |
17
|
|
|
include 'php/Requests/SendJodel.php'; |
18
|
|
|
include 'php/Requests/GetCaptcha.php'; |
19
|
|
|
include 'php/Requests/PostCaptcha.php'; |
20
|
|
|
include 'php/Requests/GetUserConfig.php'; |
21
|
|
|
include 'php/Requests/GetChannel.php'; |
22
|
|
|
|
23
|
|
|
require_once 'php/Requests/libary/Requests.php'; |
24
|
|
|
Requests::register_autoloader(); |
25
|
|
|
|
26
|
|
|
$config = parse_ini_file('config/config.ini.php'); |
|
|
|
|
27
|
|
|
$baseUrl = $config['Url']; |
28
|
|
|
|
29
|
|
|
$location = new Location(); |
30
|
|
|
$location->setLat($config['default_lat']); |
31
|
|
|
$location->setLng($config['default_lng']); |
32
|
|
|
$location->setCityName($config['default_location']); |
33
|
|
|
//What is dude doing with my Server? |
34
|
|
|
if($_SERVER['REMOTE_ADDR'] == '94.231.103.52') |
35
|
|
|
{ |
36
|
|
|
echo('You are flooting my Server! Pls enable Cookies in your script and contact me: [email protected]'); |
37
|
|
|
die(); |
38
|
|
|
} |
39
|
|
|
|
40
|
|
|
function user_log($msg) |
|
|
|
|
41
|
|
|
{ |
42
|
|
|
$log = $msg . PHP_EOL; |
|
|
|
|
43
|
|
|
error_log(realpath(__DIR__ . '/..') . '/logs/user_log-' . date("j.n.Y") . '.txt'); |
|
|
|
|
44
|
|
|
file_put_contents(realpath(__DIR__ . '/..') . '/logs/user_log-' . date("j.n.Y") . '.txt', $log, FILE_APPEND); |
|
|
|
|
45
|
|
|
} |
46
|
|
|
|
47
|
|
|
function isUserBot() |
|
|
|
|
48
|
|
|
{ |
49
|
|
|
preg_match('/bot|spider|google|twitter/i', $_SERVER['HTTP_USER_AGENT'], $matches); |
50
|
|
|
|
51
|
|
|
return (isset($matches[0])) ? true : false; |
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
function configPropertyExists($config, $property) |
55
|
|
|
{ |
56
|
|
|
if(!array_key_exists($property, $config) || !isset($config[$property]) || $config[$property] == '' || $config[$property] == 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx') |
|
|
|
|
57
|
|
|
{ |
58
|
|
|
return FALSE; |
59
|
|
|
} |
60
|
|
|
else |
61
|
|
|
{ |
62
|
|
|
return TRUE; |
63
|
|
|
} |
64
|
|
|
} |
65
|
|
|
function isUserAdmin() { |
|
|
|
|
66
|
|
|
global $config; |
|
|
|
|
67
|
|
|
if (isset($_COOKIE['JodelAdminPassword']) && configPropertyExists($config, 'pw') && $config['pw'] == $_COOKIE['JodelAdminPassword']) |
|
|
|
|
68
|
|
|
{ |
69
|
|
|
return TRUE; |
70
|
|
|
} |
71
|
|
|
else |
72
|
|
|
{ |
73
|
|
|
return FALSE; |
74
|
|
|
} |
75
|
|
|
} |
76
|
|
|
|
77
|
|
|
function isDeviceUidInDatabase($deviceUid) |
78
|
|
|
{ |
79
|
|
|
$db = new DatabaseConnect(); |
|
|
|
|
80
|
|
|
$result = $db->query("SELECT * FROM accounts WHERE device_uid='" . $deviceUid . "'"); |
81
|
|
|
|
82
|
|
|
if ($result->num_rows > 0) |
|
|
|
|
83
|
|
|
{ |
84
|
|
|
return TRUE; |
85
|
|
|
} |
86
|
|
|
else |
87
|
|
|
{ |
88
|
|
|
return FALSE; |
89
|
|
|
} |
90
|
|
|
} |
91
|
|
|
|
92
|
|
|
//Check if it's a Spider or Google Bot |
93
|
|
|
if(configPropertyExists($config, 'botDeviceUid') && isUserBot()) |
94
|
|
|
{ |
95
|
|
|
user_log('Spider or Bot checked in!'); |
96
|
|
|
|
97
|
|
|
$jodelAccountForView = new JodelAccount($config['botDeviceUid'], TRUE); |
98
|
|
|
} |
99
|
|
|
else |
100
|
|
|
{ |
101
|
|
|
if(!isset($_COOKIE['JodelDeviceId']) || !isDeviceUidInDatabase($_COOKIE['JodelDeviceId'])) |
102
|
|
|
{ |
103
|
|
|
$jodelAccountForView = new JodelAccount(); |
104
|
|
|
setcookie('JodelDeviceId', $jodelAccountForView->deviceUid, time()+60*60*24*365*10); |
105
|
|
|
user_log('Created account with JodelDeviceId:' . $jodelAccountForView->deviceUid . ' for [' . $_SERVER ['HTTP_USER_AGENT'] . ']'); |
|
|
|
|
106
|
|
|
|
107
|
|
|
} |
108
|
|
|
else |
109
|
|
|
{ |
110
|
|
|
$jodelAccountForView = new JodelAccount($_COOKIE['JodelDeviceId']); |
111
|
|
|
} |
112
|
|
|
|
113
|
|
|
} |
114
|
|
|
|
115
|
|
|
if(configPropertyExists($config, 'karmaDeviceUid')) |
116
|
|
|
{ |
117
|
|
|
$jodelAccountForKarma = new JodelAccount($config['karmaDeviceUid']); |
118
|
|
|
} |
119
|
|
|
else |
120
|
|
|
{ |
121
|
|
|
error_log("No Karma deviceUid set in config file"); |
|
|
|
|
122
|
|
|
$jodelAccountForKarma = new JodelAccount($deviceUid); |
123
|
|
|
} |
124
|
|
|
|
125
|
|
|
/* |
126
|
|
|
* Cunstruct View |
127
|
|
|
*/ |
128
|
|
|
|
129
|
|
|
$hashtag = ''; |
130
|
|
|
|
131
|
|
|
if(isset($_GET['search'])) |
132
|
|
|
{ |
133
|
|
|
if(substr($_GET['search'], 0, 1) === "#") |
|
|
|
|
134
|
|
|
{ |
135
|
|
|
if(strrpos($_GET['search'], ' ') == NULL) |
136
|
|
|
{ |
137
|
|
|
$hashtag = substr($_GET['search'], 1); |
138
|
|
|
} |
139
|
|
|
else |
140
|
|
|
{ |
141
|
|
|
$hashtag = substr($_GET['search'], 1, strrpos($_GET['search'], ' ')); |
142
|
|
|
|
143
|
|
|
$city = substr($_GET['search'], |
144
|
|
|
strrpos($_GET['search'], ' ') + 1, |
145
|
|
|
strlen($_GET['search'])); |
146
|
|
|
|
147
|
|
|
if($city != NULL && $city != '') |
148
|
|
|
{ |
149
|
|
|
$_GET['city'] = $city; |
150
|
|
|
} |
151
|
|
|
} |
152
|
|
|
} |
153
|
|
|
else |
154
|
|
|
{ |
155
|
|
|
$_GET['city'] = $_GET['search']; |
156
|
|
|
} |
157
|
|
|
} |
158
|
|
|
$hashtag = trim($hashtag); |
159
|
|
|
|
160
|
|
|
if($hashtag == '') |
161
|
|
|
{ |
162
|
|
|
if(isset($_GET['hashtag'])) |
163
|
|
|
{ |
164
|
|
|
$hashtag = $_GET['hashtag']; |
165
|
|
|
} |
166
|
|
|
else |
167
|
|
|
{ |
168
|
|
|
$hashtag = '#all'; |
169
|
|
|
} |
170
|
|
|
} |
171
|
|
|
|
172
|
|
|
//Set Location |
173
|
|
|
if(isset($_GET['city']) && !$jodelAccountForView->locationEquals($_GET['city'])) |
174
|
|
|
{ |
175
|
|
|
$cityName = $jodelAccountForView->setLocation(); |
176
|
|
|
} |
177
|
|
|
else |
178
|
|
|
{ |
179
|
|
|
$cityName = $jodelAccountForView->location->getCityName(); |
180
|
|
|
} |
181
|
|
|
|
182
|
|
|
|
183
|
|
|
|
184
|
|
|
if(isset($_GET['view'])) |
185
|
|
|
{ |
186
|
|
|
switch ($_GET['view']) { |
187
|
|
|
case 'discussed': |
188
|
|
|
$view = 'discussed'; |
189
|
|
|
break; |
190
|
|
|
|
191
|
|
|
case 'popular': |
192
|
|
|
$view = 'popular'; |
193
|
|
|
break; |
194
|
|
|
|
195
|
|
|
default: |
196
|
|
|
$view = 'combo'; |
197
|
|
|
break; |
198
|
|
|
} |
199
|
|
|
} |
200
|
|
|
else |
201
|
|
|
{ |
202
|
|
|
$view = 'combo'; |
203
|
|
|
} |
204
|
|
|
|
205
|
|
|
if(isset($_GET['postId'])) |
206
|
|
|
{ |
207
|
|
|
$view = new View($baseUrl, 'DE', $cityName, $hashtag, $view, $_GET['postId']); |
208
|
|
|
} |
209
|
|
|
else |
210
|
|
|
{ |
211
|
|
|
$view = new View($baseUrl, 'DE', $cityName, $hashtag, $view); |
212
|
|
|
} |
213
|
|
|
|
214
|
|
|
$newPositionStatus = ''; |
215
|
|
|
if($hashtag != '#all') |
216
|
|
|
{ |
217
|
|
|
$newPositionStatus = '#' . $hashtag . ' '; |
218
|
|
|
} |
219
|
|
|
$newPositionStatus .= $cityName; |
220
|
|
|
|
221
|
|
|
//Verify Account |
222
|
|
|
if(isset($_GET['solution']) && isset($_GET['key']) && isset($_GET['deviceUid'])) |
223
|
|
|
{ |
224
|
|
|
$jodelAccountForVerify = new JodelAccount($_GET['deviceUid']); |
225
|
|
|
$jodelAccountForVerify->verifyCaptcha(); |
226
|
|
|
} |
227
|
|
|
|
228
|
|
|
//Vote |
229
|
|
|
if(isset($_GET['vote']) && isset($_GET['postId'])) |
230
|
|
|
{ |
231
|
|
|
$jodelAccountForKarma->votePostId($_GET['postId'], $_GET['vote']); |
232
|
|
|
if(isset($_GET['getPostDetails']) && isset($_GET['getPostDetails'])) |
233
|
|
|
{ |
234
|
|
|
header('Location: index.php?getPostDetails=true&postId=' . htmlspecialchars($_GET['postId_parent']) . '#postId-' . htmlspecialchars($_GET['postId'])); |
|
|
|
|
235
|
|
|
} |
236
|
|
|
else |
237
|
|
|
{ |
238
|
|
|
header("Location: index.php#postId-" . htmlspecialchars($_GET['postId'])); |
|
|
|
|
239
|
|
|
} |
240
|
|
|
die(); |
241
|
|
|
} |
242
|
|
|
|
243
|
|
|
//SendJodel |
244
|
|
|
if(isset($_POST['message'])) |
245
|
|
|
{ |
246
|
|
|
$jodelAccountForKarma->sendJodel($jodelAccountForView->location, $view); |
247
|
|
|
} |
248
|
|
|
?> |
|
|
|
|
The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.
The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.
To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.