modules
3 years ago
admin.php
3 years ago
ai.php
3 years ago
answer.php
3 years ago
core.php
3 years ago
init.php
3 years ago
query.php
3 years ago
queryimage.php
3 years ago
querytext.php
3 years ago
rest.php
3 years ago
ui.php
3 years ago
rest.php
313 lines
| 1 | <?php |
| 2 | |
| 3 | class Meow_MWAI_Rest |
| 4 | { |
| 5 | private $core = null; |
| 6 | private $namespace = 'ai-engine/v1'; |
| 7 | |
| 8 | public function __construct( $core ) { |
| 9 | if ( !current_user_can( 'administrator' ) ) { |
| 10 | return; |
| 11 | } |
| 12 | $this->core = $core; |
| 13 | add_action( 'rest_api_init', array( $this, 'rest_api_init' ) ); |
| 14 | } |
| 15 | |
| 16 | function rest_api_init() { |
| 17 | try { |
| 18 | register_rest_route( $this->namespace, '/update_option', array( |
| 19 | 'methods' => 'POST', |
| 20 | 'permission_callback' => array( $this->core, 'can_access_settings' ), |
| 21 | 'callback' => array( $this, 'rest_update_option' ) |
| 22 | ) ); |
| 23 | register_rest_route( $this->namespace, '/all_settings', array( |
| 24 | 'methods' => 'GET', |
| 25 | 'permission_callback' => array( $this->core, 'can_access_settings' ), |
| 26 | 'callback' => array( $this, 'rest_all_settings' ), |
| 27 | ) ); |
| 28 | register_rest_route( $this->namespace, '/make_completions', array( |
| 29 | 'methods' => 'POST', |
| 30 | 'permission_callback' => array( $this->core, 'can_access_features' ), |
| 31 | 'callback' => array( $this, 'make_completions' ), |
| 32 | ) ); |
| 33 | register_rest_route( $this->namespace, '/make_images', array( |
| 34 | 'methods' => 'POST', |
| 35 | 'permission_callback' => array( $this->core, 'can_access_features' ), |
| 36 | 'callback' => array( $this, 'make_images' ), |
| 37 | ) ); |
| 38 | register_rest_route( $this->namespace, '/make_titles', array( |
| 39 | 'methods' => 'POST', |
| 40 | 'permission_callback' => array( $this->core, 'can_access_features' ), |
| 41 | 'callback' => array( $this, 'make_titles' ), |
| 42 | ) ); |
| 43 | register_rest_route( $this->namespace, '/make_excerpts', array( |
| 44 | 'methods' => 'POST', |
| 45 | 'permission_callback' => array( $this->core, 'can_access_features' ), |
| 46 | 'callback' => array( $this, 'make_excerpts' ), |
| 47 | ) ); |
| 48 | register_rest_route( $this->namespace, '/update_post_title', array( |
| 49 | 'methods' => 'POST', |
| 50 | 'permission_callback' => array( $this->core, 'can_access_features' ), |
| 51 | 'callback' => array( $this, 'update_post_title' ), |
| 52 | ) ); |
| 53 | register_rest_route( $this->namespace, '/update_post_excerpt', array( |
| 54 | 'methods' => 'POST', |
| 55 | 'permission_callback' => array( $this->core, 'can_access_features' ), |
| 56 | 'callback' => array( $this, 'update_post_excerpt' ), |
| 57 | ) ); |
| 58 | register_rest_route( $this->namespace, '/create_post', array( |
| 59 | 'methods' => 'POST', |
| 60 | 'permission_callback' => array( $this->core, 'can_access_features' ), |
| 61 | 'callback' => array( $this, 'create_post' ), |
| 62 | ) ); |
| 63 | register_rest_route( $this->namespace, '/create_image', array( |
| 64 | 'methods' => 'POST', |
| 65 | 'permission_callback' => array( $this->core, 'can_access_features' ), |
| 66 | 'callback' => array( $this, 'create_image' ), |
| 67 | ) ); |
| 68 | } |
| 69 | catch ( Exception $e ) { |
| 70 | var_dump( $e ); |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | function rest_all_settings() { |
| 75 | return new WP_REST_Response( [ |
| 76 | 'success' => true, |
| 77 | 'data' => $this->core->get_all_options() |
| 78 | ], 200 ); |
| 79 | } |
| 80 | |
| 81 | function rest_update_option( $request ) { |
| 82 | try { |
| 83 | $params = $request->get_json_params(); |
| 84 | $value = $params['options']; |
| 85 | $options = $this->core->update_options( $value ); |
| 86 | $success = !!$options; |
| 87 | $message = __( $success ? 'OK' : "Could not update options.", 'ai-engine' ); |
| 88 | return new WP_REST_Response([ 'success' => $success, 'message' => $message, 'options' => $options ], 200 ); |
| 89 | } |
| 90 | catch ( Exception $e ) { |
| 91 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | function createValidationResult( $result = true, $message = null) { |
| 96 | $message = $message ? $message : __( 'OK', 'ai-engine' ); |
| 97 | return [ 'result' => $result, 'message' => $message ]; |
| 98 | } |
| 99 | |
| 100 | function validate_updated_option( $option_name ) { |
| 101 | $option_checkbox = get_option( 'mwai_option_checkbox', false ); |
| 102 | $option_text = get_option( 'mwai_option_text', 'Default' ); |
| 103 | if ( $option_checkbox === '' ) |
| 104 | update_option( 'mwai_option_checkbox', false ); |
| 105 | if ( $option_text === '' ) |
| 106 | update_option( 'mwai_option_text', 'Default' ); |
| 107 | return $this->createValidationResult(); |
| 108 | } |
| 109 | |
| 110 | function setup_query_based_on_params( $query, $params ) { |
| 111 | if ( isset( $params['model'] ) ) { |
| 112 | $query->setModel( $params['model'] ); |
| 113 | } |
| 114 | if ( isset( $params['temperature'] ) ) { |
| 115 | $query->setTemperature( $params['temperature'] ); |
| 116 | } |
| 117 | if ( isset( $params['apiKey'] ) ) { |
| 118 | $query->setApiKey( $params['apiKey'] ); |
| 119 | } |
| 120 | if ( isset( $params['maxResults'] ) ) { |
| 121 | $query->setMaxResults( $params['maxResults'] ); |
| 122 | } |
| 123 | return $query; |
| 124 | } |
| 125 | |
| 126 | function make_completions( $request ) { |
| 127 | try { |
| 128 | $params = $request->get_json_params(); |
| 129 | $prompt = $params['prompt']; |
| 130 | $query = new Meow_MWAI_QueryText( $prompt, 2048 ); |
| 131 | $query = $this->setup_query_based_on_params( $query, $params ); |
| 132 | $answer = $this->core->ai->run( $query ); |
| 133 | return new WP_REST_Response([ 'success' => true, 'data' => $answer->result, 'usage' => $answer->usage ], 200 ); |
| 134 | } |
| 135 | catch ( Exception $e ) { |
| 136 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | function make_images( $request ) { |
| 141 | try { |
| 142 | $params = $request->get_json_params(); |
| 143 | $prompt = $params['prompt']; |
| 144 | $query = new Meow_MWAI_QueryImage( $prompt ); |
| 145 | $query = $this->setup_query_based_on_params( $query, $params ); |
| 146 | $answer = $this->core->ai->run( $query ); |
| 147 | return new WP_REST_Response([ 'success' => true, 'data' => $answer->results, 'usage' => $answer->usage ], 200 ); |
| 148 | } |
| 149 | catch ( Exception $e ) { |
| 150 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | function make_titles( $request ) { |
| 155 | try { |
| 156 | $params = $request->get_json_params(); |
| 157 | $postId = intval( $params['postId'] ); |
| 158 | $text = $this->core->get_text_from_postId( $postId ); |
| 159 | $prompt = "Create short SEO-friendly title for this text: " . $text; |
| 160 | $query = new Meow_MWAI_QueryText( $prompt, 40 ); |
| 161 | $query->setMaxResults( 5 ); |
| 162 | $answer = $this->core->ai->run( $query ); |
| 163 | return new WP_REST_Response([ 'success' => true, 'data' => $answer->results ], 200 ); |
| 164 | } |
| 165 | catch ( Exception $e ) { |
| 166 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | function make_excerpts( $request ) { |
| 171 | try { |
| 172 | $params = $request->get_json_params(); |
| 173 | $postId = intval( $params['postId'] ); |
| 174 | $text = $this->core->get_text_from_postId( $postId ); |
| 175 | $prompt = "Create SEO-friendly introduction to this text, 120 to 170 characters max, no URLs: " . $text; |
| 176 | $query = new Meow_MWAI_QueryText( $prompt, 140 ); |
| 177 | $query->setMaxResults( 5 ); |
| 178 | $answer = $this->core->ai->run( $query ); |
| 179 | return new WP_REST_Response([ 'success' => true, 'data' => $answer->results ], 200 ); |
| 180 | } |
| 181 | catch ( Exception $e ) { |
| 182 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 183 | } |
| 184 | } |
| 185 | |
| 186 | function update_post_title( $request ) { |
| 187 | try { |
| 188 | $params = $request->get_json_params(); |
| 189 | $title = sanitize_text_field( $params['title'] ); |
| 190 | $postId = intval( $params['postId'] ); |
| 191 | $post = get_post( $postId ); |
| 192 | if ( !$post ) { |
| 193 | throw new Exception( 'There is no post with this ID.' ); |
| 194 | } |
| 195 | $post->post_title = $title; |
| 196 | //$post->post_name = sanitize_title( $title ); |
| 197 | wp_update_post( $post ); |
| 198 | return new WP_REST_Response([ 'success' => true, 'message' => "Title updated." ], 200 ); |
| 199 | } |
| 200 | catch ( Exception $e ) { |
| 201 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | function update_post_excerpt( $request ) { |
| 206 | try { |
| 207 | $params = $request->get_json_params(); |
| 208 | $excerpt = sanitize_text_field( $params['excerpt'] ); |
| 209 | $postId = intval( $params['postId'] ); |
| 210 | $post = get_post( $postId ); |
| 211 | if ( !$post ) { |
| 212 | throw new Exception( 'There is no post with this ID.' ); |
| 213 | } |
| 214 | $post->post_excerpt = $excerpt; |
| 215 | wp_update_post( $post ); |
| 216 | return new WP_REST_Response([ 'success' => true, 'message' => "Excerpt updated." ], 200 ); |
| 217 | } |
| 218 | catch ( Exception $e ) { |
| 219 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | function create_post( $request ) { |
| 224 | try { |
| 225 | $params = $request->get_json_params(); |
| 226 | $title = sanitize_text_field( $params['title'] ); |
| 227 | // Sanitize content that contains line returns and HTML tags |
| 228 | $content = sanitize_textarea_field( $params['content'] ); |
| 229 | $excerpt = sanitize_text_field( $params['excerpt'] ); |
| 230 | //$postType = sanitize_text_field( $params['postType'] ); |
| 231 | $post = new stdClass(); |
| 232 | $post->post_title = $title; |
| 233 | $post->post_excerpt = $excerpt; |
| 234 | $post->post_content = $content; |
| 235 | $post->post_status = 'draft'; |
| 236 | $post->post_type = 'post'; |
| 237 | $post->post_content = $this->core->markdown_to_html( $post->post_content ); |
| 238 | $postId = wp_insert_post( $post ); |
| 239 | return new WP_REST_Response([ 'success' => true, 'postId' => $postId ], 200 ); |
| 240 | } |
| 241 | catch ( Exception $e ) { |
| 242 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | function curl_download( $Url ) { |
| 247 | if ( !function_exists( 'curl_init' ) ) { |
| 248 | die( 'CURL is not installed!' ); |
| 249 | } |
| 250 | $ch = curl_init(); |
| 251 | curl_setopt( $ch, CURLOPT_URL, $Url ); |
| 252 | curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true ); |
| 253 | $output = curl_exec( $ch ); |
| 254 | curl_close( $ch ); |
| 255 | return $output; |
| 256 | } |
| 257 | |
| 258 | function create_image( $request ) { |
| 259 | try { |
| 260 | $params = $request->get_json_params(); |
| 261 | $title = sanitize_text_field( $params['title'] ); |
| 262 | $caption = sanitize_text_field( $params['caption'] ); |
| 263 | $alt = sanitize_text_field( $params['alt'] ); |
| 264 | $description = sanitize_text_field( $params['description'] ); |
| 265 | $url = $params['url']; |
| 266 | $filename = sanitize_text_field( $params['filename'] ); |
| 267 | $image_data = $this->curl_download( $url ); |
| 268 | if ( !$image_data ) { |
| 269 | throw new Exception( 'Could not download the image.' ); |
| 270 | } |
| 271 | $upload_dir = wp_upload_dir(); |
| 272 | if ( empty( $filename ) ) { |
| 273 | $filename = basename( $url ); |
| 274 | } |
| 275 | $wp_filetype = wp_check_filetype( $filename ); |
| 276 | if ( wp_mkdir_p( $upload_dir['path'] ) ) { |
| 277 | $file = $upload_dir['path'] . '/' . $filename; |
| 278 | } |
| 279 | else { |
| 280 | $file = $upload_dir['basedir'] . '/' . $filename; |
| 281 | } |
| 282 | |
| 283 | // Make sure the file is unique, if not, add a number to the end of the file before the extension |
| 284 | $i = 1; |
| 285 | $parts = pathinfo( $file ); |
| 286 | while ( file_exists( $file ) ) { |
| 287 | $file = $parts['dirname'] . '/' . $parts['filename'] . '-' . $i . '.' . $parts['extension']; |
| 288 | $i++; |
| 289 | } |
| 290 | |
| 291 | // Write the file |
| 292 | file_put_contents( $file, $image_data ); |
| 293 | $attachment = [ |
| 294 | 'post_mime_type' => $wp_filetype['type'], |
| 295 | 'post_title' => $title, |
| 296 | 'post_content' => $description, |
| 297 | 'post_excerpt' => $caption, |
| 298 | 'post_status' => 'inherit' |
| 299 | ]; |
| 300 | // Register the file as a Media Library attachment |
| 301 | $attachmentId = wp_insert_attachment( $attachment, $file ); |
| 302 | require_once( ABSPATH . 'wp-admin/includes/image.php' ); |
| 303 | $attachment_data = wp_generate_attachment_metadata( $attachmentId, $file ); |
| 304 | wp_update_attachment_metadata( $attachmentId, $attachment_data ); |
| 305 | update_post_meta( $attachmentId, '_wp_attachment_image_alt', $alt ); |
| 306 | return new WP_REST_Response([ 'success' => true, 'attachmentId' => $attachmentId ], 200 ); |
| 307 | } |
| 308 | catch ( Exception $e ) { |
| 309 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 310 | } |
| 311 | } |
| 312 | } |
| 313 |