Make WordPress Core

Ticket #35658: 35658.9.diff

File 35658.9.diff, 14.1 KB (added by helen, 8 years ago)
  • src/wp-includes/capabilities.php

     
    243243                        break;
    244244                }
    245245
     246                $post_type = get_post_type( $post );
     247
    246248                $caps = map_meta_cap( 'edit_post', $user_id, $post->ID );
    247249
    248250                $meta_key = isset( $args[ 1 ] ) ? $args[ 1 ] : false;
    249251
    250                 if ( $meta_key && has_filter( "auth_post_meta_{$meta_key}" ) ) {
     252                if ( $meta_key && ( has_filter( "auth_post_meta_{$meta_key}" ) || has_filter( "auth_post_{$post_type}_meta_{$meta_key}" ) ) ) {
    251253                        /**
    252254                         * Filters whether the user is allowed to add post meta to a post.
    253255                         *
     
    264266                         * @param array  $caps     User capabilities.
    265267                         */
    266268                        $allowed = apply_filters( "auth_post_meta_{$meta_key}", false, $meta_key, $post->ID, $user_id, $cap, $caps );
     269
     270                        /**
     271                         * Filters whether the user is allowed to add post meta to a post of a given type.
     272                         *
     273                         * The dynamic portions of the hook name, `$meta_key` and `$post_type`,
     274                         * refers to the meta key passed to map_meta_cap() and the post type, respectively.
     275                         *
     276                         * @since 4.6.0
     277                         *
     278                         * @param bool   $allowed  Whether the user can add the post meta. Default false.
     279                         * @param string $meta_key The meta key.
     280                         * @param int    $post_id  Post ID.
     281                         * @param int    $user_id  User ID.
     282                         * @param string $cap      Capability name.
     283                         * @param array  $caps     User capabilities.
     284                         */
     285                        $allowed = apply_filters( "auth_post_{$post_type}_meta_{$meta_key}", false, $meta_key, $post->ID, $user_id, $cap, $caps );
     286
    267287                        if ( ! $allowed )
    268288                                $caps[] = $cap;
    269289                } elseif ( $meta_key && is_protected_meta( $meta_key, 'post' ) ) {
  • src/wp-includes/meta.php

     
    936936 * Sanitize meta value.
    937937 *
    938938 * @since 3.1.3
     939 * @since 4.6.0 Added the `$object_subtype` parameter.
    939940 *
    940  * @param string $meta_key   Meta key
    941  * @param mixed  $meta_value Meta value to sanitize
    942  * @param string $meta_type  Type of meta
    943  * @return mixed Sanitized $meta_value
     941 * @param string $meta_key       Meta key.
     942 * @param mixed  $meta_value     Meta value to sanitize.
     943 * @param string $object_type    Type of object the meta is registered to.
     944 * @param string $object_subtype Optional. Subtype of object. Will inherit the object type by default.
     945 *
     946 * @return mixed Sanitized $meta_value.
    944947 */
    945 function sanitize_meta( $meta_key, $meta_value, $meta_type ) {
     948function sanitize_meta( $meta_key, $meta_value, $object_type, $object_subtype = '' ) {
     949        if ( empty( $object_subtype ) ) {
     950                $object_subtype = $object_type;
     951        }
    946952
    947953        /**
    948954         * Filters the sanitization of a specific meta key of a specific meta type.
     
    949955         *
    950956         * The dynamic portions of the hook name, `$meta_type`, and `$meta_key`,
    951957         * refer to the metadata object type (comment, post, or user) and the meta
    952          * key value,
    953          * respectively.
     958         * key value, respectively.
    954959         *
    955960         * @since 3.3.0
     961         * @since 4.6.0 Added the `$object_subtype` parameter.
    956962         *
    957          * @param mixed  $meta_value Meta value to sanitize.
    958          * @param string $meta_key   Meta key.
    959          * @param string $meta_type  Meta type.
     963         * @param mixed  $meta_value      Meta value to sanitize.
     964         * @param string $meta_key        Meta key.
     965         * @param string $object_type     Object type.
     966         * @param string $object_subtype  Object subtype.
    960967         */
    961         return apply_filters( "sanitize_{$meta_type}_meta_{$meta_key}", $meta_value, $meta_key, $meta_type );
     968        $meta_value = apply_filters( "sanitize_{$object_type}_meta_{$meta_key}", $meta_value, $meta_key, $object_type, $object_subtype );
     969
     970        /**
     971         * Filters the sanitization of a specific meta key of a specific meta type and subtype.
     972         *
     973         * The dynamic portions of the hook name, `$meta_type`, `$meta_subtype`,
     974         * and `$meta_key`, refer to the metadata object type (comment, post, or user)
     975         * the object subtype, and the meta key value, respectively.
     976         *
     977         * @since 4.6.0
     978         *
     979         * @param mixed  $meta_value      Meta value to sanitize.
     980         * @param string $meta_key        Meta key.
     981         * @param string $object_type     Object type.
     982         * @param string $object_subtype  Object subtype.
     983         */
     984        return apply_filters( "sanitize_{$object_type}_{$object_subtype}_meta_{$meta_key}", $meta_value, $meta_key, $object_type, $object_subtype );
    962985}
    963986
    964987/**
    965  * Register meta key
     988 * Registers a meta key.
    966989 *
    967990 * @since 3.3.0
     991 * @since 4.6.0 Modified to support an array of data to attach to registered meta keys. Previous arguments for
     992 *              `$sanitize_callback` and `$auth_callback` have been folded into this array.
    968993 *
    969  * @param string       $meta_type         Type of meta
    970  * @param string       $meta_key          Meta key
    971  * @param string|array $sanitize_callback A function or method to call when sanitizing the value of $meta_key.
    972  * @param string|array $auth_callback     Optional. A function or method to call when performing edit_post_meta, add_post_meta, and delete_post_meta capability checks.
     994 * @param string $object_type    Type of object this meta is registered to.
     995 * @param string $meta_key       Meta key to register.
     996 * @param array  $args {
     997 *     Data used to describe the meta key when registered.
     998 *
     999 *     @type string   $sanitize_callback A function or method to call when sanitizing `$meta_key` data.
     1000 *     @type string   $auth_callback     Optional. A function or method to call when performing edit_post_meta, add_post_meta, and delete_post_meta capability checks.
     1001 *     @type string   $object_subtype    If the object type is "post", the post type.
     1002 *     @type string   $type              The type of data associated with this meta key.
     1003 *     @type string   $description       A description of the data attached to this meta key.
     1004 *     @type bool     $show_in_rest      Whether data associated with this meta key can be considered public.
     1005 *
     1006 * @return bool True if the meta key was successfully registered, false if not.
     1007 * }
    9731008 */
    974 function register_meta( $meta_type, $meta_key, $sanitize_callback, $auth_callback = null ) {
    975         if ( is_callable( $sanitize_callback ) )
    976                 add_filter( "sanitize_{$meta_type}_meta_{$meta_key}", $sanitize_callback, 10, 3 );
     1009function register_meta( $object_type, $meta_key, $args ) {
     1010        global $wp_meta_keys;
    9771011
    978         if ( empty( $auth_callback ) ) {
    979                 if ( is_protected_meta( $meta_key, $meta_type ) )
    980                         $auth_callback = '__return_false';
    981                 else
    982                         $auth_callback = '__return_true';
     1012        if ( ! is_array( $wp_meta_keys ) ) {
     1013                $wp_meta_keys = array();
    9831014        }
    9841015
    985         if ( is_callable( $auth_callback ) )
    986                 add_filter( "auth_{$meta_type}_meta_{$meta_key}", $auth_callback, 10, 6 );
     1016        if ( ! in_array( $object_type, array( 'post', 'comment', 'user', 'term' ) ) ) {
     1017                _doing_it_wrong( __FUNCTION__, sprintf( __( 'Invalid object type: %s.' ), $object_type ), '4.6.0' );
     1018        }
     1019
     1020        $defaults = array(
     1021                'sanitize_callback' => null,
     1022                'auth_callback' => null,
     1023                'object_subtype' => '',
     1024                'type' => 'string',
     1025                'description' => '',
     1026                'show_in_rest' => false,
     1027        );
     1028
     1029        $passed_args = array_slice( func_get_args(), 2 );
     1030
     1031        // There used to be individual args for sanitize and auth callbacks     
     1032        $has_old_sanitize_cb = $has_old_auth_cb = false;
     1033
     1034        if ( is_callable( $passed_args[0] ) ) {
     1035                $args->sanitize_callback = $passed_args[0];
     1036                $has_old_sanitize_cb = true;
     1037        } else {
     1038                $args = $passed_args[0];
     1039        }
     1040
     1041        if ( isset( $passed_args[1] ) && is_callable( $passed_args[1] ) ) {
     1042                $args->auth_callback = $passed_args[1];
     1043                $has_old_auth_cb = true;
     1044        }
     1045
     1046        $args = wp_parse_args( $args, $defaults );
     1047
     1048        // PROOF OF CONCEPT ONLY
     1049        // This should be a function like like _wp_register_meta_whitelist() or some such
     1050        // And in default filters
     1051        // Also you could do the subtype enforcement in here too I guess
     1052        add_filter( 'register_meta_args', function( $args, $defaults ) {
     1053                $whitelist = array_keys( $defaults );
     1054
     1055                // In an anonymous function world, this would be way better as an array_filter
     1056                foreach ( $args as $key => $value ) {
     1057                        if ( ! in_array( $key, $whitelist ) ) {
     1058                                unset( $args[ $key ] );
     1059                        }
     1060                }
     1061
     1062                return $args;
     1063        }, 10, 2 )
     1064
     1065        /**
     1066         * Need a filter docblock here, also how late should this go?
     1067         * And what orders should the context args be in? Most useful first, prob.
     1068         */
     1069        apply_filters( 'register_meta_args', $args, $defaults, $meta_key, $object_type );
     1070
     1071        // Object subtype is required if using the args style of registration
     1072        if ( ! $has_old_sanitize_cb && empty( $args['object_subtype'] ) ) {
     1073                return false;
     1074        }
     1075
     1076        $wp_meta_keys[ $object_type ][ $object_subtype ][ $meta_key ] = $args;
     1077
     1078        // Back-compat: old sanitize and auth callbacks applied to all of an object type
     1079        if ( $has_old_sanitize_cb && is_callable( $args->sanitize_callback ) ) {
     1080                add_filter( "sanitize_{$object_type}_meta_{$meta_key}", $args->sanitize_callback, 10, 3 );
     1081        } elseif ( is_callable( $args->sanitize_callback ) ) {
     1082                add_filter( "sanitize_{$object_type}_{$object_subtype}_meta_{$meta_key}", $args->sanitize_callback, 10, 3 );
     1083        }
     1084
     1085        // If `auth_callback` is not provided, fall back to `is_protected_meta()`.
     1086        if ( empty( $args->auth_callback ) ) {
     1087                if ( is_protected_meta( $meta_key, $object_type ) ) {
     1088                        $args->auth_callback = '__return_false';
     1089                } else {
     1090                        $args->auth_callback = '__return_true';
     1091                }
     1092        }
     1093
     1094        if ( $has_old_auth_cb && is_callable( $args->auth_callback ) ) {
     1095                add_filter( "auth_{$object_type}_meta_{$meta_key}", $args->auth_callback, 10, 3 );
     1096        } elseif ( is_callable( $args->auth_callback ) ) {
     1097                add_filter( "auth_{$object_type}_{$object_subtype}_meta_{$meta_key}", $args->auth_callback, 10, 3 );
     1098        }
     1099
     1100        return true;
    9871101}
     1102
     1103/**
     1104 * Checks if a meta key is registered.
     1105 *
     1106 * @since 4.6.0
     1107 *
     1108 * @param string $object_type
     1109 * @param string $meta_key
     1110 * @param string $object_subtype
     1111 *
     1112 * @return bool True if the meta key is registered to the object type and subtype. False if not.
     1113 */
     1114function registered_meta_key_exists( $object_type, $meta_key, $object_subtype = '' ) {
     1115        global $wp_meta_keys;
     1116
     1117        if ( ! is_array( $wp_meta_keys ) ) {
     1118                return false;
     1119        }
     1120
     1121        // Only specific core object types are supported.
     1122        if ( ! in_array( $object_type, array( 'post', 'comment', 'user', 'term' ) ) ) {
     1123                return false;
     1124        }
     1125
     1126        // Posts are the only object type with support for object sub types.
     1127        if ( empty( $object_subtype ) || 'post' !== $object_type ) {
     1128                $object_subtype = $object_type;
     1129        }
     1130
     1131        if ( ! isset( $wp_meta_keys[ $object_type] ) ) {
     1132                return false;
     1133        }
     1134
     1135        if ( ! isset( $wp_meta_keys[ $object_type ][ $object_subtype ] ) ) {
     1136                return false;
     1137        }
     1138
     1139        if ( isset( $wp_meta_keys[ $object_type][ $object_subtype][ $meta_key ] ) ) {
     1140                return true;
     1141        }
     1142
     1143        return false;
     1144}
     1145
     1146/**
     1147 * Unregisters a meta key from the list of registered keys.
     1148 *
     1149 * @since 4.6.0
     1150 *
     1151 * @param string $object_type    The type of object.
     1152 * @param string $meta_key       The meta key.
     1153 * @param string $object_subtype Optional. The subtype of the object type.
     1154 *
     1155 * @return bool|WP_Error True if successful. WP_Error if the meta key is invalid.
     1156 */
     1157function unregister_meta_key( $object_type, $meta_key, $object_subtype = '' ) {
     1158        global $wp_meta_keys;
     1159
     1160        if ( ! registered_meta_key_exists( $object_type, $meta_key, $object_subtype ) ) {
     1161                return new WP_Error( 'invalid_meta_key', __( 'Invalid meta key' ) );
     1162        }
     1163
     1164        unset( $wp_meta_keys[ $object_type ][ $object_subtype ][ $meta_key ] );
     1165
     1166        return true;
     1167}
     1168
     1169/**
     1170 * Retrieves a list of registered meta keys for an object type and subtype.
     1171 *
     1172 * @since 4.6.0
     1173 *
     1174 * @param string $object_type The type of object. Post, comment, user, term.
     1175 * @param string $object_subtype A subtype of the object.
     1176 *
     1177 * @return array List of registered meta keys.
     1178 */
     1179function get_registered_meta_keys( $object_type = 'post', $object_subtype = '' ) {
     1180        global $wp_meta_keys;
     1181
     1182        if ( ! isset( $wp_meta_keys[ $object_type ] ) ) {
     1183                return array();
     1184        }
     1185
     1186        if ( empty( $object_subtype ) || 'post' !== $object_type ) {
     1187                $object_subtype = $object_type;
     1188        }
     1189
     1190        if ( ! isset( $wp_meta_keys[ $object_type ][ $object_subtype ] ) ) {
     1191                return array();
     1192        }
     1193
     1194        return $wp_meta_keys[ $object_type ][ $object_subtype ];
     1195}
     1196
     1197/**
     1198 * Retrieves registered metadata for a specified object.
     1199 *
     1200 * @since 4.6.0
     1201 *
     1202 * @param string $object_type    Type of object to request metadata for. (e.g. comment, post, term, user)
     1203 * @param int    $object_id      ID of the object the metadata is for.
     1204 * @param string $meta_key       Optional. Registered metadata key. If not specified, retrieve all registered
     1205 *                               metadata for the specified object.
     1206 * @param string $object_subtype The subtype of the object's type to request metadata for. (e.g. custom post type)
     1207 *
     1208 * @return mixed|WP_Error
     1209 */
     1210function get_registered_metadata( $object_type = 'post', $object_id, $meta_key = '', $object_subtype = '' ) {
     1211        global $wp_meta_keys;
     1212
     1213        if ( ! is_array( $wp_meta_keys ) ) {
     1214                return new WP_Error( 'invalid_meta_key', __( 'Invalid meta key. Not registered.' ) );
     1215        }
     1216
     1217        if ( ! in_array( $object_type, array( 'post', 'comment', 'user', 'term' ) ) ) {
     1218                return new WP_Error( 'invalid_meta_key', __( 'Invalid meta key. Not a core object type.' ) );
     1219        }
     1220
     1221        if ( empty( $object_subtype ) || 'post' !== $object_type ) {
     1222                $object_subtype = $object_type;
     1223        } elseif ( 'post' === $object_type ) {
     1224                $object_subtype = get_post_type( $object_id );
     1225        }
     1226
     1227        if( ! empty( $meta_key ) ) {
     1228                if ( ! registered_meta_key_exists( $object_type, $meta_key, $object_subtype ) ) {
     1229                        return new WP_Error( 'invalid_meta_key', __( 'Invalid meta key. Not registered.' ) );
     1230                }
     1231                $meta_keys = get_registered_meta_keys( $object_type, $object_subtype );
     1232                $meta_key_data = $meta_keys[ $object_type ][ $object_subtype ][ $meta_key ];
     1233
     1234                $data = get_metadata( $object_type, $object_id, $meta_key, $meta_key_data->single );
     1235
     1236                return $data;
     1237        }
     1238
     1239        $data = get_metadata( $object_type, $object_id, $meta_key );
     1240
     1241        $meta_keys = get_registered_meta_keys( $object_type, $object_subtype );
     1242    $registered_data = array();
     1243
     1244        foreach( $meta_keys as $k => $v ) {
     1245                if ( isset( $data[ $k ] ) ) {
     1246                        $registered_data[ $k ] = $data[ $k ];
     1247                }
     1248        }
     1249
     1250        return $registered_data;
     1251}