2019-05-03 01:17:52 +02:00
|
|
|
//
|
|
|
|
// FeedbinAPICaller.swift
|
|
|
|
// Account
|
|
|
|
//
|
|
|
|
// Created by Maurice Parker on 5/2/19.
|
|
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import RSWeb
|
|
|
|
|
2019-05-08 13:56:15 +02:00
|
|
|
enum CreateSubscriptionResult {
|
2019-05-09 00:41:19 +02:00
|
|
|
case created(FeedbinSubscription)
|
2019-05-10 17:14:24 +02:00
|
|
|
case multipleChoice([FeedbinSubscriptionChoice])
|
2019-05-08 13:56:15 +02:00
|
|
|
case alreadySubscribed
|
|
|
|
case notFound
|
|
|
|
}
|
|
|
|
|
2019-05-03 01:17:52 +02:00
|
|
|
final class FeedbinAPICaller: NSObject {
|
|
|
|
|
2019-05-04 15:54:07 +02:00
|
|
|
private let feedbinBaseURL = URL(string: "https://api.feedbin.com/v2/")!
|
|
|
|
private var transport: Transport!
|
2019-05-05 14:49:59 +02:00
|
|
|
|
2019-05-05 10:25:21 +02:00
|
|
|
var credentials: Credentials?
|
2019-05-05 14:49:59 +02:00
|
|
|
var accountMetadata: AccountMetadata?
|
2019-05-03 01:17:52 +02:00
|
|
|
|
2019-05-04 15:54:07 +02:00
|
|
|
init(transport: Transport) {
|
2019-05-03 01:17:52 +02:00
|
|
|
super.init()
|
2019-05-04 15:54:07 +02:00
|
|
|
self.transport = transport
|
|
|
|
}
|
|
|
|
|
2019-05-05 10:25:21 +02:00
|
|
|
func validateCredentials(completionHandler completion: @escaping (Result<Bool, Error>) -> Void) {
|
2019-05-03 01:17:52 +02:00
|
|
|
|
2019-05-04 15:54:07 +02:00
|
|
|
let callURL = feedbinBaseURL.appendingPathComponent("authentication.json")
|
2019-05-04 18:48:48 +02:00
|
|
|
let request = URLRequest(url: callURL, credentials: credentials)
|
2019-05-03 01:17:52 +02:00
|
|
|
|
2019-05-04 15:54:07 +02:00
|
|
|
transport.send(request: request) { result in
|
|
|
|
switch result {
|
|
|
|
case .success:
|
2019-05-05 10:25:21 +02:00
|
|
|
completion(.success(true))
|
2019-05-04 16:18:14 +02:00
|
|
|
case .failure(let error):
|
|
|
|
switch error {
|
|
|
|
case TransportError.httpError(let status):
|
|
|
|
if status == 401 {
|
2019-05-05 10:25:21 +02:00
|
|
|
completion(.success(false))
|
2019-05-04 16:18:14 +02:00
|
|
|
} else {
|
2019-05-05 10:25:21 +02:00
|
|
|
completion(.failure(error))
|
2019-05-04 16:18:14 +02:00
|
|
|
}
|
|
|
|
default:
|
2019-05-05 10:25:21 +02:00
|
|
|
completion(.failure(error))
|
2019-05-04 16:18:14 +02:00
|
|
|
}
|
2019-05-04 15:54:07 +02:00
|
|
|
}
|
2019-05-03 01:17:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2019-05-05 10:25:21 +02:00
|
|
|
|
2019-05-06 17:53:20 +02:00
|
|
|
func retrieveTags(completionHandler completion: @escaping (Result<[FeedbinTag]?, Error>) -> Void) {
|
2019-05-05 22:41:20 +02:00
|
|
|
|
|
|
|
let callURL = feedbinBaseURL.appendingPathComponent("tags.json")
|
|
|
|
let conditionalGet = accountMetadata?.conditionalGetInfo[AccountMetadata.ConditionalGetKeys.tags]
|
|
|
|
let request = URLRequest(url: callURL, credentials: credentials, conditionalGet: conditionalGet)
|
2019-05-07 00:34:41 +02:00
|
|
|
|
|
|
|
transport.send(request: request, resultType: [FeedbinTag].self) { [weak self] result in
|
|
|
|
|
2019-05-05 22:41:20 +02:00
|
|
|
switch result {
|
2019-05-08 13:56:15 +02:00
|
|
|
case .success(let (response, tags)):
|
|
|
|
self?.storeConditionalGet(metadata: self?.accountMetadata, key: AccountMetadata.ConditionalGetKeys.tags, headers: response.allHeaderFields)
|
2019-05-05 22:41:20 +02:00
|
|
|
completion(.success(tags))
|
|
|
|
case .failure(let error):
|
|
|
|
completion(.failure(error))
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2019-05-05 15:44:57 +02:00
|
|
|
|
2019-05-06 17:53:20 +02:00
|
|
|
func renameTag(oldName: String, newName: String, completion: @escaping (Result<Void, Error>) -> Void) {
|
|
|
|
let callURL = feedbinBaseURL.appendingPathComponent("tags.json")
|
|
|
|
let request = URLRequest(url: callURL, credentials: credentials)
|
|
|
|
let payload = FeedbinRenameTag(oldName: oldName, newName: newName)
|
2019-05-07 00:34:41 +02:00
|
|
|
transport.send(request: request, method: HTTPMethod.post, payload: payload, completion: completion)
|
|
|
|
}
|
|
|
|
|
|
|
|
func deleteTag(name: String, completion: @escaping (Result<[FeedbinTagging]?, Error>) -> Void) {
|
|
|
|
|
|
|
|
let callURL = feedbinBaseURL.appendingPathComponent("tags.json")
|
|
|
|
let request = URLRequest(url: callURL, credentials: credentials)
|
|
|
|
let payload = FeedbinDeleteTag(name: name)
|
|
|
|
|
|
|
|
transport.send(request: request, method: HTTPMethod.delete, payload: payload, resultType: [FeedbinTagging].self) { result in
|
|
|
|
|
|
|
|
switch result {
|
|
|
|
case .success(let (_, taggings)):
|
|
|
|
completion(.success(taggings))
|
|
|
|
case .failure(let error):
|
|
|
|
completion(.failure(error))
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-05-05 10:25:21 +02:00
|
|
|
}
|
|
|
|
|
2019-05-07 17:51:41 +02:00
|
|
|
func retrieveSubscriptions(completionHandler completion: @escaping (Result<[FeedbinSubscription]?, Error>) -> Void) {
|
|
|
|
|
|
|
|
let callURL = feedbinBaseURL.appendingPathComponent("subscriptions.json")
|
|
|
|
let conditionalGet = accountMetadata?.conditionalGetInfo[AccountMetadata.ConditionalGetKeys.subscriptions]
|
|
|
|
let request = URLRequest(url: callURL, credentials: credentials, conditionalGet: conditionalGet)
|
|
|
|
|
|
|
|
transport.send(request: request, resultType: [FeedbinSubscription].self) { [weak self] result in
|
|
|
|
|
|
|
|
switch result {
|
2019-05-08 13:56:15 +02:00
|
|
|
case .success(let (response, subscriptions)):
|
|
|
|
self?.storeConditionalGet(metadata: self?.accountMetadata, key: AccountMetadata.ConditionalGetKeys.subscriptions, headers: response.allHeaderFields)
|
2019-05-07 17:51:41 +02:00
|
|
|
completion(.success(subscriptions))
|
|
|
|
case .failure(let error):
|
|
|
|
completion(.failure(error))
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-05-08 13:56:15 +02:00
|
|
|
func createSubscription(url: String, completionHandler completion: @escaping (Result<CreateSubscriptionResult, Error>) -> Void) {
|
|
|
|
|
|
|
|
let callURL = feedbinBaseURL.appendingPathComponent("subscriptions.json")
|
2019-05-09 00:41:19 +02:00
|
|
|
var request = URLRequest(url: callURL, credentials: credentials)
|
|
|
|
request.addValue("application/json; charset=utf-8", forHTTPHeaderField: HTTPRequestHeader.contentType)
|
|
|
|
|
|
|
|
let payload: Data
|
|
|
|
do {
|
|
|
|
payload = try JSONEncoder().encode(FeedbinCreateSubscription(feedURL: url))
|
|
|
|
} catch {
|
|
|
|
completion(.failure(error))
|
|
|
|
return
|
|
|
|
}
|
2019-05-08 13:56:15 +02:00
|
|
|
|
2019-05-09 14:25:45 +02:00
|
|
|
transport.send(request: request, method: HTTPMethod.post, payload: payload) { result in
|
2019-05-08 13:56:15 +02:00
|
|
|
|
|
|
|
switch result {
|
2019-05-09 00:41:19 +02:00
|
|
|
case .success(let (response, data)):
|
2019-05-08 13:56:15 +02:00
|
|
|
|
|
|
|
switch response.forcedStatusCode {
|
|
|
|
case 201:
|
2019-05-09 00:41:19 +02:00
|
|
|
guard let subData = data else {
|
|
|
|
completion(.failure(TransportError.noData))
|
|
|
|
break
|
|
|
|
}
|
|
|
|
do {
|
|
|
|
let subscription = try JSONDecoder().decode(FeedbinSubscription.self, from: subData)
|
|
|
|
completion(.success(.created(subscription)))
|
|
|
|
} catch {
|
|
|
|
completion(.failure(error))
|
|
|
|
}
|
2019-05-08 13:56:15 +02:00
|
|
|
case 300:
|
2019-05-09 00:41:19 +02:00
|
|
|
guard let subData = data else {
|
|
|
|
completion(.failure(TransportError.noData))
|
|
|
|
break
|
|
|
|
}
|
|
|
|
do {
|
2019-05-10 17:14:24 +02:00
|
|
|
let subscriptions = try JSONDecoder().decode([FeedbinSubscriptionChoice].self, from: subData)
|
2019-05-09 00:41:19 +02:00
|
|
|
completion(.success(.multipleChoice(subscriptions)))
|
|
|
|
} catch {
|
|
|
|
completion(.failure(error))
|
|
|
|
}
|
2019-05-08 13:56:15 +02:00
|
|
|
case 302:
|
|
|
|
completion(.success(.alreadySubscribed))
|
|
|
|
default:
|
|
|
|
completion(.failure(TransportError.httpError(status: response.forcedStatusCode)))
|
|
|
|
}
|
|
|
|
|
|
|
|
case .failure(let error):
|
|
|
|
|
|
|
|
switch error {
|
|
|
|
case TransportError.httpError(let status):
|
|
|
|
if status == 404 {
|
|
|
|
completion(.success(.notFound))
|
|
|
|
} else {
|
|
|
|
completion(.failure(error))
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
completion(.failure(error))
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-05-09 14:25:45 +02:00
|
|
|
func renameSubscription(subscriptionID: String, newName: String, completion: @escaping (Result<Void, Error>) -> Void) {
|
2019-05-09 01:13:54 +02:00
|
|
|
let callURL = feedbinBaseURL.appendingPathComponent("subscriptions/\(subscriptionID)/update.json")
|
2019-05-09 00:41:19 +02:00
|
|
|
let request = URLRequest(url: callURL, credentials: credentials)
|
|
|
|
let payload = FeedbinUpdateSubscription(title: newName)
|
2019-05-09 01:13:54 +02:00
|
|
|
transport.send(request: request, method: HTTPMethod.post, payload: payload, completion: completion)
|
2019-05-09 00:41:19 +02:00
|
|
|
}
|
|
|
|
|
2019-05-09 14:25:45 +02:00
|
|
|
func deleteSubscription(subscriptionID: String, completion: @escaping (Result<Void, Error>) -> Void) {
|
|
|
|
let callURL = feedbinBaseURL.appendingPathComponent("subscriptions/\(subscriptionID).json")
|
|
|
|
let request = URLRequest(url: callURL, credentials: credentials)
|
|
|
|
transport.send(request: request, method: HTTPMethod.delete, completion: completion)
|
|
|
|
}
|
|
|
|
|
2019-05-08 00:41:32 +02:00
|
|
|
func retrieveTaggings(completionHandler completion: @escaping (Result<[FeedbinTagging]?, Error>) -> Void) {
|
|
|
|
|
|
|
|
let callURL = feedbinBaseURL.appendingPathComponent("taggings.json")
|
|
|
|
let conditionalGet = accountMetadata?.conditionalGetInfo[AccountMetadata.ConditionalGetKeys.taggings]
|
|
|
|
let request = URLRequest(url: callURL, credentials: credentials, conditionalGet: conditionalGet)
|
|
|
|
|
|
|
|
transport.send(request: request, resultType: [FeedbinTagging].self) { [weak self] result in
|
|
|
|
|
|
|
|
switch result {
|
2019-05-08 13:56:15 +02:00
|
|
|
case .success(let (response, taggings)):
|
|
|
|
self?.storeConditionalGet(metadata: self?.accountMetadata, key: AccountMetadata.ConditionalGetKeys.taggings, headers: response.allHeaderFields)
|
2019-05-08 00:41:32 +02:00
|
|
|
completion(.success(taggings))
|
|
|
|
case .failure(let error):
|
|
|
|
completion(.failure(error))
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-05-09 20:31:18 +02:00
|
|
|
func createTagging(feedID: Int, name: String, completion: @escaping (Result<Int, Error>) -> Void) {
|
|
|
|
|
|
|
|
let callURL = feedbinBaseURL.appendingPathComponent("taggings.json")
|
|
|
|
var request = URLRequest(url: callURL, credentials: credentials)
|
|
|
|
request.addValue("application/json; charset=utf-8", forHTTPHeaderField: HTTPRequestHeader.contentType)
|
|
|
|
|
|
|
|
let payload: Data
|
|
|
|
do {
|
|
|
|
payload = try JSONEncoder().encode(FeedbinCreateTagging(feedID: feedID, name: name))
|
|
|
|
} catch {
|
|
|
|
completion(.failure(error))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
transport.send(request: request, method: HTTPMethod.post, payload:payload) { result in
|
|
|
|
|
|
|
|
switch result {
|
|
|
|
case .success(let (response, _)):
|
|
|
|
if let taggingLocation = response.valueForHTTPHeaderField(HTTPResponseHeader.location),
|
|
|
|
let lowerBound = taggingLocation.range(of: "v2/taggings/")?.upperBound,
|
|
|
|
let upperBound = taggingLocation.range(of: ".json")?.lowerBound,
|
|
|
|
let taggingID = Int(taggingLocation[lowerBound..<upperBound]) {
|
|
|
|
completion(.success(taggingID))
|
|
|
|
} else {
|
|
|
|
completion(.failure(TransportError.noData))
|
|
|
|
}
|
|
|
|
case .failure(let error):
|
|
|
|
completion(.failure(error))
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func deleteTagging(taggingID: String, completion: @escaping (Result<Void, Error>) -> Void) {
|
|
|
|
let callURL = feedbinBaseURL.appendingPathComponent("taggings/\(taggingID).json")
|
|
|
|
var request = URLRequest(url: callURL, credentials: credentials)
|
|
|
|
request.addValue("application/json; charset=utf-8", forHTTPHeaderField: HTTPRequestHeader.contentType)
|
|
|
|
transport.send(request: request, method: HTTPMethod.delete, completion: completion)
|
|
|
|
}
|
|
|
|
|
2019-05-07 17:51:41 +02:00
|
|
|
func retrieveIcons(completionHandler completion: @escaping (Result<[FeedbinIcon]?, Error>) -> Void) {
|
|
|
|
|
|
|
|
let callURL = feedbinBaseURL.appendingPathComponent("icons.json")
|
|
|
|
let conditionalGet = accountMetadata?.conditionalGetInfo[AccountMetadata.ConditionalGetKeys.icons]
|
|
|
|
let request = URLRequest(url: callURL, credentials: credentials, conditionalGet: conditionalGet)
|
|
|
|
|
|
|
|
transport.send(request: request, resultType: [FeedbinIcon].self) { [weak self] result in
|
|
|
|
|
|
|
|
switch result {
|
2019-05-08 13:56:15 +02:00
|
|
|
case .success(let (response, icons)):
|
|
|
|
self?.storeConditionalGet(metadata: self?.accountMetadata, key: AccountMetadata.ConditionalGetKeys.icons, headers: response.allHeaderFields)
|
2019-05-07 17:51:41 +02:00
|
|
|
completion(.success(icons))
|
|
|
|
case .failure(let error):
|
|
|
|
completion(.failure(error))
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-05-03 01:17:52 +02:00
|
|
|
}
|
2019-05-05 15:44:57 +02:00
|
|
|
|
|
|
|
// MARK: Private
|
|
|
|
|
|
|
|
extension FeedbinAPICaller {
|
|
|
|
|
2019-05-08 13:56:15 +02:00
|
|
|
func storeConditionalGet(metadata: AccountMetadata?, key: String, headers: [AnyHashable : Any]) {
|
2019-05-05 15:44:57 +02:00
|
|
|
if var conditionalGet = accountMetadata?.conditionalGetInfo {
|
|
|
|
conditionalGet[key] = HTTPConditionalGetInfo(headers: headers)
|
|
|
|
accountMetadata?.conditionalGetInfo = conditionalGet
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|