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
rest.php
3 years ago
shortcodes.php
3 years ago
ui.php
3 years ago
rest.php
216 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_titles', array( |
| 34 | 'methods' => 'POST', |
| 35 | 'permission_callback' => array( $this->core, 'can_access_features' ), |
| 36 | 'callback' => array( $this, 'make_titles' ), |
| 37 | ) ); |
| 38 | register_rest_route( $this->namespace, '/make_excerpts', array( |
| 39 | 'methods' => 'POST', |
| 40 | 'permission_callback' => array( $this->core, 'can_access_features' ), |
| 41 | 'callback' => array( $this, 'make_excerpts' ), |
| 42 | ) ); |
| 43 | register_rest_route( $this->namespace, '/update_post_title', array( |
| 44 | 'methods' => 'POST', |
| 45 | 'permission_callback' => array( $this->core, 'can_access_features' ), |
| 46 | 'callback' => array( $this, 'update_post_title' ), |
| 47 | ) ); |
| 48 | register_rest_route( $this->namespace, '/update_post_excerpt', array( |
| 49 | 'methods' => 'POST', |
| 50 | 'permission_callback' => array( $this->core, 'can_access_features' ), |
| 51 | 'callback' => array( $this, 'update_post_excerpt' ), |
| 52 | ) ); |
| 53 | register_rest_route( $this->namespace, '/create_post', array( |
| 54 | 'methods' => 'POST', |
| 55 | 'permission_callback' => array( $this->core, 'can_access_features' ), |
| 56 | 'callback' => array( $this, 'create_post' ), |
| 57 | ) ); |
| 58 | } |
| 59 | catch ( Exception $e ) { |
| 60 | var_dump( $e ); |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | function rest_all_settings() { |
| 65 | return new WP_REST_Response( [ |
| 66 | 'success' => true, |
| 67 | 'data' => $this->core->get_all_options() |
| 68 | ], 200 ); |
| 69 | } |
| 70 | |
| 71 | function rest_update_option( $request ) { |
| 72 | try { |
| 73 | $params = $request->get_json_params(); |
| 74 | $value = $params['options']; |
| 75 | $options = $this->core->update_options( $value ); |
| 76 | $success = !!$options; |
| 77 | $message = __( $success ? 'OK' : "Could not update options.", 'ai-engine' ); |
| 78 | return new WP_REST_Response([ 'success' => $success, 'message' => $message, 'options' => $options ], 200 ); |
| 79 | } |
| 80 | catch ( Exception $e ) { |
| 81 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | function createValidationResult( $result = true, $message = null) { |
| 86 | $message = $message ? $message : __( 'OK', 'ai-engine' ); |
| 87 | return [ 'result' => $result, 'message' => $message ]; |
| 88 | } |
| 89 | |
| 90 | function validate_updated_option( $option_name ) { |
| 91 | $option_checkbox = get_option( 'mwai_option_checkbox', false ); |
| 92 | $option_text = get_option( 'mwai_option_text', 'Default' ); |
| 93 | if ( $option_checkbox === '' ) |
| 94 | update_option( 'mwai_option_checkbox', false ); |
| 95 | if ( $option_text === '' ) |
| 96 | update_option( 'mwai_option_text', 'Default' ); |
| 97 | return $this->createValidationResult(); |
| 98 | } |
| 99 | |
| 100 | function setup_query_based_on_params( $query, $params ) { |
| 101 | if ( isset( $params['model'] ) ) { |
| 102 | $query->setModel( $params['model'] ); |
| 103 | } |
| 104 | if ( isset( $params['temperature'] ) ) { |
| 105 | $query->setTemperature( $params['temperature'] ); |
| 106 | } |
| 107 | return $query; |
| 108 | } |
| 109 | |
| 110 | function make_completions( $request ) { |
| 111 | try { |
| 112 | $params = $request->get_json_params(); |
| 113 | $prompt = $params['prompt']; |
| 114 | $query = new Meow_MWAI_Query( $prompt, 2048 ); |
| 115 | $query = $this->setup_query_based_on_params( $query, $params ); |
| 116 | $answer = $this->core->ai->run( $query ); |
| 117 | return new WP_REST_Response([ 'success' => true, 'data' => $answer->result, 'usage' => $answer->usage ], 200 ); |
| 118 | } |
| 119 | catch ( Exception $e ) { |
| 120 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | function make_titles( $request ) { |
| 125 | try { |
| 126 | $params = $request->get_json_params(); |
| 127 | $postId = intval( $params['postId'] ); |
| 128 | $text = $this->core->get_text_from_postId( $postId ); |
| 129 | $prompt = "Create short SEO-friendly title for this text: " . $text; |
| 130 | $query = new Meow_MWAI_Query( $prompt, 40 ); |
| 131 | $query->setMaxResults( 5 ); |
| 132 | $answer = $this->core->ai->run( $query ); |
| 133 | return new WP_REST_Response([ 'success' => true, 'data' => $answer->results ], 200 ); |
| 134 | } |
| 135 | catch ( Exception $e ) { |
| 136 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | function make_excerpts( $request ) { |
| 141 | try { |
| 142 | $params = $request->get_json_params(); |
| 143 | $postId = intval( $params['postId'] ); |
| 144 | $text = $this->core->get_text_from_postId( $postId ); |
| 145 | $prompt = "Create SEO-friendly introduction to this text, 120 to 170 characters max, no URLs: " . $text; |
| 146 | $query = new Meow_MWAI_Query( $prompt, 140 ); |
| 147 | $query->setMaxResults( 5 ); |
| 148 | $answer = $this->core->ai->run( $query ); |
| 149 | return new WP_REST_Response([ 'success' => true, 'data' => $answer->results ], 200 ); |
| 150 | } |
| 151 | catch ( Exception $e ) { |
| 152 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | function update_post_title( $request ) { |
| 157 | try { |
| 158 | $params = $request->get_json_params(); |
| 159 | $title = sanitize_text_field( $params['title'] ); |
| 160 | $postId = intval( $params['postId'] ); |
| 161 | $post = get_post( $postId ); |
| 162 | if ( !$post ) { |
| 163 | throw new Exception( 'There is no post with this ID.' ); |
| 164 | } |
| 165 | $post->post_title = $title; |
| 166 | //$post->post_name = sanitize_title( $title ); |
| 167 | wp_update_post( $post ); |
| 168 | return new WP_REST_Response([ 'success' => true, 'message' => "Title updated." ], 200 ); |
| 169 | } |
| 170 | catch ( Exception $e ) { |
| 171 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | function update_post_excerpt( $request ) { |
| 176 | try { |
| 177 | $params = $request->get_json_params(); |
| 178 | $excerpt = sanitize_text_field( $params['excerpt'] ); |
| 179 | $postId = intval( $params['postId'] ); |
| 180 | $post = get_post( $postId ); |
| 181 | if ( !$post ) { |
| 182 | throw new Exception( 'There is no post with this ID.' ); |
| 183 | } |
| 184 | $post->post_excerpt = $excerpt; |
| 185 | wp_update_post( $post ); |
| 186 | return new WP_REST_Response([ 'success' => true, 'message' => "Excerpt updated." ], 200 ); |
| 187 | } |
| 188 | catch ( Exception $e ) { |
| 189 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | function create_post( $request ) { |
| 194 | try { |
| 195 | $params = $request->get_json_params(); |
| 196 | $title = sanitize_text_field( $params['title'] ); |
| 197 | // Sanitize content that contains line returns and HTML tags |
| 198 | $content = sanitize_textarea_field( $params['content'] ); |
| 199 | $excerpt = sanitize_text_field( $params['excerpt'] ); |
| 200 | //$postType = sanitize_text_field( $params['postType'] ); |
| 201 | $post = new stdClass(); |
| 202 | $post->post_title = $title; |
| 203 | $post->post_excerpt = $excerpt; |
| 204 | $post->post_content = $content; |
| 205 | $post->post_status = 'draft'; |
| 206 | $post->post_type = 'post'; |
| 207 | $post->post_content = $this->core->markdown_to_blocks( $post->post_content ); |
| 208 | $postId = wp_insert_post( $post ); |
| 209 | return new WP_REST_Response([ 'success' => true, 'postId' => $postId ], 200 ); |
| 210 | } |
| 211 | catch ( Exception $e ) { |
| 212 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 213 | } |
| 214 | } |
| 215 | } |
| 216 |