engines
2 years ago
modules
2 years ago
queries
2 years ago
admin.php
2 years ago
api.php
2 years ago
core.php
2 years ago
init.php
2 years ago
reply.php
2 years ago
rest.php
2 years ago
admin.php
205 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | class Meow_MWAI_Admin extends MeowCommon_Admin { |
| 5 | public $core; |
| 6 | public $contentGeneratorEnabled; |
| 7 | public $imagesGeneratorEnabled; |
| 8 | public $playgroundEnabled; |
| 9 | public $suggestionsEnabled; |
| 10 | |
| 11 | public function __construct( $core ) { |
| 12 | $this->core = $core; |
| 13 | parent::__construct( MWAI_PREFIX, MWAI_ENTRY, MWAI_DOMAIN, class_exists( 'MeowPro_MWAI_Core' ) ); |
| 14 | if ( is_admin() ) { |
| 15 | $this->contentGeneratorEnabled = $this->core->get_option( 'module_generator_content' ); |
| 16 | $this->imagesGeneratorEnabled = $this->core->get_option( 'module_generator_images' ); |
| 17 | $this->playgroundEnabled = $this->core->get_option( 'module_playground' ); |
| 18 | $can_access_settings = $this->core->can_access_settings(); |
| 19 | $can_access_features = $this->core->can_access_features(); |
| 20 | |
| 21 | if ( $can_access_settings || $can_access_features ) { |
| 22 | add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) ); |
| 23 | } |
| 24 | |
| 25 | if ( $can_access_settings ) { |
| 26 | add_action( 'admin_menu', array( $this, 'app_menu' ) ); |
| 27 | } |
| 28 | |
| 29 | if ( $can_access_features ) { |
| 30 | add_action( 'admin_menu', array( $this, 'admin_menu' ) ); |
| 31 | |
| 32 | // Only if the Suggestions are enabled. |
| 33 | $this->suggestionsEnabled = $this->core->get_option( 'module_suggestions' ); |
| 34 | if ( $this->suggestionsEnabled ) { |
| 35 | add_filter( 'post_row_actions', [ $this, 'post_row_actions' ], 10, 2 ); |
| 36 | } |
| 37 | |
| 38 | add_action( 'admin_footer', [ $this, 'admin_footer' ] ); |
| 39 | } |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | function admin_menu() { |
| 44 | |
| 45 | // Generate New (under Posts) |
| 46 | if ( $this->contentGeneratorEnabled) { |
| 47 | add_submenu_page( 'edit.php', 'Generate New', 'Generate New', 'read', 'mwai_content_generator', |
| 48 | array( $this, 'ai_content_generator' ), 2 ); |
| 49 | } |
| 50 | |
| 51 | // In Tools |
| 52 | if ( $this->playgroundEnabled ) { |
| 53 | add_management_page( 'Playground', __( 'Playground', 'ai-engine' ), 'read', |
| 54 | 'mwai_dashboard', array( $this, 'ai_playground' ) ); |
| 55 | } |
| 56 | if ( $this->contentGeneratorEnabled ) { |
| 57 | add_management_page( 'Generate Content', 'Generate Content', 'read', 'mwai_content_generator', |
| 58 | array( $this, 'ai_content_generator' ) ); |
| 59 | } |
| 60 | if ( $this->imagesGeneratorEnabled ) { |
| 61 | add_management_page( 'Generate Images', 'Generate Images', 'read', 'mwai_images_generator', |
| 62 | array( $this, 'ai_image_generator' ) ); |
| 63 | } |
| 64 | |
| 65 | // In the Admin Bar: |
| 66 | add_action( 'admin_bar_menu', array( $this, 'admin_bar_menu' ), 100 ); |
| 67 | } |
| 68 | |
| 69 | function admin_bar_menu( $wp_admin_bar ) { |
| 70 | |
| 71 | $admin_bar = $this->core->get_option( 'admin_bar' ); |
| 72 | $settings = isset( $admin_bar['settings'] ) && $admin_bar['settings']; |
| 73 | $playground = isset( $admin_bar['playground'] ) && $admin_bar['playground']; |
| 74 | $content_generator = isset( $admin_bar['content_generator'] ) && $admin_bar['content_generator']; |
| 75 | $images_generator = isset( $admin_bar['images_generator'] ) && $admin_bar['images_generator']; |
| 76 | |
| 77 | if ( $settings ) { |
| 78 | $wp_admin_bar->add_node( array( |
| 79 | 'id' => 'mwai-settings', |
| 80 | 'title' => '<span class="ab-icon dashicons-before dashicons-admin-settings" style="top: 2px;"></span>' . __( 'AI Engine', 'ai-engine' ), |
| 81 | 'href' => admin_url( 'admin.php?page=mwai_settings' ), |
| 82 | 'meta' => array( 'class' => 'mwai-settings' ), |
| 83 | ) ); |
| 84 | } |
| 85 | |
| 86 | if ( $content_generator ) { |
| 87 | $wp_admin_bar->add_node( array( |
| 88 | 'id' => 'mwai-content-generator', |
| 89 | 'title' => MWAI_IMG_WAND_HTML . __( 'Content', 'ai-engine' ), |
| 90 | 'href' => admin_url( 'tools.php?page=mwai_content_generator' ), |
| 91 | 'meta' => array( 'class' => 'mwai-content-generator' ), |
| 92 | ) ); |
| 93 | } |
| 94 | if ( $images_generator ) { |
| 95 | $wp_admin_bar->add_node( array( |
| 96 | 'id' => 'mwai-image-generator', |
| 97 | 'title' => MWAI_IMG_WAND_HTML . __( 'Images', 'ai-engine' ), |
| 98 | 'href' => admin_url( 'tools.php?page=mwai_images_generator' ), |
| 99 | 'meta' => array( 'class' => 'mwai-images-generator' ), |
| 100 | ) ); |
| 101 | } |
| 102 | |
| 103 | // The Global Magic Wand |
| 104 | // if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) { |
| 105 | // $wp_admin_bar->add_node( array( |
| 106 | // 'id' => 'mwai-debug', |
| 107 | // 'title' => MWAI_IMG_WAND_HTML . __( 'Magic Wand', 'ai-engine' ), |
| 108 | // //'href' => admin_url( 'tools.php?page=mwai_debug' ), |
| 109 | // 'meta' => array( 'class' => 'mwai-debug' ), |
| 110 | // ) ); |
| 111 | // } |
| 112 | |
| 113 | if ( $playground ) { |
| 114 | $wp_admin_bar->add_node( array( |
| 115 | 'id' => 'mwai-playground', |
| 116 | 'title' => MWAI_IMG_WAND_HTML . __( 'Playground', 'ai-engine' ), |
| 117 | 'href' => admin_url( 'tools.php?page=mwai_dashboard' ), |
| 118 | 'meta' => array( 'class' => 'mwai-playground' ), |
| 119 | ) ); |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | public function ai_playground() { |
| 124 | echo '<div id="mwai-playground"></div>'; |
| 125 | } |
| 126 | |
| 127 | public function ai_content_generator() { |
| 128 | echo '<div id="mwai-content-generator"></div>'; |
| 129 | } |
| 130 | |
| 131 | public function ai_image_generator() { |
| 132 | echo '<div id="mwai-image-generator"></div>'; |
| 133 | } |
| 134 | |
| 135 | function post_row_actions( $actions, $post ) { |
| 136 | //if ( $post->post_type === 'post' ) { |
| 137 | $actions['ai_titles'] = '<a class="mwai-link-title" href="#" data-id="' . |
| 138 | $post->ID . '" data-title="' . $post->post_title . '"> |
| 139 | ' . MWAI_IMG_WAND_HTML_XS . ' Title</a>'; |
| 140 | $actions['ai_excerpts'] = '<a class="mwai-link-excerpt" href="#" data-id="' . |
| 141 | $post->ID . '" data-title="' . $post->post_title . '"> |
| 142 | ' . MWAI_IMG_WAND_HTML_XS . ' Excerpt</a>'; |
| 143 | //} |
| 144 | return $actions; |
| 145 | } |
| 146 | |
| 147 | function admin_footer() { |
| 148 | echo '<div id="mwai-admin-postsList"></div>'; |
| 149 | } |
| 150 | |
| 151 | function admin_enqueue_scripts() { |
| 152 | $physical_file = MWAI_PATH . '/app/index.js'; |
| 153 | $cache_buster = file_exists( $physical_file ) ? filemtime( $physical_file ) : MWAI_VERSION; |
| 154 | wp_register_script( 'mwai-vendor', MWAI_URL . 'app/vendor.js', null, $cache_buster ); |
| 155 | wp_register_script( 'mwai', MWAI_URL . 'app/index.js', [ 'mwai-vendor', |
| 156 | 'wp-element', 'wp-components', 'wp-edit-post', 'wp-plugins', 'wp-i18n' |
| 157 | ], $cache_buster ); |
| 158 | wp_enqueue_script( 'mwai' ); |
| 159 | |
| 160 | // The MD5 of the translation file built by WP uses app/i18n.js instead of app/index.js |
| 161 | add_filter( 'load_script_translation_file', function( $file, $handle, $domain ) { |
| 162 | if ( $domain !== 'ai-engine' ) { return $file; } |
| 163 | $file = str_replace( md5( 'app/index.js' ), md5( 'app/i18n.js' ), $file ); |
| 164 | return $file; |
| 165 | }, 10, 3 ); |
| 166 | |
| 167 | // This is useless for AI Engine, but it avoids issues when themes and plugin calls |
| 168 | // wp_enqueue_media too late (usually, they call it in the footer). Until someone |
| 169 | // figures out what the issue is, let's load it here. |
| 170 | wp_enqueue_media(); |
| 171 | |
| 172 | wp_set_script_translations( 'mwai', 'ai-engine' ); |
| 173 | wp_localize_script( 'mwai', 'mwai', [ |
| 174 | 'api_url' => get_rest_url( null, 'mwai/v1' ), |
| 175 | 'rest_url' => get_rest_url(), |
| 176 | 'plugin_url' => MWAI_URL, |
| 177 | 'user_data' => $this->core->get_user_data(), |
| 178 | 'prefix' => MWAI_PREFIX, |
| 179 | 'domain' => MWAI_DOMAIN, |
| 180 | 'is_pro' => class_exists( 'MeowPro_MWAI_Core' ), |
| 181 | 'is_registered' => !!$this->is_registered(), |
| 182 | 'rest_nonce' => wp_create_nonce( 'wp_rest' ), |
| 183 | 'session' => $this->core->get_session_id(), |
| 184 | 'options' => $this->core->get_all_options(), |
| 185 | 'chatbots' => $this->core->get_chatbots(), |
| 186 | 'themes' => $this->core->get_themes(), |
| 187 | 'stream' => $this->core->get_option( 'ai_streaming' ), |
| 188 | ] ); |
| 189 | } |
| 190 | |
| 191 | function is_registered() { |
| 192 | return apply_filters( MWAI_PREFIX . '_meowapps_is_registered', false, MWAI_PREFIX ); |
| 193 | } |
| 194 | |
| 195 | function app_menu() { |
| 196 | add_submenu_page( 'meowapps-main-menu', 'AI Engine', 'AI Engine', 'manage_options', |
| 197 | 'mwai_settings', array( $this, 'admin_settings' ) ); |
| 198 | } |
| 199 | |
| 200 | function admin_settings() { |
| 201 | echo '<div id="mwai-admin-settings"></div>'; |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | ?> |