Skip to content

Commit a540533

Browse files
committed
Merge pull request Automattic#1505 from Automattic/add/sync-mock-option
Added Mock Jetpack Option to Sync options that don't have to live in the Database
2 parents a050ade + c9d244a commit a540533

File tree

2 files changed

+45
-13
lines changed

2 files changed

+45
-13
lines changed

class.jetpack-sync.php

+27
Original file line numberDiff line numberDiff line change
@@ -870,4 +870,31 @@ private function _get_post_count_cloud() {
870870
return (int) $results['results']['total'];
871871
}
872872

873+
/**
874+
* Sometimes we need to fake options to be able to sync data with .com
875+
* This is a helper function. That will make it easier to do just that.
876+
*
877+
* It will make sure that the options are synced when do_action( 'jetpack_sync_all_registered_options' );
878+
*
879+
* Which should happen everytime we update Jetpack to a new version or daily by Jetpack_Heartbeat.
880+
*
881+
* $callback is a function that is passed into a filter that returns the value of the option.
882+
* This value should never be false. Since we want to short circuit the get_option function
883+
* to return the value of the our callback.
884+
*
885+
* You can also trigger an update when a something else changes by calling the
886+
* do_action( 'add_option_jetpack_' . $option, 'jetpack_'.$option, $callback_function );
887+
* on the action that should that would trigger the update.
888+
*
889+
*
890+
* @param string $option Option will always be prefixed with Jetpack and be saved on .com side
891+
* @param string or array $callback
892+
*/
893+
function mock_option( $option , $callback ) {
894+
895+
add_filter( 'pre_option_jetpack_'. $option , $callback );
896+
// Instead of passing a file we just pass in a string.
897+
$this->options( 'mock-option' , 'jetpack_' . $option );
898+
899+
}
873900
}

class.jetpack.php

+18-13
Original file line numberDiff line numberDiff line change
@@ -352,13 +352,7 @@ private function Jetpack() {
352352
* here, before we potentially fail out.
353353
*/
354354
add_filter( 'jetpack_require_lib_dir', array( $this, 'require_lib_dir' ) );
355-
/**
356-
* Update the main_network_site on .com
357-
*/
358-
add_filter( 'pre_option_jetpack_main_network_site', array( $this, 'jetpack_main_network_site_option' ) );
359-
add_action( 'update_option_siteurl', array( $this, 'update_jetpack_main_network_site_option' ) );
360-
// Update jetpack_is_main_network on .com
361-
add_filter( 'pre_option_jetpack_is_main_network', array( $this, 'is_main_network_option' ) );
355+
362356
/*
363357
* Load things that should only be in Network Admin.
364358
*
@@ -385,11 +379,22 @@ private function Jetpack() {
385379
'siteurl',
386380
'blogname',
387381
'gmt_offset',
388-
'timezone_string',
389-
'jetpack_main_network_site',
390-
'jetpack_is_main_network'
382+
'timezone_string'
391383
);
392384

385+
/**
386+
* Sometimes you want to sync data to .com without adding options to .org sites.
387+
* The mock option allows you to do just that.
388+
*/
389+
$this->sync->mock_option( 'is_main_network', array( $this, 'is_main_network_option' ) );
390+
$this->sync->mock_option( 'main_network_site', array( $this, 'jetpack_main_network_site_option' ) );
391+
392+
/**
393+
* Trigger an update to the main_network_site when we update the blogname of a site.
394+
*
395+
*/
396+
add_action( 'update_option_blogname', array( $this, 'update_jetpack_main_network_site_option' ) );
397+
393398
add_action( 'update_option', array( $this, 'log_settings_change' ), 10, 3 );
394399

395400
if ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST && isset( $_GET['for'] ) && 'jetpack' == $_GET['for'] ) {
@@ -645,7 +650,7 @@ function require_lib_dir( $lib_dir ) {
645650
* @param bool $option
646651
* @return string
647652
*/
648-
function jetpack_main_network_site_option( $option ) {
653+
public function jetpack_main_network_site_option( $option ) {
649654
return network_site_url();
650655
}
651656

@@ -659,7 +664,7 @@ function jetpack_main_network_site_option( $option ) {
659664
*
660665
* @return boolean
661666
*/
662-
public static function is_main_network_option( $option ) {
667+
public function is_main_network_option( $option ) {
663668
// return '1' or ''
664669
return (string) (bool) Jetpack::is_multi_network();
665670
}
@@ -692,7 +697,7 @@ public static function is_multi_network() {
692697
* @return null
693698
*/
694699
function update_jetpack_main_network_site_option() {
695-
do_action( 'add_option_jetpack_main_network_site', 'main_network_site', network_site_url() );
700+
do_action( 'add_option_jetpack_main_network_site', 'jetpack_main_network_site', network_site_url() );
696701
do_action( 'add_option_jetpack_is_main_network', 'jetpack_is_main_network', (string) (bool) Jetpack::is_multi_network() );
697702
}
698703

0 commit comments

Comments
 (0)