|
@@ 883-891 (lines=9) @@
|
| 880 |
|
* @deprecated since 7.7.0 |
| 881 |
|
* @see Automattic\Jetpack\Connection\Manager::initialize_rest_api_registration_connector() |
| 882 |
|
*/ |
| 883 |
|
public function initialize_rest_api_registration_connector() { |
| 884 |
|
_deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::initialize_rest_api_registration_connector' ); |
| 885 |
|
|
| 886 |
|
if ( ! $this->connection_manager ) { |
| 887 |
|
$this->connection_manager = new Connection_Manager(); |
| 888 |
|
} |
| 889 |
|
|
| 890 |
|
$this->connection_manager->initialize_rest_api_registration_connector(); |
| 891 |
|
} |
| 892 |
|
|
| 893 |
|
/** |
| 894 |
|
* This is ported over from the manage module, which has been deprecated and baked in here. |
|
@@ 1003-1011 (lines=9) @@
|
| 1000 |
|
* @param array $methods A list of registered WordPress XMLRPC methods. |
| 1001 |
|
* @return array Filtered $methods |
| 1002 |
|
*/ |
| 1003 |
|
public function remove_non_jetpack_xmlrpc_methods( $methods ) { |
| 1004 |
|
_deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::remove_non_jetpack_xmlrpc_methods' ); |
| 1005 |
|
|
| 1006 |
|
if ( ! $this->connection_manager ) { |
| 1007 |
|
$this->connection_manager = new Connection_Manager(); |
| 1008 |
|
} |
| 1009 |
|
|
| 1010 |
|
return $this->connection_manager->remove_non_jetpack_xmlrpc_methods( $methods ); |
| 1011 |
|
} |
| 1012 |
|
|
| 1013 |
|
/** |
| 1014 |
|
* Since a lot of hosts use a hammer approach to "protecting" WordPress sites, |
|
@@ 1023-1031 (lines=9) @@
|
| 1020 |
|
* @deprecated since 7.7.0 |
| 1021 |
|
* @see Automattic\Jetpack\Connection\Manager::alternate_xmlrpc() |
| 1022 |
|
*/ |
| 1023 |
|
public function alternate_xmlrpc() { |
| 1024 |
|
_deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::alternate_xmlrpc' ); |
| 1025 |
|
|
| 1026 |
|
if ( ! $this->connection_manager ) { |
| 1027 |
|
$this->connection_manager = new Connection_Manager(); |
| 1028 |
|
} |
| 1029 |
|
|
| 1030 |
|
$this->connection_manager->alternate_xmlrpc(); |
| 1031 |
|
} |
| 1032 |
|
|
| 1033 |
|
/** |
| 1034 |
|
* The callback for the JITM ajax requests. |
|
@@ 1131-1139 (lines=9) @@
|
| 1128 |
|
* @deprecated since 7.7.0 |
| 1129 |
|
* @see Automattic\Jetpack\Connection\Manager::require_jetpack_authentication() |
| 1130 |
|
*/ |
| 1131 |
|
public function require_jetpack_authentication() { |
| 1132 |
|
_deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::require_jetpack_authentication' ); |
| 1133 |
|
|
| 1134 |
|
if ( ! $this->connection_manager ) { |
| 1135 |
|
$this->connection_manager = new Connection_Manager(); |
| 1136 |
|
} |
| 1137 |
|
|
| 1138 |
|
$this->connection_manager->require_jetpack_authentication(); |
| 1139 |
|
} |
| 1140 |
|
|
| 1141 |
|
/** |
| 1142 |
|
* Load language files |
|
@@ 5598-5606 (lines=9) @@
|
| 5595 |
|
* @param int $timestamp Timestamp of the request. |
| 5596 |
|
* @param string $nonce Nonce string. |
| 5597 |
|
*/ |
| 5598 |
|
public function add_nonce( $timestamp, $nonce ) { |
| 5599 |
|
_deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::add_nonce' ); |
| 5600 |
|
|
| 5601 |
|
if ( ! $this->connection_manager ) { |
| 5602 |
|
$this->connection_manager = new Connection_Manager(); |
| 5603 |
|
} |
| 5604 |
|
|
| 5605 |
|
return $this->connection_manager->add_nonce( $timestamp, $nonce ); |
| 5606 |
|
} |
| 5607 |
|
|
| 5608 |
|
/** |
| 5609 |
|
* In some setups, $HTTP_RAW_POST_DATA can be emptied during some IXR_Server paths since it is passed by reference to various methods. |
|
@@ 5618-5626 (lines=9) @@
|
| 5615 |
|
* @param array $methods XMLRPC methods. |
| 5616 |
|
* @return array XMLRPC methods, with the $HTTP_RAW_POST_DATA one. |
| 5617 |
|
*/ |
| 5618 |
|
public function xmlrpc_methods( $methods ) { |
| 5619 |
|
_deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::xmlrpc_methods' ); |
| 5620 |
|
|
| 5621 |
|
if ( ! $this->connection_manager ) { |
| 5622 |
|
$this->connection_manager = new Connection_Manager(); |
| 5623 |
|
} |
| 5624 |
|
|
| 5625 |
|
return $this->connection_manager->xmlrpc_methods( $methods ); |
| 5626 |
|
} |
| 5627 |
|
|
| 5628 |
|
/** |
| 5629 |
|
* Register additional public XMLRPC methods. |
|
@@ 5637-5645 (lines=9) @@
|
| 5634 |
|
* @param array $methods Public XMLRPC methods. |
| 5635 |
|
* @return array Public XMLRPC methods, with the getOptions one. |
| 5636 |
|
*/ |
| 5637 |
|
public function public_xmlrpc_methods( $methods ) { |
| 5638 |
|
_deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::public_xmlrpc_methods' ); |
| 5639 |
|
|
| 5640 |
|
if ( ! $this->connection_manager ) { |
| 5641 |
|
$this->connection_manager = new Connection_Manager(); |
| 5642 |
|
} |
| 5643 |
|
|
| 5644 |
|
return $this->connection_manager->public_xmlrpc_methods( $methods ); |
| 5645 |
|
} |
| 5646 |
|
|
| 5647 |
|
/** |
| 5648 |
|
* Handles a getOptions XMLRPC method call. |
|
@@ 5656-5664 (lines=9) @@
|
| 5653 |
|
* @param array $args method call arguments. |
| 5654 |
|
* @return array an amended XMLRPC server options array. |
| 5655 |
|
*/ |
| 5656 |
|
public function jetpack_getOptions( $args ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid |
| 5657 |
|
_deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::jetpack_getOptions' ); |
| 5658 |
|
|
| 5659 |
|
if ( ! $this->connection_manager ) { |
| 5660 |
|
$this->connection_manager = new Connection_Manager(); |
| 5661 |
|
} |
| 5662 |
|
|
| 5663 |
|
return $this->connection_manager->jetpack_getOptions( $args ); |
| 5664 |
|
} |
| 5665 |
|
|
| 5666 |
|
/** |
| 5667 |
|
* Adds Jetpack-specific options to the output of the XMLRPC options method. |
|
@@ 5675-5683 (lines=9) @@
|
| 5672 |
|
* @param array $options Standard Core options. |
| 5673 |
|
* @return array Amended options. |
| 5674 |
|
*/ |
| 5675 |
|
public function xmlrpc_options( $options ) { |
| 5676 |
|
_deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::xmlrpc_options' ); |
| 5677 |
|
|
| 5678 |
|
if ( ! $this->connection_manager ) { |
| 5679 |
|
$this->connection_manager = new Connection_Manager(); |
| 5680 |
|
} |
| 5681 |
|
|
| 5682 |
|
return $this->connection_manager->xmlrpc_options( $options ); |
| 5683 |
|
} |
| 5684 |
|
|
| 5685 |
|
/** |
| 5686 |
|
* Cleans nonces that were saved when calling ::add_nonce. |