26 lines
582 B
Swift
26 lines
582 B
Swift
//
|
|
// FeedlyFeedContainerValidator.swift
|
|
// Account
|
|
//
|
|
// Created by Kiel Gillard on 10/10/19.
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct FeedlyFeedContainerValidator {
|
|
var container: Container
|
|
|
|
func getValidContainer() throws -> (Folder, String) {
|
|
guard let folder = container as? Folder else {
|
|
throw FeedlyAccountDelegateError.addFeedChooseFolder
|
|
}
|
|
|
|
guard let collectionId = folder.externalID else {
|
|
throw FeedlyAccountDelegateError.addFeedInvalidFolder(folder)
|
|
}
|
|
|
|
return (folder, collectionId)
|
|
}
|
|
}
|