* REST API Data countries controller.
* Handles requests to the /mobile-app endpoint.
namespace Automattic\WooCommerce\Admin\API;
defined( 'ABSPATH' ) || exit;
use Automattic\Jetpack\Connection\Manager as Jetpack_Connection_Manager;
* REST API Data countries controller class.
* @extends WC_REST_Data_Controller
class MobileAppMagicLink extends \WC_REST_Data_Controller {
protected $namespace = 'wc-admin';
protected $rest_base = 'mobile-app';
public function register_routes() {
'/' . $this->rest_base . '/send-magic-link',
'methods' => \WP_REST_Server::READABLE,
'callback' => array( $this, 'send_magic_link' ),
'permission_callback' => array( $this, 'get_items_permissions_check' ),
'schema' => array( $this, 'get_public_item_schema' ),
parent::register_routes();
* Sends request to generate magic link email.
* @return \WP_REST_Response|\WP_Error
public function send_magic_link() {
// Attempt to get email from Jetpack.
if ( class_exists( Jetpack_Connection_Manager::class ) ) {
$jetpack_connection_manager = new Jetpack_Connection_Manager();
if ( $jetpack_connection_manager->is_active() ) {
if ( class_exists( 'Jetpack_IXR_Client' ) ) {
$xml = new \Jetpack_IXR_Client(
'user_id' => get_current_user_id(),
$xml->query( 'jetpack.sendMobileMagicLink', array( 'app' => 'woocommerce' ) );
'error_sending_mobile_magic_link',
return rest_ensure_response(
return new \WP_Error( 'jetpack_not_connected', __( 'Jetpack is not connected.', 'woocommerce' ) );