24 lines
752 B
Swift
24 lines
752 B
Swift
//
|
|
// Copyright 2025 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
struct BackupCDNReadCredential: Codable {
|
|
static let lifetime: TimeInterval = .day
|
|
|
|
let createDate: Date
|
|
let headers: HttpHeaders
|
|
|
|
func isExpired(now: Date) -> Bool {
|
|
return now > createDate.addingTimeInterval(Self.lifetime)
|
|
}
|
|
|
|
init(from decoder: Decoder) throws {
|
|
let container = try decoder.container(keyedBy: CodingKeys.self)
|
|
self.headers = try container.decode(HttpHeaders.self, forKey: .headers)
|
|
|
|
// createDate will default to current date, but can be overwritten during decodable initialization
|
|
self.createDate = try container.decodeIfPresent(Date.self, forKey: .createDate) ?? Date()
|
|
}
|
|
}
|