mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-03 03:47:42 +00:00
76124423a4
* fix: tighten list handling and s3 test support * chore: tidy imports and metric updates * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Signed-off-by: Zhengchao An <anzhengchao@gmail.com> * fix: address s3tests review follow-ups --------- Signed-off-by: Zhengchao An <anzhengchao@gmail.com> Co-authored-by: Zhengchao An <anzhengchao@gmail.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
69 lines
2.5 KiB
Rust
69 lines
2.5 KiB
Rust
// Copyright 2024 RustFS Team
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
//! Serde helpers for expiration timestamp: serialize as RFC3339 (MinIO-compatible),
|
|
//! deserialize from RFC3339 or legacy RustFS human-readable format.
|
|
|
|
use time::OffsetDateTime;
|
|
use time::format_description;
|
|
use time::format_description::well_known::Rfc3339;
|
|
|
|
static LEGACY_FORMAT: std::sync::OnceLock<format_description::OwnedFormatItem> = std::sync::OnceLock::new();
|
|
|
|
fn legacy_format() -> &'static format_description::OwnedFormatItem {
|
|
LEGACY_FORMAT.get_or_init(|| {
|
|
format_description::parse_owned::<2>(
|
|
"[year]-[month]-[day] [hour]:[minute]:[second].[subsecond] [offset_hour sign:mandatory]:[offset_minute]:[offset_second]",
|
|
)
|
|
.expect("legacy format description is valid")
|
|
});
|
|
LEGACY_FORMAT.get().expect("initialized above")
|
|
}
|
|
|
|
fn parse_rfc3339_or_legacy(s: &str) -> Result<OffsetDateTime, time::Error> {
|
|
OffsetDateTime::parse(s, &Rfc3339).or_else(|_| OffsetDateTime::parse(s, legacy_format()).map_err(Into::into))
|
|
}
|
|
|
|
/// Option<OffsetDateTime>: serialize as RFC3339; deserialize from RFC3339 or legacy.
|
|
pub mod option {
|
|
use serde::{Deserialize, Deserializer, Serializer};
|
|
use time::OffsetDateTime;
|
|
|
|
use super::{Rfc3339, parse_rfc3339_or_legacy};
|
|
|
|
pub fn serialize<S>(opt: &Option<OffsetDateTime>, serializer: S) -> Result<S::Ok, S::Error>
|
|
where
|
|
S: Serializer,
|
|
{
|
|
match opt {
|
|
Some(dt) => {
|
|
let s = dt.format(&Rfc3339).map_err(serde::ser::Error::custom)?;
|
|
serializer.serialize_some(&s)
|
|
}
|
|
None => serializer.serialize_none(),
|
|
}
|
|
}
|
|
|
|
pub fn deserialize<'de, D>(deserializer: D) -> Result<Option<OffsetDateTime>, D::Error>
|
|
where
|
|
D: Deserializer<'de>,
|
|
{
|
|
let opt: Option<&str> = Option::deserialize(deserializer)?;
|
|
match opt {
|
|
None => Ok(None),
|
|
Some(s) => parse_rfc3339_or_legacy(s).map(Some).map_err(serde::de::Error::custom),
|
|
}
|
|
}
|
|
}
|