| Server IP : 130.225.57.55 / Your IP : 216.73.216.60 Web Server : Apache System : Linux wp-vhost07 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /srv/www/reco2st.eu/https/wp-content/plugins/w3-total-cache/ |
Upload File : |
/**
* File: Cdn_RackSpaceCdn_Page_View.js
*
* Rackspace CDN settings page lightbox interactions.
*
* @package W3TC
* @since 2.0.0
*/
jQuery(function ($) {
function w3tc_rackspace_resize(o) {
o.resize();
}
function w3tc_rackspace_created(o) {
w3tc_rackspace_resize(o);
w3tc_rackspace_check_service_state();
}
function w3tc_rackspace_check_service_state() {
var service_id = jQuery('input[name="service_id"]').val();
var access_token = jQuery('input[name="access_token"]').val();
var access_region_descriptor = jQuery(
'input[name="access_region_descriptor"]',
).val();
jQuery
.post(
ajaxurl,
{
action: "w3tc_ajax",
_wpnonce: w3tcGetAjaxNonce("cdn_rackspace_service_get_state"),
service_id: service_id,
access_token: access_token,
access_region_descriptor: access_region_descriptor,
w3tc_action: "cdn_rackspace_service_get_state",
},
function (data) {
var state = "unknown";
if (data && data["status"]) status = data["status"];
jQuery(".w3tc_rackspace_created_status").html(status);
if (status == "deployed") w3tc_rackspace_service_created_done(data);
else setTimeout(w3tc_rackspace_check_service_state, 5000);
},
"json",
)
.fail(function () {
jQuery(".w3tc_rackspace_created_state").html("Failed to obtain state");
setTimeout(w3tc_rackspace_check_service_state, 5000);
});
}
function w3tc_rackspace_service_created_done(data) {
jQuery(".w3tc_rackspace_cname").html(data["cname"]);
jQuery(".w3tc_rackspace_access_url").html(data["access_url"]);
jQuery(".w3tc_rackspace_created_in_progress").css("display", "none");
jQuery(".w3tc_rackspace_created_done").css("display", "");
w3tc_rackspace_resize(W3tc_Lightbox);
}
$("body")
/**
* Authorize popup
*/
.on("click", ".w3tc_cdn_rackspace_authorize", function () {
W3tc_Lightbox.open({
id: "w3tc-overlay",
close: "",
width: 800,
height: 300,
url:
ajaxurl +
"?action=w3tc_ajax&_wpnonce=" +
w3tcGetAjaxNonce("cdn_rackspace_intro") +
"&w3tc_action=cdn_rackspace_intro",
callback: w3tc_rackspace_resize,
});
})
.on("click", ".w3tc_popup_submit", function () {
// load_form POSTs w3tc_action from the form; match the hub token on the URL query.
var url =
ajaxurl +
"?action=w3tc_ajax&_wpnonce=" +
w3tcGetAjaxNonceForForm(".w3tc_cdn_rackspace_form");
W3tc_Lightbox.load_form(
url,
".w3tc_cdn_rackspace_form",
w3tc_rackspace_resize,
);
})
.on("click", ".w3tc_cdn_rackspace_service_create_done", function () {
var url =
ajaxurl +
"?action=w3tc_ajax&_wpnonce=" +
w3tcGetAjaxNonce("cdn_rackspace_service_create_done") +
"&w3tc_action=cdn_rackspace_service_create_done";
W3tc_Lightbox.load_form(
url,
".w3tc_cdn_rackspace_form",
w3tc_rackspace_created,
);
})
.on("click", ".w3tc_cdn_rackspace_protocol", function () {
var protocol = "";
$("body")
.find(".w3tc_cdn_rackspace_protocol")
.each(function (i) {
if (!jQuery(this).prop("checked")) return;
protocol = $(this).val();
});
//alert('ha ' + protocol);
$(".w3tc_cdn_rackspace_cname_http").css(
"display",
protocol == "http" ? "" : "none",
);
$(".w3tc_cdn_rackspace_cname_https").css(
"display",
protocol == "https" ? "" : "none",
);
})
/**
* CNAMEs popup
*/
.on("click", ".w3tc_cdn_rackspace_configure_domains", function () {
W3tc_Lightbox.open({
id: "w3tc-overlay",
close: "",
width: 1000,
height: 400,
url:
ajaxurl +
"?action=w3tc_ajax&_wpnonce=" +
w3tcGetAjaxNonce("cdn_rackspace_configure_domains") +
"&w3tc_action=cdn_rackspace_configure_domains",
callback: function (o) {
w3tc_rackspace_resize(o);
w3tc_cdn_cnames_assign();
},
});
})
.on("click", ".w3tc_cdn_rackspace_configure_domains_done", function () {
var url =
ajaxurl +
"?action=w3tc_ajax&_wpnonce=" +
w3tcGetAjaxNonce("cdn_rackspace_configure_domains_done") +
"&w3tc_action=cdn_rackspace_configure_domains_done";
var v = $(".w3tc_cdn_rackspace_form")
.find("input")
.each(function (i) {
var name = $(this).attr("name");
if (name)
url +=
"&" +
encodeURIComponent(name) +
"=" +
encodeURIComponent($(this).val());
});
W3tc_Lightbox.load(url, function (o) {
w3tc_rackspace_resize(o);
w3tc_cdn_cnames_assign();
});
})
.on("size_change", "#cdn_cname_add", function () {
w3tc_rackspace_resize(W3tc_Lightbox);
});
});