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
openai.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
454 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 | register_rest_route( $this->namespace, '/openai_files', array( |
| 69 | 'methods' => 'GET', |
| 70 | 'permission_callback' => array( $this->core, 'can_access_features' ), |
| 71 | 'callback' => array( $this, 'openai_files_get' ), |
| 72 | ) ); |
| 73 | register_rest_route( $this->namespace, '/openai_files', array( |
| 74 | 'methods' => 'DELETE', |
| 75 | 'permission_callback' => array( $this->core, 'can_access_features' ), |
| 76 | 'callback' => array( $this, 'openai_files_delete' ), |
| 77 | ) ); |
| 78 | register_rest_route( $this->namespace, '/openai_files', array( |
| 79 | 'methods' => 'POST', |
| 80 | 'permission_callback' => array( $this->core, 'can_access_features' ), |
| 81 | 'callback' => array( $this, 'openai_files_upload' ), |
| 82 | ) ); |
| 83 | register_rest_route( $this->namespace, '/openai_files_download', array( |
| 84 | 'methods' => 'POST', |
| 85 | 'permission_callback' => array( $this->core, 'can_access_features' ), |
| 86 | 'callback' => array( $this, 'openai_files_download' ), |
| 87 | ) ); |
| 88 | register_rest_route( $this->namespace, '/openai_files_finetune', array( |
| 89 | 'methods' => 'POST', |
| 90 | 'permission_callback' => array( $this->core, 'can_access_features' ), |
| 91 | 'callback' => array( $this, 'openai_files_finetune' ), |
| 92 | ) ); |
| 93 | register_rest_route( $this->namespace, '/openai_finetunes', array( |
| 94 | 'methods' => 'GET', |
| 95 | 'permission_callback' => array( $this->core, 'can_access_features' ), |
| 96 | 'callback' => array( $this, 'openai_finetunes_get' ), |
| 97 | ) ); |
| 98 | register_rest_route( $this->namespace, '/openai_finetunes', array( |
| 99 | 'methods' => 'DELETE', |
| 100 | 'permission_callback' => array( $this->core, 'can_access_features' ), |
| 101 | 'callback' => array( $this, 'openai_finetunes_delete' ), |
| 102 | ) ); |
| 103 | } |
| 104 | catch ( Exception $e ) { |
| 105 | var_dump( $e ); |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | function rest_all_settings() { |
| 110 | return new WP_REST_Response( [ |
| 111 | 'success' => true, |
| 112 | 'data' => $this->core->get_all_options() |
| 113 | ], 200 ); |
| 114 | } |
| 115 | |
| 116 | function rest_update_option( $request ) { |
| 117 | try { |
| 118 | $params = $request->get_json_params(); |
| 119 | $value = $params['options']; |
| 120 | $options = $this->core->update_options( $value ); |
| 121 | $success = !!$options; |
| 122 | $message = __( $success ? 'OK' : "Could not update options.", 'ai-engine' ); |
| 123 | return new WP_REST_Response([ 'success' => $success, 'message' => $message, 'options' => $options ], 200 ); |
| 124 | } |
| 125 | catch ( Exception $e ) { |
| 126 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | function createValidationResult( $result = true, $message = null) { |
| 131 | $message = $message ? $message : __( 'OK', 'ai-engine' ); |
| 132 | return [ 'result' => $result, 'message' => $message ]; |
| 133 | } |
| 134 | |
| 135 | function validate_updated_option( $option_name ) { |
| 136 | $option_checkbox = get_option( 'mwai_option_checkbox', false ); |
| 137 | $option_text = get_option( 'mwai_option_text', 'Default' ); |
| 138 | if ( $option_checkbox === '' ) |
| 139 | update_option( 'mwai_option_checkbox', false ); |
| 140 | if ( $option_text === '' ) |
| 141 | update_option( 'mwai_option_text', 'Default' ); |
| 142 | return $this->createValidationResult(); |
| 143 | } |
| 144 | |
| 145 | function setup_query_based_on_params( $query, $params ) { |
| 146 | if ( isset( $params['model'] ) ) { |
| 147 | $query->setModel( $params['model'] ); |
| 148 | } |
| 149 | if ( isset( $params['maxTokens'] ) ) { |
| 150 | $query->setMaxTokens( $params['maxTokens'] ); |
| 151 | } |
| 152 | if ( isset( $params['temperature'] ) ) { |
| 153 | $query->setTemperature( $params['temperature'] ); |
| 154 | } |
| 155 | if ( isset( $params['stop'] ) ) { |
| 156 | $query->setStop( $params['stop'] ); |
| 157 | } |
| 158 | if ( isset( $params['apiKey'] ) ) { |
| 159 | $query->setApiKey( $params['apiKey'] ); |
| 160 | } |
| 161 | if ( isset( $params['maxResults'] ) ) { |
| 162 | $query->setMaxResults( $params['maxResults'] ); |
| 163 | } |
| 164 | if ( isset( $params['env'] ) ) { |
| 165 | $query->setEnv( $params['env'] ); |
| 166 | } |
| 167 | if ( isset( $params['session'] ) ) { |
| 168 | $query->setSession( $params['session'] ); |
| 169 | } |
| 170 | return $query; |
| 171 | } |
| 172 | |
| 173 | function make_completions( $request ) { |
| 174 | try { |
| 175 | $params = $request->get_json_params(); |
| 176 | $prompt = $params['prompt']; |
| 177 | $query = new Meow_MWAI_QueryText( $prompt ); |
| 178 | $query = $this->setup_query_based_on_params( $query, $params ); |
| 179 | $answer = $this->core->ai->run( $query ); |
| 180 | return new WP_REST_Response([ 'success' => true, 'data' => $answer->result, 'usage' => $answer->usage ], 200 ); |
| 181 | } |
| 182 | catch ( Exception $e ) { |
| 183 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | function make_images( $request ) { |
| 188 | try { |
| 189 | $params = $request->get_json_params(); |
| 190 | $prompt = $params['prompt']; |
| 191 | $query = new Meow_MWAI_QueryImage( $prompt ); |
| 192 | $query = $this->setup_query_based_on_params( $query, $params ); |
| 193 | $answer = $this->core->ai->run( $query ); |
| 194 | return new WP_REST_Response([ 'success' => true, 'data' => $answer->results, 'usage' => $answer->usage ], 200 ); |
| 195 | } |
| 196 | catch ( Exception $e ) { |
| 197 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | function make_titles( $request ) { |
| 202 | try { |
| 203 | $params = $request->get_json_params(); |
| 204 | $postId = intval( $params['postId'] ); |
| 205 | $text = $this->core->get_text_from_postId( $postId ); |
| 206 | $prompt = "Create short SEO-friendly title for this text: " . $text; |
| 207 | $query = new Meow_MWAI_QueryText( $prompt, 64 ); |
| 208 | $query->setMaxResults( 5 ); |
| 209 | $query->setEnv( 'admin-tools' ); |
| 210 | $answer = $this->core->ai->run( $query ); |
| 211 | return new WP_REST_Response([ 'success' => true, 'data' => $answer->results ], 200 ); |
| 212 | } |
| 213 | catch ( Exception $e ) { |
| 214 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 215 | } |
| 216 | } |
| 217 | |
| 218 | function make_excerpts( $request ) { |
| 219 | try { |
| 220 | $params = $request->get_json_params(); |
| 221 | $postId = intval( $params['postId'] ); |
| 222 | $text = $this->core->get_text_from_postId( $postId ); |
| 223 | $prompt = "Create SEO-friendly introduction to this text, 120 to 170 characters max, no URLs: " . $text; |
| 224 | $query = new Meow_MWAI_QueryText( $prompt, 160 ); |
| 225 | $query->setMaxResults( 5 ); |
| 226 | $query->setEnv( 'admin-tools' ); |
| 227 | $answer = $this->core->ai->run( $query ); |
| 228 | return new WP_REST_Response([ 'success' => true, 'data' => $answer->results ], 200 ); |
| 229 | } |
| 230 | catch ( Exception $e ) { |
| 231 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 232 | } |
| 233 | } |
| 234 | |
| 235 | function update_post_title( $request ) { |
| 236 | try { |
| 237 | $params = $request->get_json_params(); |
| 238 | $title = sanitize_text_field( $params['title'] ); |
| 239 | $postId = intval( $params['postId'] ); |
| 240 | $post = get_post( $postId ); |
| 241 | if ( !$post ) { |
| 242 | throw new Exception( 'There is no post with this ID.' ); |
| 243 | } |
| 244 | $post->post_title = $title; |
| 245 | //$post->post_name = sanitize_title( $title ); |
| 246 | wp_update_post( $post ); |
| 247 | return new WP_REST_Response([ 'success' => true, 'message' => "Title updated." ], 200 ); |
| 248 | } |
| 249 | catch ( Exception $e ) { |
| 250 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 251 | } |
| 252 | } |
| 253 | |
| 254 | function update_post_excerpt( $request ) { |
| 255 | try { |
| 256 | $params = $request->get_json_params(); |
| 257 | $excerpt = sanitize_text_field( $params['excerpt'] ); |
| 258 | $postId = intval( $params['postId'] ); |
| 259 | $post = get_post( $postId ); |
| 260 | if ( !$post ) { |
| 261 | throw new Exception( 'There is no post with this ID.' ); |
| 262 | } |
| 263 | $post->post_excerpt = $excerpt; |
| 264 | wp_update_post( $post ); |
| 265 | return new WP_REST_Response([ 'success' => true, 'message' => "Excerpt updated." ], 200 ); |
| 266 | } |
| 267 | catch ( Exception $e ) { |
| 268 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | function create_post( $request ) { |
| 273 | try { |
| 274 | $params = $request->get_json_params(); |
| 275 | $title = sanitize_text_field( $params['title'] ); |
| 276 | // Sanitize content that contains line returns and HTML tags |
| 277 | $content = sanitize_textarea_field( $params['content'] ); |
| 278 | $excerpt = sanitize_text_field( $params['excerpt'] ); |
| 279 | //$postType = sanitize_text_field( $params['postType'] ); |
| 280 | $post = new stdClass(); |
| 281 | $post->post_title = $title; |
| 282 | $post->post_excerpt = $excerpt; |
| 283 | $post->post_content = $content; |
| 284 | $post->post_status = 'draft'; |
| 285 | $post->post_type = 'post'; |
| 286 | $post->post_content = $this->core->markdown_to_html( $post->post_content ); |
| 287 | $postId = wp_insert_post( $post ); |
| 288 | return new WP_REST_Response([ 'success' => true, 'postId' => $postId ], 200 ); |
| 289 | } |
| 290 | catch ( Exception $e ) { |
| 291 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | function curl_download( $Url ) { |
| 296 | if ( !function_exists( 'curl_init' ) ) { |
| 297 | die( 'CURL is not installed!' ); |
| 298 | } |
| 299 | $ch = curl_init(); |
| 300 | curl_setopt( $ch, CURLOPT_URL, $Url ); |
| 301 | curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true ); |
| 302 | $output = curl_exec( $ch ); |
| 303 | curl_close( $ch ); |
| 304 | return $output; |
| 305 | } |
| 306 | |
| 307 | function create_image( $request ) { |
| 308 | try { |
| 309 | $params = $request->get_json_params(); |
| 310 | $title = sanitize_text_field( $params['title'] ); |
| 311 | $caption = sanitize_text_field( $params['caption'] ); |
| 312 | $alt = sanitize_text_field( $params['alt'] ); |
| 313 | $description = sanitize_text_field( $params['description'] ); |
| 314 | $url = $params['url']; |
| 315 | $filename = sanitize_text_field( $params['filename'] ); |
| 316 | $image_data = $this->curl_download( $url ); |
| 317 | if ( !$image_data ) { |
| 318 | throw new Exception( 'Could not download the image.' ); |
| 319 | } |
| 320 | $upload_dir = wp_upload_dir(); |
| 321 | if ( empty( $filename ) ) { |
| 322 | $filename = basename( $url ); |
| 323 | } |
| 324 | $wp_filetype = wp_check_filetype( $filename ); |
| 325 | if ( wp_mkdir_p( $upload_dir['path'] ) ) { |
| 326 | $file = $upload_dir['path'] . '/' . $filename; |
| 327 | } |
| 328 | else { |
| 329 | $file = $upload_dir['basedir'] . '/' . $filename; |
| 330 | } |
| 331 | |
| 332 | // Make sure the file is unique, if not, add a number to the end of the file before the extension |
| 333 | $i = 1; |
| 334 | $parts = pathinfo( $file ); |
| 335 | while ( file_exists( $file ) ) { |
| 336 | $file = $parts['dirname'] . '/' . $parts['filename'] . '-' . $i . '.' . $parts['extension']; |
| 337 | $i++; |
| 338 | } |
| 339 | |
| 340 | // Write the file |
| 341 | file_put_contents( $file, $image_data ); |
| 342 | $attachment = [ |
| 343 | 'post_mime_type' => $wp_filetype['type'], |
| 344 | 'post_title' => $title, |
| 345 | 'post_content' => $description, |
| 346 | 'post_excerpt' => $caption, |
| 347 | 'post_status' => 'inherit' |
| 348 | ]; |
| 349 | // Register the file as a Media Library attachment |
| 350 | $attachmentId = wp_insert_attachment( $attachment, $file ); |
| 351 | require_once( ABSPATH . 'wp-admin/includes/image.php' ); |
| 352 | $attachment_data = wp_generate_attachment_metadata( $attachmentId, $file ); |
| 353 | wp_update_attachment_metadata( $attachmentId, $attachment_data ); |
| 354 | update_post_meta( $attachmentId, '_wp_attachment_image_alt', $alt ); |
| 355 | return new WP_REST_Response([ 'success' => true, 'attachmentId' => $attachmentId ], 200 ); |
| 356 | } |
| 357 | catch ( Exception $e ) { |
| 358 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 359 | } |
| 360 | } |
| 361 | |
| 362 | function openai_files_get( $request ) { |
| 363 | try { |
| 364 | //$params = $request->get_json_params(); |
| 365 | $openai = new Meow_MWAI_OpenAI( $this->core ); |
| 366 | $files = $openai->listFiles(); |
| 367 | return new WP_REST_Response([ 'success' => true, 'files' => $files ], 200 ); |
| 368 | } |
| 369 | catch ( Exception $e ) { |
| 370 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 371 | } |
| 372 | } |
| 373 | |
| 374 | function openai_finetunes_get( $request ) { |
| 375 | try { |
| 376 | //$params = $request->get_json_params(); |
| 377 | $openai = new Meow_MWAI_OpenAI( $this->core ); |
| 378 | $finetunes = $openai->listFineTunes(); |
| 379 | return new WP_REST_Response([ 'success' => true, 'finetunes' => $finetunes ], 200 ); |
| 380 | } |
| 381 | catch ( Exception $e ) { |
| 382 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 383 | } |
| 384 | } |
| 385 | |
| 386 | function openai_files_upload( $request ) { |
| 387 | try { |
| 388 | $params = $request->get_json_params(); |
| 389 | $filename = sanitize_text_field( $params['filename'] ); |
| 390 | $data = $params['data']; |
| 391 | $openai = new Meow_MWAI_OpenAI( $this->core ); |
| 392 | $file = $openai->uploadFile( $filename, $data ); |
| 393 | return new WP_REST_Response([ 'success' => true, 'file' => $file ], 200 ); |
| 394 | } |
| 395 | catch ( Exception $e ) { |
| 396 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 397 | } |
| 398 | } |
| 399 | |
| 400 | function openai_files_delete( $request ) { |
| 401 | try { |
| 402 | $params = $request->get_json_params(); |
| 403 | $fileId = $params['fileId']; |
| 404 | $openai = new Meow_MWAI_OpenAI( $this->core ); |
| 405 | $openai->deleteFile( $fileId ); |
| 406 | return new WP_REST_Response([ 'success' => true ], 200 ); |
| 407 | } |
| 408 | catch ( Exception $e ) { |
| 409 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 410 | } |
| 411 | } |
| 412 | |
| 413 | function openai_finetunes_delete( $request ) { |
| 414 | try { |
| 415 | $params = $request->get_json_params(); |
| 416 | $modelId = $params['modelId']; |
| 417 | $openai = new Meow_MWAI_OpenAI( $this->core ); |
| 418 | $openai->deleteFineTune( $modelId ); |
| 419 | return new WP_REST_Response([ 'success' => true ], 200 ); |
| 420 | } |
| 421 | catch ( Exception $e ) { |
| 422 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 423 | } |
| 424 | } |
| 425 | |
| 426 | function openai_files_download( $request ) { |
| 427 | try { |
| 428 | $params = $request->get_json_params(); |
| 429 | $fileId = $params['fileId']; |
| 430 | $openai = new Meow_MWAI_OpenAI( $this->core ); |
| 431 | $data = $openai->downloadFile( $fileId ); |
| 432 | return new WP_REST_Response([ 'success' => true, 'data' => $data ], 200 ); |
| 433 | } |
| 434 | catch ( Exception $e ) { |
| 435 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 436 | } |
| 437 | } |
| 438 | |
| 439 | function openai_files_finetune( $request ) { |
| 440 | try { |
| 441 | $params = $request->get_json_params(); |
| 442 | $fileId = $params['fileId']; |
| 443 | $model = $params['model']; |
| 444 | $suffix = $params['suffix']; |
| 445 | $openai = new Meow_MWAI_OpenAI( $this->core ); |
| 446 | $finetune = $openai->fineTuneFile( $fileId, $model, $suffix ); |
| 447 | return new WP_REST_Response([ 'success' => true, 'finetune' => $finetune ], 200 ); |
| 448 | } |
| 449 | catch ( Exception $e ) { |
| 450 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 451 | } |
| 452 | } |
| 453 | } |
| 454 |