Completed
Pull Request — master (#10)
by
unknown
02:49
created
admin.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 $config = parse_ini_file('config/config.ini.php');
4 4
 if(!isset($_GET['pw']) || $config['pw'] != $_GET['pw'])
5 5
 {
6
-	error_log($_SERVER['REMOTE_ADDR']  . ' used a wrong password on admin.php');
6
+	error_log($_SERVER['REMOTE_ADDR'] . ' used a wrong password on admin.php');
7 7
 	die();
8 8
 }
9 9
 
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,10 +40,12 @@
 block discarded – undo
40 40
 			$accessToken = isTokenFreshByAccessToken($location, $accessToken);
41 41
 
42 42
 
43
-			if($_POST['vote'] == "up") {
43
+			if($_POST['vote'] == "up")
44
+			{
44 45
 				$accountCreator = new Upvote();
45 46
 			}
46
-			else if($_POST['vote'] == "down") {
47
+			else if($_POST['vote'] == "down")
48
+			{
47 49
 				$accountCreator = new Downvote();
48 50
 			}
49 51
 
Please login to merge, or discard this patch.
php/Requests/Upvote.php 2 patches
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,6 @@
 block discarded – undo
1 1
 <?php
2
-class Upvote extends AbstractRequest {
2
+class Upvote extends AbstractRequest
3
+{
3 4
 		
4 5
     public $postId;
5 6
 
Please login to merge, or discard this patch.
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -1,21 +1,21 @@
 block discarded – undo
1 1
 <?php
2 2
 class Upvote extends AbstractRequest {
3 3
 		
4
-    public $postId;
4
+	public $postId;
5 5
 
6
-    function getApiEndPoint()
7
-    {
8
-        return '/v2/posts/' . $this->postId . '/upvote';
9
-    }
10
-    function getPayload()
11
-    {
12
-        return array(
6
+	function getApiEndPoint()
7
+	{
8
+		return '/v2/posts/' . $this->postId . '/upvote';
9
+	}
10
+	function getPayload()
11
+	{
12
+		return array(
13 13
 			//		"reason_code" => -1,
14
-        );
15
-    }
16
-    function getMethod()
17
-    {
18
-        return 'PUT';
19
-    }
14
+		);
15
+	}
16
+	function getMethod()
17
+	{
18
+		return 'PUT';
19
+	}
20 20
 }
21 21
 
Please login to merge, or discard this patch.
index.php 3 patches
Upper-Lower-Casing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -80,15 +80,15 @@  discard block
 block discarded – undo
80 80
 	if(isset($_GET['city'])) {
81 81
 		$url = 'https://maps.googleapis.com/maps/api/geocode/json?address=' . htmlspecialchars($_GET['city']) . '&key=AIzaSyCwhnja-or07012HqrhPW7prHEDuSvFT4w';
82 82
 		$result = Requests::post($url);
83
-		if(json_decode($result->body, true)['status'] == 'ZERO_RESULTS' || json_decode($result->body, true)['status'] == 'INVALID_REQUEST')
83
+		if(json_decode($result->body, TRUE)['status'] == 'ZERO_RESULTS' || json_decode($result->body, TRUE)['status'] == 'INVALID_REQUEST')
84 84
 		{
85 85
 			$newPositionStatus = "0 results";
86 86
 		}
87 87
 		else
88 88
 		{
89
-			$name = json_decode($result->body, true)['results']['0']['address_components']['0']['long_name'];
90
-			$lat = json_decode($result->body, true)['results']['0']['geometry']['location']['lat'];
91
-			$lng = json_decode($result->body, true)['results']['0']['geometry']['location']['lng'];
89
+			$name = json_decode($result->body, TRUE)['results']['0']['address_components']['0']['long_name'];
90
+			$lat = json_decode($result->body, TRUE)['results']['0']['geometry']['location']['lat'];
91
+			$lng = json_decode($result->body, TRUE)['results']['0']['geometry']['location']['lng'];
92 92
 
93 93
 			$location = new Location();
94 94
 			$location->setLat($lat);
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 							lng='" . $lng . "'
109 109
 						WHERE access_token='" . $accessToken . "'");
110 110
 
111
-				if($result === false)
111
+				if($result === FALSE)
112 112
 				{
113 113
 						echo "Updating location failed: (" . $db->errno . ") " . $db->error;
114 114
 				}
Please login to merge, or discard this patch.
Braces   +46 added lines, -13 removed lines patch added patch discarded remove patch
@@ -61,7 +61,8 @@  discard block
 block discarded – undo
61 61
 	//Set View
62 62
 	if(isset($_GET['view']))
63 63
 	{
64
-		switch ($_GET['view']) {
64
+		switch ($_GET['view'])
65
+		{
65 66
 			case 'comment':
66 67
 				$view = 'comment';
67 68
 				break;
@@ -81,7 +82,8 @@  discard block
 block discarded – undo
81 82
 	}
82 83
 	
83 84
 	//Set Location
84
-	if(isset($_GET['city'])) {
85
+	if(isset($_GET['city']))
86
+	{
85 87
 		$url = 'https://maps.googleapis.com/maps/api/geocode/json?address=' . htmlspecialchars($_GET['city']) . '&key=AIzaSyCwhnja-or07012HqrhPW7prHEDuSvFT4w';
86 88
 		$result = Requests::post($url);
87 89
 		if(json_decode($result->body, true)['status'] == 'ZERO_RESULTS' || json_decode($result->body, true)['status'] == 'INVALID_REQUEST')
@@ -165,7 +167,8 @@  discard block
 block discarded – undo
165 167
 		if(isset($_POST['color']))
166 168
 		{
167 169
 			$color = $_POST['color'];
168
-			switch ($color) {
170
+			switch ($color)
171
+			{
169 172
 				case '8ABDB0':
170 173
 					$color = '8ABDB0';
171 174
 					break;
@@ -292,7 +295,11 @@  discard block
 block discarded – undo
292 295
 
293 296
 					<div id="location_mobile" class="hidden-sm-up">
294 297
 						<form method="get">
295
-							<input type="text" id="city_mobile" name="city" placeholder="<?php if(isset($newPositionStatus)) echo $newPositionStatus; ?>" required>
298
+							<input type="text" id="city_mobile" name="city" placeholder="<?php if(isset($newPositionStatus))
299
+{
300
+	echo $newPositionStatus;
301
+}
302
+?>" required>
296 303
 
297 304
 							<input type="submit" id="submit_mobile" class="fa" value="&#xf0ac;" />
298 305
 						</form>
@@ -319,7 +326,8 @@  discard block
 block discarded – undo
319 326
 								$data = $accountCreator->execute();
320 327
 								
321 328
 								$posts[0] = $data;
322
-								if(array_key_exists('children', $data)) {
329
+								if(array_key_exists('children', $data))
330
+								{
323 331
 									foreach($data['children'] as $key => $child)
324 332
 									{
325 333
 										
@@ -393,7 +401,9 @@  discard block
 block discarded – undo
393 401
 
394 402
 					</content>
395 403
 					
396
-					<?php if(!isset($_GET['postID']) && !isset($_GET['getPostDetails'])) { ?>
404
+					<?php if(!isset($_GET['postID']) && !isset($_GET['getPostDetails']))
405
+{
406
+?>
397 407
 						<p id="loading">
398 408
 							Loading…
399 409
 						</p>
@@ -406,7 +416,11 @@  discard block
 block discarded – undo
406 416
 							<div>
407 417
 								<h2>Position</h2>
408 418
 								<form method="get">
409
-									<input type="text" id="city" name="city" placeholder="<?php if(isset($newPositionStatus)) echo $newPositionStatus; ?>" required>
419
+									<input type="text" id="city" name="city" placeholder="<?php if(isset($newPositionStatus))
420
+{
421
+	echo $newPositionStatus;
422
+}
423
+?>" required>
410 424
 
411 425
 									<input type="submit" value="Set Location" /> 
412 426
 								</form>
@@ -422,7 +436,9 @@  discard block
 block discarded – undo
422 436
 
423 437
 						<article>
424 438
 							<div>
425
-								<?php if(isset($_GET['postID']) && isset($_GET['getPostDetails'])) { ?>
439
+								<?php if(isset($_GET['postID']) && isset($_GET['getPostDetails']))
440
+{
441
+?>
426 442
 								<h2>Comment on Jodel</h2>
427 443
 								<form method="POST">				
428 444
 										<input type="hidden" name="ancestor" value="<?php echo htmlspecialchars($_GET['postID']);?>" />
@@ -430,7 +446,10 @@  discard block
 block discarded – undo
430 446
 									<br />
431 447
 									<input type="submit" value="SEND" /> 
432 448
 								</form>
433
-									<?php } else { ?>
449
+									<?php }
450
+else
451
+{
452
+?>
434 453
 								<h2>New Jodel</h2>
435 454
 								<form method="POST">
436 455
 									<textarea id="message" name="message" placeholder="Send a Jodel to all students within 10km" required></textarea> 
@@ -462,13 +481,25 @@  discard block
 block discarded – undo
462 481
 				<div class="col-xs-12">
463 482
 					<div class="row">
464 483
 						<div class="col-xs-3">
465
-							<a href="index.php" <?php if($view=='time') echo 'class="active"';?>><i class="fa fa-clock-o fa-3x"></i></a>
484
+							<a href="index.php" <?php if($view=='time')
485
+{
486
+	echo 'class="active"';
487
+}
488
+?>><i class="fa fa-clock-o fa-3x"></i></a>
466 489
 						</div>
467 490
 						<div class="col-xs-3">
468
-							<a href="index.php?view=comment" <?php if($view=='comment') echo 'class="active"';?>><i class="fa fa-commenting-o fa-3x"></i></a>
491
+							<a href="index.php?view=comment" <?php if($view=='comment')
492
+{
493
+	echo 'class="active"';
494
+}
495
+?>><i class="fa fa-commenting-o fa-3x"></i></a>
469 496
 						</div>
470 497
 						<div class="col-xs-3">
471
-							<a href="index.php?view=upVote" <?php if($view=='upVote') echo 'class="active"';?>><i class="fa fa-angle-up fa-3x"></i></a>
498
+							<a href="index.php?view=upVote" <?php if($view=='upVote')
499
+{
500
+	echo 'class="active"';
501
+}
502
+?>><i class="fa fa-angle-up fa-3x"></i></a>
472 503
 						</div>
473 504
 						<div class="col-xs-3">
474 505
 							<nav>
@@ -511,7 +542,9 @@  discard block
 block discarded – undo
511 542
 				    $('html,body').animate({scrollTop: aTag.offset().top-90},'slow');
512 543
 				}
513 544
 
514
-				<?php if(!isset($_GET['postID']) && !isset($_GET['getPostDetails'])) { ?>
545
+				<?php if(!isset($_GET['postID']) && !isset($_GET['getPostDetails']))
546
+{
547
+?>
515 548
 
516 549
 				
517 550
 
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -40,8 +40,8 @@  discard block
 block discarded – undo
40 40
 		if(!isset($_COOKIE['JodelDeviceId']) || !isDeviceUidInDatabase($db->real_escape_string($_COOKIE['JodelDeviceId'])))
41 41
 		{
42 42
 			$deviceUid = createAccount();
43
-			setcookie('JodelDeviceId', $deviceUid, time()+60*60*24*365*10);
44
-			error_log('Created account with JodelDeviceId:' . $deviceUid .  ' for [' . $_SERVER ['HTTP_USER_AGENT'] . ']');
43
+			setcookie('JodelDeviceId', $deviceUid, time() + 60 * 60 * 24 * 365 * 10);
44
+			error_log('Created account with JodelDeviceId:' . $deviceUid . ' for [' . $_SERVER ['HTTP_USER_AGENT'] . ']');
45 45
 			
46 46
 		}
47 47
 		else
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 	//Set View
63 63
 	if(isset($_GET['view']))
64 64
 	{
65
-		switch ($_GET['view']) {
65
+		switch($_GET['view']) {
66 66
 			case 'comment':
67 67
 				$view = 'comment';
68 68
 				break;
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 				else
121 121
 				{
122 122
 					$newPositionStatus = $name;
123
-					error_log('User with JodelDeviceId:' . $deviceUid .  ' [' . $_SERVER['REMOTE_ADDR'] . '][' . $_SERVER ['HTTP_USER_AGENT'] . '] changed to Location: ' . $name);
123
+					error_log('User with JodelDeviceId:' . $deviceUid . ' [' . $_SERVER['REMOTE_ADDR'] . '][' . $_SERVER ['HTTP_USER_AGENT'] . '] changed to Location: ' . $name);
124 124
 				}
125 125
 			}
126 126
 		}
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
 		if(isset($_POST['color']))
168 168
 		{
169 169
 			$color = $_POST['color'];
170
-			switch ($color) {
170
+			switch($color) {
171 171
 				case '8ABDB0':
172 172
 					$color = '8ABDB0';
173 173
 					break;
@@ -353,13 +353,13 @@  discard block
 block discarded – undo
353 353
 							else
354 354
 							{
355 355
 								$version = 'v2';
356
-								if($view=='comment')
356
+								if($view == 'comment')
357 357
 								{
358 358
 									$url = "/v2/posts/location/discussed/";
359 359
 								}
360 360
 								else
361 361
 								{
362
-									if($view=='upVote')
362
+									if($view == 'upVote')
363 363
 									{
364 364
 										$url = "/v2/posts/location/popular/";
365 365
 									}
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
 							}
384 384
 							
385 385
 
386
-							for($i = 0; $i<$loops; $i++)
386
+							for($i = 0; $i < $loops; $i++)
387 387
 							{
388 388
 								if(array_key_exists($i, $posts) && array_key_exists('post_id', $posts[$i]) && isset($posts[$i]['post_id']))
389 389
 								{
@@ -427,7 +427,7 @@  discard block
 block discarded – undo
427 427
 								<?php if(isset($_GET['postID']) && isset($_GET['getPostDetails'])) { ?>
428 428
 								<h2>Comment on Jodel</h2>
429 429
 								<form method="POST">				
430
-										<input type="hidden" name="ancestor" value="<?php echo htmlspecialchars($_GET['postID']);?>" />
430
+										<input type="hidden" name="ancestor" value="<?php echo htmlspecialchars($_GET['postID']); ?>" />
431 431
 										<textarea id="message" name="message" placeholder="Send a comment on a Jodel to all students within 10km" required></textarea> 
432 432
 									<br />
433 433
 									<input type="submit" value="SEND" /> 
@@ -464,13 +464,13 @@  discard block
 block discarded – undo
464 464
 				<div class="col-xs-12">
465 465
 					<div class="row">
466 466
 						<div class="col-xs-3">
467
-							<a href="index.php" <?php if($view=='time') echo 'class="active"';?>><i class="fa fa-clock-o fa-3x"></i></a>
467
+							<a href="index.php" <?php if($view == 'time') echo 'class="active"'; ?>><i class="fa fa-clock-o fa-3x"></i></a>
468 468
 						</div>
469 469
 						<div class="col-xs-3">
470
-							<a href="index.php?view=comment" <?php if($view=='comment') echo 'class="active"';?>><i class="fa fa-commenting-o fa-3x"></i></a>
470
+							<a href="index.php?view=comment" <?php if($view == 'comment') echo 'class="active"'; ?>><i class="fa fa-commenting-o fa-3x"></i></a>
471 471
 						</div>
472 472
 						<div class="col-xs-3">
473
-							<a href="index.php?view=upVote" <?php if($view=='upVote') echo 'class="active"';?>><i class="fa fa-angle-up fa-3x"></i></a>
473
+							<a href="index.php?view=upVote" <?php if($view == 'upVote') echo 'class="active"'; ?>><i class="fa fa-angle-up fa-3x"></i></a>
474 474
 						</div>
475 475
 						<div class="col-xs-3">
476 476
 							<nav>
Please login to merge, or discard this patch.
php/Requests/AbstractRequest.php 4 patches
Braces   +13 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 abstract class AbstractRequest
4
-{	
4
+{
5 5
     const CLIENTID = '81e8a76e-1e02-4d17-9ba0-8a7020261b26';
6 6
     const APIURL = 'https://api.go-tellm.com/api';
7 7
     const SECRET = 'OFIqFvBgkccPNTVbIzkYaSmrwMlbVzRoOBBjXUIG';
@@ -19,7 +19,8 @@  discard block
 block discarded – undo
19 19
 		        
20 20
 		$this->payLoad = $this->getPayload();
21 21
 		$device_uid = '';
22
-		if(isset($this->payLoad['device_uid'])) {
22
+		if(isset($this->payLoad['device_uid']))
23
+		{
23 24
 			$device_uid = $this->payLoad['device_uid'];
24 25
 		}
25 26
 				
@@ -28,7 +29,8 @@  discard block
 block discarded – undo
28 29
         $header = $this->getSignHeaders();
29 30
         $url = $this->getFullUrl();
30 31
 
31
-        if ($this->getAccessToken()) {
32
+        if ($this->getAccessToken())
33
+        {
32 34
             $header['Authorization'] = "Bearer " . $this->getAccessToken();
33 35
         }
34 36
         //Comment out to debug the Request:
@@ -45,7 +47,8 @@  discard block
 block discarded – undo
45 47
             'proxy' => '186.103.169.165:8080',
46 48
         );*/
47 49
 
48
-        switch ($this->getMethod()) {
50
+        switch ($this->getMethod())
51
+        {
49 52
             case 'POST':
50 53
                 $result = Requests::post($url, $header, $this->payLoad);
51 54
                 break;
@@ -63,7 +66,8 @@  discard block
 block discarded – undo
63 66
                 $result = Requests::put($url, $header, $this->payLoad);
64 67
                 break;
65 68
         }
66
-        switch ($result->status_code) {
69
+        switch ($result->status_code)
70
+        {
67 71
             case 200:
68 72
                 $result = json_decode($result->body, true);
69 73
                 break;
@@ -114,10 +118,12 @@  discard block
 block discarded – undo
114 118
      */
115 119
     private function getSignHeaders()
116 120
     {
117
-			if($this->getAccessToken() == null) {
121
+			if($this->getAccessToken() == null)
122
+			{
118 123
 				$payload_accessToken = "";
119 124
 			}
120
-			else {
125
+			else
126
+			{
121 127
 				$payload_accessToken = $this->getAccessToken();
122 128
 			}
123 129
 			
Please login to merge, or discard this patch.
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
     const USERAGENT = 'Jodel/4.32.2 Dalvik/2.1.0 (Linux; U; Android 5.1.1; )';
9 9
     const CLIENT_TYPE = 'android_4.32.2';
10 10
     
11
-    private $accessToken = null;
11
+    private $accessToken = NULL;
12 12
     private $payLoad;
13 13
     public $expects = '';
14 14
     public $version = 'v2';
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
         }
66 66
         switch ($result->status_code) {
67 67
             case 200:
68
-                $result = json_decode($result->body, true);
68
+                $result = json_decode($result->body, TRUE);
69 69
                 break;
70 70
             case 204:
71 71
                 $result = "Success";
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
      */
115 115
     private function getSignHeaders()
116 116
     {
117
-			if($this->getAccessToken() == null) {
117
+			if($this->getAccessToken() == NULL) {
118 118
 				$payload_accessToken = "";
119 119
 			}
120 120
 			else {
Please login to merge, or discard this patch.
Indentation   +129 added lines, -129 removed lines patch added patch discarded remove patch
@@ -2,19 +2,19 @@  discard block
 block discarded – undo
2 2
 
3 3
 abstract class AbstractRequest
4 4
 {	
5
-    const CLIENTID = '81e8a76e-1e02-4d17-9ba0-8a7020261b26';
6
-    const APIURL = 'https://api.go-tellm.com/api';
7
-    const SECRET = 'OFIqFvBgkccPNTVbIzkYaSmrwMlbVzRoOBBjXUIG';
8
-    const USERAGENT = 'Jodel/4.32.2 Dalvik/2.1.0 (Linux; U; Android 5.1.1; )';
9
-    const CLIENT_TYPE = 'android_4.32.2';
5
+	const CLIENTID = '81e8a76e-1e02-4d17-9ba0-8a7020261b26';
6
+	const APIURL = 'https://api.go-tellm.com/api';
7
+	const SECRET = 'OFIqFvBgkccPNTVbIzkYaSmrwMlbVzRoOBBjXUIG';
8
+	const USERAGENT = 'Jodel/4.32.2 Dalvik/2.1.0 (Linux; U; Android 5.1.1; )';
9
+	const CLIENT_TYPE = 'android_4.32.2';
10 10
     
11
-    private $accessToken = null;
12
-    private $payLoad;
13
-    public $expects = '';
14
-    public $version = 'v2';
11
+	private $accessToken = null;
12
+	private $payLoad;
13
+	public $expects = '';
14
+	public $version = 'v2';
15 15
 
16
-    public function execute()
17
-    {
16
+	public function execute()
17
+	{
18 18
 		$result = new \stdClass();
19 19
 		        
20 20
 		$this->payLoad = $this->getPayload();
@@ -24,15 +24,15 @@  discard block
 block discarded – undo
24 24
 		}
25 25
 				
26 26
 				
27
-        $this->payLoad = json_encode($this->payLoad);
28
-        $header = $this->getSignHeaders();
29
-        $url = $this->getFullUrl();
27
+		$this->payLoad = json_encode($this->payLoad);
28
+		$header = $this->getSignHeaders();
29
+		$url = $this->getFullUrl();
30 30
 
31
-        if ($this->getAccessToken()) {
32
-            $header['Authorization'] = "Bearer " . $this->getAccessToken();
33
-        }
34
-        //Comment out to debug the Request:
35
-        /*
31
+		if ($this->getAccessToken()) {
32
+			$header['Authorization'] = "Bearer " . $this->getAccessToken();
33
+		}
34
+		//Comment out to debug the Request:
35
+		/*
36 36
         printf("URL: ");
37 37
         var_dump($url);
38 38
         echo "<br />";
@@ -43,82 +43,82 @@  discard block
 block discarded – undo
43 43
         var_dump($this->payLoad);
44 44
         echo "<br />";
45 45
         */
46
-        /*
46
+		/*
47 47
         $options = array(
48 48
             'timeout' => 100,
49 49
             'connect_timeout' => 100,
50 50
             'proxy' => '186.103.169.165:8080',
51 51
         );*/
52 52
 
53
-        switch ($this->getMethod()) {
54
-            case 'POST':
55
-                $result = Requests::post($url, $header, $this->payLoad);
56
-                break;
57
-            case 'GET':
58
-                if($this->version == 'v3')
59
-                {
60
-                    $result = Requests::get($url, $header);
61
-                }
62
-                else
63
-                {
64
-                    $result = Requests::get($url, $header);
65
-                }
66
-                break;
67
-            case 'PUT':
68
-                $result = Requests::put($url, $header, $this->payLoad);
69
-                break;
70
-        }
71
-        switch ($result->status_code) {
72
-            case 200:
73
-                $result = json_decode($result->body, true);
74
-                break;
75
-            case 204:
76
-                $result = "Success";
77
-                break;
78
-            case 401:
53
+		switch ($this->getMethod()) {
54
+			case 'POST':
55
+				$result = Requests::post($url, $header, $this->payLoad);
56
+				break;
57
+			case 'GET':
58
+				if($this->version == 'v3')
59
+				{
60
+					$result = Requests::get($url, $header);
61
+				}
62
+				else
63
+				{
64
+					$result = Requests::get($url, $header);
65
+				}
66
+				break;
67
+			case 'PUT':
68
+				$result = Requests::put($url, $header, $this->payLoad);
69
+				break;
70
+		}
71
+		switch ($result->status_code) {
72
+			case 200:
73
+				$result = json_decode($result->body, true);
74
+				break;
75
+			case 204:
76
+				$result = "Success";
77
+				break;
78
+			case 401:
79 79
 				//throw new \Exception('Unauthorized');
80
-                error_log('Error 401 - Unauthorized'); // - JodelDeviceId:' . $deviceUid);
81
-                break;
82
-            case 404:
83
-                //echo "Es wurde bereits gevoted";
84
-                error_log('Error 404 - Es wurde bereits gevoted'); // - JodelDeviceId:' . $deviceUid);
80
+				error_log('Error 401 - Unauthorized'); // - JodelDeviceId:' . $deviceUid);
81
+				break;
82
+			case 404:
83
+				//echo "Es wurde bereits gevoted";
84
+				error_log('Error 404 - Es wurde bereits gevoted'); // - JodelDeviceId:' . $deviceUid);
85 85
 			case 477:
86
-                //echo "Es wurde bereits gevoted";
87
-                //throw  new \Exception('Signing failed!');
88
-                error_log('Error 477 - Signing failed'); // - JodelDeviceId:' . $deviceUid);
89
-                break;
90
-            case 429:
91
-                error_log('Error 429 - Too Many Requests'); // - JodelDeviceId:' . $deviceUid);
92
-            	exit("Error 429: Too Many Requests");
93
-            	break;
94
-            case 403:
95
-                error_log('Error 403 - Access denied'); // - JodelDeviceId:' . $deviceUid);
96
-                exit("Error 403: Access denied");
97
-                break;
98
-            default:
99
-                error_log('Error '.$result->status_code.' - Unauthorized'); // - JodelDeviceId:' . $deviceUid);
100
-                //throw  new \Exception('Unknown Error: '.$result->status_code);
101
-        }
86
+				//echo "Es wurde bereits gevoted";
87
+				//throw  new \Exception('Signing failed!');
88
+				error_log('Error 477 - Signing failed'); // - JodelDeviceId:' . $deviceUid);
89
+				break;
90
+			case 429:
91
+				error_log('Error 429 - Too Many Requests'); // - JodelDeviceId:' . $deviceUid);
92
+				exit("Error 429: Too Many Requests");
93
+				break;
94
+			case 403:
95
+				error_log('Error 403 - Access denied'); // - JodelDeviceId:' . $deviceUid);
96
+				exit("Error 403: Access denied");
97
+				break;
98
+			default:
99
+				error_log('Error '.$result->status_code.' - Unauthorized'); // - JodelDeviceId:' . $deviceUid);
100
+				//throw  new \Exception('Unknown Error: '.$result->status_code);
101
+		}
102 102
 
103
-        if($device_uid != '')
104
-        {
103
+		if($device_uid != '')
104
+		{
105 105
 			$result[0] = $result;
106 106
 			$result[1] = $device_uid;
107 107
 	}
108 108
 
109
-        /*
109
+		/*
110 110
         var_dump($result);
111 111
         */
112 112
 
113
-        return $result;
114
-    }
115
-    abstract function getPayload();
116
-    /**
117
-     * Gets Sign headers
118
-     * @return array headers
119
-     */
120
-    private function getSignHeaders()
121
-    {
113
+		return $result;
114
+	}
115
+	abstract function getPayload();
116
+	/**
117
+	 * Gets Sign headers
118
+	 * @return array headers
119
+	 */
120
+	private function getSignHeaders()
121
+	{
122 122
 			if($this->getAccessToken() == null) {
123 123
 				$payload_accessToken = "";
124 124
 			}
@@ -127,54 +127,54 @@  discard block
 block discarded – undo
127 127
 			}
128 128
 			
129 129
 			
130
-        $headers = array(
131
-            "Connection" => "keep-alive",
132
-            "Accept-Encoding" => "gzip",
133
-            "Content-Type" => "application/json; charset=UTF-8",
134
-            "User-Agent" => self::USERAGENT
135
-        );
136
-        $timestamp = new DateTime();
137
-        $timestamp = $timestamp->format(DateTime::ATOM);
138
-        $timestamp = substr($timestamp, 0, -6);
139
-        $timestamp .= "Z";
140
-        $urlParts = parse_url($this->getFullUrl());
141
-        $url2 = "";
142
-        $req = [$this->getMethod(),
143
-            $urlParts['host'],
144
-            "443",
145
-            $urlParts['path'],
146
-            $payload_accessToken,
147
-            $timestamp,
148
-            $url2,
149
-            $this->payLoad];
150
-        $reqString = implode("%", $req);
151
-        $secret = self::SECRET;
152
-        $signature = hash_hmac('sha1', $reqString, $secret);
153
-        $signature = strtoupper($signature);
154
-        $headers['X-Authorization'] = 'HMAC ' . $signature;
155
-        $headers['X-Client-Type'] = self::CLIENT_TYPE;
156
-        $headers['X-Timestamp'] = $timestamp;
157
-        $headers['X-Api-Version'] = '0.2';
158
-        return $headers;
159
-    }
160
-    private function getFullUrl()
161
-    {
162
-        return self::APIURL . $this->getApiEndPoint();
163
-    }
164
-    abstract function getApiEndPoint();
165
-    abstract function getMethod();
166
-    /**
167
-     * @return string
168
-     */
169
-    private function getAccessToken()
170
-    {
171
-        return $this->accessToken;
172
-    }
173
-    /**
174
-     * @param string $accessToken
175
-     */
176
-    public function setAccessToken($accessToken)
177
-    {
178
-        $this->accessToken = $accessToken;
179
-    }
130
+		$headers = array(
131
+			"Connection" => "keep-alive",
132
+			"Accept-Encoding" => "gzip",
133
+			"Content-Type" => "application/json; charset=UTF-8",
134
+			"User-Agent" => self::USERAGENT
135
+		);
136
+		$timestamp = new DateTime();
137
+		$timestamp = $timestamp->format(DateTime::ATOM);
138
+		$timestamp = substr($timestamp, 0, -6);
139
+		$timestamp .= "Z";
140
+		$urlParts = parse_url($this->getFullUrl());
141
+		$url2 = "";
142
+		$req = [$this->getMethod(),
143
+			$urlParts['host'],
144
+			"443",
145
+			$urlParts['path'],
146
+			$payload_accessToken,
147
+			$timestamp,
148
+			$url2,
149
+			$this->payLoad];
150
+		$reqString = implode("%", $req);
151
+		$secret = self::SECRET;
152
+		$signature = hash_hmac('sha1', $reqString, $secret);
153
+		$signature = strtoupper($signature);
154
+		$headers['X-Authorization'] = 'HMAC ' . $signature;
155
+		$headers['X-Client-Type'] = self::CLIENT_TYPE;
156
+		$headers['X-Timestamp'] = $timestamp;
157
+		$headers['X-Api-Version'] = '0.2';
158
+		return $headers;
159
+	}
160
+	private function getFullUrl()
161
+	{
162
+		return self::APIURL . $this->getApiEndPoint();
163
+	}
164
+	abstract function getApiEndPoint();
165
+	abstract function getMethod();
166
+	/**
167
+	 * @return string
168
+	 */
169
+	private function getAccessToken()
170
+	{
171
+		return $this->accessToken;
172
+	}
173
+	/**
174
+	 * @param string $accessToken
175
+	 */
176
+	public function setAccessToken($accessToken)
177
+	{
178
+		$this->accessToken = $accessToken;
179
+	}
180 180
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
         $header = $this->getSignHeaders();
29 29
         $url = $this->getFullUrl();
30 30
 
31
-        if ($this->getAccessToken()) {
31
+        if($this->getAccessToken()) {
32 32
             $header['Authorization'] = "Bearer " . $this->getAccessToken();
33 33
         }
34 34
         //Comment out to debug the Request:
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
             'proxy' => '186.103.169.165:8080',
51 51
         );*/
52 52
 
53
-        switch ($this->getMethod()) {
53
+        switch($this->getMethod()) {
54 54
             case 'POST':
55 55
                 $result = Requests::post($url, $header, $this->payLoad);
56 56
                 break;
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
                 $result = Requests::put($url, $header, $this->payLoad);
69 69
                 break;
70 70
         }
71
-        switch ($result->status_code) {
71
+        switch($result->status_code) {
72 72
             case 200:
73 73
                 $result = json_decode($result->body, true);
74 74
                 break;
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
                 exit("Error 403: Access denied");
97 97
                 break;
98 98
             default:
99
-                error_log('Error '.$result->status_code.' - Unauthorized'); // - JodelDeviceId:' . $deviceUid);
99
+                error_log('Error ' . $result->status_code . ' - Unauthorized'); // - JodelDeviceId:' . $deviceUid);
100 100
                 //throw  new \Exception('Unknown Error: '.$result->status_code);
101 101
         }
102 102
 
Please login to merge, or discard this patch.
php/jodel-web.php 5 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -294,11 +294,11 @@  discard block
 block discarded – undo
294 294
 
295 295
 	if($result->num_rows == 0)
296 296
 	{
297
-	    return FALSE;
297
+		return FALSE;
298 298
 	}
299 299
 	else
300 300
 	{
301
-	    return TRUE;
301
+		return TRUE;
302 302
 	}
303 303
 }
304 304
 
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
 {
393 393
 	preg_match('/bot|spider|google|twitter/i', $_SERVER['HTTP_USER_AGENT'], $matches);
394 394
 
395
-    return (isset($matches[0])) ? true : false;
395
+	return (isset($matches[0])) ? true : false;
396 396
 }
397 397
 
398 398
 function botDeviceUidIsSet($config)
Please login to merge, or discard this patch.
Spacing   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -21,9 +21,9 @@  discard block
 block discarded – undo
21 21
 function isDeviceUidInDatabase($deviceUid)
22 22
 {
23 23
 	$db = new DatabaseConnect();  
24
-	$result = $db->query("SELECT * FROM accounts WHERE device_uid='" . $deviceUid  . "'");
24
+	$result = $db->query("SELECT * FROM accounts WHERE device_uid='" . $deviceUid . "'");
25 25
 
26
-	if ($result->num_rows > 0)
26
+	if($result->num_rows > 0)
27 27
 	{
28 28
 		return TRUE;
29 29
 	}
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 	
41 41
 	$access_token;
42 42
 
43
-	if ($result->num_rows > 0)
43
+	if($result->num_rows > 0)
44 44
 	{
45 45
 			// output data of each row
46 46
 			while($row = $result->fetch_assoc()) {
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
 	if($expiration_date <= time()) {
59 59
 		$accountCreator = new CreateUser();
60
-		$accountCreator->setAccessToken($access_token);//$accountData->getAccessToken());
60
+		$accountCreator->setAccessToken($access_token); //$accountData->getAccessToken());
61 61
 		$accountCreator->setDeviceUid($deviceUid);
62 62
 		$accountCreator->setLocation($location);
63 63
 		$data = $accountCreator->execute();
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 									expiration_date='" . $expiration_date . "'
73 73
 								WHERE device_uid='" . $device_uid . "'");
74 74
 
75
-		if($result === false){
75
+		if($result === false) {
76 76
 				echo "Adding account failed: (" . $db->errno . ") " . $db->error;
77 77
 		}	
78 78
 	}
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 	$db = new DatabaseConnect();  
86 86
 	$result = $db->query("SELECT * FROM accounts WHERE access_token='" . $accessToken . "'");
87 87
 	
88
-	if ($result->num_rows > 0)
88
+	if($result->num_rows > 0)
89 89
 	{
90 90
 			// output data of each row
91 91
 			while($row = $result->fetch_assoc()) {
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 
103 103
 	if($expiration_date <= time()) {
104 104
 		$accountCreator = new CreateUser();
105
-		$accountCreator->setAccessToken($access_token);//$accountData->getAccessToken());
105
+		$accountCreator->setAccessToken($access_token); //$accountData->getAccessToken());
106 106
 		$accountCreator->setDeviceUid($deviceUid);
107 107
 		$accountCreator->setLocation($location);
108 108
 		$data = $accountCreator->execute();
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
 									expiration_date='" . $expiration_date . "'
118 118
 								WHERE device_uid='" . $device_uid . "'");
119 119
 
120
-		if($result === false){
120
+		if($result === false) {
121 121
 				echo "Adding account failed: (" . $db->errno . ") " . $db->error;
122 122
 		}	
123 123
 	}
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 
133 133
 	$access_token;
134 134
 
135
-	if ($result->num_rows > 0)
135
+	if($result->num_rows > 0)
136 136
 	{
137 137
 			// output data of each row
138 138
 			while($row = $result->fetch_assoc()) {
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
 									expiration_date='" . $expiration_date . "'
165 165
 								WHERE device_uid='" . $device_uid . "'");
166 166
 
167
-		if($result === false){
167
+		if($result === false) {
168 168
 				echo "Adding account failed: (" . $db->errno . ") " . $db->error;
169 169
 		}	
170 170
 	}
@@ -175,11 +175,11 @@  discard block
 block discarded – undo
175 175
 function getLocationByAccessToken($accessToken)
176 176
 {
177 177
 	$db = new DatabaseConnect();
178
-	$result = $db->query("SELECT * FROM accounts WHERE access_token='" . $accessToken  . "'");
178
+	$result = $db->query("SELECT * FROM accounts WHERE access_token='" . $accessToken . "'");
179 179
 	
180 180
 	$location = new Location();
181 181
 	
182
-	if ($result->num_rows > 0)
182
+	if($result->num_rows > 0)
183 183
 	{
184 184
 		// output data of each row
185 185
 		while($row = $result->fetch_assoc())
@@ -200,11 +200,11 @@  discard block
 block discarded – undo
200 200
 function getLocationByDeviceUid($deviceUid)
201 201
 {
202 202
 	$db = new DatabaseConnect();
203
-	$result = $db->query("SELECT * FROM accounts WHERE device_uid='" . $deviceUid  . "'");
203
+	$result = $db->query("SELECT * FROM accounts WHERE device_uid='" . $deviceUid . "'");
204 204
 	
205 205
 	$location = new Location();
206 206
 	
207
-	if ($result->num_rows > 0)
207
+	if($result->num_rows > 0)
208 208
 	{
209 209
 		// output data of each row
210 210
 		while($row = $result->fetch_assoc())
@@ -225,11 +225,11 @@  discard block
 block discarded – undo
225 225
 function getDeviceUidByAccessToken($accesstoken)
226 226
 {
227 227
 	$db = new DatabaseConnect();
228
-	$result = $db->query("SELECT device_uid FROM accounts WHERE access_token='" . $accesstoken  . "'");
228
+	$result = $db->query("SELECT device_uid FROM accounts WHERE access_token='" . $accesstoken . "'");
229 229
 	
230 230
 	$deviceUid;
231 231
 	
232
-	if ($result->num_rows > 0)
232
+	if($result->num_rows > 0)
233 233
 	{
234 234
 		// output data of each row
235 235
 		while($row = $result->fetch_assoc())
@@ -248,11 +248,11 @@  discard block
 block discarded – undo
248 248
 function getAccessTokenByDeviceUid($deviceUid)
249 249
 {
250 250
 	$db = new DatabaseConnect();
251
-	$result = $db->query("SELECT * FROM accounts WHERE device_uid='" . $deviceUid  . "'");
251
+	$result = $db->query("SELECT * FROM accounts WHERE device_uid='" . $deviceUid . "'");
252 252
 	
253 253
 	$accessToken;
254 254
 	
255
-	if ($result->num_rows > 0)
255
+	if($result->num_rows > 0)
256 256
 	{
257 257
 		// output data of each row
258 258
 		while($row = $result->fetch_assoc())
@@ -319,7 +319,7 @@  discard block
 block discarded – undo
319 319
 	$result = $db->query("INSERT INTO votes (device_uid, postId, type)
320 320
 					VALUES ('" . $device_uid . "','" . $postId . "','" . $voteType . "')");
321 321
 	
322
-	if($result === false){
322
+	if($result === false) {
323 323
 			$error = db_error();
324 324
 			echo $error;
325 325
 			echo "Adding Vote failed: (" . $result->errno . ") " . $result->error;
@@ -348,11 +348,11 @@  discard block
 block discarded – undo
348 348
 	$result = $db->query("INSERT INTO accounts (access_token, refresh_token, token_type,
349 349
 					expires_in, expiration_date, distinct_id, device_uid, name, lat, lng)
350 350
 					VALUES ('" . $access_token . "','" . $refresh_token . "','" . $token_type .
351
-					"','" .  $expires_in . "','" . $expiration_date . "','" . $distinct_id .
351
+					"','" . $expires_in . "','" . $expiration_date . "','" . $distinct_id .
352 352
 					"','" . $device_uid . "','" . $name . "','" . $lat . "','" . $lng . "') ");
353 353
 
354 354
 	$success = TRUE;
355
-	if($result === false){
355
+	if($result === false) {
356 356
 			$error = db_error();
357 357
 			echo $error;
358 358
 			echo "Adding account failed: (" . $result->errno . ") " . $result->error;
@@ -398,7 +398,7 @@  discard block
 block discarded – undo
398 398
 {
399 399
 	preg_match('/bot|spider|google|twitter/i', $_SERVER['HTTP_USER_AGENT'], $matches);
400 400
 
401
-    return (isset($matches[0])) ? true : false;
401
+    return (isset($matches[0]))?true : false;
402 402
 }
403 403
 
404 404
 function botDeviceUidIsSet($config)
@@ -429,25 +429,25 @@  discard block
 block discarded – undo
429 429
 	$timediff_inDays = (string)$timediff->format('%d');
430 430
 	$timediff_inMonth = (string)$timediff->format('%m');
431 431
 
432
-	if($timediff_inMonth!=0)
432
+	if($timediff_inMonth != 0)
433 433
 	{
434 434
 			$timediff = $timediff_inMonth . "m";
435 435
 	}
436 436
 	else
437 437
 	{
438
-		if($timediff_inDays!=0)
438
+		if($timediff_inDays != 0)
439 439
 		{
440 440
 			$timediff = $timediff_inDays . "d";
441 441
 		}
442 442
 		else
443 443
 		{
444
-			if($timediff_inHours!=0)
444
+			if($timediff_inHours != 0)
445 445
 			{
446 446
 				$timediff = $timediff_inHours . "h";
447 447
 			}
448 448
 			else
449 449
 			{
450
-				if($timediff_inMinutes!=0)
450
+				if($timediff_inMinutes != 0)
451 451
 				{
452 452
 					$timediff = $timediff_inMinutes . "m";
453 453
 				}
@@ -461,7 +461,7 @@  discard block
 block discarded – undo
461 461
 
462 462
 
463 463
 	?>
464
-	<article id ="postId-<?php echo $post["post_id"]; ?>" class="jodel" style="background-color: #<?php echo $post["color"];?>;">
464
+	<article id ="postId-<?php echo $post["post_id"]; ?>" class="jodel" style="background-color: #<?php echo $post["color"]; ?>;">
465 465
 		<content>
466 466
 			<?php 
467 467
 			if(isset($post["image_url"])) {
@@ -476,24 +476,24 @@  discard block
 block discarded – undo
476 476
 			<?php
477 477
 				if($isDetailedView)
478 478
 				{?>
479
-					<a href="index.php?vote=up&getPostDetails=true&postID=<?php echo $post['post_id'];?>&postID_parent=<?php echo htmlspecialchars($_GET['postID']);?>">
479
+					<a href="index.php?vote=up&getPostDetails=true&postID=<?php echo $post['post_id']; ?>&postID_parent=<?php echo htmlspecialchars($_GET['postID']); ?>">
480 480
 		  <?php }
481 481
 				else
482 482
 				{?>
483
-					<a href="index.php?vote=up&postID=<?php echo $post['post_id'];?>">
483
+					<a href="index.php?vote=up&postID=<?php echo $post['post_id']; ?>">
484 484
 		  <?php } ?>
485 485
 						<i class="fa fa-angle-up fa-3x"></i>
486 486
 					</a>	
487 487
 						<br />
488
-					<?php echo $post["vote_count"];?><br />
488
+					<?php echo $post["vote_count"]; ?><br />
489 489
 			<?php
490 490
 				if($isDetailedView)
491 491
 				{?>
492
-					<a href="index.php?vote=down&getPostDetails=true&postID=<?php echo $post['post_id'];?>&postID_parent=<?php echo htmlspecialchars($_GET['postID']);?>">
492
+					<a href="index.php?vote=down&getPostDetails=true&postID=<?php echo $post['post_id']; ?>&postID_parent=<?php echo htmlspecialchars($_GET['postID']); ?>">
493 493
 		  <?php }
494 494
 				else
495 495
 				{?>
496
-					<a href="index.php?vote=down&postID=<?php echo $post['post_id'];?>">
496
+					<a href="index.php?vote=down&postID=<?php echo $post['post_id']; ?>">
497 497
 		  <?php } ?>
498 498
 						<i class="fa fa-angle-down fa-3x"></i>
499 499
 					</a>
@@ -505,14 +505,14 @@  discard block
 block discarded – undo
505 505
 					<td class="time">
506 506
 						<span class="tip" data-tooltip="Time">
507 507
 							<i class="fa fa-clock-o"></i>
508
-							<?php echo $timediff;?>
509
-							<span class="tiptext"><?php echo $d->format('Y-m-d H:i:s');?></span>
508
+							<?php echo $timediff; ?>
509
+							<span class="tiptext"><?php echo $d->format('Y-m-d H:i:s'); ?></span>
510 510
 						</span> 
511 511
 					</td>
512 512
 					<td class="comments">
513 513
 						<?php if(!$isDetailedView) {?>
514 514
 						<span data-tooltip="Comments">
515
-							<a href="index.php?getPostDetails=true&view=<?php echo $view;?>&postID=<?php echo $post["post_id"];?>">
515
+							<a href="index.php?getPostDetails=true&view=<?php echo $view; ?>&postID=<?php echo $post["post_id"]; ?>">
516 516
 								<i class="fa fa-commenting-o"></i>
517 517
 								<?php if(array_key_exists("child_count", $post)) {
518 518
 											echo $post["child_count"];
@@ -541,7 +541,7 @@  discard block
 block discarded – undo
541 541
 									{
542 542
 							  			?>
543 543
 							  			<span data-tooltip="Author">
544
-											<i class="fa fa-user-o"></i> #<?php echo $post["user_handle"];?> |
544
+											<i class="fa fa-user-o"></i> #<?php echo $post["user_handle"]; ?> |
545 545
 										</span>
546 546
 										<?php
547 547
 									}
@@ -551,8 +551,8 @@  discard block
 block discarded – undo
551 551
 
552 552
 						<span class="tip" data-tooltip="Distance">
553 553
 							<i class="fa fa-map-marker"></i>
554
-							<?php echo $post['distance'];?> km
555
-							<span class="tiptext"><?php echo $post['location']['name'];?></span>
554
+							<?php echo $post['distance']; ?> km
555
+							<span class="tiptext"><?php echo $post['location']['name']; ?></span>
556 556
 						</span>
557 557
 					</td>
558 558
 				</tr>
Please login to merge, or discard this patch.
Upper-Lower-Casing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 									expiration_date='" . $expiration_date . "'
73 73
 								WHERE device_uid='" . $device_uid . "'");
74 74
 
75
-		if($result === false){
75
+		if($result === FALSE){
76 76
 				echo "Adding account failed: (" . $db->errno . ") " . $db->error;
77 77
 		}	
78 78
 	}
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
 									expiration_date='" . $expiration_date . "'
118 118
 								WHERE device_uid='" . $device_uid . "'");
119 119
 
120
-		if($result === false){
120
+		if($result === FALSE){
121 121
 				echo "Adding account failed: (" . $db->errno . ") " . $db->error;
122 122
 		}	
123 123
 	}
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
 									expiration_date='" . $expiration_date . "'
165 165
 								WHERE device_uid='" . $device_uid . "'");
166 166
 
167
-		if($result === false){
167
+		if($result === FALSE){
168 168
 				echo "Adding account failed: (" . $db->errno . ") " . $db->error;
169 169
 		}	
170 170
 	}
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
 						  FROM votes
289 289
 						  WHERE (postId = '" . $postId . "' AND device_uid = '" . $deviceUid . "')");
290 290
 	
291
-	if($result === false)
291
+	if($result === FALSE)
292 292
 	{
293 293
 		$error = db_error();
294 294
 		echo $error;
@@ -319,7 +319,7 @@  discard block
 block discarded – undo
319 319
 	$result = $db->query("INSERT INTO votes (device_uid, postId, type)
320 320
 					VALUES ('" . $device_uid . "','" . $postId . "','" . $voteType . "')");
321 321
 	
322
-	if($result === false){
322
+	if($result === FALSE){
323 323
 			$error = db_error();
324 324
 			echo $error;
325 325
 			echo "Adding Vote failed: (" . $result->errno . ") " . $result->error;
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
 					"','" . $device_uid . "','" . $name . "','" . $lat . "','" . $lng . "') ");
353 353
 
354 354
 	$success = TRUE;
355
-	if($result === false){
355
+	if($result === FALSE){
356 356
 			$error = db_error();
357 357
 			echo $error;
358 358
 			echo "Adding account failed: (" . $result->errno . ") " . $result->error;
@@ -398,7 +398,7 @@  discard block
 block discarded – undo
398 398
 {
399 399
 	preg_match('/bot|spider|google|twitter/i', $_SERVER['HTTP_USER_AGENT'], $matches);
400 400
 
401
-    return (isset($matches[0])) ? true : false;
401
+    return (isset($matches[0])) ? TRUE : FALSE;
402 402
 }
403 403
 
404 404
 function botDeviceUidIsSet($config)
Please login to merge, or discard this patch.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -278,6 +278,9 @@
 block discarded – undo
278 278
 	return $data["karma"];
279 279
 }
280 280
 
281
+/**
282
+ * @param string $postId
283
+ */
281 284
 function deviceUidHasVotedThisPostId($deviceUid, $postId)
282 285
 {
283 286
 	$db = new DatabaseConnect();
Please login to merge, or discard this patch.
Braces   +50 added lines, -25 removed lines patch added patch discarded remove patch
@@ -43,7 +43,8 @@  discard block
 block discarded – undo
43 43
 	if ($result->num_rows > 0)
44 44
 	{
45 45
 			// output data of each row
46
-			while($row = $result->fetch_assoc()) {
46
+			while($row = $result->fetch_assoc())
47
+			{
47 48
 					//$access_token = $row["access_token"];
48 49
 					$expiration_date = $row["expiration_date"];
49 50
 					$deviceUid = $row["device_uid"];
@@ -55,7 +56,8 @@  discard block
 block discarded – undo
55 56
 			echo '0 results';
56 57
 	}
57 58
 
58
-	if($expiration_date <= time()) {
59
+	if($expiration_date <= time())
60
+	{
59 61
 		$accountCreator = new CreateUser();
60 62
 		$accountCreator->setAccessToken($access_token);//$accountData->getAccessToken());
61 63
 		$accountCreator->setDeviceUid($deviceUid);
@@ -72,7 +74,8 @@  discard block
 block discarded – undo
72 74
 									expiration_date='" . $expiration_date . "'
73 75
 								WHERE device_uid='" . $device_uid . "'");
74 76
 
75
-		if($result === false){
77
+		if($result === false)
78
+		{
76 79
 				echo "Adding account failed: (" . $db->errno . ") " . $db->error;
77 80
 		}	
78 81
 	}
@@ -88,7 +91,8 @@  discard block
 block discarded – undo
88 91
 	if ($result->num_rows > 0)
89 92
 	{
90 93
 			// output data of each row
91
-			while($row = $result->fetch_assoc()) {
94
+			while($row = $result->fetch_assoc())
95
+			{
92 96
 					//$access_token = $row["access_token"];
93 97
 					$expiration_date = $row["expiration_date"];
94 98
 					$deviceUid = $row["device_uid"];
@@ -100,7 +104,8 @@  discard block
 block discarded – undo
100 104
 			echo '0 results';
101 105
 	}
102 106
 
103
-	if($expiration_date <= time()) {
107
+	if($expiration_date <= time())
108
+	{
104 109
 		$accountCreator = new CreateUser();
105 110
 		$accountCreator->setAccessToken($access_token);//$accountData->getAccessToken());
106 111
 		$accountCreator->setDeviceUid($deviceUid);
@@ -117,7 +122,8 @@  discard block
 block discarded – undo
117 122
 									expiration_date='" . $expiration_date . "'
118 123
 								WHERE device_uid='" . $device_uid . "'");
119 124
 
120
-		if($result === false){
125
+		if($result === false)
126
+		{
121 127
 				echo "Adding account failed: (" . $db->errno . ") " . $db->error;
122 128
 		}	
123 129
 	}
@@ -135,7 +141,8 @@  discard block
 block discarded – undo
135 141
 	if ($result->num_rows > 0)
136 142
 	{
137 143
 			// output data of each row
138
-			while($row = $result->fetch_assoc()) {
144
+			while($row = $result->fetch_assoc())
145
+			{
139 146
 					//$access_token = $row["access_token"];
140 147
 					$expiration_date = $row["expiration_date"];
141 148
 					$deviceUid = $row["device_uid"];
@@ -147,7 +154,8 @@  discard block
 block discarded – undo
147 154
 			echo '0 results';
148 155
 	}
149 156
 
150
-	if($expiration_date <= time()) {
157
+	if($expiration_date <= time())
158
+	{
151 159
 		$accountCreator = new CreateUser();
152 160
 		$accountCreator->setAccessToken($access_token);
153 161
 		$accountCreator->setDeviceUid($deviceUid);
@@ -164,7 +172,8 @@  discard block
 block discarded – undo
164 172
 									expiration_date='" . $expiration_date . "'
165 173
 								WHERE device_uid='" . $device_uid . "'");
166 174
 
167
-		if($result === false){
175
+		if($result === false)
176
+		{
168 177
 				echo "Adding account failed: (" . $db->errno . ") " . $db->error;
169 178
 		}	
170 179
 	}
@@ -320,14 +329,16 @@  discard block
 block discarded – undo
320 329
 	$result = $db->query("INSERT INTO votes (device_uid, postId, type)
321 330
 					VALUES ('" . $device_uid . "','" . $postId . "','" . $voteType . "')");
322 331
 	
323
-	if($result === false){
332
+	if($result === false)
333
+	{
324 334
 			$error = db_error();
325 335
 			echo $error;
326 336
 			echo "Adding Vote failed: (" . $result->errno . ") " . $result->error;
327 337
 	}		
328 338
 }
329 339
 
330
-function registerAccount(Location $location) {
340
+function registerAccount(Location $location)
341
+{
331 342
 	$accountCreator = new CreateUser();
332 343
 	$accountCreator->setLocation($location);
333 344
 	$data = $accountCreator->execute();
@@ -352,7 +363,8 @@  discard block
 block discarded – undo
352 363
 					"','" . $device_uid . "','" . $name . "','" . $lat . "','" . $lng . "') ");
353 364
 
354 365
 	$success = TRUE;
355
-	if($result === false){
366
+	if($result === false)
367
+	{
356 368
 			$error = db_error();
357 369
 			echo $error;
358 370
 			echo "Adding account failed: (" . $result->errno . ") " . $result->error;
@@ -363,7 +375,7 @@  discard block
 block discarded – undo
363 375
 }
364 376
 
365 377
 function getPosts($lastPostId, $accessToken, $url, $version = 'v2')
366
-{	
378
+{
367 379
 	$accountCreator = new GetPosts();
368 380
 	$accountCreator->setLastPostId($lastPostId);
369 381
 	$accountCreator->setAccessToken($accessToken);
@@ -414,7 +426,8 @@  discard block
 block discarded – undo
414 426
 }
415 427
 
416 428
 function jodelToHtml($post, $view = 'time', $isDetailedView = FALSE)
417
-{	//ToDO
429
+{
430
+//ToDO
418 431
 	//Replace # with link
419 432
 	//preg_replace('~(\#)([^\s!,. /()"\'?]+)~', '<a href="tag/$2">#$2</a>', $text);
420 433
 
@@ -464,10 +477,12 @@  discard block
 block discarded – undo
464 477
 	<article id ="postId-<?php echo $post["post_id"]; ?>" class="jodel" style="background-color: #<?php echo $post["color"];?>;">
465 478
 		<content>
466 479
 			<?php 
467
-			if(isset($post["image_url"])) {
480
+			if(isset($post["image_url"]))
481
+			{
468 482
 				echo '<img src="' . $post["image_url"] . '">';
469 483
 			}
470
-			else {
484
+			else
485
+			{
471 486
 				echo str_replace('  ', ' &nbsp;', nl2br(htmlspecialchars($post["message"])));
472 487
 			}
473 488
 			?>
@@ -475,11 +490,13 @@  discard block
 block discarded – undo
475 490
 		<aside>
476 491
 			<?php
477 492
 				if($isDetailedView)
478
-				{?>
493
+				{
494
+?>
479 495
 					<a href="index.php?vote=up&getPostDetails=true&postID=<?php echo $post['post_id'];?>&postID_parent=<?php echo htmlspecialchars($_GET['postID']);?>">
480 496
 		  <?php }
481
-				else
482
-				{?>
497
+else
498
+				{
499
+?>
483 500
 					<a href="index.php?vote=up&postID=<?php echo $post['post_id'];?>">
484 501
 		  <?php } ?>
485 502
 						<i class="fa fa-angle-up fa-3x"></i>
@@ -488,11 +505,13 @@  discard block
 block discarded – undo
488 505
 					<?php echo $post["vote_count"];?><br />
489 506
 			<?php
490 507
 				if($isDetailedView)
491
-				{?>
508
+				{
509
+?>
492 510
 					<a href="index.php?vote=down&getPostDetails=true&postID=<?php echo $post['post_id'];?>&postID_parent=<?php echo htmlspecialchars($_GET['postID']);?>">
493 511
 		  <?php }
494
-				else
495
-				{?>
512
+else
513
+				{
514
+?>
496 515
 					<a href="index.php?vote=down&postID=<?php echo $post['post_id'];?>">
497 516
 		  <?php } ?>
498 517
 						<i class="fa fa-angle-down fa-3x"></i>
@@ -510,13 +529,19 @@  discard block
 block discarded – undo
510 529
 						</span> 
511 530
 					</td>
512 531
 					<td class="comments">
513
-						<?php if(!$isDetailedView) {?>
532
+						<?php if(!$isDetailedView)
533
+{
534
+?>
514 535
 						<span data-tooltip="Comments">
515 536
 							<a href="index.php?getPostDetails=true&view=<?php echo $view;?>&postID=<?php echo $post["post_id"];?>">
516 537
 								<i class="fa fa-commenting-o"></i>
517
-								<?php if(array_key_exists("child_count", $post)) {
538
+								<?php if(array_key_exists("child_count", $post))
539
+{
518 540
 											echo $post["child_count"];
519
-										} else echo "0";
541
+										}
542
+										else {
543
+											echo "0";
544
+										}
520 545
 								?>
521 546
 								</a>
522 547
 						</span>
Please login to merge, or discard this patch.