2019-06-17 14:49:23 -07:00
|
|
|
//
|
2019-07-30 17:00:04 -07:00
|
|
|
// FetchSourceOperation.swift
|
2019-06-17 14:49:23 -07:00
|
|
|
// AltStore
|
|
|
|
|
//
|
2019-07-30 17:00:04 -07:00
|
|
|
// Created by Riley Testut on 7/30/19.
|
2019-06-17 14:49:23 -07:00
|
|
|
// Copyright © 2019 Riley Testut. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
import Foundation
|
2020-03-24 13:27:44 -07:00
|
|
|
import CoreData
|
|
|
|
|
|
2020-09-03 16:39:08 -07:00
|
|
|
import AltStoreCore
|
2019-06-17 14:49:23 -07:00
|
|
|
import Roxas
|
|
|
|
|
|
2019-07-30 17:00:04 -07:00
|
|
|
@objc(FetchSourceOperation)
|
|
|
|
|
class FetchSourceOperation: ResultOperation<Source>
|
2019-06-17 14:49:23 -07:00
|
|
|
{
|
2019-07-30 17:00:04 -07:00
|
|
|
let sourceURL: URL
|
2020-03-24 13:27:44 -07:00
|
|
|
let managedObjectContext: NSManagedObjectContext
|
2019-07-30 17:00:04 -07:00
|
|
|
|
2019-09-19 11:27:38 -07:00
|
|
|
private let session: URLSession
|
2019-06-17 14:49:23 -07:00
|
|
|
|
2019-09-07 15:37:08 -07:00
|
|
|
private lazy var dateFormatter: ISO8601DateFormatter = {
|
|
|
|
|
let dateFormatter = ISO8601DateFormatter()
|
2019-06-17 14:49:23 -07:00
|
|
|
return dateFormatter
|
|
|
|
|
}()
|
|
|
|
|
|
2020-03-24 13:27:44 -07:00
|
|
|
init(sourceURL: URL, managedObjectContext: NSManagedObjectContext = DatabaseManager.shared.persistentContainer.newBackgroundContext())
|
2019-07-30 17:00:04 -07:00
|
|
|
{
|
|
|
|
|
self.sourceURL = sourceURL
|
2020-03-24 13:27:44 -07:00
|
|
|
self.managedObjectContext = managedObjectContext
|
2019-09-19 11:27:38 -07:00
|
|
|
|
|
|
|
|
let configuration = URLSessionConfiguration.default
|
|
|
|
|
configuration.requestCachePolicy = .reloadIgnoringLocalCacheData
|
|
|
|
|
configuration.urlCache = nil
|
|
|
|
|
|
|
|
|
|
self.session = URLSession(configuration: configuration)
|
2019-07-30 17:00:04 -07:00
|
|
|
}
|
|
|
|
|
|
2019-06-17 14:49:23 -07:00
|
|
|
override func main()
|
|
|
|
|
{
|
|
|
|
|
super.main()
|
|
|
|
|
|
2019-07-30 17:00:04 -07:00
|
|
|
let dataTask = self.session.dataTask(with: self.sourceURL) { (data, response, error) in
|
2020-08-27 16:23:50 -07:00
|
|
|
|
|
|
|
|
let childContext = DatabaseManager.shared.persistentContainer.newBackgroundContext(withParent: self.managedObjectContext)
|
|
|
|
|
childContext.mergePolicy = NSOverwriteMergePolicy
|
|
|
|
|
childContext.perform {
|
2019-06-17 14:49:23 -07:00
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
let (data, _) = try Result((data, response), error).get()
|
|
|
|
|
|
2020-09-03 16:39:08 -07:00
|
|
|
let decoder = AltStoreCore.JSONDecoder()
|
2019-09-07 15:37:08 -07:00
|
|
|
decoder.dateDecodingStrategy = .custom({ (decoder) -> Date in
|
|
|
|
|
let container = try decoder.singleValueContainer()
|
|
|
|
|
let text = try container.decode(String.self)
|
|
|
|
|
|
|
|
|
|
// Full ISO8601 Format.
|
|
|
|
|
self.dateFormatter.formatOptions = [.withFullDate, .withFullTime, .withTimeZone]
|
|
|
|
|
if let date = self.dateFormatter.date(from: text)
|
|
|
|
|
{
|
|
|
|
|
return date
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Just date portion of ISO8601.
|
|
|
|
|
self.dateFormatter.formatOptions = [.withFullDate]
|
|
|
|
|
if let date = self.dateFormatter.date(from: text)
|
|
|
|
|
{
|
|
|
|
|
return date
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
throw DecodingError.dataCorruptedError(in: container, debugDescription: "Date is in invalid format.")
|
|
|
|
|
})
|
|
|
|
|
|
2020-08-27 16:23:50 -07:00
|
|
|
decoder.managedObjectContext = childContext
|
2020-03-24 13:27:44 -07:00
|
|
|
decoder.sourceURL = self.sourceURL
|
2019-06-17 14:49:23 -07:00
|
|
|
|
2019-07-30 17:00:04 -07:00
|
|
|
let source = try decoder.decode(Source.self, from: data)
|
2020-08-27 16:23:50 -07:00
|
|
|
let identifier = source.identifier
|
2019-11-04 13:38:54 -08:00
|
|
|
|
2020-08-27 16:23:50 -07:00
|
|
|
try childContext.save()
|
|
|
|
|
|
|
|
|
|
self.managedObjectContext.perform {
|
|
|
|
|
if let source = Source.first(satisfying: NSPredicate(format: "%K == %@", #keyPath(Source.identifier), identifier), in: self.managedObjectContext)
|
|
|
|
|
{
|
|
|
|
|
self.finish(.success(source))
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
self.finish(.failure(OperationError.noSources))
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-06-17 14:49:23 -07:00
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
2020-08-27 16:23:50 -07:00
|
|
|
self.managedObjectContext.perform {
|
|
|
|
|
self.finish(.failure(error))
|
|
|
|
|
}
|
2019-06-17 14:49:23 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
self.progress.addChild(dataTask.progress, withPendingUnitCount: 1)
|
|
|
|
|
|
|
|
|
|
dataTask.resume()
|
|
|
|
|
}
|
|
|
|
|
}
|