forked from BoldGrid/w3-total-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCdn_RackSpaceCloudFiles_Popup.php
197 lines (162 loc) · 5.82 KB
/
Cdn_RackSpaceCloudFiles_Popup.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
187
188
189
190
191
192
193
194
195
196
197
<?php
namespace W3TC;
class Cdn_RackSpaceCloudFiles_Popup {
static public function w3tc_ajax() {
$o = new Cdn_RackSpaceCloudFiles_Popup();
add_action( 'w3tc_ajax_cdn_rackspace_authenticate',
array( $o, 'w3tc_ajax_cdn_rackspace_authenticate' ) );
add_action( 'w3tc_ajax_cdn_rackspace_intro_done',
array( $o, 'w3tc_ajax_cdn_rackspace_intro_done' ) );
add_action( 'w3tc_ajax_cdn_rackspace_regions_done',
array( $o, 'w3tc_ajax_cdn_rackspace_regions_done' ) );
add_action( 'w3tc_ajax_cdn_rackspace_containers_done',
array( $o, 'w3tc_ajax_cdn_rackspace_containers_done' ) );
}
public function w3tc_ajax_cdn_rackspace_authenticate() {
$c = Dispatcher::config();
$details = array(
'user_name' => $c->get_string( 'cdn.rscf.user' ),
'api_key' => $c->get_string( 'cdn.rscf.key' )
);
include W3TC_DIR . '/Cdn_RackSpaceCloudFiles_Popup_View_Intro.php';
exit();
}
public function w3tc_ajax_cdn_rackspace_intro_done() {
$user_name = Util_Request::get_string( 'user_name' );
$api_key = Util_Request::get_string( 'api_key' );
try {
$r = Cdn_RackSpace_Api_Tokens::authenticate( $user_name,
$api_key );
} catch ( \Exception $ex ) {
$details = array(
'user_name' => $user_name,
'api_key' => $api_key,
'error_message' => 'Can\'t authenticate: ' . $ex->getMessage()
);
include W3TC_DIR . '/Cdn_RackSpaceCloudFiles_Popup_View_Intro.php';
exit();
}
$r['regions'] = Cdn_RackSpace_Api_Tokens::cloudfiles_services_by_region(
$r['services'] );
$details = array(
'user_name' => $user_name,
'api_key' => $api_key,
'access_token' => $r['access_token'],
'region_descriptors' => $r['regions'],
// avoid fights with quotes, magic_quotes may break randomly
'region_descriptors_serialized' =>
strtr( json_encode( $r['regions'] ), '"\\', '!^' )
);
include W3TC_DIR . '/Cdn_RackSpaceCloudFiles_Popup_View_Regions.php';
exit();
}
public function w3tc_ajax_cdn_rackspace_regions_done() {
$user_name = Util_Request::get_string( 'user_name' );
$api_key = Util_Request::get_string( 'api_key' );
$access_token = Util_Request::get_string( 'access_token' );
$region = Util_Request::get( 'region' );
$region_descriptors = json_decode(
strtr( Util_Request::get_string( 'region_descriptors' ), '!^', '"\\' ),
true
);
if ( !isset( $region_descriptors[$region] ) ) {
$details = array(
'user_name' => $user_name,
'api_key' => $api_key,
'error_message' => 'Please select region ' . $region
);
include W3TC_DIR . '/Cdn_RackSpaceCloudFiles_Popup_View_Intro.php';
exit();
}
$api = new Cdn_RackSpace_Api_CloudFilesCdn( array(
'access_token' => $access_token,
'access_region_descriptor' => $region_descriptors[$region],
'new_access_required' => ''
) );
try {
$containers = $api->containers();
} catch ( \Exception $ex ) {
$details = array(
'user_name' => $user_name,
'api_key' => $api_key,
'error_message' => $ex->getMessage()
);
include W3TC_DIR . '/Cdn_RackSpaceCloudFiles_Popup_View_Intro.php';
exit();
}
$details = array(
'user_name' => $user_name,
'api_key' => $api_key,
'access_token' => $access_token,
'access_region_descriptor_serialized' =>
strtr( json_encode( $region_descriptors[$region] ), '"\\', '!^' ),
'region' => $region,
// avoid fights with quotes, magic_quotes may break randomly
'containers' => $containers
);
include W3TC_DIR . '/Cdn_RackSpaceCloudFiles_Popup_View_Containers.php';
exit();
}
public function w3tc_ajax_cdn_rackspace_containers_done() {
$user_name = Util_Request::get_string( 'user_name' );
$api_key = Util_Request::get_string( 'api_key' );
$access_token = Util_Request::get_string( 'access_token' );
$access_region_descriptor = json_decode(
strtr( Util_Request::get_string( 'access_region_descriptor' ), '!^', '"\\' ),
true
);
$region = Util_Request::get_string( 'region' );
$container = Util_Request::get( 'container' );
$api_files = new Cdn_RackSpace_Api_CloudFiles( array(
'access_token' => $access_token,
'access_region_descriptor' => $access_region_descriptor,
'new_access_required' => ''
) );
$api_cdn = new Cdn_RackSpace_Api_CloudFilesCdn( array(
'access_token' => $access_token,
'access_region_descriptor' => $access_region_descriptor,
'new_access_required' => ''
) );
try {
if ( empty( $container ) ) {
$container_new = Util_Request::get_string( 'container_new' );
if ( empty( $container_new ) )
throw new \Exception( 'Please select container' );
$api_files->container_create( $container_new );
$api_cdn->container_cdn_enable( $container_new );
$container = $container_new;
}
} catch ( \Exception $ex ) {
$containers = $api_cdn->containers();
$details = array(
'user_name' => $user_name,
'api_key' => $api_key,
'access_token' => $access_token,
// avoid fights with quotes, magic_quotes may break randomly
'access_region_descriptor_serialized' =>
strtr( json_encode( $access_region_descriptor ), '"\\', '!^' ),
'region' => $region,
'containers' => $containers
);
$details['error_message'] = $ex->getMessage();
include W3TC_DIR . '/Cdn_RackSpaceCloudFiles_Popup_View_Containers.php';
exit();
}
$c = Dispatcher::config();
$c->set( 'cdn.rscf.user', $user_name );
$c->set( 'cdn.rscf.key', $api_key );
$c->set( 'cdn.rscf.location', $region );
$c->set( 'cdn.rscf.container', $container );
$c->save();
// reset calculated state
$state = Dispatcher::config_state();
$state->set( 'cdn.rackspace_cf.access_state', '' );
$state->save();
$postfix = Util_Admin::custom_message_id(
array(),
array( 'cdn_configuration_saved' => 'CDN credentials are saved successfully' )
);
echo 'Location admin.php?page=w3tc_cdn&' . wp_kses( $postfix, Util_Ui::get_allowed_html_for_wp_kses_from_content( $postfix ) );
exit();
}
}