Completed
Push — master ( 6f4b0c...c09e9f )
by Clinton
16s
created
public/listen.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,14 +12,20 @@
 block discarded – undo
12 12
 }
13 13
 
14 14
 $ttw = (int) @$_GET['ttw'];
15
-if ($ttw == 0) $ttw = 10;
16
-if ($ttw < 0 || $ttw > 10) $ttw = 10;
15
+if ($ttw == 0) {
16
+    $ttw = 10;
17
+}
18
+if ($ttw < 0 || $ttw > 10) {
19
+    $ttw = 10;
20
+}
17 21
 
18 22
 $filterValue = @$_GET['filterValue'];
19 23
 $filterValue = $filterValue != null ? (int) $filterValue : null;
20 24
 
21 25
 $package = unserialize(RedisQ\RedisQ::listen($queueID, $ip, $ttw, $filterValue));
22
-if ($package === false) $package = null;
26
+if ($package === false) {
27
+    $package = null;
28
+}
23 29
 
24 30
 $response = ['package' => $package];
25 31
 header("Access-Control-Allow-Origin: *");
Please login to merge, or discard this patch.
src/RedisQ.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
         $timeToWait = max(1, min(10, $timeToWait));
43 43
             
44
-        if ($ip != "37.59.50.21" && $redis->get("redisQ:banned:$ip") == "true")  {
44
+        if ($ip != "37.59.50.21" && $redis->get("redisQ:banned:$ip") == "true") {
45 45
             sleep(10);
46 46
             header("Location: /banned.html", 302);
47 47
             exit();
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
     }
88 88
 
89 89
     protected static function recursive_array_search($needle, $haystack) {
90
-        foreach($haystack as $key=>$value) {
90
+        foreach ($haystack as $key=>$value) {
91 91
             $current_key = $key;
92 92
             if ($needle === $value || (is_array($value) && self::recursive_array_search($needle, $value) !== false)) {
93 93
                 return true;
Please login to merge, or discard this patch.
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,7 +52,9 @@  discard block
 block discarded – undo
52 52
         if ($redis->set($wQueueID, true, Array('nx', 'ex'=>15)) === false) {
53 53
             $redis->incr("redisQ:queueID:429count:$ip");
54 54
             $redis->expire("redisQ:queueID:429count:$ip", 300);
55
-            if ($redis->get("redisQ:queueID:429count:$ip") > 30) $redis->setex("redisQ:banned:$ip", 10000, "true");
55
+            if ($redis->get("redisQ:queueID:429count:$ip") > 30) {
56
+                $redis->setex("redisQ:banned:$ip", 10000, "true");
57
+            }
56 58
             header('HTTP/1.1 429 Too many requests.');
57 59
             exit();
58 60
         }
@@ -65,7 +67,9 @@  discard block
 block discarded – undo
65 67
                 $object = false;
66 68
                 $pop = $redis->blPop($rQueueID, 1);
67 69
                 if (!isset($pop[1])) {
68
-                    if (time() >= ($time + $timeToWait)) return;
70
+                    if (time() >= ($time + $timeToWait)) {
71
+                        return;
72
+                    }
69 73
                 } else {
70 74
                     $objectID = $pop[1];
71 75
                     $object = $redis->get($objectID);
@@ -82,7 +86,9 @@  discard block
 block discarded – undo
82 86
 
83 87
     protected static function matchesFilter($filterValue, $object)
84 88
     {
85
-        if ($filterValue == null) return $object;
89
+        if ($filterValue == null) {
90
+            return $object;
91
+        }
86 92
         return self::recursive_array_search($filterValue, unserialize($object)) ? $object : false;
87 93
     }
88 94
 
Please login to merge, or discard this patch.