Create FeedbinSubscription struct.

This commit is contained in:
Brent Simmons 2017-12-10 13:58:44 -08:00
parent 8d7eb910da
commit 89a74077d9
1 changed files with 73 additions and 0 deletions

View File

@ -0,0 +1,73 @@
//
// FeedbinSubscription.swift
// Account
//
// Created by Brent Simmons on 12/10/17.
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
//
import Foundation
import RSCore
import RSParser
struct FeedbinSubscription {
let subscriptionID: String
let feedID: String
let creationDate: Date?
let name: String
let url: String
let homePageURL: String?
// "id": 525,
// "created_at": "2013-03-12T11:30:25.209432Z",
// "feed_id": 47,
// "title": "Daring Fireball",
// "feed_url": "http://daringfireball.net/index.xml",
// "site_url": "http://daringfireball.net/"
struct Key {
static let subscriptionID = "id"
static let feedID = "feed_id"
static let creationDate = "created_at"
static let name = "title"
static let url = "feed_url"
static let homePageURL = "site_url"
}
init?(dictionary: JSONDictionary) {
guard let subscriptionIDInt = dictionary[Key.subscriptionID] as? Int else {
return nil
}
guard let feedIDInt = dictionary[Key.feedID] as? Int else {
return nil
}
guard let url = dictionary[Key.url] as? String else {
return nil
}
self.subscriptionID = "\(subscriptionIDInt)"
self.feedID = "\(feedIDInt)"
self.url = url
if let creationDateString = dictionary[Key.creationDate] as? String {
self.creationDate = RSDateWithString(creationDateString)
}
self.name = dictionary[Key.name] as? String
self.homePageURL = dictionary[Key.homePageURL] as? String
}
static func subscriptions(with array: JSONArray) -> [FeedbinSubscription]? {
let subs = array.flatMap { (jsonSubscription) -> FeedbinSubscription? in
if let dictionary = jsonSubscription as? JSONDictionary else {
return nil
}
return FeedbinSubscription(dictionary: dictionary)
}
return subs.isEmpty ? nil : subs
}
}