Completed
Push — master ( 9378c1...c4fd91 )
by Florian
04:50
created
code/SectionIO.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -38,9 +38,9 @@  discard block
 block discarded – undo
38 38
     {
39 39
         $image = Image::get()->byID($imageID);
40 40
         if ($image && $image->exists()) {
41
-            $exp = 'obj.http.x-url ~ "^/'.preg_quote($image->getFilename()).'$"'; // image itself
42
-            $exp    .= ' || obj.http.x-url ~ "^/'.preg_quote($image->Parent()->getFilename())
43
-                    .'_resampled/(.*)\-'.preg_quote($image->Name).'$"'; // resampled versions
41
+            $exp = 'obj.http.x-url ~ "^/' . preg_quote($image->getFilename()) . '$"'; // image itself
42
+            $exp .= ' || obj.http.x-url ~ "^/' . preg_quote($image->Parent()->getFilename())
43
+                    .'_resampled/(.*)\-' . preg_quote($image->Name) . '$"'; // resampled versions
44 44
             return static::performFlush($exp);
45 45
         }
46 46
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     {
52 52
         $file = File::get()->byID($fileID);
53 53
         if ($file && $file->exists()) {
54
-            $exp = 'obj.http.x-url ~ "^/'.preg_quote($file->getFilename()).'$"';
54
+            $exp = 'obj.http.x-url ~ "^/' . preg_quote($file->getFilename()) . '$"';
55 55
             return static::performFlush($exp);
56 56
         }
57 57
 
@@ -66,23 +66,23 @@  discard block
 block discarded – undo
66 66
             switch ($strategy) {
67 67
 
68 68
                 case 'single':
69
-                    $exp = 'obj.http.content-type ~ "'.preg_quote('text/html').'"';
70
-                    $exp .= ' && obj.http.x-url ~ "^'.preg_quote($sitetree->Link()).'$"';
69
+                    $exp = 'obj.http.content-type ~ "' . preg_quote('text/html') . '"';
70
+                    $exp .= ' && obj.http.x-url ~ "^' . preg_quote($sitetree->Link()) . '$"';
71 71
                     break;
72 72
 
73 73
                 case 'parents':
74
-                    $exp = 'obj.http.content-type ~ "'.preg_quote('text/html').'"';
75
-                    $exp .= ' && (obj.http.x-url ~ "^'.preg_quote($sitetree->Link()).'$"';
74
+                    $exp = 'obj.http.content-type ~ "' . preg_quote('text/html') . '"';
75
+                    $exp .= ' && (obj.http.x-url ~ "^' . preg_quote($sitetree->Link()) . '$"';
76 76
                     $parent = $sitetree->getParent();
77 77
                     while ($parent && $parent->exists()) {
78
-                        $exp .= ' || obj.http.x-url ~ "^'.preg_quote($parent->Link()).'$"';
78
+                        $exp .= ' || obj.http.x-url ~ "^' . preg_quote($parent->Link()) . '$"';
79 79
                         $parent = $parent->getParent();
80 80
                     }
81 81
                     $exp .= ')';
82 82
                     break;
83 83
 
84 84
                 case 'all':
85
-                    $exp = 'obj.http.content-type ~ "'.preg_quote('text/html').'"';
85
+                    $exp = 'obj.http.content-type ~ "' . preg_quote('text/html') . '"';
86 86
                     break;
87 87
 
88 88
                 case 'everyting':
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
     
101 101
     public static function flushURL($url) {
102 102
         if ($url) {
103
-            $exp = 'obj.http.x-url ~ "^/'.preg_quote($url).'$"';
103
+            $exp = 'obj.http.x-url ~ "^/' . preg_quote($url) . '$"';
104 104
             return static::performFlush($exp);
105 105
         }
106 106
         return false;
@@ -128,10 +128,10 @@  discard block
 block discarded – undo
128 128
 					$conn = $service->request(null, 'POST', null, $headers, $options);
129 129
 
130 130
 					if ($conn->isError()) {
131
-						SS_Log::log('SectionIO::performFlush :: '.$conn->getStatusCode().' : '.$conn->getStatusDescription().' : '.$url, SS_Log::ERR);
131
+						SS_Log::log('SectionIO::performFlush :: ' . $conn->getStatusCode() . ' : ' . $conn->getStatusDescription() . ' : ' . $url, SS_Log::ERR);
132 132
 						$success = $success && false;
133 133
 					} else {
134
-						SS_Log::log('SectionIO::performFlush :: ban successful. url: '.$url."; ban expression: '".$banExpression."'", SS_Log::NOTICE);
134
+						SS_Log::log('SectionIO::performFlush :: ban successful. url: ' . $url . "; ban expression: '" . $banExpression . "'", SS_Log::NOTICE);
135 135
 					}
136 136
 				}
137 137
 			} else {
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
     {
179 179
         $cert = ini_get('curl.cainfo');
180 180
         if (!$cert) {
181
-            $cert = BASE_PATH.'/'.SECTIONIO_BASE.'/cert/cacert.pem';
181
+            $cert = BASE_PATH . '/' . SECTIONIO_BASE . '/cert/cacert.pem';
182 182
         }
183 183
 
184 184
         return $cert;
Please login to merge, or discard this patch.