2018-02-05 22:29:46 +01:00
|
|
|
//
|
|
|
|
// AppDelegate.swift
|
2019-04-15 22:03:05 +02:00
|
|
|
// NetNewsWire
|
2018-02-05 22:29:46 +01:00
|
|
|
//
|
2019-04-15 22:03:05 +02:00
|
|
|
// Created by Maurice Parker on 4/8/19.
|
|
|
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
2018-02-05 22:29:46 +01:00
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
2019-04-15 22:03:05 +02:00
|
|
|
import RSCore
|
2019-04-24 14:30:35 +02:00
|
|
|
import RSWeb
|
2019-04-15 22:03:05 +02:00
|
|
|
import Account
|
2019-04-23 14:48:22 +02:00
|
|
|
import UserNotifications
|
2019-04-15 22:03:05 +02:00
|
|
|
|
|
|
|
var appDelegate: AppDelegate!
|
2018-02-05 22:29:46 +01:00
|
|
|
|
|
|
|
@UIApplicationMain
|
2019-04-15 22:03:05 +02:00
|
|
|
class AppDelegate: UIResponder, UIApplicationDelegate, UISplitViewControllerDelegate, UnreadCountProvider {
|
2018-02-05 22:29:46 +01:00
|
|
|
|
2019-04-24 14:30:35 +02:00
|
|
|
private var backgroundUpdateTask = UIBackgroundTaskIdentifier.invalid
|
|
|
|
|
2018-02-05 22:29:46 +01:00
|
|
|
var window: UIWindow?
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
var faviconDownloader: FaviconDownloader!
|
|
|
|
var imageDownloader: ImageDownloader!
|
|
|
|
var authorAvatarDownloader: AuthorAvatarDownloader!
|
|
|
|
var feedIconDownloader: FeedIconDownloader!
|
|
|
|
|
|
|
|
private let log = Log()
|
|
|
|
|
|
|
|
var unreadCount = 0 {
|
|
|
|
didSet {
|
|
|
|
if unreadCount != oldValue {
|
|
|
|
postUnreadCountDidChangeNotification()
|
2019-04-23 14:48:22 +02:00
|
|
|
UIApplication.shared.applicationIconBadgeNumber = unreadCount
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override init() {
|
|
|
|
|
|
|
|
super.init()
|
|
|
|
appDelegate = self
|
|
|
|
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(unreadCountDidChange(_:)), name: .UnreadCountDidChange, object: nil)
|
2019-04-24 14:30:35 +02:00
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(userDefaultsDidChange(_:)), name: UserDefaults.didChangeNotification, object: nil)
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
// Initialize the AccountManager as soon as possible or it will cause problems
|
|
|
|
// if the application is restoring preserved state.
|
|
|
|
_ = AccountManager.shared
|
|
|
|
|
|
|
|
}
|
2018-02-05 22:29:46 +01:00
|
|
|
|
2019-04-15 20:30:10 +02:00
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
2019-04-15 22:03:05 +02:00
|
|
|
|
|
|
|
// Set up the split view
|
2018-02-05 22:29:46 +01:00
|
|
|
let splitViewController = window!.rootViewController as! UISplitViewController
|
|
|
|
let navigationController = splitViewController.viewControllers[splitViewController.viewControllers.count-1] as! UINavigationController
|
|
|
|
navigationController.topViewController!.navigationItem.leftBarButtonItem = splitViewController.displayModeButtonItem
|
|
|
|
splitViewController.delegate = self
|
2019-04-15 22:03:05 +02:00
|
|
|
|
|
|
|
AppDefaults.registerDefaults()
|
|
|
|
let isFirstRun = AppDefaults.isFirstRun
|
|
|
|
if isFirstRun {
|
|
|
|
logDebugMessage("Is first run.")
|
|
|
|
}
|
|
|
|
|
|
|
|
let localAccount = AccountManager.shared.localAccount
|
|
|
|
DefaultFeedsImporter.importIfNeeded(isFirstRun, account: localAccount)
|
|
|
|
|
|
|
|
let tempDir = FileManager.default.urls(for: .cachesDirectory, in: .userDomainMask).first!
|
|
|
|
let faviconsFolderURL = tempDir.appendingPathComponent("Favicons")
|
|
|
|
try! FileManager.default.createDirectory(at: faviconsFolderURL, withIntermediateDirectories: true, attributes: nil)
|
|
|
|
faviconDownloader = FaviconDownloader(folder: faviconsFolderURL.absoluteString)
|
|
|
|
|
|
|
|
let imagesFolderURL = tempDir.appendingPathComponent("Images")
|
|
|
|
try! FileManager.default.createDirectory(at: imagesFolderURL, withIntermediateDirectories: true, attributes: nil)
|
|
|
|
imageDownloader = ImageDownloader(folder: imagesFolderURL.absoluteString)
|
|
|
|
|
|
|
|
authorAvatarDownloader = AuthorAvatarDownloader(imageDownloader: imageDownloader)
|
|
|
|
feedIconDownloader = FeedIconDownloader(imageDownloader: imageDownloader)
|
|
|
|
|
|
|
|
DispatchQueue.main.async {
|
|
|
|
self.unreadCount = AccountManager.shared.unreadCount
|
|
|
|
}
|
|
|
|
|
2019-04-23 14:48:22 +02:00
|
|
|
UNUserNotificationCenter.current().requestAuthorization(options:[.badge]) { (granted, error) in
|
|
|
|
if granted {
|
|
|
|
DispatchQueue.main.async {
|
|
|
|
UIApplication.shared.registerForRemoteNotifications()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-23 17:29:14 +02:00
|
|
|
|
2019-04-24 14:30:35 +02:00
|
|
|
UIApplication.shared.setMinimumBackgroundFetchInterval(AppDefaults.refreshInterval.inSeconds())
|
2019-04-23 17:29:14 +02:00
|
|
|
|
2018-02-05 22:29:46 +01:00
|
|
|
return true
|
2019-04-15 22:03:05 +02:00
|
|
|
|
2018-02-05 22:29:46 +01:00
|
|
|
}
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
// func application(_ application: UIApplication, shouldSaveApplicationState coder: NSCoder) -> Bool {
|
|
|
|
//
|
|
|
|
// let versionNumber = Bundle.main.object(forInfoDictionaryKey: "CFBundleShortVersionString") as! String
|
|
|
|
// coder.encode(versionNumber, forKey: "VersionNumber")
|
|
|
|
//
|
|
|
|
// return true
|
|
|
|
//
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// func application(_ application: UIApplication, shouldRestoreApplicationState coder: NSCoder) -> Bool {
|
|
|
|
// if let storedVersionNumber = coder.decodeObject(forKey: "VersionNumber") as? String {
|
|
|
|
// let versionNumber = Bundle.main.object(forInfoDictionaryKey: "CFBundleShortVersionString") as! String
|
|
|
|
// if versionNumber == storedVersionNumber {
|
|
|
|
// return true
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// return false
|
|
|
|
// }
|
|
|
|
|
2018-02-05 22:29:46 +01:00
|
|
|
func applicationWillResignActive(_ application: UIApplication) {
|
|
|
|
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
|
|
|
|
// Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
|
|
|
|
}
|
|
|
|
|
|
|
|
func applicationDidEnterBackground(_ application: UIApplication) {
|
|
|
|
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
|
|
|
|
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
|
|
|
|
}
|
|
|
|
|
|
|
|
func applicationWillEnterForeground(_ application: UIApplication) {
|
|
|
|
// Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
|
|
|
|
}
|
|
|
|
|
|
|
|
func applicationDidBecomeActive(_ application: UIApplication) {
|
|
|
|
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
|
|
|
|
}
|
|
|
|
|
|
|
|
func applicationWillTerminate(_ application: UIApplication) {
|
|
|
|
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
|
|
|
|
}
|
|
|
|
|
2019-04-24 14:30:35 +02:00
|
|
|
func application(_ application: UIApplication, handleEventsForBackgroundURLSession identifier: String, completionHandler: @escaping () -> Void) {
|
|
|
|
|
2019-04-24 18:04:20 +02:00
|
|
|
// We won't know when the last feed is inserted into the database or when the last unread count
|
|
|
|
// change event will come, but we do know when the url session has completed sending
|
|
|
|
var urlSessionDone = false
|
2019-04-25 14:13:14 +02:00
|
|
|
BackgroundDownloadSession.completionHandler = {
|
2019-04-24 18:04:20 +02:00
|
|
|
urlSessionDone = true
|
|
|
|
completionHandler()
|
|
|
|
}
|
2019-04-24 14:30:35 +02:00
|
|
|
|
2019-04-24 23:29:32 +02:00
|
|
|
logDebugMessage("Handle background URL Session.")
|
|
|
|
|
|
|
|
DispatchQueue.global(qos: .background).async { [unowned self] in
|
2019-04-24 18:04:20 +02:00
|
|
|
|
|
|
|
// Set up a background task to let iOS know not to kill us
|
|
|
|
self.backgroundUpdateTask = UIApplication.shared.beginBackgroundTask {
|
2019-04-24 14:30:35 +02:00
|
|
|
UIApplication.shared.endBackgroundTask(self.backgroundUpdateTask)
|
|
|
|
self.backgroundUpdateTask = UIBackgroundTaskIdentifier.invalid
|
|
|
|
}
|
2019-04-24 18:04:20 +02:00
|
|
|
|
|
|
|
// Wait until 5 seconds after the url session has stopped sending
|
|
|
|
// This should give us plenty of time to insert database rows and update unread counts
|
|
|
|
var lastBusy = Date()
|
|
|
|
var checking = true
|
|
|
|
while (checking) {
|
|
|
|
if !urlSessionDone {
|
|
|
|
lastBusy = Date()
|
|
|
|
}
|
|
|
|
if lastBusy.addingTimeInterval(5) < Date() {
|
|
|
|
checking = false
|
|
|
|
} else {
|
|
|
|
sleep(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-24 23:29:32 +02:00
|
|
|
self.logDebugMessage("Completed processing background URL Session.")
|
|
|
|
|
2019-04-24 18:04:20 +02:00
|
|
|
UIApplication.shared.endBackgroundTask(self.backgroundUpdateTask)
|
|
|
|
self.backgroundUpdateTask = UIBackgroundTaskIdentifier.invalid
|
|
|
|
|
2019-04-24 14:30:35 +02:00
|
|
|
}
|
2019-04-24 18:04:20 +02:00
|
|
|
|
2019-04-24 14:30:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func application(_ application: UIApplication, performFetchWithCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
|
2019-04-24 23:29:32 +02:00
|
|
|
logDebugMessage("Woken to fetch articles.")
|
2019-04-24 14:30:35 +02:00
|
|
|
AccountManager.shared.refreshAll()
|
|
|
|
completionHandler(.newData)
|
|
|
|
}
|
2019-04-23 17:29:14 +02:00
|
|
|
|
2018-02-05 22:29:46 +01:00
|
|
|
// MARK: - Split view
|
|
|
|
|
|
|
|
func splitViewController(_ splitViewController: UISplitViewController, collapseSecondary secondaryViewController:UIViewController, onto primaryViewController:UIViewController) -> Bool {
|
|
|
|
guard let secondaryAsNavController = secondaryViewController as? UINavigationController else { return false }
|
|
|
|
guard let topAsDetailController = secondaryAsNavController.topViewController as? DetailViewController else { return false }
|
2019-04-22 00:42:26 +02:00
|
|
|
if topAsDetailController.navState?.currentArticle == nil {
|
2018-02-05 22:29:46 +01:00
|
|
|
// Return true to indicate that we have handled the collapse by doing nothing; the secondary controller will be discarded.
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
// MARK: Notifications
|
|
|
|
|
|
|
|
@objc func unreadCountDidChange(_ note: Notification) {
|
|
|
|
if note.object is AccountManager {
|
|
|
|
unreadCount = AccountManager.shared.unreadCount
|
|
|
|
}
|
|
|
|
}
|
2019-04-23 17:29:14 +02:00
|
|
|
|
2019-04-24 14:30:35 +02:00
|
|
|
@objc func userDefaultsDidChange(_ note: Notification) {
|
|
|
|
UIApplication.shared.setMinimumBackgroundFetchInterval(AppDefaults.refreshInterval.inSeconds())
|
2019-04-23 17:29:14 +02:00
|
|
|
}
|
2019-04-24 14:30:35 +02:00
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
// MARK: - API
|
|
|
|
|
|
|
|
func logMessage(_ message: String, type: LogItem.ItemType) {
|
|
|
|
|
|
|
|
#if DEBUG
|
|
|
|
if type == .debug {
|
|
|
|
print("logMessage: \(message) - \(type)")
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
let logItem = LogItem(type: type, message: message)
|
|
|
|
log.add(logItem)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func logDebugMessage(_ message: String) {
|
|
|
|
logMessage(message, type: .debug)
|
|
|
|
}
|
|
|
|
|
2018-02-05 22:29:46 +01:00
|
|
|
}
|
|
|
|
|