@@ -39,9 +39,9 @@ discard block |
||
39 | 39 | { |
40 | 40 | $image = Image::get()->byID($imageID); |
41 | 41 | if ($image && $image->exists()) { |
42 | - $exp = 'obj.http.x-url ~ "^/'.preg_quote($image->getFilename()).'$"'; // image itself |
|
43 | - $exp .= ' || obj.http.x-url ~ "^/'.preg_quote($image->Parent()->getFilename()) |
|
44 | - .'_resampled/(.*)\-'.preg_quote($image->Name).'$"'; // resampled versions |
|
42 | + $exp = 'obj.http.x-url ~ "^/' . preg_quote($image->getFilename()) . '$"'; // image itself |
|
43 | + $exp .= ' || obj.http.x-url ~ "^/' . preg_quote($image->Parent()->getFilename()) |
|
44 | + .'_resampled/(.*)\-' . preg_quote($image->Name) . '$"'; // resampled versions |
|
45 | 45 | return static::performFlush($exp); |
46 | 46 | } |
47 | 47 | |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | { |
53 | 53 | $file = File::get()->byID($fileID); |
54 | 54 | if ($file && $file->exists()) { |
55 | - $exp = 'obj.http.x-url ~ "^/'.preg_quote($file->getFilename()).'$"'; |
|
55 | + $exp = 'obj.http.x-url ~ "^/' . preg_quote($file->getFilename()) . '$"'; |
|
56 | 56 | return static::performFlush($exp); |
57 | 57 | } |
58 | 58 | |
@@ -67,23 +67,23 @@ discard block |
||
67 | 67 | switch ($strategy) { |
68 | 68 | |
69 | 69 | case 'single': |
70 | - $exp = 'obj.http.content-type ~ "'.preg_quote('text/html').'"'; |
|
71 | - $exp .= ' && obj.http.x-url ~ "^'.preg_quote($sitetree->Link()).'$"'; |
|
70 | + $exp = 'obj.http.content-type ~ "' . preg_quote('text/html') . '"'; |
|
71 | + $exp .= ' && obj.http.x-url ~ "^' . preg_quote($sitetree->Link()) . '$"'; |
|
72 | 72 | break; |
73 | 73 | |
74 | 74 | case 'parents': |
75 | - $exp = 'obj.http.content-type ~ "'.preg_quote('text/html').'"'; |
|
76 | - $exp .= ' && (obj.http.x-url ~ "^'.preg_quote($sitetree->Link()).'$"'; |
|
75 | + $exp = 'obj.http.content-type ~ "' . preg_quote('text/html') . '"'; |
|
76 | + $exp .= ' && (obj.http.x-url ~ "^' . preg_quote($sitetree->Link()) . '$"'; |
|
77 | 77 | $parent = $sitetree->getParent(); |
78 | 78 | while ($parent && $parent->exists()) { |
79 | - $exp .= ' || obj.http.x-url ~ "^'.preg_quote($parent->Link()).'$"'; |
|
79 | + $exp .= ' || obj.http.x-url ~ "^' . preg_quote($parent->Link()) . '$"'; |
|
80 | 80 | $parent = $parent->getParent(); |
81 | 81 | } |
82 | 82 | $exp .= ')'; |
83 | 83 | break; |
84 | 84 | |
85 | 85 | case 'all': |
86 | - $exp = 'obj.http.content-type ~ "'.preg_quote('text/html').'"'; |
|
86 | + $exp = 'obj.http.content-type ~ "' . preg_quote('text/html') . '"'; |
|
87 | 87 | break; |
88 | 88 | |
89 | 89 | case 'everyting': |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | |
102 | 102 | public static function flushURL($url) { |
103 | 103 | if ($url) { |
104 | - $exp = 'obj.http.x-url ~ "^'.preg_quote($url).'$"'; |
|
104 | + $exp = 'obj.http.x-url ~ "^' . preg_quote($url) . '$"'; |
|
105 | 105 | return static::performFlush($exp); |
106 | 106 | } |
107 | 107 | return false; |
@@ -129,10 +129,10 @@ discard block |
||
129 | 129 | $conn = $service->request(null, 'POST', null, $headers, $options); |
130 | 130 | |
131 | 131 | if ($conn->isError()) { |
132 | - SS_Log::log('SectionIO::performFlush :: '.$conn->getStatusCode().' : '.$conn->getStatusDescription().' : '.$url, SS_Log::ERR); |
|
132 | + SS_Log::log('SectionIO::performFlush :: ' . $conn->getStatusCode() . ' : ' . $conn->getStatusDescription() . ' : ' . $url, SS_Log::ERR); |
|
133 | 133 | $success = $success && false; |
134 | 134 | } else { |
135 | - SS_Log::log('SectionIO::performFlush :: ban successful. url: '.$url."; ban expression: '".$banExpression."'", SS_Log::NOTICE); |
|
135 | + SS_Log::log('SectionIO::performFlush :: ban successful. url: ' . $url . "; ban expression: '" . $banExpression . "'", SS_Log::NOTICE); |
|
136 | 136 | } |
137 | 137 | } |
138 | 138 | } else { |