Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Decodable multiple DateDecodingStrategies

Is there a possibility to add multiple JSONDecoder.DateDecodingStrategy to a same JSONDecoder?

I got a decodable:

struct Movie: Decodable {
    enum CodingKeys: String, CodingKey {
        case title = "display_title"
        case mpaaRating = "mpaa_rating"
        case criticsPick = "critics_pick"
        case byline
        case headline
        case summaryShort = "summary_short"
        case publicationDate = "publication_date"
        case openingDate = "opening_date"
        case dateUpdated = "date_updated"
        case link
        case multimedia
    }

let title: String
let mpaaRating: String
let criticsPick: Int
let byline: String
let headline: String
let summaryShort: String
let publicationDate: Date
let openingDate: Date?
let updatedDate: Date
let link: MovieLink
let multimedia: MovieMultimedia
var image: UIImage?


init(from decoder: Decoder) throws {
    let values = try decoder.container(keyedBy: CodingKeys.self)
    try title = values.decode(String.self, forKey: .title)
    try mpaaRating = values.decode(String.self, forKey: .mpaaRating)
    try criticsPick = values.decode(Int.self, forKey: .criticsPick)
    try byline = values.decode(String.self, forKey: .byline)
    try headline = values.decode(String.self, forKey: .headline)
    try summaryShort = values.decode(String.self, forKey: .summaryShort)
    try openingDate = values.decodeIfPresent(Date.self, forKey: .openingDate)
    try publicationDate = values.decode(Date.self, forKey: .publicationDate)
    try updatedDate = values.decode(Date.self, forKey: .dateUpdated)
    try link = values.decode(MovieLink.self, forKey: .link)
    try multimedia = values.decode(MovieMultimedia.self, forKey: .multimedia)
}

mutating func loadImage(completion: @escaping (UIImage?, Error?) -> ()) {
    URLSession.shared.dataTask(with: self.multimedia.src) { data, _, error in
        DispatchQueue.main.async {
            if let data = data {
                let image = UIImage(data: data)
                completion(image, error)
            }
        }
        }.resume()
    }
}

struct MovieLink: Decodable {
    enum CodingKeys: String, CodingKey {
        case type
        case url
        case suggestedLinkText = "suggested_link_text"
    }

    let type: String
    let url: URL
    let suggestedLinkText: String
}

struct MovieMultimedia: Decodable {
    let type: String
    let src: URL
    let height: Int
    let width: Int
}

Now I got a problem because the API delivers different date formats. For pulicaion_date, opening_date the following pattern is used 2017-10-10.

But for the date_updated they send the data formatted like 2017-10-10 12:21:02.

When i set the DateDecodingStrategy of the JSONDecoder to .formatted(myDateFormatter) it crashed for the date_updated

The decoder called this way

let decoder = JSONDecoder()
let dateformatter = DateFormatter()
dateformatter.dateFormat = "yyyy-MM-dd"
decoder.dateDecodingStrategy = .formatted(dateformatter)
let movieList = try! decoder.decode(MovieList.self, from: data!)

And crashes:

fatal error: 'try!' expression unexpectedly raised an error:
Swift.DecodingError.dataCorrupted(
Swift.DecodingError.Context(
  codingPath: [
    Test_App.MovieList.CodingKeys.movies, 
    Foundation.(_JSONKey in _12768CA107A31EF2DCE034FD75B541C9)(stringValue: "Index 0", intValue: Optional(0)),
    Test_App.Movie.CodingKeys.dateUpdated
  ], 
  debugDescription: "Date string does not match format expected by formatter.", 
  underlyingError: nil)
)
like image 744
Oliver Avatar asked Dec 13 '22 20:12

Oliver


1 Answers

You can use the DateDecodingStrategy.custom option for that. A short example:

let shortFormatter = DateFormatter()
let longFormatter = DateFormatter()
shortFormatter.dateFormat = "yyyy-MM-dd"
longFormatter.dateFormat = "yyyy-MM-dd hh:mm:ss"

func customDateFormatter(_ decoder: Decoder) throws -> Date {
    let dateString = try decoder.singleValueContainer().decode(String.self)
    let dateKey = decoder.codingPath.last as! Movie.CodingKeys
    switch dateKey {
    case .shortDate :
        return shortFormatter.date(from: dateString)!
    case .longDate :
        return longFormatter.date(from: dateString)!
    default:
        fatalError("Unexpected date coding key: \(dateKey)")
    }
}

I created both DateFormatter instances outside the function merely as an optimization. As such, each call won’t need to recreate/configure them for each decoded date.

Finally, set the dateDecodingStrategy using the function we created above:

let json =
"""
{
    "name": "A Clockwork Orange",
    "short_date": "2017-10-10",
    "long_date": "2017-10-10 12:21:02"
}
""".data(using: .utf8)!

let decoder = JSONDecoder()
decoder.dateDecodingStrategy = .custom(customDateFormatter)
let movie = try! decoder.decode(Movie.self, from: json)
like image 81
Paulo Mattos Avatar answered Dec 16 '22 09:12

Paulo Mattos