Changeset 43399
- Timestamp:
- 07/05/2018 03:02:04 PM (7 years ago)
- Location:
- branches/4.3/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.3/src/wp-includes/functions.php
r42291 r43399 1591 1591 * Normalize a filesystem path. 1592 1592 * 1593 * Replaces backslashes with forward slashes for Windows systems, and ensures 1594 * no duplicate slashes exist. 1593 * On windows systems, replaces backslashes with forward slashes 1594 * and forces upper-case drive letters. 1595 * Allows for two leading slashes for Windows network shares, but 1596 * ensures that all other duplicate slashes are reduced to a single. 1595 1597 * 1596 1598 * @since 3.9.0 1599 * @since 4.4.0 Ensures upper-case drive letters on Windows systems. 1600 * @since 4.5.0 Allows for Windows network shares. 1601 * @since 4.9.7 Allows for PHP file wrappers. 1597 1602 * 1598 1603 * @param string $path Path to normalize. … … 1600 1605 */ 1601 1606 function wp_normalize_path( $path ) { 1607 $wrapper = ''; 1608 if ( wp_is_stream( $path ) ) { 1609 list( $wrapper, $path ) = explode( '://', $path, 2 ); 1610 $wrapper .= '://'; 1611 } 1612 1613 // Standardise all paths to use / 1602 1614 $path = str_replace( '\\', '/', $path ); 1603 $path = preg_replace( '|/+|','/', $path ); 1604 return $path; 1615 1616 // Replace multiple slashes down to a singular, allowing for network shares having two slashes. 1617 $path = preg_replace( '|(?<=.)/+|', '/', $path ); 1618 1619 // Windows paths should uppercase the drive letter 1620 if ( ':' === substr( $path, 1, 1 ) ) { 1621 $path = ucfirst( $path ); 1622 } 1623 1624 return $wrapper . $path; 1605 1625 } 1606 1626 … … 5010 5030 5011 5031 /** 5032 * Deletes a file if its path is within the given directory. 5033 * 5034 * @since 4.9.7 5035 * 5036 * @param string $file Absolute path to the file to delete. 5037 * @param string $directory Absolute path to a directory. 5038 * @return bool True on success, false on failure. 5039 */ 5040 function wp_delete_file_from_directory( $file, $directory ) { 5041 $real_file = realpath( wp_normalize_path( $file ) ); 5042 $real_directory = realpath( wp_normalize_path( $directory ) ); 5043 5044 if ( false === $real_file || false === $real_directory || strpos( wp_normalize_path( $real_file ), trailingslashit( wp_normalize_path( $real_directory ) ) ) !== 0 ) { 5045 return false; 5046 } 5047 5048 wp_delete_file( $file ); 5049 5050 return true; 5051 } 5052 5053 /** 5012 5054 * Outputs a small JS snippet on preview tabs/windows to remove `window.name` on unload. 5013 5055 * -
branches/4.3/src/wp-includes/post.php
r42062 r43399 4932 4932 do_action( 'deleted_post', $post_id ); 4933 4933 4934 wp_delete_attachment_files( $post_id, $meta, $backup_sizes, $file ); 4935 4936 clean_post_cache( $post ); 4937 4938 return $post; 4939 } 4940 4941 /** 4942 * Deletes all files that belong to the given attachment. 4943 * 4944 * @since 4.9.7 4945 * 4946 * @param int $post_id Attachment ID. 4947 * @param array $meta The attachment's meta data. 4948 * @param array $backup_sizes The meta data for the attachment's backup images. 4949 * @param string $file Absolute path to the attachment's file. 4950 * @return bool True on success, false on failure. 4951 */ 4952 function wp_delete_attachment_files( $post_id, $meta, $backup_sizes, $file ) { 4953 global $wpdb; 4954 4934 4955 $uploadpath = wp_upload_dir(); 4956 $deleted = true; 4935 4957 4936 4958 if ( ! empty($meta['thumb']) ) { 4937 4959 // Don't delete the thumb if another attachment uses it. 4938 4960 if (! $wpdb->get_row( $wpdb->prepare( "SELECT meta_id FROM $wpdb->postmeta WHERE meta_key = '_wp_attachment_metadata' AND meta_value LIKE %s AND post_id <> %d", '%' . $wpdb->esc_like( $meta['thumb'] ) . '%', $post_id)) ) { 4939 $thumbfile = str_replace(basename($file), $meta['thumb'], $file); 4940 /** This filter is documented in wp-includes/functions.php */ 4941 $thumbfile = apply_filters( 'wp_delete_file', $thumbfile ); 4942 @ unlink( path_join($uploadpath['basedir'], $thumbfile) ); 4961 $thumbfile = str_replace( basename( $file ), $meta['thumb'], $file ); 4962 if ( ! empty( $thumbfile ) ) { 4963 $thumbfile = path_join( $uploadpath['basedir'], $thumbfile ); 4964 $thumbdir = path_join( $uploadpath['basedir'], dirname( $file ) ); 4965 4966 if ( ! wp_delete_file_from_directory( $thumbfile, $thumbdir ) ) { 4967 $deleted = false; 4968 } 4969 } 4943 4970 } 4944 4971 } … … 4946 4973 // Remove intermediate and backup images if there are any. 4947 4974 if ( isset( $meta['sizes'] ) && is_array( $meta['sizes'] ) ) { 4975 $intermediate_dir = path_join( $uploadpath['basedir'], dirname( $file ) ); 4948 4976 foreach ( $meta['sizes'] as $size => $sizeinfo ) { 4949 4977 $intermediate_file = str_replace( basename( $file ), $sizeinfo['file'], $file ); 4950 /** This filter is documented in wp-includes/functions.php */ 4951 $intermediate_file = apply_filters( 'wp_delete_file', $intermediate_file ); 4952 @ unlink( path_join( $uploadpath['basedir'], $intermediate_file ) ); 4978 if ( ! empty( $intermediate_file ) ) { 4979 $intermediate_file = path_join( $uploadpath['basedir'], $intermediate_file ); 4980 4981 if ( ! wp_delete_file_from_directory( $intermediate_file, $intermediate_dir ) ) { 4982 $deleted = false; 4983 } 4984 } 4953 4985 } 4954 4986 } 4955 4987 4956 4988 if ( is_array($backup_sizes) ) { 4989 $del_dir = path_join( $uploadpath['basedir'], dirname( $meta['file'] ) ); 4957 4990 foreach ( $backup_sizes as $size ) { 4958 $del_file = path_join( dirname($meta['file']), $size['file'] ); 4959 /** This filter is documented in wp-includes/functions.php */ 4960 $del_file = apply_filters( 'wp_delete_file', $del_file ); 4961 @ unlink( path_join($uploadpath['basedir'], $del_file) ); 4962 } 4963 } 4964 4965 wp_delete_file( $file ); 4966 4967 clean_post_cache( $post ); 4968 4969 return $post; 4991 $del_file = path_join( dirname( $meta['file'] ), $size['file'] ); 4992 if ( ! empty( $del_file ) ) { 4993 $del_file = path_join( $uploadpath['basedir'], $del_file ); 4994 4995 if ( ! wp_delete_file_from_directory( $del_file, $del_dir ) ) { 4996 $deleted = false; 4997 } 4998 } 4999 } 5000 } 5001 5002 if ( ! wp_delete_file_from_directory( $file, $uploadpath['basedir'] ) ) { 5003 $deleted = false; 5004 } 5005 5006 return $deleted; 4970 5007 } 4971 5008
Note: See TracChangeset
for help on using the changeset viewer.