-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathCdnEngine_Mirror_Edgecast.php
186 lines (159 loc) · 4.46 KB
/
CdnEngine_Mirror_Edgecast.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<?php
/**
* File: CdnEngine_Mirror_Edgecast.php
*
* @package W3TC
*/
namespace W3TC;
if ( ! defined( 'W3TC_CDN_EDGECAST_PURGE_URL' ) ) {
define( 'W3TC_CDN_EDGECAST_PURGE_URL', 'http://api.edgecast.com/v2/mcc/customers/%s/edge/purge' );
}
define( 'W3TC_CDN_EDGECAST_MEDIATYPE_WINDOWS_MEDIA_STREAMING', 1 );
define( 'W3TC_CDN_EDGECAST_MEDIATYPE_FLASH_MEDIA_STREAMING', 2 );
define( 'W3TC_CDN_EDGECAST_MEDIATYPE_HTTP_LARGE_OBJECT', 3 );
define( 'W3TC_CDN_EDGECAST_MEDIATYPE_HTTP_SMALL_OBJECT', 8 );
define( 'W3TC_CDN_EDGECAST_MEDIATYPE_APPLICATION_DELIVERY_NETWORK', 14 );
/**
* Class CdnEngine_Mirror_Edgecast
*
* phpcs:disable PSR2.Methods.MethodDeclaration.Underscore
*/
class CdnEngine_Mirror_Edgecast extends CdnEngine_Mirror {
/**
* Constructor for the class.
*
* @param array $config Configuration array with API credentials and other settings.
*
* @return void
*/
public function __construct( $config = array() ) {
$config = array_merge(
array(
'apiid' => '',
'apikey' => '',
),
$config
);
parent::__construct( $config );
}
/**
* Purges specified files from the CDN.
*
* @param array $files Array of files to purge.
* @param array $results Reference to an array where the purge results will be stored.
*
* @return bool True if all files were purged successfully, false otherwise.
*/
public function purge( $files, &$results ) {
if ( empty( $this->_config['account'] ) ) {
$results = $this->_get_results( $files, W3TC_CDN_RESULT_HALT, __( 'Empty account #.', 'w3-total-cache' ) );
return false;
}
if ( empty( $this->_config['token'] ) ) {
$results = $this->_get_results( $files, W3TC_CDN_RESULT_HALT, __( 'Empty token.', 'w3-total-cache' ) );
return false;
}
foreach ( $files as $file ) {
$local_path = $file['local_path'];
$remote_path = $file['remote_path'];
$url = $this->format_url( $remote_path );
$error = null;
if ( $this->_purge_content( $url, W3TC_CDN_EDGECAST_MEDIATYPE_HTTP_SMALL_OBJECT, $error ) ) {
$results[] = $this->_get_result(
$local_path,
$remote_path,
W3TC_CDN_RESULT_OK,
__( 'OK', 'w3-total-cache' ),
$file
);
} else {
$results[] = $this->_get_result(
$local_path,
$remote_path,
W3TC_CDN_RESULT_ERROR,
sprintf(
// Translators: 1 error message.
__(
'Unable to purge (%1$s).',
'w3-total-cache'
),
$error
),
$file
);
}
}
return ! $this->_is_error( $results );
}
/**
* Purges all files from the CDN.
*
* @param array $results Reference to an array where the purge results will be stored.
*
* @return bool True if the purge was successful, false otherwise.
*/
public function purge_all( &$results ) {
return $this->purge(
array(
array(
'local_path' => '*',
'remote_path' => '*',
),
),
$results
);
}
/**
* Sends a request to purge content from the CDN.
*
* @param string $path The path of the content to purge.
* @param string $type The type of the content to purge.
* @param string $error Reference to a variable where any error message will be stored.
*
* @return bool True if the purge request was successful, false otherwise.
*/
public function _purge_content( $path, $type, &$error ) {
$url = sprintf( W3TC_CDN_EDGECAST_PURGE_URL, $this->_config['account'] );
$args = array(
'method' => 'PUT',
'user-agent' => W3TC_POWERED_BY,
'headers' => array(
'Accept' => 'application/json',
'Content-Type' => 'application/json',
'Authorization' => sprintf( 'TOK:%s', $this->_config['token'] ),
),
'body' => wp_json_encode(
array(
'MediaPath' => $path,
'MediaType' => $type,
)
),
);
$response = wp_remote_request( $url, $args );
if ( is_wp_error( $response ) ) {
$error = implode( '; ', $response->get_error_messages() );
return false;
}
switch ( $response['response']['code'] ) {
case 200:
return true;
case 400:
$error = __( 'Invalid Request Parameter', 'w3-total-cache' );
return false;
case 403:
$error = __( 'Authentication Failure or Insufficient Access Rights', 'w3-total-cache' );
return false;
case 404:
$error = __( 'Invalid Request URI', 'w3-total-cache' );
return false;
case 405:
$error = __( 'Invalid Request', 'w3-total-cache' );
return false;
case 500:
$error = __( 'Server Error', 'w3-total-cache' );
return false;
}
$error = 'Unknown error';
return false;
}
}