@@ -21,6 +21,9 @@ |
||
21 | 21 | */ |
22 | 22 | class Google_Utils |
23 | 23 | { |
24 | + /** |
|
25 | + * @param string $data |
|
26 | + */ |
|
24 | 27 | public static function urlSafeB64Encode($data) |
25 | 28 | { |
26 | 29 | $b64 = base64_encode($data); |
@@ -23,23 +23,23 @@ discard block |
||
23 | 23 | { |
24 | 24 | public static function urlSafeB64Encode($data) |
25 | 25 | { |
26 | - $b64 = base64_encode($data); |
|
27 | - $b64 = str_replace( |
|
28 | - array('+', '/', '\r', '\n', '='), |
|
29 | - array('-', '_'), |
|
30 | - $b64 |
|
31 | - ); |
|
32 | - return $b64; |
|
26 | + $b64 = base64_encode($data); |
|
27 | + $b64 = str_replace( |
|
28 | + array('+', '/', '\r', '\n', '='), |
|
29 | + array('-', '_'), |
|
30 | + $b64 |
|
31 | + ); |
|
32 | + return $b64; |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | public static function urlSafeB64Decode($b64) |
36 | 36 | { |
37 | - $b64 = str_replace( |
|
38 | - array('-', '_'), |
|
39 | - array('+', '/'), |
|
40 | - $b64 |
|
41 | - ); |
|
42 | - return base64_decode($b64); |
|
37 | + $b64 = str_replace( |
|
38 | + array('-', '_'), |
|
39 | + array('+', '/'), |
|
40 | + $b64 |
|
41 | + ); |
|
42 | + return base64_decode($b64); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | /** |
@@ -59,45 +59,45 @@ discard block |
||
59 | 59 | */ |
60 | 60 | public static function getStrLen($str) |
61 | 61 | { |
62 | - $strlenVar = strlen($str); |
|
63 | - $d = $ret = 0; |
|
64 | - for ($count = 0; $count < $strlenVar; ++ $count) { |
|
65 | - $ordinalValue = ord($str{$ret}); |
|
66 | - switch (true) { |
|
67 | - case (($ordinalValue >= 0x20) && ($ordinalValue <= 0x7F)): |
|
68 | - // characters U-00000000 - U-0000007F (same as ASCII) |
|
69 | - $ret ++; |
|
70 | - break; |
|
71 | - case (($ordinalValue & 0xE0) == 0xC0): |
|
72 | - // characters U-00000080 - U-000007FF, mask 110XXXXX |
|
73 | - // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
|
74 | - $ret += 2; |
|
75 | - break; |
|
76 | - case (($ordinalValue & 0xF0) == 0xE0): |
|
77 | - // characters U-00000800 - U-0000FFFF, mask 1110XXXX |
|
78 | - // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
|
79 | - $ret += 3; |
|
80 | - break; |
|
81 | - case (($ordinalValue & 0xF8) == 0xF0): |
|
82 | - // characters U-00010000 - U-001FFFFF, mask 11110XXX |
|
83 | - // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
|
84 | - $ret += 4; |
|
85 | - break; |
|
86 | - case (($ordinalValue & 0xFC) == 0xF8): |
|
87 | - // characters U-00200000 - U-03FFFFFF, mask 111110XX |
|
88 | - // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
|
89 | - $ret += 5; |
|
90 | - break; |
|
91 | - case (($ordinalValue & 0xFE) == 0xFC): |
|
92 | - // characters U-04000000 - U-7FFFFFFF, mask 1111110X |
|
93 | - // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
|
94 | - $ret += 6; |
|
95 | - break; |
|
96 | - default: |
|
97 | - $ret ++; |
|
98 | - } |
|
99 | - } |
|
100 | - return $ret; |
|
62 | + $strlenVar = strlen($str); |
|
63 | + $d = $ret = 0; |
|
64 | + for ($count = 0; $count < $strlenVar; ++ $count) { |
|
65 | + $ordinalValue = ord($str{$ret}); |
|
66 | + switch (true) { |
|
67 | + case (($ordinalValue >= 0x20) && ($ordinalValue <= 0x7F)): |
|
68 | + // characters U-00000000 - U-0000007F (same as ASCII) |
|
69 | + $ret ++; |
|
70 | + break; |
|
71 | + case (($ordinalValue & 0xE0) == 0xC0): |
|
72 | + // characters U-00000080 - U-000007FF, mask 110XXXXX |
|
73 | + // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
|
74 | + $ret += 2; |
|
75 | + break; |
|
76 | + case (($ordinalValue & 0xF0) == 0xE0): |
|
77 | + // characters U-00000800 - U-0000FFFF, mask 1110XXXX |
|
78 | + // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
|
79 | + $ret += 3; |
|
80 | + break; |
|
81 | + case (($ordinalValue & 0xF8) == 0xF0): |
|
82 | + // characters U-00010000 - U-001FFFFF, mask 11110XXX |
|
83 | + // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
|
84 | + $ret += 4; |
|
85 | + break; |
|
86 | + case (($ordinalValue & 0xFC) == 0xF8): |
|
87 | + // characters U-00200000 - U-03FFFFFF, mask 111110XX |
|
88 | + // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
|
89 | + $ret += 5; |
|
90 | + break; |
|
91 | + case (($ordinalValue & 0xFE) == 0xFC): |
|
92 | + // characters U-04000000 - U-7FFFFFFF, mask 1111110X |
|
93 | + // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
|
94 | + $ret += 6; |
|
95 | + break; |
|
96 | + default: |
|
97 | + $ret ++; |
|
98 | + } |
|
99 | + } |
|
100 | + return $ret; |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | /** |
@@ -107,15 +107,15 @@ discard block |
||
107 | 107 | */ |
108 | 108 | public static function normalize($arr) |
109 | 109 | { |
110 | - if (!is_array($arr)) { |
|
111 | - return array(); |
|
112 | - } |
|
110 | + if (!is_array($arr)) { |
|
111 | + return array(); |
|
112 | + } |
|
113 | 113 | |
114 | - $normalized = array(); |
|
115 | - foreach ($arr as $key => $val) { |
|
116 | - $normalized[strtolower($key)] = $val; |
|
117 | - } |
|
118 | - return $normalized; |
|
114 | + $normalized = array(); |
|
115 | + foreach ($arr as $key => $val) { |
|
116 | + $normalized[strtolower($key)] = $val; |
|
117 | + } |
|
118 | + return $normalized; |
|
119 | 119 | } |
120 | 120 | |
121 | 121 | /** |
@@ -125,9 +125,9 @@ discard block |
||
125 | 125 | */ |
126 | 126 | public static function camelCase($value) |
127 | 127 | { |
128 | - $value = ucwords(str_replace(array('-', '_'), ' ', $value)); |
|
129 | - $value = str_replace(' ', '', $value); |
|
130 | - $value[0] = strtolower($value[0]); |
|
131 | - return $value; |
|
128 | + $value = ucwords(str_replace(array('-', '_'), ' ', $value)); |
|
129 | + $value = str_replace(' ', '', $value); |
|
130 | + $value[0] = strtolower($value[0]); |
|
131 | + return $value; |
|
132 | 132 | } |
133 | 133 | } |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | switch (true) { |
67 | 67 | case (($ordinalValue >= 0x20) && ($ordinalValue <= 0x7F)): |
68 | 68 | // characters U-00000000 - U-0000007F (same as ASCII) |
69 | - $ret ++; |
|
69 | + $ret++; |
|
70 | 70 | break; |
71 | 71 | case (($ordinalValue & 0xE0) == 0xC0): |
72 | 72 | // characters U-00000080 - U-000007FF, mask 110XXXXX |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | $ret += 6; |
95 | 95 | break; |
96 | 96 | default: |
97 | - $ret ++; |
|
97 | + $ret++; |
|
98 | 98 | } |
99 | 99 | } |
100 | 100 | return $ret; |
@@ -23,4 +23,4 @@ |
||
23 | 23 | $error = "google-api-php-client's autoloader was moved to src/Google/autoload.php in 1.1.3. This "; |
24 | 24 | $error .= "redirect will be removed in 1.2. Please adjust your code to use the new location."; |
25 | 25 | trigger_error($error, E_USER_DEPRECATED); |
26 | -require_once dirname(__FILE__) . '/src/Google/autoload.php'; |
|
26 | +require_once dirname(__FILE__).'/src/Google/autoload.php'; |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | |
28 | 28 | public function __construct(Google_Client $client) |
29 | 29 | { |
30 | - $this->client = $client; |
|
30 | + $this->client = $client; |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | /** |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | */ |
37 | 37 | public function getClient() |
38 | 38 | { |
39 | - return $this->client; |
|
39 | + return $this->client; |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | /** |
@@ -46,11 +46,11 @@ discard block |
||
46 | 46 | */ |
47 | 47 | public function createBatch() |
48 | 48 | { |
49 | - return new Google_Http_Batch( |
|
50 | - $this->client, |
|
51 | - false, |
|
52 | - $this->rootUrl, |
|
53 | - $this->batchPath |
|
54 | - ); |
|
49 | + return new Google_Http_Batch( |
|
50 | + $this->client, |
|
51 | + false, |
|
52 | + $this->rootUrl, |
|
53 | + $this->batchPath |
|
54 | + ); |
|
55 | 55 | } |
56 | 56 | } |
@@ -15,87 +15,87 @@ |
||
15 | 15 | |
16 | 16 | public function rewind() |
17 | 17 | { |
18 | - if (isset($this->modelData[$this->collection_key]) |
|
19 | - && is_array($this->modelData[$this->collection_key])) { |
|
20 | - reset($this->modelData[$this->collection_key]); |
|
21 | - } |
|
18 | + if (isset($this->modelData[$this->collection_key]) |
|
19 | + && is_array($this->modelData[$this->collection_key])) { |
|
20 | + reset($this->modelData[$this->collection_key]); |
|
21 | + } |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | public function current() |
25 | 25 | { |
26 | - $this->coerceType($this->key()); |
|
27 | - if (is_array($this->modelData[$this->collection_key])) { |
|
28 | - return current($this->modelData[$this->collection_key]); |
|
29 | - } |
|
26 | + $this->coerceType($this->key()); |
|
27 | + if (is_array($this->modelData[$this->collection_key])) { |
|
28 | + return current($this->modelData[$this->collection_key]); |
|
29 | + } |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | public function key() |
33 | 33 | { |
34 | - if (isset($this->modelData[$this->collection_key]) |
|
35 | - && is_array($this->modelData[$this->collection_key])) { |
|
36 | - return key($this->modelData[$this->collection_key]); |
|
37 | - } |
|
34 | + if (isset($this->modelData[$this->collection_key]) |
|
35 | + && is_array($this->modelData[$this->collection_key])) { |
|
36 | + return key($this->modelData[$this->collection_key]); |
|
37 | + } |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | public function next() |
41 | 41 | { |
42 | - return next($this->modelData[$this->collection_key]); |
|
42 | + return next($this->modelData[$this->collection_key]); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | public function valid() |
46 | 46 | { |
47 | - $key = $this->key(); |
|
48 | - return $key !== null && $key !== false; |
|
47 | + $key = $this->key(); |
|
48 | + return $key !== null && $key !== false; |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | public function count() |
52 | 52 | { |
53 | - if (!isset($this->modelData[$this->collection_key])) { |
|
54 | - return 0; |
|
55 | - } |
|
56 | - return count($this->modelData[$this->collection_key]); |
|
53 | + if (!isset($this->modelData[$this->collection_key])) { |
|
54 | + return 0; |
|
55 | + } |
|
56 | + return count($this->modelData[$this->collection_key]); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | public function offsetExists($offset) |
60 | 60 | { |
61 | - if (!is_numeric($offset)) { |
|
62 | - return parent::offsetExists($offset); |
|
63 | - } |
|
64 | - return isset($this->modelData[$this->collection_key][$offset]); |
|
61 | + if (!is_numeric($offset)) { |
|
62 | + return parent::offsetExists($offset); |
|
63 | + } |
|
64 | + return isset($this->modelData[$this->collection_key][$offset]); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | public function offsetGet($offset) |
68 | 68 | { |
69 | - if (!is_numeric($offset)) { |
|
70 | - return parent::offsetGet($offset); |
|
71 | - } |
|
72 | - $this->coerceType($offset); |
|
73 | - return $this->modelData[$this->collection_key][$offset]; |
|
69 | + if (!is_numeric($offset)) { |
|
70 | + return parent::offsetGet($offset); |
|
71 | + } |
|
72 | + $this->coerceType($offset); |
|
73 | + return $this->modelData[$this->collection_key][$offset]; |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | public function offsetSet($offset, $value) |
77 | 77 | { |
78 | - if (!is_numeric($offset)) { |
|
79 | - return parent::offsetSet($offset, $value); |
|
80 | - } |
|
81 | - $this->modelData[$this->collection_key][$offset] = $value; |
|
78 | + if (!is_numeric($offset)) { |
|
79 | + return parent::offsetSet($offset, $value); |
|
80 | + } |
|
81 | + $this->modelData[$this->collection_key][$offset] = $value; |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | public function offsetUnset($offset) |
85 | 85 | { |
86 | - if (!is_numeric($offset)) { |
|
87 | - return parent::offsetUnset($offset); |
|
88 | - } |
|
89 | - unset($this->modelData[$this->collection_key][$offset]); |
|
86 | + if (!is_numeric($offset)) { |
|
87 | + return parent::offsetUnset($offset); |
|
88 | + } |
|
89 | + unset($this->modelData[$this->collection_key][$offset]); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | private function coerceType($offset) |
93 | 93 | { |
94 | - $typeKey = $this->keyType($this->collection_key); |
|
95 | - if (isset($this->$typeKey) && !is_object($this->modelData[$this->collection_key][$offset])) { |
|
96 | - $type = $this->$typeKey; |
|
97 | - $this->modelData[$this->collection_key][$offset] = |
|
98 | - new $type($this->modelData[$this->collection_key][$offset]); |
|
99 | - } |
|
94 | + $typeKey = $this->keyType($this->collection_key); |
|
95 | + if (isset($this->$typeKey) && !is_object($this->modelData[$this->collection_key][$offset])) { |
|
96 | + $type = $this->$typeKey; |
|
97 | + $this->modelData[$this->collection_key][$offset] = |
|
98 | + new $type($this->modelData[$this->collection_key][$offset]); |
|
99 | + } |
|
100 | 100 | } |
101 | 101 | } |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | if (!class_exists('Google_Client')) { |
4 | - require_once dirname(__FILE__) . '/autoload.php'; |
|
4 | + require_once dirname(__FILE__).'/autoload.php'; |
|
5 | 5 | } |
6 | 6 | |
7 | 7 | /** |
@@ -38,20 +38,20 @@ discard block |
||
38 | 38 | */ |
39 | 39 | public function __construct($pem) |
40 | 40 | { |
41 | - if (!function_exists('openssl_x509_read')) { |
|
42 | - throw new Google_Exception('Google API PHP client needs the openssl PHP extension'); |
|
43 | - } |
|
44 | - $this->publicKey = openssl_x509_read($pem); |
|
45 | - if (!$this->publicKey) { |
|
46 | - throw new Google_Auth_Exception("Unable to parse PEM: $pem"); |
|
47 | - } |
|
41 | + if (!function_exists('openssl_x509_read')) { |
|
42 | + throw new Google_Exception('Google API PHP client needs the openssl PHP extension'); |
|
43 | + } |
|
44 | + $this->publicKey = openssl_x509_read($pem); |
|
45 | + if (!$this->publicKey) { |
|
46 | + throw new Google_Auth_Exception("Unable to parse PEM: $pem"); |
|
47 | + } |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | public function __destruct() |
51 | 51 | { |
52 | - if ($this->publicKey) { |
|
53 | - openssl_x509_free($this->publicKey); |
|
54 | - } |
|
52 | + if ($this->publicKey) { |
|
53 | + openssl_x509_free($this->publicKey); |
|
54 | + } |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
@@ -65,11 +65,11 @@ discard block |
||
65 | 65 | */ |
66 | 66 | public function verify($data, $signature) |
67 | 67 | { |
68 | - $hash = defined("OPENSSL_ALGO_SHA256") ? OPENSSL_ALGO_SHA256 : "sha256"; |
|
69 | - $status = openssl_verify($data, $signature, $this->publicKey, $hash); |
|
70 | - if ($status === -1) { |
|
71 | - throw new Google_Auth_Exception('Signature verification error: ' . openssl_error_string()); |
|
72 | - } |
|
73 | - return $status === 1; |
|
68 | + $hash = defined("OPENSSL_ALGO_SHA256") ? OPENSSL_ALGO_SHA256 : "sha256"; |
|
69 | + $status = openssl_verify($data, $signature, $this->publicKey, $hash); |
|
70 | + if ($status === -1) { |
|
71 | + throw new Google_Auth_Exception('Signature verification error: ' . openssl_error_string()); |
|
72 | + } |
|
73 | + return $status === 1; |
|
74 | 74 | } |
75 | 75 | } |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | */ |
17 | 17 | |
18 | 18 | if (!class_exists('Google_Client')) { |
19 | - require_once dirname(__FILE__) . '/../autoload.php'; |
|
19 | + require_once dirname(__FILE__).'/../autoload.php'; |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | /** |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | $hash = defined("OPENSSL_ALGO_SHA256") ? OPENSSL_ALGO_SHA256 : "sha256"; |
69 | 69 | $status = openssl_verify($data, $signature, $this->publicKey, $hash); |
70 | 70 | if ($status === -1) { |
71 | - throw new Google_Auth_Exception('Signature verification error: ' . openssl_error_string()); |
|
71 | + throw new Google_Auth_Exception('Signature verification error: '.openssl_error_string()); |
|
72 | 72 | } |
73 | 73 | return $status === 1; |
74 | 74 | } |
@@ -36,44 +36,44 @@ discard block |
||
36 | 36 | |
37 | 37 | public function __construct(Google_Client $client) |
38 | 38 | { |
39 | - if (! function_exists('apc_add') ) { |
|
40 | - $error = "Apc functions not available"; |
|
39 | + if (! function_exists('apc_add') ) { |
|
40 | + $error = "Apc functions not available"; |
|
41 | 41 | |
42 | - $client->getLogger()->error($error); |
|
43 | - throw new Google_Cache_Exception($error); |
|
44 | - } |
|
42 | + $client->getLogger()->error($error); |
|
43 | + throw new Google_Cache_Exception($error); |
|
44 | + } |
|
45 | 45 | |
46 | - $this->client = $client; |
|
46 | + $this->client = $client; |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | /** |
50 | - * @inheritDoc |
|
51 | - */ |
|
50 | + * @inheritDoc |
|
51 | + */ |
|
52 | 52 | public function get($key, $expiration = false) |
53 | 53 | { |
54 | - $ret = apc_fetch($key); |
|
55 | - if ($ret === false) { |
|
56 | - $this->client->getLogger()->debug( |
|
57 | - 'APC cache miss', |
|
58 | - array('key' => $key) |
|
59 | - ); |
|
60 | - return false; |
|
61 | - } |
|
62 | - if (is_numeric($expiration) && (time() - $ret['time'] > $expiration)) { |
|
63 | - $this->client->getLogger()->debug( |
|
64 | - 'APC cache miss (expired)', |
|
65 | - array('key' => $key, 'var' => $ret) |
|
66 | - ); |
|
67 | - $this->delete($key); |
|
68 | - return false; |
|
69 | - } |
|
54 | + $ret = apc_fetch($key); |
|
55 | + if ($ret === false) { |
|
56 | + $this->client->getLogger()->debug( |
|
57 | + 'APC cache miss', |
|
58 | + array('key' => $key) |
|
59 | + ); |
|
60 | + return false; |
|
61 | + } |
|
62 | + if (is_numeric($expiration) && (time() - $ret['time'] > $expiration)) { |
|
63 | + $this->client->getLogger()->debug( |
|
64 | + 'APC cache miss (expired)', |
|
65 | + array('key' => $key, 'var' => $ret) |
|
66 | + ); |
|
67 | + $this->delete($key); |
|
68 | + return false; |
|
69 | + } |
|
70 | 70 | |
71 | - $this->client->getLogger()->debug( |
|
72 | - 'APC cache hit', |
|
73 | - array('key' => $key, 'var' => $ret) |
|
74 | - ); |
|
71 | + $this->client->getLogger()->debug( |
|
72 | + 'APC cache hit', |
|
73 | + array('key' => $key, 'var' => $ret) |
|
74 | + ); |
|
75 | 75 | |
76 | - return $ret['data']; |
|
76 | + return $ret['data']; |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | /** |
@@ -81,21 +81,21 @@ discard block |
||
81 | 81 | */ |
82 | 82 | public function set($key, $value) |
83 | 83 | { |
84 | - $var = array('time' => time(), 'data' => $value); |
|
85 | - $rc = apc_store($key, $var); |
|
84 | + $var = array('time' => time(), 'data' => $value); |
|
85 | + $rc = apc_store($key, $var); |
|
86 | 86 | |
87 | - if ($rc == false) { |
|
88 | - $this->client->getLogger()->error( |
|
89 | - 'APC cache set failed', |
|
90 | - array('key' => $key, 'var' => $var) |
|
91 | - ); |
|
92 | - throw new Google_Cache_Exception("Couldn't store data"); |
|
93 | - } |
|
87 | + if ($rc == false) { |
|
88 | + $this->client->getLogger()->error( |
|
89 | + 'APC cache set failed', |
|
90 | + array('key' => $key, 'var' => $var) |
|
91 | + ); |
|
92 | + throw new Google_Cache_Exception("Couldn't store data"); |
|
93 | + } |
|
94 | 94 | |
95 | - $this->client->getLogger()->debug( |
|
96 | - 'APC cache set', |
|
97 | - array('key' => $key, 'var' => $var) |
|
98 | - ); |
|
95 | + $this->client->getLogger()->debug( |
|
96 | + 'APC cache set', |
|
97 | + array('key' => $key, 'var' => $var) |
|
98 | + ); |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | /** |
@@ -104,10 +104,10 @@ discard block |
||
104 | 104 | */ |
105 | 105 | public function delete($key) |
106 | 106 | { |
107 | - $this->client->getLogger()->debug( |
|
108 | - 'APC cache delete', |
|
109 | - array('key' => $key) |
|
110 | - ); |
|
111 | - apc_delete($key); |
|
107 | + $this->client->getLogger()->debug( |
|
108 | + 'APC cache delete', |
|
109 | + array('key' => $key) |
|
110 | + ); |
|
111 | + apc_delete($key); |
|
112 | 112 | } |
113 | 113 | } |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | */ |
17 | 17 | |
18 | 18 | if (!class_exists('Google_Client')) { |
19 | - require_once dirname(__FILE__) . '/../autoload.php'; |
|
19 | + require_once dirname(__FILE__).'/../autoload.php'; |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | /** |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | |
37 | 37 | public function __construct(Google_Client $client) |
38 | 38 | { |
39 | - if (! function_exists('apc_add') ) { |
|
39 | + if (!function_exists('apc_add')) { |
|
40 | 40 | $error = "Apc functions not available"; |
41 | 41 | |
42 | 42 | $client->getLogger()->error($error); |
@@ -43,29 +43,29 @@ discard block |
||
43 | 43 | |
44 | 44 | public function __construct(Google_Client $client) |
45 | 45 | { |
46 | - if (!function_exists('memcache_connect') && !class_exists("Memcached")) { |
|
47 | - $error = "Memcache functions not available"; |
|
48 | - |
|
49 | - $client->getLogger()->error($error); |
|
50 | - throw new Google_Cache_Exception($error); |
|
51 | - } |
|
52 | - |
|
53 | - $this->client = $client; |
|
54 | - |
|
55 | - if ($client->isAppEngine()) { |
|
56 | - // No credentials needed for GAE. |
|
57 | - $this->mc = new Memcached(); |
|
58 | - $this->connection = true; |
|
59 | - } else { |
|
60 | - $this->host = $client->getClassConfig($this, 'host'); |
|
61 | - $this->port = $client->getClassConfig($this, 'port'); |
|
62 | - if (empty($this->host) || (empty($this->port) && (string) $this->port != "0")) { |
|
63 | - $error = "You need to supply a valid memcache host and port"; |
|
64 | - |
|
65 | - $client->getLogger()->error($error); |
|
66 | - throw new Google_Cache_Exception($error); |
|
67 | - } |
|
68 | - } |
|
46 | + if (!function_exists('memcache_connect') && !class_exists("Memcached")) { |
|
47 | + $error = "Memcache functions not available"; |
|
48 | + |
|
49 | + $client->getLogger()->error($error); |
|
50 | + throw new Google_Cache_Exception($error); |
|
51 | + } |
|
52 | + |
|
53 | + $this->client = $client; |
|
54 | + |
|
55 | + if ($client->isAppEngine()) { |
|
56 | + // No credentials needed for GAE. |
|
57 | + $this->mc = new Memcached(); |
|
58 | + $this->connection = true; |
|
59 | + } else { |
|
60 | + $this->host = $client->getClassConfig($this, 'host'); |
|
61 | + $this->port = $client->getClassConfig($this, 'port'); |
|
62 | + if (empty($this->host) || (empty($this->port) && (string) $this->port != "0")) { |
|
63 | + $error = "You need to supply a valid memcache host and port"; |
|
64 | + |
|
65 | + $client->getLogger()->error($error); |
|
66 | + throw new Google_Cache_Exception($error); |
|
67 | + } |
|
68 | + } |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | /** |
@@ -73,35 +73,35 @@ discard block |
||
73 | 73 | */ |
74 | 74 | public function get($key, $expiration = false) |
75 | 75 | { |
76 | - $this->connect(); |
|
77 | - $ret = false; |
|
78 | - if ($this->mc) { |
|
79 | - $ret = $this->mc->get($key); |
|
80 | - } else { |
|
81 | - $ret = memcache_get($this->connection, $key); |
|
82 | - } |
|
83 | - if ($ret === false) { |
|
84 | - $this->client->getLogger()->debug( |
|
85 | - 'Memcache cache miss', |
|
86 | - array('key' => $key) |
|
87 | - ); |
|
88 | - return false; |
|
89 | - } |
|
90 | - if (is_numeric($expiration) && (time() - $ret['time'] > $expiration)) { |
|
91 | - $this->client->getLogger()->debug( |
|
92 | - 'Memcache cache miss (expired)', |
|
93 | - array('key' => $key, 'var' => $ret) |
|
94 | - ); |
|
95 | - $this->delete($key); |
|
96 | - return false; |
|
97 | - } |
|
98 | - |
|
99 | - $this->client->getLogger()->debug( |
|
100 | - 'Memcache cache hit', |
|
101 | - array('key' => $key, 'var' => $ret) |
|
102 | - ); |
|
103 | - |
|
104 | - return $ret['data']; |
|
76 | + $this->connect(); |
|
77 | + $ret = false; |
|
78 | + if ($this->mc) { |
|
79 | + $ret = $this->mc->get($key); |
|
80 | + } else { |
|
81 | + $ret = memcache_get($this->connection, $key); |
|
82 | + } |
|
83 | + if ($ret === false) { |
|
84 | + $this->client->getLogger()->debug( |
|
85 | + 'Memcache cache miss', |
|
86 | + array('key' => $key) |
|
87 | + ); |
|
88 | + return false; |
|
89 | + } |
|
90 | + if (is_numeric($expiration) && (time() - $ret['time'] > $expiration)) { |
|
91 | + $this->client->getLogger()->debug( |
|
92 | + 'Memcache cache miss (expired)', |
|
93 | + array('key' => $key, 'var' => $ret) |
|
94 | + ); |
|
95 | + $this->delete($key); |
|
96 | + return false; |
|
97 | + } |
|
98 | + |
|
99 | + $this->client->getLogger()->debug( |
|
100 | + 'Memcache cache hit', |
|
101 | + array('key' => $key, 'var' => $ret) |
|
102 | + ); |
|
103 | + |
|
104 | + return $ret['data']; |
|
105 | 105 | } |
106 | 106 | |
107 | 107 | /** |
@@ -112,29 +112,29 @@ discard block |
||
112 | 112 | */ |
113 | 113 | public function set($key, $value) |
114 | 114 | { |
115 | - $this->connect(); |
|
116 | - // we store it with the cache_time default expiration so objects will at |
|
117 | - // least get cleaned eventually. |
|
118 | - $data = array('time' => time(), 'data' => $value); |
|
119 | - $rc = false; |
|
120 | - if ($this->mc) { |
|
121 | - $rc = $this->mc->set($key, $data); |
|
122 | - } else { |
|
123 | - $rc = memcache_set($this->connection, $key, $data, false); |
|
124 | - } |
|
125 | - if ($rc == false) { |
|
126 | - $this->client->getLogger()->error( |
|
127 | - 'Memcache cache set failed', |
|
128 | - array('key' => $key, 'var' => $data) |
|
129 | - ); |
|
130 | - |
|
131 | - throw new Google_Cache_Exception("Couldn't store data in cache"); |
|
132 | - } |
|
133 | - |
|
134 | - $this->client->getLogger()->debug( |
|
135 | - 'Memcache cache set', |
|
136 | - array('key' => $key, 'var' => $data) |
|
137 | - ); |
|
115 | + $this->connect(); |
|
116 | + // we store it with the cache_time default expiration so objects will at |
|
117 | + // least get cleaned eventually. |
|
118 | + $data = array('time' => time(), 'data' => $value); |
|
119 | + $rc = false; |
|
120 | + if ($this->mc) { |
|
121 | + $rc = $this->mc->set($key, $data); |
|
122 | + } else { |
|
123 | + $rc = memcache_set($this->connection, $key, $data, false); |
|
124 | + } |
|
125 | + if ($rc == false) { |
|
126 | + $this->client->getLogger()->error( |
|
127 | + 'Memcache cache set failed', |
|
128 | + array('key' => $key, 'var' => $data) |
|
129 | + ); |
|
130 | + |
|
131 | + throw new Google_Cache_Exception("Couldn't store data in cache"); |
|
132 | + } |
|
133 | + |
|
134 | + $this->client->getLogger()->debug( |
|
135 | + 'Memcache cache set', |
|
136 | + array('key' => $key, 'var' => $data) |
|
137 | + ); |
|
138 | 138 | } |
139 | 139 | |
140 | 140 | /** |
@@ -143,17 +143,17 @@ discard block |
||
143 | 143 | */ |
144 | 144 | public function delete($key) |
145 | 145 | { |
146 | - $this->connect(); |
|
147 | - if ($this->mc) { |
|
148 | - $this->mc->delete($key, 0); |
|
149 | - } else { |
|
150 | - memcache_delete($this->connection, $key, 0); |
|
151 | - } |
|
152 | - |
|
153 | - $this->client->getLogger()->debug( |
|
154 | - 'Memcache cache delete', |
|
155 | - array('key' => $key) |
|
156 | - ); |
|
146 | + $this->connect(); |
|
147 | + if ($this->mc) { |
|
148 | + $this->mc->delete($key, 0); |
|
149 | + } else { |
|
150 | + memcache_delete($this->connection, $key, 0); |
|
151 | + } |
|
152 | + |
|
153 | + $this->client->getLogger()->debug( |
|
154 | + 'Memcache cache delete', |
|
155 | + array('key' => $key) |
|
156 | + ); |
|
157 | 157 | } |
158 | 158 | |
159 | 159 | /** |
@@ -162,23 +162,23 @@ discard block |
||
162 | 162 | */ |
163 | 163 | private function connect() |
164 | 164 | { |
165 | - if ($this->connection) { |
|
166 | - return; |
|
167 | - } |
|
168 | - |
|
169 | - if (class_exists("Memcached")) { |
|
170 | - $this->mc = new Memcached(); |
|
171 | - $this->mc->addServer($this->host, $this->port); |
|
172 | - $this->connection = true; |
|
173 | - } else { |
|
174 | - $this->connection = memcache_pconnect($this->host, $this->port); |
|
175 | - } |
|
176 | - |
|
177 | - if (! $this->connection) { |
|
178 | - $error = "Couldn't connect to memcache server"; |
|
179 | - |
|
180 | - $this->client->getLogger()->error($error); |
|
181 | - throw new Google_Cache_Exception($error); |
|
182 | - } |
|
165 | + if ($this->connection) { |
|
166 | + return; |
|
167 | + } |
|
168 | + |
|
169 | + if (class_exists("Memcached")) { |
|
170 | + $this->mc = new Memcached(); |
|
171 | + $this->mc->addServer($this->host, $this->port); |
|
172 | + $this->connection = true; |
|
173 | + } else { |
|
174 | + $this->connection = memcache_pconnect($this->host, $this->port); |
|
175 | + } |
|
176 | + |
|
177 | + if (! $this->connection) { |
|
178 | + $error = "Couldn't connect to memcache server"; |
|
179 | + |
|
180 | + $this->client->getLogger()->error($error); |
|
181 | + throw new Google_Cache_Exception($error); |
|
182 | + } |
|
183 | 183 | } |
184 | 184 | } |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | */ |
17 | 17 | |
18 | 18 | if (!class_exists('Google_Client')) { |
19 | - require_once dirname(__FILE__) . '/../autoload.php'; |
|
19 | + require_once dirname(__FILE__).'/../autoload.php'; |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | /** |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | $this->connection = memcache_pconnect($this->host, $this->port); |
175 | 175 | } |
176 | 176 | |
177 | - if (! $this->connection) { |
|
177 | + if (!$this->connection) { |
|
178 | 178 | $error = "Couldn't connect to memcache server"; |
179 | 179 | |
180 | 180 | $this->client->getLogger()->error($error); |
@@ -31,11 +31,11 @@ discard block |
||
31 | 31 | } |
32 | 32 | |
33 | 33 | /** |
34 | - * @inheritDoc |
|
35 | - */ |
|
34 | + * @inheritDoc |
|
35 | + */ |
|
36 | 36 | public function get($key, $expiration = false) |
37 | 37 | { |
38 | - return false; |
|
38 | + return false; |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | */ |
44 | 44 | public function set($key, $value) |
45 | 45 | { |
46 | - // Nop. |
|
46 | + // Nop. |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | /** |
@@ -52,6 +52,6 @@ discard block |
||
52 | 52 | */ |
53 | 53 | public function delete($key) |
54 | 54 | { |
55 | - // Nop. |
|
55 | + // Nop. |
|
56 | 56 | } |
57 | 57 | } |
@@ -16,7 +16,7 @@ |
||
16 | 16 | */ |
17 | 17 | |
18 | 18 | if (!class_exists('Google_Client')) { |
19 | - require_once dirname(__FILE__) . '/../autoload.php'; |
|
19 | + require_once dirname(__FILE__).'/../autoload.php'; |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | /** |
@@ -16,7 +16,7 @@ |
||
16 | 16 | */ |
17 | 17 | |
18 | 18 | if (!class_exists('Google_Client')) { |
19 | - require_once dirname(__FILE__) . '/../autoload.php'; |
|
19 | + require_once dirname(__FILE__).'/../autoload.php'; |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | class Google_Cache_Exception extends Google_Exception |