-
Notifications
You must be signed in to change notification settings - Fork 19
/
CdnEngine_Mirror_RackSpaceCdn.php
executable file
·167 lines (124 loc) · 4.21 KB
/
CdnEngine_Mirror_RackSpaceCdn.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<?php
namespace W3TC;
/**
* Rackspace CDN (pull) engine
*/
class CdnEngine_Mirror_RackSpaceCdn extends CdnEngine_Mirror {
private $_access_state;
private $_service_id;
private $_domains;
private $_api;
private $_new_access_state_callback;
function __construct( $config = array() ) {
$config = array_merge( array(
'user_name' => '',
'api_key' => '',
'region' => '',
'service_id' => '',
'service_access_url' => '',
'service_protocol' => 'http',
'domains' => array(),
'access_state' => '',
'new_access_state_callback' => ''
), $config );
$this->_service_id = $config['service_id'];
$this->_new_access_state_callback = $config['new_access_state_callback'];
// init access state
$this->_access_state = @json_decode( $config['access_state'], true );
if ( !is_array( $this->_access_state ) )
$this->_access_state = array();
$this->_access_state = array_merge( array(
'access_token' => '',
'access_region_descriptor' => array()
), $this->_access_state );
// cnames
if ( $config['service_protocol'] != 'https' && !empty( $config['domains'] ) )
$this->_domains = (array)$config['domains'];
else
$this->_domains = array( $config['service_access_url'] );
// form 'ssl' parameter based on service protocol
if ( $config['service_protocol'] == 'https' )
$config['ssl'] = 'enabled';
else
$config['ssl'] = 'disabled';
parent::__construct( $config );
$this->_create_api( array( $this, '_on_new_access_requested_api' ) );
}
private function _create_api( $new_access_required_callback_api ) {
$this->_api = new Cdn_RackSpace_Api_Cdn( array(
'access_token' => $this->_access_state['access_token'],
'access_region_descriptor' => $this->_access_state['access_region_descriptor'],
'new_access_required' => $new_access_required_callback_api ) );
}
/**
* Called when new access token issued by api objects
*/
public function _on_new_access_requested_api() {
$r = Cdn_RackSpace_Api_Tokens::authenticate( $this->_config['user_name'],
$this->_config['api_key'] );
if ( !isset( $r['access_token'] ) || !isset( $r['services'] ) )
throw new \Exception( 'Authentication failed' );
$r['regions'] = Cdn_RackSpace_Api_Tokens::cdn_services_by_region(
$r['services'] );
if ( !isset( $r['regions'][$this->_config['region']] ) )
throw new \Exception( 'Region ' . $this->_config['region'] . ' not found' );
$this->_access_state['access_token'] = $r['access_token'];
$this->_access_state['access_region_descriptor'] =
$r['regions'][$this->_config['region']];
$this->_create_api( array( $this, '_on_new_access_requested_second_time' ) );
if ( !empty( $this->_new_access_state_callback ) )
call_user_func( $this->_new_access_state_callback,
json_encode( $this->_access_state ) );
return $this->_api;
}
private function _on_new_access_requested_second_time() {
throw new \Exception( 'Authentication failed' );
}
/**
* Purges remote files
*
* @param array $files
* @param array $results
* @return boolean
*/
function purge( $files, &$results ) {
$results = array();
try {
foreach ( $files as $file ) {
$url = $this->_format_url( $file['remote_path'] );
$this->_api->purge( $this->_service_id, $url );
$results[] = $this->_get_result( '', '', W3TC_CDN_RESULT_OK, 'OK' );
}
} catch ( \Exception $e ) {
$results[] = $this->_get_result( '', '', W3TC_CDN_RESULT_HALT,
__( 'Failed to purge: ', 'w3-total-cache' ) . $e->getMessage() );
}
return !$this->_is_error( $results );
}
public function get_domains() {
return $this->_domains;
}
public function service_domains_get() {
$service = $this->_api->service_get( $this->_service_id );
$domains = array();
if ( isset( $service['domains'] ) ) {
foreach ( $service['domains'] as $d )
$domains[] = $d['domain'];
}
return $domains;
}
public function service_domains_set( $domains ) {
$value = array();
foreach ( $domains as $d ) {
$v = array( 'domain' => $d );
if ( $this->_config['service_protocol'] == 'https' )
$v['protocol'] = 'https';
$value[] = $v;
}
$this->_api->service_set( $this->_service_id,
array( array(
'op' => 'replace',
'path' => '/domains',
'value' => $value ) ) );
}
}