Files
wp-multisite-waas/inc/integrations/host-providers/class-closte-host-provider.php
2025-02-08 13:57:32 -07:00

241 lines
5.3 KiB
PHP

<?php
/**
* Adds domain mapping and auto SSL support to customer hosting networks on Closte.
*
* @package WP_Ultimo
* @subpackage Integrations/Host_Providers/Closte
* @since 2.0.0
*/
namespace WP_Ultimo\Integrations\Host_Providers;
use WP_Ultimo\Integrations\Host_Providers\Base_Host_Provider;
// Exit if accessed directly
defined('ABSPATH') || exit;
/**
* This base class should be extended to implement new host integrations for SSL and domains.
*/
class Closte_Host_Provider extends Base_Host_Provider {
use \WP_Ultimo\Traits\Singleton;
/**
* Keeps the title of the integration.
*
* @var string
* @since 2.0.0
*/
protected $id = 'closte';
/**
* Keeps the title of the integration.
*
* @var string
* @since 2.0.0
*/
protected $title = 'Closte';
/**
* Link to the tutorial teaching how to make this integration work.
*
* @var string
* @since 2.0.0
*/
protected $tutorial_link = '';
/**
* Array containing the features this integration supports.
*
* @var array
* @since 2.0.0
*/
protected $supports = [
'autossl',
'no-instructions',
'no-config',
];
/**
* Constants that need to be present on wp-config.php for this integration to work.
*
* @since 2.0.0
* @var array
*/
protected $constants = [
'CLOSTE_CLIENT_API_KEY',
];
/**
* Picks up on tips that a given host provider is being used.
*
* We use this to suggest that the user should activate an integration module.
*
* @since 2.0.0
* @return boolean
*/
public function detect() {
return defined('CLOSTE_CLIENT_API_KEY') && CLOSTE_CLIENT_API_KEY;
}
/**
* This method gets called when a new domain is mapped.
*
* @since 2.0.0
* @param string $domain The domain name being mapped.
* @param int $site_id ID of the site that is receiving that mapping.
* @return void
*/
public function on_add_domain($domain, $site_id): void {
$this->send_closte_api_request(
'/adddomainalias',
[
'domain' => $domain,
'wildcard' => str_starts_with($domain, '*.'),
]
);
}
/**
* This method gets called when a mapped domain is removed.
*
* @since 2.0.0
* @param string $domain The domain name being removed.
* @param int $site_id ID of the site that is receiving that mapping.
* @return void
*/
public function on_remove_domain($domain, $site_id): void {
$this->send_closte_api_request(
'/deletedomainalias',
[
'domain' => $domain,
'wildcard' => str_starts_with($domain, '*.'),
]
);
}
/**
* This method gets called when a new subdomain is being added.
*
* This happens every time a new site is added to a network running on subdomain mode.
*
* @since 2.0.0
* @param string $subdomain The subdomain being added to the network.
* @param int $site_id ID of the site that is receiving that mapping.
* @return void
*/
public function on_add_subdomain($subdomain, $site_id) {}
/**
* This method gets called when a new subdomain is being removed.
*
* This happens every time a new site is removed to a network running on subdomain mode.
*
* @since 2.0.0
* @param string $subdomain The subdomain being removed to the network.
* @param int $site_id ID of the site that is receiving that mapping.
* @return void
*/
public function on_remove_subdomain($subdomain, $site_id) {}
/**
* Tests the connection with the API.
*
* Needs to be implemented by integrations.
*
* @since 2.0.0
* @return void
*/
public function test_connection(): void {
$response = $this->send_closte_api_request('/adddomainalias', []);
if (wu_get_isset($response, 'error') === 'Invalid or empty domain: ') {
wp_send_json_success(
[
'message' => __('Access Authorized'),
]
);
}
$error = new \WP_Error('not-auth', __('Something went wrong', 'wp-ultimo'));
wp_send_json_error($error);
}
/**
* Sends a request to Closte, with the right API key.
*
* @since 1.7.3
* @param string $endpoint Endpoint to send the call to.
* @param array $data Array containing the params to the call.
* @return object
*/
public function send_closte_api_request($endpoint, $data) {
if (defined('CLOSTE_CLIENT_API_KEY') === false) {
return (object) [
'success' => false,
'error' => 'Closte API Key not found.',
];
}
$post_fields = [
'blocking' => true,
'timeout' => 45,
'method' => 'POST',
'body' => array_merge(
[
'apikey' => CLOSTE_CLIENT_API_KEY,
],
$data
),
];
$response = wp_remote_post('https://app.closte.com/api/client' . $endpoint, $post_fields);
wu_log_add('integration-closte', wp_remote_retrieve_body($response));
if ( ! is_wp_error($response)) {
$body = json_decode(wp_remote_retrieve_body($response), true);
if (json_last_error() === JSON_ERROR_NONE) {
return $body;
}
return (object) [
'success' => false,
'error' => 'unknown',
];
}
return $response;
}
/**
* Returns the description of this integration.
*
* @since 2.0.0
* @return string
*/
public function get_description() {
return __('Closte is not just another web hosting who advertise their services as a cloud hosting while still provides fixed plans like in 1995.', 'wp-ultimo');
}
/**
* Returns the logo for the integration.
*
* @since 2.0.0
* @return string
*/
public function get_logo() {
return wu_get_asset('closte.svg', 'img/hosts');
}
}