mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-26 08:18:18 +00:00
refactor: prune test protocol compat aliases (#3693)
This commit is contained in:
@@ -12,6 +12,22 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
pub(crate) use rustfs_ecstore::api::bucket::utils::{
|
||||
check_bucket_and_object_names, check_list_objs_args, check_valid_bucket_name_strict, is_meta_bucketname,
|
||||
};
|
||||
pub(crate) fn check_bucket_and_object_names(bucket: &str, object: &str) -> rustfs_ecstore::api::error::Result<()> {
|
||||
rustfs_ecstore::api::bucket::utils::check_bucket_and_object_names(bucket, object)
|
||||
}
|
||||
|
||||
pub(crate) fn check_list_objs_args(
|
||||
bucket: &str,
|
||||
prefix: &str,
|
||||
marker: &Option<String>,
|
||||
) -> rustfs_ecstore::api::error::Result<()> {
|
||||
rustfs_ecstore::api::bucket::utils::check_list_objs_args(bucket, prefix, marker)
|
||||
}
|
||||
|
||||
pub(crate) fn check_valid_bucket_name_strict(bucket_name: &str) -> rustfs_ecstore::api::error::Result<()> {
|
||||
rustfs_ecstore::api::bucket::utils::check_valid_bucket_name_strict(bucket_name)
|
||||
}
|
||||
|
||||
pub(crate) fn is_meta_bucketname(name: &str) -> bool {
|
||||
rustfs_ecstore::api::bucket::utils::is_meta_bucketname(name)
|
||||
}
|
||||
|
||||
@@ -12,6 +12,17 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
pub(crate) use rustfs_ecstore::api::bucket::utils::{
|
||||
check_object_name_for_length_and_slash, has_bad_path_component, is_valid_object_prefix,
|
||||
};
|
||||
pub(crate) fn check_object_name_for_length_and_slash(
|
||||
bucket: &str,
|
||||
object: &str,
|
||||
) -> rustfs_ecstore::api::error::Result<()> {
|
||||
rustfs_ecstore::api::bucket::utils::check_object_name_for_length_and_slash(bucket, object)
|
||||
}
|
||||
|
||||
pub(crate) fn has_bad_path_component(path: &str) -> bool {
|
||||
rustfs_ecstore::api::bucket::utils::has_bad_path_component(path)
|
||||
}
|
||||
|
||||
pub(crate) fn is_valid_object_prefix(object: &str) -> bool {
|
||||
rustfs_ecstore::api::bucket::utils::is_valid_object_prefix(object)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user