defined( 'WPINC' ) || exit();
* Handles QUIC.cloud activation, authentication, and CDN setup.
* Init QC setup preparation
public function init_qc_prepare() {
if ( empty( $this->_summary['sk_b64'] ) ) {
$keypair = sodium_crypto_sign_keypair();
$pk = base64_encode( sodium_crypto_sign_publickey( $keypair ) ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_encode
$sk = base64_encode( sodium_crypto_sign_secretkey( $keypair ) ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_encode
$this->_summary['pk_b64'] = $pk;
$this->_summary['sk_b64'] = $sk;
// ATM `qc_activated` = null
public function init_qc() {
$this->init_qc_prepare();
$ref = $this->_get_ref_url();
// WPAPI REST echo dryrun
$echobox = self::post( self::API_REST_ECHO, false, 60 );
if ( false === $echobox ) {
self::debugErr( 'REST Echo Failed!' );
$msg = __( "QUIC.cloud's access to your WP REST API seems to be blocked.", 'litespeed-cache' );
Admin_Display::error( $msg );
wp_safe_redirect( $ref );
self::debug( 'echo succeeded' );
// Load separate thread echoed data from storage
if ( empty( $echobox['wpapi_ts'] ) || empty( $echobox['wpapi_signature_b64'] ) ) {
Admin_Display::error( __( 'Failed to get echo data from WPAPI', 'litespeed-cache' ) );
wp_safe_redirect( $ref );
'wp_pk_b64' => $this->_summary['pk_b64'],
'wpapi_ts' => $echobox['wpapi_ts'],
'wpapi_signature_b64' => $echobox['wpapi_signature_b64'],
$server_ip = $this->conf( self::O_SERVER_IP );
$data['server_ip'] = $server_ip;
'site_url' => site_url(),
wp_safe_redirect( $this->_cloud_server_dash . '/' . self::SVC_U_ACTIVATE . '?data=' . rawurlencode( Utility::arr2str( $param ) ) );
* @param string|false $ref Ref slug.
private function _get_ref_url( $ref = false ) {
$link = 'admin.php?page=litespeed';
$link = 'admin.php?page=litespeed-cdn';
if ( 'online' === $ref ) {
$link = 'admin.php?page=litespeed-general';
// phpcs:ignore WordPress.Security.NonceVerification.Recommended
$ref_get = ! empty( $_GET['ref'] ) ? sanitize_text_field( wp_unslash( $_GET['ref'] ) ) : '';
if ( $ref_get && 'cdn' === $ref_get ) {
$link = 'admin.php?page=litespeed-cdn';
if ( $ref_get && 'online' === $ref_get ) {
$link = 'admin.php?page=litespeed-general';
return get_admin_url( null, $link );
public function init_qc_cli() {
$this->init_qc_prepare();
$server_ip = $this->conf( self::O_SERVER_IP );
self::debugErr( 'Server IP needs to be set first!' );
__( 'You need to set the %1$s first. Please use the command %2$s to set.', 'litespeed-cache' ),
'`' . __( 'Server IP', 'litespeed-cache' ) . '`',
'`wp litespeed-option set server_ip __your_ip_value__`'
Admin_Display::error( $msg );
// WPAPI REST echo dryrun
$echobox = self::post( self::API_REST_ECHO, false, 60 );
if ( false === $echobox ) {
self::debugErr( 'REST Echo Failed!' );
$msg = __( "QUIC.cloud's access to your WP REST API seems to be blocked.", 'litespeed-cache' );
Admin_Display::error( $msg );
self::debug( 'echo succeeded' );
// Load separate thread echoed data from storage
if ( empty( $echobox['wpapi_ts'] ) || empty( $echobox['wpapi_signature_b64'] ) ) {
self::debug( 'Resp: ', $echobox );
Admin_Display::error( __( 'Failed to get echo data from WPAPI', 'litespeed-cache' ) );
'wp_pk_b64' => $this->_summary['pk_b64'],
'wpapi_ts' => $echobox['wpapi_ts'],
'wpapi_signature_b64' => $echobox['wpapi_signature_b64'],
'server_ip' => $server_ip,
$res = $this->post( self::SVC_D_ACTIVATE, $data );
* Init QC CDN setup (CLI)
* @param string $method Method.
* @param string|bool $cert Cert path.
* @param string|bool $key Key path.
* @param string|bool $cf_token Cloudflare token.
public function init_qc_cdn_cli( $method, $cert = false, $key = false, $cf_token = false ) {
if ( ! $this->activated() ) {
Admin_Display::error( __( 'You need to activate QC first.', 'litespeed-cache' ) );
$server_ip = $this->conf( self::O_SERVER_IP );
self::debugErr( 'Server IP needs to be set first!' );
__( 'You need to set the %1$s first. Please use the command %2$s to set.', 'litespeed-cache' ),
'`' . __( 'Server IP', 'litespeed-cache' ) . '`',
'`wp litespeed-option set server_ip __your_ip_value__`'
Admin_Display::error( $msg );
if ( ! file_exists( $cert ) || ! file_exists( $key ) ) {
Admin_Display::error( __( 'Cert or key file does not exist.', 'litespeed-cache' ) );
'server_ip' => $server_ip,
$data['cert'] = File::read( $cert );
$data['key'] = File::read( $key );
$data['cf_token'] = $cf_token;
$res = $this->post( self::SVC_D_ENABLE_CDN, $data );
public function link_qc() {
if ( ! $this->activated() ) {
Admin_Display::error( __( 'You need to activate QC first.', 'litespeed-cache' ) );
$data['wp_signature_b64'] = $this->_sign_b64( $data['wp_ts'] );
'site_url' => site_url(),
'ref' => $this->_get_ref_url(),
wp_safe_redirect( $this->_cloud_server_dash . '/' . self::SVC_U_LINK . '?data=' . rawurlencode( Utility::arr2str( $param ) ) );
* Show QC Account CDN status
public function cdn_status_cli() {
if ( ! $this->activated() ) {
Admin_Display::error( __( 'You need to activate QC first.', 'litespeed-cache' ) );
$res = $this->post( self::SVC_D_STATUS_CDN_CLI, $data );
* Link to QC Account for CLI
* @param string $email Account email.
* @param string $key API key.
public function link_qc_cli( $email, $key ) {
if ( ! $this->activated() ) {
Admin_Display::error( __( 'You need to activate QC first.', 'litespeed-cache' ) );
'qc_acct_email' => $email,
$res = $this->post( self::SVC_D_LINK, $data );
* API link parsed call to QC
* @param string $action2 Action slug.
public function api_link_call( $action2 ) {
if ( ! $this->activated() ) {
Admin_Display::error( __( 'You need to activate QC first.', 'litespeed-cache' ) );
$res = $this->post( self::SVC_D_API, $data );
self::debug( 'API link call result: ', $res );
public function enable_cdn() {
if ( ! $this->activated() ) {
Admin_Display::error( __( 'You need to activate QC first.', 'litespeed-cache' ) );
$data['wp_signature_b64'] = $this->_sign_b64( $data['wp_ts'] );
'site_url' => site_url(),
'ref' => $this->_get_ref_url(),
wp_safe_redirect( $this->_cloud_server_dash . '/' . self::SVC_U_ENABLE_CDN . '?data=' . rawurlencode( Utility::arr2str( $param ) ) );
public function reset_qc() {
unset( $this->_summary['pk_b64'] );
unset( $this->_summary['sk_b64'] );
unset( $this->_summary['qc_activated'] );
if ( ! empty( $this->_summary['partner'] ) ) {
unset( $this->_summary['partner'] );
self::debug( 'Clear local QC activation.' );
Admin_Display::success( sprintf( __( 'Reset %s activation successfully.', 'litespeed-cache' ), 'QUIC.cloud' ) );
wp_safe_redirect( $this->_get_ref_url() );
* Check if activated QUIC.cloud service or not
public function activated() {
return ! empty( $this->_summary['sk_b64'] ) && ! empty( $this->_summary['qc_activated'] );
* Show my.qc quick link to the domain page
public function qc_link() {
'site_url' => site_url(),
'ref' => $this->_get_ref_url(),
return $this->_cloud_server_dash . '/u/wp3/manage?data=' . rawurlencode( Utility::arr2str( $data ) ); // . (!empty($this->_summary['is_linked']) ? '?wplogin=1' : '');