jetpack
Last commit date
3rd-party
7 years ago
_inc
7 years ago
bin
7 years ago
css
7 years ago
extensions
7 years ago
images
7 years ago
json-endpoints
7 years ago
languages
7 years ago
logs
9 years ago
modules
7 years ago
sal
7 years ago
scss
7 years ago
sync
7 years ago
views
7 years ago
.svnignore
12 years ago
CODE-OF-CONDUCT.md
9 years ago
changelog.txt
7 years ago
class.frame-nonce-preview.php
9 years ago
class.jetpack-admin.php
7 years ago
class.jetpack-affiliate.php
7 years ago
class.jetpack-autoupdate.php
8 years ago
class.jetpack-bbpress-json-api-compat.php
9 years ago
class.jetpack-cli.php
7 years ago
class.jetpack-client-server.php
8 years ago
class.jetpack-client.php
7 years ago
class.jetpack-connection-banner.php
7 years ago
class.jetpack-constants.php
8 years ago
class.jetpack-data.php
7 years ago
class.jetpack-debugger.php
7 years ago
class.jetpack-error.php
10 years ago
class.jetpack-gutenberg.php
7 years ago
class.jetpack-heartbeat.php
7 years ago
class.jetpack-idc.php
8 years ago
class.jetpack-ixr-client.php
10 years ago
class.jetpack-jitm.php
7 years ago
class.jetpack-modules-list-table.php
7 years ago
class.jetpack-network-sites-list-table.php
9 years ago
class.jetpack-network.php
7 years ago
class.jetpack-options.php
7 years ago
class.jetpack-plan.php
7 years ago
class.jetpack-post-images.php
7 years ago
class.jetpack-signature.php
7 years ago
class.jetpack-tracks.php
7 years ago
class.jetpack-twitter-cards.php
7 years ago
class.jetpack-user-agent.php
8 years ago
class.jetpack-xmlrpc-server.php
7 years ago
class.jetpack.php
7 years ago
class.json-api-endpoints.php
7 years ago
class.json-api.php
7 years ago
class.photon.php
7 years ago
composer.json
7 years ago
functions.compat.php
7 years ago
functions.gallery.php
8 years ago
functions.global.php
7 years ago
functions.opengraph.php
7 years ago
functions.photon.php
7 years ago
jetpack.php
7 years ago
json-api-config.php
10 years ago
json-endpoints.php
7 years ago
locales.php
7 years ago
readme.txt
7 years ago
require-lib.php
7 years ago
uninstall.php
8 years ago
wpml-config.xml
10 years ago
class.frame-nonce-preview.php
120 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Allows viewing posts on the frontend when the user is not logged in. |
| 5 | */ |
| 6 | class Jetpack_Frame_Nonce_Preview { |
| 7 | static $instance = null; |
| 8 | |
| 9 | /** |
| 10 | * Returns the single instance of the Jetpack_Frame_Nonce_Preview object |
| 11 | * |
| 12 | * @since 4.3.0 |
| 13 | * |
| 14 | * @return Jetpack_Frame_Nonce_Preview |
| 15 | **/ |
| 16 | public static function get_instance() { |
| 17 | if ( ! is_null( self::$instance ) ) { |
| 18 | return self::$instance; |
| 19 | } |
| 20 | |
| 21 | return self::$instance = new Jetpack_Frame_Nonce_Preview(); |
| 22 | } |
| 23 | |
| 24 | function __construct() { |
| 25 | if ( isset( $_GET['frame-nonce'] ) && ! is_admin() ) { |
| 26 | add_filter( 'pre_get_posts', array( $this, 'maybe_display_post' ) ); |
| 27 | } |
| 28 | |
| 29 | // autosave previews are validated differently |
| 30 | if ( isset( $_GET[ 'frame-nonce' ] ) && isset( $_GET[ 'preview_id' ] ) && isset( $_GET[ 'preview_nonce' ] ) ) { |
| 31 | remove_action( 'init', '_show_post_preview' ); |
| 32 | add_action( 'init', array( $this, 'handle_autosave_nonce_validation' ) ); |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * Verify that frame nonce exists, and if so, validate the nonce by calling WP.com. |
| 38 | * |
| 39 | * @since 4.3.0 |
| 40 | * |
| 41 | * @return bool |
| 42 | */ |
| 43 | public function is_frame_nonce_valid() { |
| 44 | if ( empty( $_GET[ 'frame-nonce' ] ) ) { |
| 45 | return false; |
| 46 | } |
| 47 | |
| 48 | Jetpack::load_xml_rpc_client(); |
| 49 | $xml = new Jetpack_IXR_Client(); |
| 50 | $xml->query( 'jetpack.verifyFrameNonce', sanitize_key( $_GET['frame-nonce'] ) ); |
| 51 | |
| 52 | if ( $xml->isError() ) { |
| 53 | return false; |
| 54 | } |
| 55 | |
| 56 | return (bool) $xml->getResponse(); |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * Conditionally add a hook on posts_results if this is the main query, a preview, and singular. |
| 61 | * |
| 62 | * @since 4.3.0 |
| 63 | * |
| 64 | * @param WP_Query $query |
| 65 | * |
| 66 | * @return WP_Query |
| 67 | */ |
| 68 | public function maybe_display_post( $query ) { |
| 69 | if ( |
| 70 | $query->is_main_query() && |
| 71 | $query->is_preview() && |
| 72 | $query->is_singular() |
| 73 | ) { |
| 74 | add_filter( 'posts_results', array( $this, 'set_post_to_publish' ), 10, 2 ); |
| 75 | } |
| 76 | |
| 77 | return $query; |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * Conditionally set the first post to 'publish' if the frame nonce is valid and there is a post. |
| 82 | * |
| 83 | * @since 4.3.0 |
| 84 | * |
| 85 | * @param array $posts |
| 86 | * |
| 87 | * @return array |
| 88 | */ |
| 89 | public function set_post_to_publish( $posts ) { |
| 90 | remove_filter( 'posts_results', array( $this, 'set_post_to_publish' ), 10, 2 ); |
| 91 | |
| 92 | if ( empty( $posts ) || is_user_logged_in() || ! $this->is_frame_nonce_valid() ) { |
| 93 | return $posts; |
| 94 | } |
| 95 | |
| 96 | $posts[0]->post_status = 'publish'; |
| 97 | |
| 98 | // Disable comments and pings for this post. |
| 99 | add_filter( 'comments_open', '__return_false' ); |
| 100 | add_filter( 'pings_open', '__return_false' ); |
| 101 | |
| 102 | return $posts; |
| 103 | } |
| 104 | |
| 105 | /** |
| 106 | * Handle validation for autosave preview request |
| 107 | * |
| 108 | * @since 4.7.0 |
| 109 | * |
| 110 | */ |
| 111 | public function handle_autosave_nonce_validation() { |
| 112 | if ( ! $this->is_frame_nonce_valid() ) { |
| 113 | wp_die( __( 'Sorry, you are not allowed to preview drafts.', 'jetpack' ) ); |
| 114 | } |
| 115 | add_filter( 'the_preview', '_set_preview' ); |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | Jetpack_Frame_Nonce_Preview::get_instance(); |
| 120 |