donations.php
293 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Donations Block. |
| 4 | * |
| 5 | * @since 8.x |
| 6 | * |
| 7 | * @package automattic/jetpack |
| 8 | */ |
| 9 | |
| 10 | namespace Automattic\Jetpack\Extensions\Donations; |
| 11 | |
| 12 | use Automattic\Jetpack\Blocks; |
| 13 | use Automattic\Jetpack\Status\Request; |
| 14 | use Jetpack_Gutenberg; |
| 15 | use WP_Post; |
| 16 | |
| 17 | /** |
| 18 | * Registers the block for use in Gutenberg |
| 19 | * This is done via an action so that we can disable |
| 20 | * registration if we need to. |
| 21 | */ |
| 22 | function register_block() { |
| 23 | |
| 24 | require_once JETPACK__PLUGIN_DIR . '/modules/memberships/class-jetpack-memberships.php'; |
| 25 | if ( \Jetpack_Memberships::should_enable_monetize_blocks_in_editor() ) { |
| 26 | Blocks::jetpack_register_block( |
| 27 | __DIR__, |
| 28 | array( |
| 29 | 'render_callback' => __NAMESPACE__ . '\render_block', |
| 30 | ) |
| 31 | ); |
| 32 | } |
| 33 | // Add a meta field to the user to track if the donation warning has been dismissed. |
| 34 | \register_meta( |
| 35 | 'user', |
| 36 | 'jetpack_donation_warning_dismissed', |
| 37 | array( |
| 38 | 'type' => 'boolean', |
| 39 | 'single' => true, |
| 40 | 'show_in_rest' => true, |
| 41 | 'default' => false, |
| 42 | ) |
| 43 | ); |
| 44 | } |
| 45 | add_action( 'init', __NAMESPACE__ . '\register_block' ); |
| 46 | |
| 47 | /** |
| 48 | * Donations block dynamic rendering. |
| 49 | * |
| 50 | * @param array $attr Array containing the Donations block attributes. |
| 51 | * @param string $content String containing the Donations block content. |
| 52 | * |
| 53 | * @return string |
| 54 | */ |
| 55 | function render_block( $attr, $content ) { |
| 56 | // Keep content as-is if rendered in other contexts than frontend (i.e. feed, emails, API, etc.). |
| 57 | if ( ! Request::is_frontend() ) { |
| 58 | $parsed = parse_blocks( $content ); |
| 59 | if ( ! empty( $parsed[0] ) ) { |
| 60 | // Inject the link of the current post from the server side as the fallback link to make sure the donations block |
| 61 | // points to the correct post when it's inserted from the synced pattern (aka “My Pattern”). |
| 62 | $post_link = get_permalink(); |
| 63 | $parsed[0]['attrs']['fallbackLinkUrl'] = $post_link; |
| 64 | $content = \render_block( $parsed[0] ); |
| 65 | if ( preg_match( '/<a\s+class="jetpack-donations-fallback-link"\s+href="([^"]*)"/', $content, $matches ) ) { |
| 66 | $content = str_replace( $matches[1], $post_link, $content ); |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | return $content; |
| 71 | } |
| 72 | |
| 73 | require_once JETPACK__PLUGIN_DIR . 'modules/memberships/class-jetpack-memberships.php'; |
| 74 | |
| 75 | // If stripe isn't connected don't show anything to potential donors - they can't actually make a donation. |
| 76 | if ( ! \Jetpack_Memberships::has_connected_account() ) { |
| 77 | return ''; |
| 78 | } |
| 79 | |
| 80 | Jetpack_Gutenberg::load_assets_as_required( __DIR__ ); |
| 81 | |
| 82 | require_once JETPACK__PLUGIN_DIR . '/_inc/lib/class-jetpack-currencies.php'; |
| 83 | |
| 84 | $default_texts = get_default_texts(); |
| 85 | |
| 86 | $donations = array( |
| 87 | 'one-time' => array_merge( |
| 88 | array( |
| 89 | 'planId' => null, |
| 90 | 'title' => __( 'One-Time', 'jetpack' ), |
| 91 | 'class' => 'donations__one-time-item', |
| 92 | 'heading' => $default_texts['oneTimeDonation']['heading'], |
| 93 | 'buttonText' => $default_texts['oneTimeDonation']['buttonText'], |
| 94 | ), |
| 95 | $attr['oneTimeDonation'] |
| 96 | ), |
| 97 | ); |
| 98 | if ( $attr['monthlyDonation']['show'] ) { |
| 99 | $donations['1 month'] = array_merge( |
| 100 | array( |
| 101 | 'planId' => null, |
| 102 | 'title' => __( 'Monthly', 'jetpack' ), |
| 103 | 'class' => 'donations__monthly-item', |
| 104 | 'heading' => $default_texts['monthlyDonation']['heading'], |
| 105 | 'buttonText' => $default_texts['monthlyDonation']['buttonText'], |
| 106 | ), |
| 107 | $attr['monthlyDonation'] |
| 108 | ); |
| 109 | } |
| 110 | if ( $attr['annualDonation']['show'] ) { |
| 111 | $donations['1 year'] = array_merge( |
| 112 | array( |
| 113 | 'planId' => null, |
| 114 | 'title' => __( 'Yearly', 'jetpack' ), |
| 115 | 'class' => 'donations__annual-item', |
| 116 | 'heading' => $default_texts['annualDonation']['heading'], |
| 117 | 'buttonText' => $default_texts['annualDonation']['buttonText'], |
| 118 | ), |
| 119 | $attr['annualDonation'] |
| 120 | ); |
| 121 | } |
| 122 | |
| 123 | $choose_amount_text = isset( $attr['chooseAmountText'] ) && ! empty( $attr['chooseAmountText'] ) ? $attr['chooseAmountText'] : $default_texts['chooseAmountText']; |
| 124 | $custom_amount_text = isset( $attr['customAmountText'] ) && ! empty( $attr['customAmountText'] ) ? $attr['customAmountText'] : $default_texts['customAmountText']; |
| 125 | $currency = $attr['currency']; |
| 126 | $nav = ''; |
| 127 | $headings = ''; |
| 128 | $amounts = ''; |
| 129 | $extra_text = ''; |
| 130 | $buttons = ''; |
| 131 | foreach ( $donations as $interval => $donation ) { |
| 132 | $plan_id = (int) $donation['planId']; |
| 133 | $plan = get_post( $plan_id ); |
| 134 | if ( ! $plan || is_wp_error( $plan ) ) { |
| 135 | continue; |
| 136 | } |
| 137 | |
| 138 | if ( count( $donations ) > 1 ) { |
| 139 | if ( ! $nav ) { |
| 140 | $nav .= '<div class="donations__nav">'; |
| 141 | } |
| 142 | $nav .= sprintf( |
| 143 | '<div role="button" tabindex="0" class="donations__nav-item" data-interval="%1$s">%2$s</div>', |
| 144 | esc_attr( $interval ), |
| 145 | esc_html( $donation['title'] ) |
| 146 | ); |
| 147 | } |
| 148 | $headings .= sprintf( |
| 149 | '<h4 class="%1$s">%2$s</h4>', |
| 150 | esc_attr( $donation['class'] ), |
| 151 | wp_kses_post( $donation['heading'] ) |
| 152 | ); |
| 153 | $amounts .= sprintf( |
| 154 | '<div class="donations__amounts %s">', |
| 155 | esc_attr( $donation['class'] ) |
| 156 | ); |
| 157 | foreach ( $donation['amounts'] as $amount ) { |
| 158 | $amounts .= sprintf( |
| 159 | '<div class="donations__amount" data-amount="%1$s">%2$s</div>', |
| 160 | esc_attr( $amount ), |
| 161 | esc_html( \Jetpack_Currencies::format_price( $amount, $currency ) ) |
| 162 | ); |
| 163 | } |
| 164 | $amounts .= '</div>'; |
| 165 | $extra_text .= sprintf( |
| 166 | '<p class="%1$s">%2$s</p>', |
| 167 | esc_attr( $donation['class'] ), |
| 168 | wp_kses_post( $donation['extraText'] ?? $default_texts['extraText'] ) |
| 169 | ); |
| 170 | $buttons .= sprintf( |
| 171 | '<a class="wp-block-button__link donations__donate-button %1$s" href="%2$s">%3$s</a>', |
| 172 | esc_attr( $donation['class'] ), |
| 173 | esc_url( \Jetpack_Memberships::get_instance()->get_subscription_url( $plan_id ) ), |
| 174 | wp_kses_post( $donation['buttonText'] ) |
| 175 | ); |
| 176 | } |
| 177 | if ( $nav ) { |
| 178 | $nav .= '</div>'; |
| 179 | } |
| 180 | |
| 181 | $custom_amount = ''; |
| 182 | if ( $attr['showCustomAmount'] ) { |
| 183 | $custom_amount .= sprintf( |
| 184 | '<p>%s</p>', |
| 185 | wp_kses_post( $custom_amount_text ) |
| 186 | ); |
| 187 | $default_custom_amount = ( \Jetpack_Memberships::SUPPORTED_CURRENCIES[ $currency ] ?? 1 ) * 100; |
| 188 | $custom_amount .= sprintf( |
| 189 | '<div class="donations__amount donations__custom-amount"> |
| 190 | %1$s |
| 191 | <div class="donations__amount-value" data-currency="%2$s" data-empty-text="%3$s"></div> |
| 192 | </div>', |
| 193 | esc_html( \Jetpack_Currencies::CURRENCIES[ $currency ]['symbol'] ?? '¤' ), |
| 194 | esc_attr( $currency ), |
| 195 | esc_attr( \Jetpack_Currencies::format_price( $default_custom_amount, $currency, false ) ) |
| 196 | ); |
| 197 | } |
| 198 | |
| 199 | return sprintf( |
| 200 | ' |
| 201 | <div class="%1$s"> |
| 202 | <div class="donations__container"> |
| 203 | %2$s |
| 204 | <div class="donations__content"> |
| 205 | <div class="donations__tab"> |
| 206 | %3$s |
| 207 | <p>%4$s</p> |
| 208 | %5$s |
| 209 | %6$s |
| 210 | <hr class="donations__separator"> |
| 211 | %7$s |
| 212 | %8$s |
| 213 | </div> |
| 214 | </div> |
| 215 | </div> |
| 216 | </div> |
| 217 | ', |
| 218 | esc_attr( Blocks::classes( Blocks::get_block_feature( __DIR__ ), $attr ) ), |
| 219 | $nav, |
| 220 | $headings, |
| 221 | $choose_amount_text, |
| 222 | $amounts, |
| 223 | $custom_amount, |
| 224 | $extra_text, |
| 225 | $buttons |
| 226 | ); |
| 227 | } |
| 228 | |
| 229 | /** |
| 230 | * Get the default texts for the block. |
| 231 | * |
| 232 | * @return array |
| 233 | */ |
| 234 | function get_default_texts() { |
| 235 | return array( |
| 236 | 'chooseAmountText' => __( 'Choose an amount', 'jetpack' ), |
| 237 | 'customAmountText' => __( 'Or enter a custom amount', 'jetpack' ), |
| 238 | 'extraText' => __( 'Your contribution is appreciated.', 'jetpack' ), |
| 239 | 'oneTimeDonation' => array( |
| 240 | 'heading' => __( 'Make a one-time donation', 'jetpack' ), |
| 241 | 'buttonText' => __( 'Donate', 'jetpack' ), |
| 242 | ), |
| 243 | 'monthlyDonation' => array( |
| 244 | 'heading' => __( 'Make a monthly donation', 'jetpack' ), |
| 245 | 'buttonText' => __( 'Donate monthly', 'jetpack' ), |
| 246 | ), |
| 247 | 'annualDonation' => array( |
| 248 | 'heading' => __( 'Make a yearly donation', 'jetpack' ), |
| 249 | 'buttonText' => __( 'Donate yearly', 'jetpack' ), |
| 250 | ), |
| 251 | ); |
| 252 | } |
| 253 | |
| 254 | /** |
| 255 | * Make default texts available to the editor. |
| 256 | */ |
| 257 | function load_editor_scripts() { |
| 258 | // Only relevant to the editor right now. |
| 259 | if ( ! is_admin() ) { |
| 260 | return; |
| 261 | } |
| 262 | |
| 263 | $data = array( |
| 264 | 'defaultTexts' => get_default_texts(), |
| 265 | ); |
| 266 | |
| 267 | wp_add_inline_script( |
| 268 | 'jetpack-blocks-editor', |
| 269 | 'var Jetpack_DonationsBlock = ' . wp_json_encode( $data, JSON_HEX_TAG | JSON_HEX_AMP ) . ';', |
| 270 | 'before' |
| 271 | ); |
| 272 | } |
| 273 | add_action( 'enqueue_block_assets', __NAMESPACE__ . '\load_editor_scripts', 11 ); |
| 274 | |
| 275 | /** |
| 276 | * Determine if AMP should be disabled on posts having Donations blocks. |
| 277 | * |
| 278 | * @param bool $skip Skipped. |
| 279 | * @param int $post_id Post ID. |
| 280 | * @param WP_Post $post Post. |
| 281 | * |
| 282 | * @return bool Whether to skip the post from AMP. |
| 283 | */ |
| 284 | function amp_skip_post( $skip, $post_id, $post ) { |
| 285 | // When AMP is on standard mode, there are no non-AMP posts to link to where the donation can be completed, so let's |
| 286 | // prevent the post from being available in AMP. |
| 287 | if ( function_exists( 'amp_is_canonical' ) && \amp_is_canonical() && has_block( Blocks::get_block_name( __DIR__ ), $post->post_content ) ) { |
| 288 | return true; |
| 289 | } |
| 290 | return $skip; |
| 291 | } |
| 292 | add_filter( 'amp_skip_post', __NAMESPACE__ . '\amp_skip_post', 10, 3 ); |
| 293 |