Commit inicial - WordPress Análisis de Precios Unitarios

- WordPress core y plugins
- Tema Twenty Twenty-Four configurado
- Plugin allow-unfiltered-html.php simplificado
- .gitignore configurado para excluir wp-config.php y uploads

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-11-03 21:04:30 -06:00
commit a22573bf0b
24068 changed files with 4993111 additions and 0 deletions

View File

@@ -0,0 +1,957 @@
<?php
/*
Code to render and manage the settings page for the updater system.
Written by Chris Jean for iThemes.com
Version 1.1.0
Version History
1.0.0 - 2013-04-11 - Chris Jean
Release ready
1.0.1 - 2013-09-19 - Chris Jean
Updated requires to not use dirname().
Updated ithemes-updater-object to ithemes-updater-settings.
1.1.0 - 2013-10-23 - Chris Jean
Enhancement: Added the quick_releases setting.
Misc: Removed the show_on_sites setting as it is no longer used.
*/
class Ithemes_Updater_Settings_Page {
private $page_name = 'ithemes-licensing';
private $path_url = '';
private $self_url = '';
private $messages = array();
private $message_strings = array();
private $errors = array();
private $soft_errors = array();
public function __construct() {
require_once( $GLOBALS['ithemes_updater_path'] . '/functions.php' );
require_once( $GLOBALS['ithemes_updater_path'] . '/api.php' );
require_once( $GLOBALS['ithemes_updater_path'] . '/keys.php' );
$this->path_url = Ithemes_Updater_Functions::get_url( $GLOBALS['ithemes_updater_path'] );
list( $this->self_url ) = explode( '?', $_SERVER['REQUEST_URI'] );
$this->self_url .= '?page=' . $this->page_name;
add_action( 'ithemes_updater_settings_page_index', array( $this, 'index' ) );
add_action( 'admin_print_scripts', array( $this, 'add_scripts' ) );
add_action( 'admin_print_styles', array( $this, 'add_styles' ) );
}
public function add_scripts() {
wp_enqueue_script( 'ithemes-updater-settings-page-script', "{$this->path_url}/js/settings-page.js", array(), 2 );
}
public function add_styles() {
wp_enqueue_style( 'ithemes-updater-settings-page-style', "{$this->path_url}/css/settings-page.css", array(), 2 );
}
public function index() {
$post_data = Ithemes_Updater_Functions::get_post_data( array( 'it-updater-username', 'it-updater-password', 'packages', 'action', 'site_url', 'redirect', 'relicense_option' ), true );
if ( empty( $post_data['packages'] ) ) {
$post_data['packages'] = array();
}
if ( ! empty( $post_data['action'] ) ) {
$action = $post_data['action'];
} else if ( ! empty( $_REQUEST['action'] ) ) {
$action = $_REQUEST['action'];
} else {
$action = 'list_packages';
}
if ( 'save_licensed_site_url' === $action ) {
$this->save_licensed_site_url( $post_data );
} else if ( 'relicense' === $action ) {
$this->relicense( $post_data );
} else if ( 'change_licensed_site_url' === $action || ! $GLOBALS['ithemes-updater-settings']->is_licensed_site_url_confirmed() ) {
$this->show_licensed_site_url_confirmation_page( $post_data );
} else {
if ( 'license_packages' === $action ) {
$this->license_packages( $post_data );
} else if ( 'unlicense_packages' === $action ) {
$this->unlicense_packages( $post_data );
} else if ( 'save_settings' === $action ) {
$this->save_settings();
}
$this->list_packages( $action, $post_data );
}
}
private function save_settings() {
check_admin_referer( 'save_settings', 'ithemes_updater_nonce' );
$settings_defaults = array(
'quick_releases' => false,
);
$settings = array();
foreach ( $settings_defaults as $var => $val ) {
if ( isset( $_POST[$var] ) )
$settings[$var] = $_POST[$var];
else
$settings[$var] = $val;
}
if ( $settings['quick_releases'] )
$settings['quick_releases'] = true;
$GLOBALS['ithemes-updater-settings']->update_options( $settings );
$GLOBALS['ithemes-updater-settings']->flush( 'settings saved' );
$this->messages[] = __( 'Settings saved', 'rcp-rest' );
}
private function license_packages( $data ) {
check_admin_referer( 'license_packages', 'ithemes_updater_nonce' );
if ( empty( $data['username'] ) && empty( $data['password'] ) )
$this->errors[] = __( 'You must supply an iThemes membership username and password in order to license products.', 'rcp-rest' );
else if ( empty( $data['username'] ) )
$this->errors[] = __( 'You must supply an iThemes membership username in order to license products.', 'rcp-rest' );
else if ( empty( $data['password'] ) )
$this->errors[] = __( 'You must supply an iThemes membership password in order to license products.', 'rcp-rest' );
else if ( empty( $data['packages'] ) )
$this->errors[] = __( 'You must select at least one product to license. Ensure that you select the products that you wish to license in the listing below.', 'rcp-rest' );
if ( ! empty( $this->errors ) )
return;
$response = Ithemes_Updater_API::activate_package( $data['username'], $data['password'], $data['packages'] );
if ( is_wp_error( $response ) ) {
$this->errors[] = Ithemes_Updater_API::get_error_explanation( $response );
return;
}
if ( empty( $response['packages'] ) ) {
$this->errors[] = __( 'An unknown server error occurred. Please try to license your products again at another time.', 'rcp-rest' );
return;
}
uksort( $response['packages'], 'strnatcasecmp' );
$success = array();
$warn = array();
$fail = array();
foreach ( $response['packages'] as $package => $data ) {
if ( preg_match( '/ \|\|\| \d+$/', $package ) )
continue;
$name = Ithemes_Updater_Functions::get_package_name( $package );
if ( ! empty( $data['key'] ) )
$success[] = $name;
else if ( ! empty( $data['status'] ) && ( 'expired' == $data['status'] ) )
$warn[$name] = __( 'Your product subscription has expired', 'rcp-rest' );
else
$fail[$name] = $data['error']['message'];
}
if ( ! empty( $success ) )
$this->messages[] = wp_sprintf( __( 'Successfully licensed %l.', 'rcp-rest' ), $success );
if ( ! empty( $fail ) ) {
foreach ( $fail as $name => $reason )
$this->errors[] = sprintf( __( 'Unable to license %1$s. Reason: %2$s', 'rcp-rest' ), $name, $reason );
}
if ( ! empty( $warn ) ) {
foreach ( $warn as $name => $reason )
$this->soft_errors[] = sprintf( __( 'Unable to license %1$s. Reason: %2$s', 'rcp-rest' ), $name, $reason );
}
}
private function unlicense_packages( $data ) {
check_admin_referer( 'unlicense_packages', 'ithemes_updater_nonce' );
if ( empty( $data['username'] ) && empty( $data['password'] ) )
$this->errors[] = __( 'You must supply an iThemes membership username and password in order to remove licenses.', 'rcp-rest' );
else if ( empty( $data['username'] ) )
$this->errors[] = __( 'You must supply an iThemes membership username in order to remove licenses.', 'rcp-rest' );
else if ( empty( $data['password'] ) )
$this->errors[] = __( 'You must supply an iThemes membership password in order to remove licenses.', 'rcp-rest' );
else if ( empty( $data['packages'] ) )
$this->errors[] = __( 'You must select at least one license to remove. Ensure that you select the licenses that you wish to remove in the listing below.', 'rcp-rest' );
if ( ! empty( $this->errors ) )
return;
$response = Ithemes_Updater_API::deactivate_package( $data['username'], $data['password'], $data['packages'] );
if ( is_wp_error( $response ) ) {
$this->errors[] = Ithemes_Updater_API::get_error_explanation( $response );
return;
}
if ( empty( $response['packages'] ) ) {
$this->errors[] = __( 'An unknown server error occurred. Please try to remove licenses from your products again at another time.', 'rcp-rest' );
return;
}
uksort( $response['packages'], 'strnatcasecmp' );
$success = array();
$fail = array();
foreach ( $response['packages'] as $package => $data ) {
if ( preg_match( '/ \|\|\| \d+$/', $package ) )
continue;
$name = Ithemes_Updater_Functions::get_package_name( $package );
if ( isset( $data['status'] ) && ( 'inactive' == $data['status'] ) )
$success[] = $name;
else if ( isset( $data['error'] ) && isset( $data['error']['message'] ) )
$fail[$name] = $data['error']['message'];
else
$fail[$name] = __( 'Unknown server error.', 'rcp-rest' );
}
if ( ! empty( $success ) )
$this->messages[] = wp_sprintf( _n( 'Successfully removed license from %l.', 'Successfully removed licenses from %l.', count( $success ), 'rcp-rest' ), $success );
if ( ! empty( $fail ) ) {
foreach ( $fail as $name => $reason )
$this->errors[] = sprintf( __( 'Unable to remove license from %1$s. Reason: %2$s', 'rcp-rest' ), $name, $reason );
}
}
public function list_packages( $action = 'list_packages', $post_data = array() ) {
require_once( $GLOBALS['ithemes_updater_path'] . '/packages.php' );
$details = Ithemes_Updater_Packages::get_full_details();
$packages = $details['packages'];
$licensed = array();
$unlicensed = array();
$unrecognized = array();
foreach ( $packages as $path => $data ) {
$name = Ithemes_Updater_Functions::get_package_name( $data['package'] );
$data['path'] = $path;
if ( isset( $data['status'] ) && 'unlicensed' == $data['status'] )
$unlicensed[$name] = $data;
else if ( isset( $data['status'] ) && in_array( $data['status'], array( 'active', 'expired' ) ) )
$licensed[$name] = $data;
else
$unrecognized[$name] = $data;
}
if ( ! empty( $_REQUEST['updated_url'] ) ) {
$this->messages[] = __( 'Successfully updated the Licensed URL.', 'rcp-rest' );
}
$this->show_notices();
?>
<div class="wrap">
<h2><?php _e( 'iThemes Licensing', 'rcp-rest' ); ?></h2>
<?php
$this->list_licensed_products( $licensed, $post_data, $action );
$this->list_unlicensed_products( $unlicensed, $post_data, $action );
$this->list_unrecognized_products( $unrecognized );
$this->show_settings();
?>
</div>
<?php
}
private function show_settings() {
$quick_releases = $GLOBALS['ithemes-updater-settings']->get_option( 'quick_releases' );
?>
<form id="posts-filter" enctype="multipart/form-data" method="post" action="<?php echo $this->self_url; ?>">
<?php wp_nonce_field( 'save_settings', 'ithemes_updater_nonce' ); ?>
<div id="ithemes-updater-settings">
<h3 class="subtitle"><?php _e( 'Settings', 'rcp-rest' ); ?></h3>
<table class="form-table">
<tbody>
<tr valign="top">
<th scope="row">
<?php _e( 'Licensed URL', 'rcp-rest' ); ?>
</th>
<td>
<p>
<code><?php echo $GLOBALS['ithemes-updater-settings']->get_licensed_site_url(); ?></code>
<a href="<?php echo admin_url( 'options-general.php?page=ithemes-licensing&action=change_licensed_site_url' ); ?>" class="button button-primary"><?php _e( 'Change', 'rcp-rest' ); ?></a>
</p>
<?php if ( is_multisite() ) : ?>
<p class="description"><?php _e( 'The Licensed URL should be the primary URL of this WordPress network. If this is not set correctly, some features may not function as expected.', 'rcp-rest' ); ?></p>
<?php else : ?>
<p class="description"><?php _e( 'The Licensed URL should be the primary URL of this WordPress site. If this is not set correctly, some features may not function as expected.', 'rcp-rest' ); ?></p>
<?php endif; ?>
</td>
</tr>
<tr valign="top">
<th scope="row">
<label for="quick_releases"><?php _e( 'Quick Release Updates', 'rcp-rest' ); ?></label>
</th>
<td>
<?php $checked = ( $quick_releases ) ? ' checked="checked"' : ''; ?>
<label>
<input id="quick_releases" type="checkbox" name="quick_releases" value="1" <?php echo $checked; ?>/>
<?php _e( 'Enable quick release updates', 'rcp-rest' ); ?>
</label>
<p class="description"><?php _e( 'Some products have quick releases that are created to solve specific issues that some users experience. In order to avoid causing users to have updates show up too frequently, automatic updates to these quick releases are disabled by default. Enabling this feature allows quick releases to be available to the automatic update system. Using this option is only recommended if support has requested that you enable it in order to receive a quick release. You should disable this option at a later time after confirming that the quick release solves the issue for you.', 'rcp-rest' ); ?></p>
</td>
</tr>
</tbody>
</table>
<p class="submit">
<input id="save_settings" class="button button-primary" type="submit" value="<?php _e( 'Save Settings', 'rcp-rest' ); ?>" />
<input type="hidden" name="action" value="save_settings" />
</p>
</div>
</form>
<?php
}
private function list_licensed_products( $products, $post_data, $action ) {
if ( empty( $products ) )
return;
uksort( $products, 'strnatcasecmp' );
$time = time();
$headings = array(
__( 'Product', 'rcp-rest' ),
__( 'Member', 'rcp-rest' ),
__( 'Expiration', 'rcp-rest' ),
__( 'Remaining Licenses', 'rcp-rest' ),
);
if ( ( 'unlicense_packages' != $action ) || empty( $this->errors ) ) {
$post_data = array(
'username' => '',
'password' => '',
'packages' => array(),
);
}
?>
<form id="posts-filter" enctype="multipart/form-data" method="post" action="<?php echo $this->self_url; ?>" autocomplete="off">
<?php wp_nonce_field( 'unlicense_packages', 'ithemes_updater_nonce' ); ?>
<div class="ithemes-updater-products" id="ithemes-updater-licensed">
<h3 class="subtitle"><?php _e( 'Licensed Products', 'rcp-rest' ); ?></h3>
<table class="ithemes-updater-listing widefat">
<thead>
<tr>
<th id="cb" class="manage-column column-cb check-column" scope="col">
<label class="screen-reader-text" for="cb-select-all-1"><?php _e( 'Select All' ); ?></label>
<label>
<input id="cb-select-all-1" type="checkbox" />
</label>
</th>
<th scope="col">
<label for="cb-select-all-1"><?php _e( 'Product', 'rcp-rest' ); ?></label>
</th>
<th scope="col"><?php _e( 'Member', 'rcp-rest' ); ?></th>
<th scope="col"><?php _e( 'Product Status', 'rcp-rest' ); ?></th>
<th scope="col"><?php _e( 'Expiration', 'rcp-rest' ); ?></th>
<th scope="col"><?php _e( 'Remaining Licenses', 'rcp-rest' ); ?></th>
</tr>
</thead>
<tbody>
<?php $count = 0; ?>
<?php foreach ( $products as $name => $data ) : ?>
<?php
if ( -1 == $data['total'] )
$remaining = __( 'unlimited', 'rcp-rest' );
else
$remaining = $data['total'] - $data['used'];
// if ( 0 == $remaining )
// $remaining .= ' <a class="button-secondary upgrade">' . __( 'Upgrade', 'rcp-rest' ) . '</a>';
$expiration = $this->get_expiration_string( $data['expiration'] );
$expiration = '<time datetime="' . date( 'Y-m-d\TH:i:s\Z', $data['expiration'] ) . '">' . $expiration . '</time>';
$time_left = $data['expiration'] - $time;
$class = 'expiring';
if ( $time_left > ( 86400 * 30 ) )
$class = 'active';
else if ( $time_left <= 0 )
$class = 'expired';
if ( 'expired' == $data['status'] ) {
$class = 'expired';
$remaining = '&nbsp;';
}
$status = ucfirst( $class );
if ( ++$count % 2 ) {
$class .= ' alt';
}
$check_id = "cb-select-{$data['package']}";
$checked = ( in_array( $data['package'], $post_data['packages'] ) ) ? ' checked' : '';
?>
<tr class="<?php echo $class; ?>">
<th class="check-column" scope="row">
<label class="screen-reader-text" for="<?php echo $check_id; ?>"><?php printf( __( 'Select %s' ), $name ); ?></label>
<label for="<?php echo $check_id; ?>">
<input id="<?php echo $check_id ?>" name="packages[]" value="<?php echo $data['package']; ?>" type="checkbox"<?php echo $checked; ?>>
</label>
</th>
<td>
<label for="<?php echo $check_id; ?>"><?php echo $name; ?></label>
</td>
<td><?php echo $data['user']; ?></td>
<td><?php echo $status; ?></td>
<td><?php echo $expiration; ?></td>
<td><?php echo $remaining; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
<tfoot>
<tr>
<td colspan="6">
<input type="text" name="it-updater-username" placeholder="iThemes Username" value="<?php echo esc_attr( $post_data['username'] ); ?>" autocomplete="off" />
<input type="password" name="it-updater-password" placeholder="Password" value="<?php echo esc_attr( $post_data['password'] ); ?>" />
<input class="button-primary" type="submit" name="submit" value="<?php _e( 'Remove Licenses', 'rcp-rest' ); ?>" />
<input type="hidden" name="action" value="unlicense_packages" />
</td>
</tr>
</tfoot>
</table>
</div>
</form>
<?php
}
private function list_unlicensed_products( $products, $post_data, $action ) {
if ( empty( $products ) )
return;
uksort( $products, 'strnatcasecmp' );
if ( ( 'license_packages' != $action ) || empty( $this->errors ) ) {
$post_data = array(
'username' => '',
'password' => '',
'packages' => array(),
);
foreach ( $products as $name => $data )
$post_data['packages'][] = $data['package'];
}
?>
<form id="posts-filter" enctype="multipart/form-data" method="post" action="<?php echo $this->self_url; ?>" autocomplete="off">
<?php wp_nonce_field( 'license_packages', 'ithemes_updater_nonce' ); ?>
<div class="ithemes-updater-products" id="ithemes-updater-unlicensed">
<h3 class="subtitle"><?php _e( 'Unlicensed Products', 'rcp-rest' ); ?></h3>
<p><?php _e( 'The following products have not been licensed. Licensing a product gives you access to automatic updates from within WordPress.', 'rcp-rest' ); ?></p>
<p><?php _e( 'To license products, select the products you wish to license, enter your iThemes membership username and password, and press the License Products button.', 'rcp-rest' ); ?></p>
<p><?php printf( __( 'Need help? <a href="%s">Click here for a quick video tutorial</a>.', 'rcp-rest' ), 'http://ithemes.com/2013/04/11/introducing-the-new-and-improved-ithemes-licensing-system/' ); ?></p>
<table class="ithemes-updater-listing widefat">
<thead>
<tr>
<th id="cb" class="manage-column column-cb check-column" scope="col">
<label class="screen-reader-text" for="cb-select-all-2"><?php _e( 'Select All' ); ?></label>
<label>
<input id="cb-select-all-2" type="checkbox"<?php if ( count( $post_data['packages'] ) == count( $products ) ) echo ' checked'; ?> />
</label>
</th>
<th scope="col">
<label for="cb-select-all-2"><?php _e( 'Product', 'rcp-rest' ); ?></label>
</th>
</tr>
</thead>
<tbody>
<?php $count = 0; ?>
<?php foreach ( $products as $name => $data ) : ?>
<?php
$check_id = "cb-select-{$data['package']}";
if ( 'license_packages' == $action )
$checked = ( in_array( $data['package'], $post_data['packages'] ) ) ? ' checked' : '';
else
$checked = ' checked';
if ( ++$count % 2 ) {
$class = 'alt';
} else {
$class = '';
}
?>
<tr class="<?php echo $class; ?>">
<th class="check-column" scope="row">
<label class="screen-reader-text" for="<?php echo $check_id; ?>"><?php printf( __( 'Select %s' ), $name ); ?></label>
<label for="<?php echo $check_id; ?>">
<input id="<?php echo $check_id; ?>" name="packages[]" value="<?php echo $data['package']; ?>" type="checkbox" <?php echo $checked; ?>>
</label>
</th>
<td>
<label for="<?php echo $check_id; ?>"><?php echo $name; ?></label>
</td>
</tr>
<?php endforeach; ?>
</tbody>
<tfoot>
<tr>
<td colspan="2">
<input type="text" name="it-updater-username" placeholder="iThemes Username" value="<?php echo esc_attr( $post_data['username'] ); ?>" autocomplete="off" />
<input type="password" name="it-updater-password" placeholder="Password" value="<?php echo esc_attr( $post_data['password'] ); ?>" />
<input class="button-primary" type="submit" name="submit" value="<?php _e( 'License Products', 'rcp-rest' ); ?>" />
<input type="hidden" name="action" value="license_packages" />
</td>
</tr>
</tfoot>
</table>
</div>
</form>
<?php
}
private function list_unrecognized_products( $products ) {
if ( empty( $products ) )
return;
uksort( $products, 'strnatcasecmp' );
?>
<div class="ithemes-updater-products" id="ithemes-updater-unrecognized">
<h3 class="subtitle"><?php _e( 'Unrecognized Products', 'rcp-rest' ); ?></h3>
<p><?php _e( 'The following products were not recognized by the licensing system. This can be due to a bug in the product code, a temporary server issue, or because the product is no longer supported.', 'rcp-rest' ); ?></p>
<p><?php printf( __( 'Please check this page again at a later time to see if the problem resolves itself. If the product remains, please contact <a href="%s">iThemes support</a> and provide them with the details given below.', 'rcp-rest' ), 'http://ithemes.com/support/' ); ?></p>
<table class="ithemes-updater-listing widefat">
<thead>
<tr>
<th scope="col"><?php _e( 'Product', 'rcp-rest' ); ?></th>
<th scope="col"><?php _e( 'Type', 'rcp-rest' ); ?></th>
<th scope="col"><?php _e( 'Package', 'rcp-rest' ); ?></th>
<th scope="col"><?php _e( 'Version', 'rcp-rest' ); ?></th>
<th scope="col"><?php _e( 'Server Response', 'rcp-rest' ); ?></th>
</tr>
</thead>
<tbody>
<?php $count = 0; ?>
<?php foreach ( $products as $name => $data ) : ?>
<?php
if ( ( isset( $data['status'] ) && 'error' == $data['status'] ) && ( ! empty( $data['error']['message'] ) ) )
$response = "{$data['error']['message']} ({$data['error']['code']})";
else
$response = __( 'Unknown Error', 'rcp-rest' );
if ( ++$count % 2 ) {
$class = 'alt';
} else {
$class = '';
}
?>
<tr class="<?php echo $class; ?>">
<td><?php echo $name; ?></td>
<td><?php echo $data['type']; ?></td>
<td><?php echo $data['package']; ?></td>
<td><?php echo $data['installed']; ?></td>
<td><?php echo $response; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
<?php
}
public function show_licensed_site_url_confirmation_page( $post_data = array() ) {
$this->show_notices();
$site_url = $GLOBALS['ithemes-updater-settings']->get_licensed_site_url();
if ( empty( $site_url ) ) {
$site_url = network_home_url();
}
if ( empty( $post_data['username'] ) || empty( $this->errors ) ) {
$post_data['username'] = '';
}
if ( empty( $post_data['password'] ) || empty( $this->errors ) ) {
$post_data['password'] = '';
}
if ( ! empty( $post_data['redirect'] ) ) {
$redirect = $post_data['redirect'];
} else if ( ! empty( $_GET['redirect'] ) ) {
$redirect = $_GET['redirect'];
} else {
$redirect = '';
}
?>
<div class="wrap" id="ithemes-updater-site-url-confirmation">
<span class="ithemes-updater-header"></span>
<h2><?php _e( 'Licensing', 'rcp-rest' ); ?></h2>
<p><?php _e( "Please confirm this site's licensed URL.", 'rcp-rest' ); ?></p>
<form id="posts-filter" enctype="multipart/form-data" method="post" action="<?php echo $this->self_url; ?>">
<?php wp_nonce_field( 'save_licensed_site_url', 'ithemes_updater_nonce' ); ?>
<div id="ithemes-updater-settings">
<div id="ithemes-updater-table-wrapper">
<table class="form-table">
<tbody>
<tr valign="top">
<th scope="row">
<label for="site_url"><?php _e( 'Licensed URL', 'rcp-rest' ); ?></label>
<?php if ( is_multisite() ) : ?>
<p class="description"><?php _e( 'The Licensed URL should be the primary URL of this WordPress network.', 'rcp-rest' ); ?></p>
<p class="description ithemes-updater-description-warning"><?php _e( 'If not set correctly, some features may not function as expected.', 'rcp-rest' ); ?></p>
<?php else : ?>
<p class="description"><?php _e( 'The Licensed URL should be the primary URL of this WordPress site.', 'rcp-rest' ); ?></p>
<p class="description ithemes-updater-description-warning"><?php _e( 'If not set correctly, some features may not function as expected.', 'rcp-rest' ); ?></p>
<?php endif; ?>
</th>
<td>
<label>
<input id="site_url" class="regular-text" type="text" name="site_url" value="<?php echo esc_attr( $site_url ); ?>" />
</label>
</td>
</tr>
</tbody>
</table>
</div>
<p class="submit">
<input id="save_licensed_site_url" class="button button-primary" type="submit" value="<?php _e( 'Save', 'rcp-rest' ); ?>" />
<input type="hidden" name="action" value="save_licensed_site_url" />
<input type="hidden" name="redirect" value="<?php echo esc_attr( $redirect ); ?>" />
</p>
</div>
</form>
</div>
<?php
}
private function save_licensed_site_url( $data ) {
check_admin_referer( 'save_licensed_site_url', 'ithemes_updater_nonce' );
if ( empty( $data['site_url'] ) ) {
$this->errors[] = __( 'The licensed URL cannot be blank.', 'rcp-rest' );
} else if ( false === filter_var( $data['site_url'], FILTER_VALIDATE_URL ) ) {
$this->errors[] = __( 'The licensed URL must be a valid URL.', 'rcp-rest' );
}
if ( ! empty( $this->errors ) ) {
$this->show_licensed_site_url_confirmation_page( $data );
return;
}
$site_url = $GLOBALS['ithemes-updater-settings']->get_site_url( $data['site_url'] );
if ( $this->has_license_keys() ) {
$site_url_from_server = $GLOBALS['ithemes-updater-settings']->get_licensed_site_url_from_server();
if ( $site_url_from_server !== $site_url ) {
$data['site_url'] = $site_url;
$this->show_relicensing_page( $data );
return;
}
}
$GLOBALS['ithemes-updater-settings']->set_licensed_site_url( $site_url );
$this->messages[] = __( 'Successfully set the Licensed URL.', 'rcp-rest' );
if ( empty( $data['redirect'] ) ) {
$redirect = admin_url( 'options-general.php?page=ithemes-licensing&updated_url=true' );
} else {
$redirect = $data['redirect'];
}
echo '<input id="ithemes-updater-redirect-to-url" type="hidden" value="' . esc_attr( $redirect ) . '" />' . "\n";
$this->list_packages();
}
public function show_relicensing_page( $data = array() ) {
$this->show_notices();
$site_url_from_server = $GLOBALS['ithemes-updater-settings']->get_licensed_site_url_from_server();
if ( empty( $data['relicense_option'] ) ) {
$data['relicense_option'] = 'relicense';
}
if ( empty( $data['username'] ) ) {
$data['username'] = '';
}
if ( empty( $data['password'] ) ) {
$data['password'] = '';
}
?>
<div class="wrap" id="ithemes-updater-relicense">
<span class="ithemes-updater-header"></span>
<h2><?php _e( 'Licensing', 'rcp-rest' ); ?></h2>
<p><?php printf( __( 'The licenses on this site are for <code>%s</code>.', 'rcp-rest' ), $site_url_from_server ); ?></p>
<form id="posts-filter" enctype="multipart/form-data" method="post" action="<?php echo $this->self_url; ?>">
<?php wp_nonce_field( 'relicense', 'ithemes_updater_nonce' ); ?>
<div id="ithemes-updater-settings">
<div id="ithemes-updater-table-wrapper">
<table class="form-table">
<tbody>
<tr valign="top">
<th scope="row">
<label for="relicense_option">
<?php _e( 'License Option', 'rcp-rest' ); ?>
</label>
</th>
<td>
<p>
<label>
<input type="radio" name="relicense_option" value="relicense" <?php if ( 'relicense' === $data['relicense_option'] ) echo 'checked="checked"'; ?> />
<?php _e( 'Create new licenses for this site.', 'rcp-rest' ); ?>
</label>
</p>
<p class="description ithemes-updater-description-warning"><?php _e( 'Use this option if this site was cloned from another site and needs to have its own licenses.', 'rcp-rest' ); ?></p>
<br />
<p>
<label>
<input type="radio" name="relicense_option" value="update" <?php if ( 'update' === $data['relicense_option'] ) echo 'checked="checked"'; ?> />
<?php printf( __( 'Change the existing licenses to be for <code>%s</code>.', 'rcp-rest' ), $data['site_url'] ); ?>
</label>
</p>
<p class="description ithemes-updater-description-notice">
<span class="dashicons dashicons-warning"></span>
<?php printf( __( 'Note: If the <code>%s</code> site still exists and is different from this site, you will have to create new licenses on that site.', 'rcp-rest' ), $data['site_url'], $site_url_from_server ); ?>
</p>
<p class="description ithemes-updater-description-warning"><?php printf( __( 'Use this option if this site\'s primary URL has changed from <code>%1$s</code> to <code>%2$s</code>.', 'rcp-rest' ), $site_url_from_server, $data['site_url'] ); ?></p>
</td>
</tr>
<tr valign="top">
<th scope="row" colspan="2">
<label for="it-updater-username"><?php _e( 'iThemes Username', 'rcp-rest' ); ?></label>
<br />
<input id="it-updater-username" type="text" name="it-updater-username" value="<?php echo esc_attr( $data['username'] ); ?>" />
</th>
</tr>
<tr valign="top">
<th scope="row" colspan="2">
<label for="it-updater-password"><?php _e( 'iThemes Password', 'rcp-rest' ); ?></label>
<br />
<input id="it-updater-password" type="password" name="it-updater-password" value="<?php echo esc_attr( $data['password'] ); ?>" />
</th>
</tr>
</tbody>
</table>
</div>
<p class="submit">
<input id="relicense" class="button button-primary" type="submit" value="<?php _e( 'Save', 'rcp-rest' ); ?>" />
<input type="hidden" name="action" value="relicense" />
<input type="hidden" name="site_url" value="<?php echo esc_attr( $data['site_url'] ); ?>" />
<input type="hidden" name="redirect" value="<?php echo esc_attr( $data['redirect'] ); ?>" />
</p>
</div>
</form>
</div>
<?php
}
private function relicense( $data ) {
check_admin_referer( 'relicense', 'ithemes_updater_nonce' );
if ( empty( $data['username'] ) && empty( $data['password'] ) ) {
$this->errors[] = __( 'You must supply an iThemes membership username and password in order to change the licensed URL.', 'rcp-rest' );
} else if ( empty( $data['username'] ) ) {
$this->errors[] = __( 'You must supply an iThemes membership username in order to change the licensed URL.', 'rcp-rest' );
} else if ( empty( $data['password'] ) ) {
$this->errors[] = __( 'You must supply an iThemes membership password in order to change the licensed URL.', 'rcp-rest' );
} else if ( empty( $data['site_url'] ) ) {
$this->errors[] = __( 'The licensed URL cannot be blank.', 'rcp-rest' );
} else if ( false === filter_var( $data['site_url'], FILTER_VALIDATE_URL ) ) {
$this->errors[] = __( 'The licensed URL must be a valid URL.', 'rcp-rest' );
} else if ( empty( $data['relicense_option'] ) || ! in_array( $data['relicense_option'], array( 'relicense', 'update' ) ) ) {
$this->errors[] = __( 'You must pick one of the License Option options.', 'rcp-rest' );
}
if ( ! empty( $this->errors ) ) {
$this->show_relicensing_page( $data );
return;
}
if ( 'update' === $data['relicense_option'] ) {
$response = Ithemes_Updater_API::set_licensed_site_url( $data['username'], $data['password'], $data['site_url'] );
if ( is_wp_error( $response ) ) {
$this->errors[] = Ithemes_Updater_API::get_error_explanation( $response );
$this->show_relicensing_page( $data );
return;
}
$GLOBALS['ithemes-updater-settings']->set_licensed_site_url( $data['site_url'] );
$this->messages[] = __( 'Successfully updated the Licensed URL.', 'rcp-rest' );
} else {
require_once( $GLOBALS['ithemes_updater_path'] . '/keys.php' );
$keys = Ithemes_Updater_Keys::get();
$packages = array_keys( $keys );
$response = Ithemes_Updater_API::deactivate_package( $data['username'], $data['password'], $packages );
if ( is_wp_error( $response ) ) {
$this->errors[] = Ithemes_Updater_API::get_error_explanation( $response );
$this->show_relicensing_page( $data );
return;
}
$GLOBALS['ithemes-updater-settings']->set_licensed_site_url( $data['site_url'] );
$this->messages[] = __( 'Successfully updated the Licensed URL.', 'rcp-rest' );
$response = Ithemes_Updater_API::activate_package( $data['username'], $data['password'], $packages );
if ( is_wp_error( $response ) ) {
$this->errors[] = Ithemes_Updater_API::get_error_explanation( $response );
$this->show_relicensing_page( $data );
return;
}
}
if ( empty( $data['redirect'] ) ) {
$redirect = admin_url( 'options-general.php?page=ithemes-licensing&updated_url=true' );
} else {
$redirect = $data['redirect'];
}
echo '<input id="ithemes-updater-redirect-to-url" type="hidden" value="' . esc_attr( $redirect ) . '" />' . "\n";
$this->list_packages();
return;
}
private function show_notices() {
if ( ! empty( $this->messages ) ) {
foreach ( $this->messages as $message ) {
echo "<div class=\"updated fade\"><p><strong>$message</strong></p></div>\n";
}
}
if ( ! empty( $this->errors ) ) {
foreach ( $this->errors as $error ) {
echo "<div class=\"error\"><p><strong>$error</strong></p></div>\n";
}
}
if ( ! empty( $this->soft_errors ) ) {
foreach ( $this->soft_errors as $error ) {
echo "<div class=\"error\"><p><strong>$error</strong></p></div>\n";
}
}
}
private function get_expiration_string( $expiration_timestamp ) {
$time = time();
$time_left = $expiration_timestamp - $time;
$expired = false;
if ( $time_left < 0 ) {
$expired = true;
$time_left = abs( $time_left );
}
if ( $time_left > ( 86400 * 30 ) )
$expiration = date( 'Y-m-d', $expiration_timestamp );
else {
if ( $time_left > 86400 )
$expiration = sprintf( _n( '%d day', '%d days', intval( $time_left / 86400 ), 'rcp-rest' ), intval( $time_left / 86400 ) );
else if ( $time_left > 3600 )
$expiration = sprintf( _n( '%d hour', '%d hours', intval( $time_left / 3600 ), 'rcp-rest' ), intval( $time_left / 3600 ) );
else if ( $time_left > 60 )
$expiration = sprintf( _n( '%d minute', '%d minutes', intval( $time_left / 60 ), 'rcp-rest' ), intval( $time_left / 60 ) );
else
$expiration = sprintf( _n( '%d second', '%d seconds', $time_left, 'rcp-rest' ), intval( $time_left / 60 ) );
if ( $expired )
$expiration = sprintf( __( '%s ago', 'rcp-rest' ), $expiration );
}
return $expiration;
}
private function has_license_keys() {
require_once( $GLOBALS['ithemes_updater_path'] . '/keys.php' );
$keys = Ithemes_Updater_Keys::get();
$legacy_keys = Ithemes_Updater_Keys::get_legacy();
if ( empty( $keys ) && empty( $legacy_keys ) ) {
return false;
}
return true;
}
}
new Ithemes_Updater_Settings_Page();