assist-feedback.php
10 months ago
assistant.php
10 months ago
base.php
10 months ago
dropped-file.php
11 months ago
edit-image.php
1 year ago
embed.php
10 months ago
feedback.php
10 months ago
function.php
1 year ago
image.php
10 months ago
parameter.php
1 year ago
text.php
10 months ago
transcribe.php
11 months ago
dropped-file.php
138 lines
| 1 | <?php |
| 2 | |
| 3 | class Meow_MWAI_Query_DroppedFile { |
| 4 | private $data; |
| 5 | private $rawData; |
| 6 | private $type; // Defines what the data is about ('refId', 'url', or 'data') |
| 7 | private $purpose; // Can be 'assistant', 'vision' or 'files' => this needs to be checked |
| 8 | private $mimeType; // 'image/jpeg' or any other mime type |
| 9 | private $fileId; // The ID of the file in the database |
| 10 | public $originalPath; // The original file path (for files loaded from disk) |
| 11 | |
| 12 | public static function from_url( $url, $purpose, $mimeType = null, $fileId = null ) { |
| 13 | if ( empty( $mimeType ) ) { |
| 14 | $mimeType = Meow_MWAI_Core::get_mime_type( $url ); |
| 15 | } |
| 16 | return new Meow_MWAI_Query_DroppedFile( $url, 'url', $purpose, $mimeType, $fileId ); |
| 17 | } |
| 18 | |
| 19 | public static function from_data( $data, $purpose, $mimeType = null ) { |
| 20 | return new Meow_MWAI_Query_DroppedFile( $data, 'data', $purpose, $mimeType ); |
| 21 | } |
| 22 | |
| 23 | public static function from_path( $path, $purpose, $mimeType = null ) { |
| 24 | $data = file_get_contents( $path ); |
| 25 | if ( empty( $mimeType ) ) { |
| 26 | $mimeType = Meow_MWAI_Core::get_mime_type( $path ); |
| 27 | } |
| 28 | $droppedFile = new Meow_MWAI_Query_DroppedFile( $data, 'data', $purpose, $mimeType ); |
| 29 | // Store the original path for filename extraction |
| 30 | $droppedFile->originalPath = $path; |
| 31 | return $droppedFile; |
| 32 | } |
| 33 | |
| 34 | public function __construct( $data, $type, $purpose, $mimeType = null, $fileId = null ) { |
| 35 | if ( !empty( $type ) && $type !== 'refId' && $type !== 'url' && $type !== 'data' ) { |
| 36 | throw new Exception( 'AI Engine: The file type can only be refId, url or data.' ); |
| 37 | } |
| 38 | if ( !empty( $purpose ) && $purpose !== 'assistant-in' && $purpose !== 'vision' && $purpose !== 'files' ) { |
| 39 | throw new Exception( 'AI Engine: The file purpose can only be assistant, vision or files.' ); |
| 40 | } |
| 41 | $this->data = $data; |
| 42 | $this->type = $type; |
| 43 | $this->purpose = $purpose; |
| 44 | $this->mimeType = $mimeType; |
| 45 | $this->fileId = $fileId; |
| 46 | } |
| 47 | |
| 48 | public function get_url() { |
| 49 | if ( $this->type === 'url' ) { |
| 50 | return $this->data; |
| 51 | } |
| 52 | throw new Exception( 'AI Engine: The file is not an URL.' ); |
| 53 | } |
| 54 | |
| 55 | private function get_raw_data() { |
| 56 | if ( !empty( $this->rawData ) ) { |
| 57 | return $this->rawData; |
| 58 | } |
| 59 | if ( $this->type === 'url' ) { |
| 60 | // Validate URL scheme to prevent SSRF attacks |
| 61 | $parts = wp_parse_url( $this->data ); |
| 62 | if ( ! isset( $parts['scheme'] ) || ! in_array( $parts['scheme'], [ 'http', 'https' ], true ) ) { |
| 63 | throw new Exception( 'Invalid URL scheme; only HTTP/HTTPS allowed.' ); |
| 64 | } |
| 65 | |
| 66 | $this->rawData = file_get_contents( $this->data ); |
| 67 | return $this->rawData; |
| 68 | } |
| 69 | else if ( $this->type === 'data' ) { |
| 70 | return $this->data; |
| 71 | } |
| 72 | throw new Exception( 'AI Engine: The file is not data or an URL.' ); |
| 73 | } |
| 74 | |
| 75 | public function get_data() { |
| 76 | if ( $this->type === 'url' ) { |
| 77 | return $this->get_raw_data(); |
| 78 | } |
| 79 | else if ( $this->type === 'data' ) { |
| 80 | return $this->data; |
| 81 | } |
| 82 | throw new Exception( 'AI Engine: The file is not data or an URL.' ); |
| 83 | } |
| 84 | |
| 85 | public function get_base64() { |
| 86 | $data = $this->get_raw_data(); |
| 87 | return base64_encode( $data ); |
| 88 | } |
| 89 | |
| 90 | // Will return something like "data:image/jpeg;base64,{data}" |
| 91 | public function get_inline_base64_url() { |
| 92 | $b64 = $this->get_base64(); |
| 93 | return "data:{$this->mimeType};base64,{$b64}"; |
| 94 | } |
| 95 | |
| 96 | public function get_type() { |
| 97 | return $this->type; |
| 98 | } |
| 99 | |
| 100 | public function get_purpose() { |
| 101 | return $this->purpose; |
| 102 | } |
| 103 | |
| 104 | public function get_mimeType() { |
| 105 | return $this->mimeType; |
| 106 | } |
| 107 | |
| 108 | public function is_image() { |
| 109 | return strpos( $this->mimeType, 'image' ) !== false; |
| 110 | } |
| 111 | |
| 112 | public function get_fileId() { |
| 113 | return $this->fileId; |
| 114 | } |
| 115 | |
| 116 | // Return a filename for this file. If the file is an URL, use the basename of |
| 117 | // its path. If the file is raw data, generate a generic name based on the mime type. |
| 118 | public function get_filename() { |
| 119 | // If we have an original path (from from_path), use its basename |
| 120 | if ( !empty( $this->originalPath ) ) { |
| 121 | return basename( $this->originalPath ); |
| 122 | } |
| 123 | if ( $this->type === 'url' ) { |
| 124 | $path = parse_url( $this->data, PHP_URL_PATH ); |
| 125 | return basename( $path ); |
| 126 | } |
| 127 | if ( $this->type === 'data' ) { |
| 128 | if ( !empty( $this->mimeType ) ) { |
| 129 | $parts = explode( '/', $this->mimeType ); |
| 130 | $ext = end( $parts ); |
| 131 | return 'file.' . $ext; |
| 132 | } |
| 133 | return 'file.bin'; |
| 134 | } |
| 135 | return 'file'; |
| 136 | } |
| 137 | } |
| 138 |