blocks
1 day ago
build
1 day ago
fonts
1 year ago
genericons
5 months ago
lib
1 day ago
accessible-focus.js
6 years ago
blogging-prompts.php
1 month ago
class.jetpack-provision.php
7 months ago
content-guidelines-ai.js
1 week ago
content-guidelines-ai.php
1 day ago
crowdsignal-shortcode.js
1 year ago
crowdsignal-survey.js
6 years ago
deprecate.js
8 months ago
facebook-embed.js
4 years ago
gallery-settings.js
6 years ago
genericons.php
1 year ago
jetpack-admin.js
3 years ago
jetpack-deactivate-dialog.js
1 year ago
jetpack-modules.js
1 year ago
jetpack-modules.models.js
8 months ago
jetpack-modules.views.js
8 months ago
polldaddy-shortcode.js
1 week ago
site-switcher-endpoint.php
6 months ago
site-switcher.jsx
1 week ago
site-switcher.php
5 months ago
social-logos.php
3 months ago
twitter-timeline.js
1 month ago
content-guidelines-ai.php
116 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Content Guidelines AI — Jetpack AI integration. |
| 4 | * |
| 5 | * Enqueues a standalone JS bundle on the Content Guidelines admin page |
| 6 | * that adds AI-powered guideline generation via Jetpack. |
| 7 | * |
| 8 | * @package automattic/jetpack |
| 9 | */ |
| 10 | |
| 11 | use Automattic\Jetpack\Assets; |
| 12 | use Automattic\Jetpack\Status\Host; |
| 13 | use Automattic\Jetpack\Tracking; |
| 14 | |
| 15 | if ( ! defined( 'ABSPATH' ) ) { |
| 16 | exit( 0 ); |
| 17 | } |
| 18 | |
| 19 | /** |
| 20 | * Enqueue content-guidelines-ai script on the Content Guidelines admin page. |
| 21 | * |
| 22 | * @since 16.0 |
| 23 | * |
| 24 | * @param string $hook_suffix The current admin page hook suffix. |
| 25 | */ |
| 26 | function jetpack_content_guidelines_ai_enqueue_scripts( $hook_suffix ) { |
| 27 | if ( 'settings_page_guidelines-wp-admin' !== $hook_suffix ) { |
| 28 | return; |
| 29 | } |
| 30 | |
| 31 | // Content Guidelines AI is only offered on WordPress.com platform sites |
| 32 | // (Simple and Atomic) — a hard gate the jetpack_ai_enabled filter below |
| 33 | // cannot widen. Free-tier Simple/Atomic sites still load the bundle so |
| 34 | // the upgrade path can be shown — the paid-plan requirement is enforced |
| 35 | // by the suggest-guidelines API. |
| 36 | if ( ! ( new Host() )->is_wpcom_platform() ) { |
| 37 | return; |
| 38 | } |
| 39 | |
| 40 | // Bail when Jetpack AI is disabled for the site: the AI settings master |
| 41 | // switch and other site-wide disables ride this filter. |
| 42 | /** This filter is documented in projects/plugins/jetpack/_inc/lib/class-jetpack-ai-helper.php */ |
| 43 | if ( ! apply_filters( 'jetpack_ai_enabled', true ) ) { |
| 44 | return; |
| 45 | } |
| 46 | |
| 47 | // Bail when build artifacts are missing rather than enqueueing a script |
| 48 | // with guessed (and likely wrong) dependencies. |
| 49 | if ( ! file_exists( JETPACK__PLUGIN_DIR . '_inc/build/content-guidelines-ai.min.asset.php' ) ) { |
| 50 | return; |
| 51 | } |
| 52 | |
| 53 | // The bundle records Tracks events via @automattic/jetpack-analytics, |
| 54 | // which only queues into window._tkq. Enqueue the Tracks client (w.js) |
| 55 | // so events send without relying on whichever platform widgets happen |
| 56 | // to load it. |
| 57 | Tracking::register_tracks_functions_scripts( true ); |
| 58 | |
| 59 | // Handles dependencies/version from the asset file, JS translations for |
| 60 | // the text domain, the CSS (including the .rtl.css variant), and style |
| 61 | // dependencies derived from the script's. |
| 62 | Assets::register_script( |
| 63 | 'jetpack-content-guidelines-ai', |
| 64 | '_inc/build/content-guidelines-ai.min.js', |
| 65 | JETPACK__PLUGIN_FILE, |
| 66 | array( |
| 67 | 'in_footer' => true, |
| 68 | 'textdomain' => 'jetpack', |
| 69 | 'css_path' => '_inc/build/content-guidelines-ai.css', |
| 70 | 'enqueue' => true, |
| 71 | ) |
| 72 | ); |
| 73 | |
| 74 | // Jetpack_AI_Helper backs both preloaded values below: the per-user |
| 75 | // "banner dismissed" flag and the AI feature state. |
| 76 | if ( ! class_exists( 'Jetpack_AI_Helper' ) && is_readable( JETPACK__PLUGIN_DIR . '_inc/lib/class-jetpack-ai-helper.php' ) ) { |
| 77 | require_once JETPACK__PLUGIN_DIR . '_inc/lib/class-jetpack-ai-helper.php'; |
| 78 | } |
| 79 | |
| 80 | // Preload the per-user "banner dismissed" flag so the empty-state banner |
| 81 | // doesn't flash before an async read. Persisted via the |
| 82 | // guidelines-banner-dismissed REST endpoint, but read via Jetpack_AI_Helper |
| 83 | // rather than the endpoint class: on Simple sites the wpcom-endpoints |
| 84 | // classes are only loaded in REST requests, so a class_exists() check on |
| 85 | // the endpoint always failed here and permanently suppressed the banner |
| 86 | // and upgrade notice. |
| 87 | $initial_state = array( |
| 88 | 'bannerDismissed' => class_exists( 'Jetpack_AI_Helper' ) && Jetpack_AI_Helper::is_guidelines_banner_dismissed(), |
| 89 | ); |
| 90 | |
| 91 | // Resolve the AI feature state server-side so the bundle can hydrate the |
| 92 | // wordpress-com/plans store at boot and render the correct locked/unlocked |
| 93 | // buttons on first paint, with no client-side plan fetch. On WordPress.com |
| 94 | // Simple this is a synchronous local lookup; on Atomic/self-hosted it is |
| 95 | // transient-cached with a blocking remote refresh when cold. On failure |
| 96 | // the key is omitted and the bundle renders no AI UI for this load (fail |
| 97 | // closed) rather than guessing. |
| 98 | if ( class_exists( 'Jetpack_AI_Helper' ) ) { |
| 99 | $ai_feature = Jetpack_AI_Helper::get_ai_assistance_feature(); |
| 100 | if ( ! is_wp_error( $ai_feature ) ) { |
| 101 | $initial_state['aiFeature'] = $ai_feature; |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | wp_add_inline_script( |
| 106 | 'jetpack-content-guidelines-ai', |
| 107 | 'window.jetpackContentGuidelinesAi = ' . wp_json_encode( |
| 108 | $initial_state, |
| 109 | JSON_HEX_TAG | JSON_HEX_AMP | JSON_HEX_APOS | JSON_HEX_QUOT |
| 110 | ) . ';', |
| 111 | 'before' |
| 112 | ); |
| 113 | } |
| 114 | |
| 115 | add_action( 'admin_enqueue_scripts', 'jetpack_content_guidelines_ai_enqueue_scripts' ); |
| 116 |