Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 124 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 1 |
| WPCOM_JSON_API_Update_Media_v1_1_Endpoint | |
0.00% |
0 / 59 |
|
0.00% |
0 / 2 |
650 | |
0.00% |
0 / 1 |
| callback | |
0.00% |
0 / 44 |
|
0.00% |
0 / 1 |
240 | |||
| handle_video_meta | |
0.00% |
0 / 15 |
|
0.00% |
0 / 1 |
110 | |||
| 1 | <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName |
| 2 | /** |
| 3 | * Update media item info v1.1 endpoint. |
| 4 | * |
| 5 | * Endpoint: v1.1/sites/%s/media/%d |
| 6 | */ |
| 7 | |
| 8 | if ( ! defined( 'ABSPATH' ) ) { |
| 9 | exit( 0 ); |
| 10 | } |
| 11 | |
| 12 | new WPCOM_JSON_API_Update_Media_v1_1_Endpoint( |
| 13 | array( |
| 14 | 'description' => 'Edit basic information about a media item.', |
| 15 | 'group' => 'media', |
| 16 | 'stat' => 'media:1:POST', |
| 17 | 'min_version' => '1.1', |
| 18 | 'max_version' => '1.1', |
| 19 | 'method' => 'POST', |
| 20 | 'path' => '/sites/%s/media/%d', |
| 21 | 'path_labels' => array( |
| 22 | '$site' => '(int|string) Site ID or domain', |
| 23 | '$media_ID' => '(int) The ID of the media item', |
| 24 | ), |
| 25 | |
| 26 | 'request_format' => array( |
| 27 | 'parent_id' => '(int) ID of the post this media is attached to', |
| 28 | 'title' => '(string) The file name.', |
| 29 | 'caption' => '(string) File caption.', |
| 30 | 'description' => '(HTML) Description of the file.', |
| 31 | 'alt' => '(string) Alternative text for image files.', |
| 32 | 'rating' => '(string) Video only. Video rating.', |
| 33 | 'display_embed' => '(string) Video only. Whether to share or not the video.', |
| 34 | 'allow_download' => '(string) Video only. Whether the video can be downloaded or not.', |
| 35 | 'privacy_setting' => '(int) Video only. The privacy level for the video.', |
| 36 | 'artist' => '(string) Audio Only. Artist metadata for the audio track.', |
| 37 | 'album' => '(string) Audio Only. Album metadata for the audio track.', |
| 38 | ), |
| 39 | |
| 40 | 'response_format' => array( |
| 41 | 'ID' => '(int) The ID of the media item', |
| 42 | 'date' => '(ISO 8601 datetime) The date the media was uploaded', |
| 43 | 'post_ID' => '(int) ID of the post this media is attached to', |
| 44 | 'author_ID' => '(int) ID of the user who uploaded the media', |
| 45 | 'URL' => '(string) URL to the file', |
| 46 | 'guid' => '(string) Unique identifier', |
| 47 | 'file' => '(string) File name', |
| 48 | 'extension' => '(string) File extension', |
| 49 | 'mime_type' => '(string) File mime type', |
| 50 | 'title' => '(string) File name', |
| 51 | 'caption' => '(string) User provided caption of the file', |
| 52 | 'description' => '(string) Description of the file', |
| 53 | 'alt' => '(string) Alternative text for image files.', |
| 54 | 'thumbnails' => '(object) Media item thumbnail URL options', |
| 55 | 'height' => '(int) (Image & video only) Height of the media item', |
| 56 | 'width' => '(int) (Image & video only) Width of the media item', |
| 57 | 'length' => '(int) (Video & audio only) Duration of the media item, in seconds', |
| 58 | 'exif' => '(array) (Image & audio only) Exif (meta) information about the media item', |
| 59 | 'rating' => '(string) (Video only) VideoPress rating of the video', |
| 60 | 'display_embed' => '(string) Video only. Whether to share or not the video.', |
| 61 | 'allow_download' => '(string) Video only. Whether the video can be downloaded or not.', |
| 62 | 'privacy_setting' => '(int) Video only. The privacy level for the video.', |
| 63 | 'videopress_guid' => '(string) (Video only) VideoPress GUID of the video when uploaded on a blog with VideoPress', |
| 64 | 'videopress_processing_done' => '(bool) (Video only) If the video is uploaded on a blog with VideoPress, this will return the status of processing on the video.', |
| 65 | ), |
| 66 | |
| 67 | 'example_request' => 'https://public-api.wordpress.com/rest/v1.1/sites/82974409/media/446', |
| 68 | 'example_request_data' => array( |
| 69 | 'headers' => array( |
| 70 | 'authorization' => 'Bearer YOUR_API_TOKEN', |
| 71 | ), |
| 72 | 'body' => array( |
| 73 | 'title' => 'Updated Title', |
| 74 | ), |
| 75 | ), |
| 76 | ) |
| 77 | ); |
| 78 | |
| 79 | // phpcs:disable PEAR.NamingConventions.ValidClassName.Invalid |
| 80 | /** |
| 81 | * Update media item info v1.1 class. |
| 82 | * |
| 83 | * @phan-constructor-used-for-side-effects |
| 84 | */ |
| 85 | class WPCOM_JSON_API_Update_Media_v1_1_Endpoint extends WPCOM_JSON_API_Endpoint { |
| 86 | /** |
| 87 | * Update media item info API v1.1 callback. |
| 88 | * |
| 89 | * @param string $path API path. |
| 90 | * @param int $blog_id Blog ID. |
| 91 | * @param int $media_id Media ID. |
| 92 | * |
| 93 | * @return object|WP_Error |
| 94 | */ |
| 95 | public function callback( $path = '', $blog_id = 0, $media_id = 0 ) { |
| 96 | $blog_id = $this->api->switch_to_blog_and_validate_user( $this->api->get_blog_id( $blog_id ) ); |
| 97 | if ( is_wp_error( $blog_id ) ) { |
| 98 | return $blog_id; |
| 99 | } |
| 100 | |
| 101 | if ( ! current_user_can( 'upload_files', $media_id ) ) { |
| 102 | return new WP_Error( 'unauthorized', 'User cannot view media', 403 ); |
| 103 | } |
| 104 | |
| 105 | $item = $this->get_media_item_v1_1( $media_id ); |
| 106 | |
| 107 | if ( is_wp_error( $item ) ) { |
| 108 | return new WP_Error( 'unknown_media', 'Unknown Media', 404 ); |
| 109 | } |
| 110 | |
| 111 | $input = $this->input( true ); |
| 112 | $insert = array(); |
| 113 | |
| 114 | if ( isset( $input['title'] ) ) { |
| 115 | $insert['post_title'] = $input['title']; |
| 116 | } |
| 117 | |
| 118 | if ( isset( $input['caption'] ) ) { |
| 119 | $insert['post_excerpt'] = $input['caption']; |
| 120 | } |
| 121 | |
| 122 | if ( isset( $input['description'] ) ) { |
| 123 | $insert['post_content'] = $input['description']; |
| 124 | } |
| 125 | |
| 126 | if ( isset( $input['parent_id'] ) ) { |
| 127 | $insert['post_parent'] = $input['parent_id']; |
| 128 | } |
| 129 | |
| 130 | if ( isset( $input['alt'] ) ) { |
| 131 | $alt = wp_strip_all_tags( $input['alt'], true ); |
| 132 | update_post_meta( $media_id, '_wp_attachment_image_alt', $alt ); |
| 133 | } |
| 134 | |
| 135 | // audio only artist/album info. |
| 136 | if ( str_starts_with( $item->mime_type, 'audio/' ) ) { |
| 137 | $changed = false; |
| 138 | $id3data = wp_get_attachment_metadata( $media_id ); |
| 139 | |
| 140 | if ( ! is_array( $id3data ) ) { |
| 141 | $changed = true; |
| 142 | $id3data = array(); |
| 143 | } |
| 144 | |
| 145 | $id3_keys = array( |
| 146 | 'artist' => __( 'Artist', 'jetpack' ), |
| 147 | 'album' => __( 'Album', 'jetpack' ), |
| 148 | ); |
| 149 | |
| 150 | foreach ( $id3_keys as $key => $label ) { |
| 151 | if ( isset( $input[ $key ] ) ) { |
| 152 | $changed = true; |
| 153 | $id3data[ $key ] = wp_strip_all_tags( $input[ $key ], true ); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | if ( $changed ) { |
| 158 | wp_update_attachment_metadata( $media_id, $id3data ); |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | // Pass the item to the handle_video_meta() that checks if it's a VideoPress item and saves it. |
| 163 | $result = $this->handle_video_meta( $media_id, $input, $item ); |
| 164 | |
| 165 | if ( is_wp_error( $result ) ) { |
| 166 | return $result; |
| 167 | } |
| 168 | |
| 169 | $insert['ID'] = $media_id; |
| 170 | wp_update_post( (object) $insert ); |
| 171 | |
| 172 | $item = $this->get_media_item_v1_1( $media_id ); |
| 173 | return $item; |
| 174 | } |
| 175 | |
| 176 | /** |
| 177 | * Persist the VideoPress metadata if the given item argument is a VideoPress item. |
| 178 | * |
| 179 | * @param string $media_id The ID of the video. |
| 180 | * @param array $input The request input. |
| 181 | * @param stdClass $item The response item. |
| 182 | * |
| 183 | * @return bool|WP_Error |
| 184 | */ |
| 185 | public function handle_video_meta( $media_id, $input, $item ) { |
| 186 | if ( ! class_exists( \Videopress_Attachment_Metadata::class ) ) { |
| 187 | return false; |
| 188 | } |
| 189 | |
| 190 | if ( ! \Videopress_Attachment_Metadata::is_videopress_media( $item ) ) { |
| 191 | return false; |
| 192 | } |
| 193 | |
| 194 | return \Videopress_Attachment_Metadata::persist_metadata( |
| 195 | $media_id, |
| 196 | $item->videopress_guid, |
| 197 | isset( $input['title'] ) ? $input['title'] : null, |
| 198 | isset( $input['caption'] ) ? $input['caption'] : null, |
| 199 | isset( $input['description'] ) ? $input['description'] : null, |
| 200 | isset( $input['rating'] ) ? $input['rating'] : null, |
| 201 | isset( $input['display_embed'] ) ? $input['display_embed'] : null, |
| 202 | isset( $input['allow_download'] ) ? $input['allow_download'] : null, |
| 203 | isset( $input['privacy_setting'] ) ? $input['privacy_setting'] : null |
| 204 | ); |
| 205 | } |
| 206 | } |