| 1 |
<?php |
| 2 |
/** |
| 3 |
* API connectivity issues (CloudFlare's firewall) handler for handling different |
| 4 |
* scenarios selected by the user after connectivity issue is detected, by sending |
| 5 |
* AJAX call to the server in order to make the actual actions. |
| 6 |
* |
| 7 |
* @package Freemius |
| 8 |
* @copyright Copyright (c) 2015, Freemius, Inc. |
| 9 |
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
| 10 |
* @since 1.0.9 |
| 11 |
*/ |
| 12 |
|
| 13 |
if ( ! defined( 'ABSPATH' ) ) { |
| 14 |
exit; |
| 15 |
} |
| 16 |
?> |
| 17 |
<script type="text/javascript"> |
| 18 |
jQuery(document).ready(function ($) { |
| 19 |
$('#fs_firewall_issue_options a.fs-resolve').click(function () { |
| 20 |
var |
| 21 |
error_type = $(this).attr('data-type'), |
| 22 |
notice = $(this).parents('.fs-notice'), |
| 23 |
slug = notice.attr('data-slug'); |
| 24 |
|
| 25 |
var data = { |
| 26 |
action : 'fs_resolve_firewall_issues_' + slug, |
| 27 |
slug : slug, |
| 28 |
error_type: error_type |
| 29 |
}; |
| 30 |
|
| 31 |
if ('squid' === error_type) { |
| 32 |
data.hosting_company = prompt('What is the name or URL of your hosting company?'); |
| 33 |
if (null == data.hosting_company) |
| 34 |
return false; |
| 35 |
|
| 36 |
if ('' === data.hosting_company) { |
| 37 |
alert('We won\'t be able to help without knowing your hosting company.'); |
| 38 |
return false; |
| 39 |
} |
| 40 |
} |
| 41 |
|
| 42 |
if ('retry_ping' === error_type) { |
| 43 |
data.action = 'fs_retry_connectivity_test_' + slug; |
| 44 |
} |
| 45 |
|
| 46 |
$(this).css({'cursor': 'wait'}); |
| 47 |
|
| 48 |
// since 2.8 ajaxurl is always defined in the admin header and points to admin-ajax.php |
| 49 |
$.post(ajaxurl, data, function (response) { |
| 50 |
if (1 == response) { |
| 51 |
// Refresh page on success. |
| 52 |
location.reload(); |
| 53 |
} else if ('http' === response.substr(0, 4)) { |
| 54 |
// Ping actually worked, redirect. |
| 55 |
window.location = response; |
| 56 |
} |
| 57 |
}); |
| 58 |
}); |
| 59 |
}); |
| 60 |
</script> |