2019-08-24 21:57:51 +02:00
|
|
|
//
|
2019-08-25 21:43:11 +02:00
|
|
|
// ActivityManager.swift
|
2019-08-24 21:57:51 +02:00
|
|
|
// NetNewsWire-iOS
|
|
|
|
//
|
|
|
|
// Created by Maurice Parker on 8/23/19.
|
|
|
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import CoreSpotlight
|
|
|
|
import CoreServices
|
2019-11-14 22:06:32 +01:00
|
|
|
import RSCore
|
2019-08-27 21:20:34 +02:00
|
|
|
import Account
|
2019-08-24 21:57:51 +02:00
|
|
|
import Articles
|
2019-08-26 00:04:15 +02:00
|
|
|
import Intents
|
2019-08-24 21:57:51 +02:00
|
|
|
|
2019-08-25 21:43:11 +02:00
|
|
|
class ActivityManager {
|
2019-08-24 21:57:51 +02:00
|
|
|
|
2019-09-03 22:52:59 +02:00
|
|
|
private var nextUnreadActivity: NSUserActivity?
|
|
|
|
private var selectingActivity: NSUserActivity?
|
|
|
|
private var readingActivity: NSUserActivity?
|
2019-10-04 02:05:54 +02:00
|
|
|
private var readingArticle: Article?
|
2019-08-26 00:04:15 +02:00
|
|
|
|
2019-11-26 23:33:11 +01:00
|
|
|
var stateRestorationActivity: NSUserActivity {
|
|
|
|
if let activity = readingActivity {
|
|
|
|
return activity
|
2019-09-01 02:30:21 +02:00
|
|
|
}
|
2019-11-26 23:33:11 +01:00
|
|
|
|
|
|
|
if let activity = selectingActivity {
|
|
|
|
return activity
|
|
|
|
}
|
|
|
|
|
|
|
|
let activity = NSUserActivity(activityType: ActivityType.restoration.rawValue)
|
2019-11-27 00:00:13 +01:00
|
|
|
#if os(iOS)
|
2019-11-26 23:33:11 +01:00
|
|
|
activity.persistentIdentifier = UUID().uuidString
|
2019-11-27 00:00:13 +01:00
|
|
|
#endif
|
2019-11-26 23:33:11 +01:00
|
|
|
activity.becomeCurrent()
|
|
|
|
return activity
|
2019-09-01 02:30:21 +02:00
|
|
|
}
|
|
|
|
|
2019-08-28 18:44:54 +02:00
|
|
|
init() {
|
2019-11-15 03:11:41 +01:00
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(webFeedIconDidBecomeAvailable(_:)), name: .WebFeedIconDidBecomeAvailable, object: nil)
|
2019-08-28 18:44:54 +02:00
|
|
|
}
|
|
|
|
|
2019-09-01 22:31:11 +02:00
|
|
|
func invalidateCurrentActivities() {
|
2019-09-03 22:52:59 +02:00
|
|
|
invalidateReading()
|
|
|
|
invalidateSelecting()
|
|
|
|
invalidateNextUnread()
|
2019-09-01 22:31:11 +02:00
|
|
|
}
|
|
|
|
|
2019-11-15 13:19:14 +01:00
|
|
|
func selecting(feed: Feed) {
|
2019-09-03 22:52:59 +02:00
|
|
|
invalidateCurrentActivities()
|
|
|
|
|
2019-11-15 13:19:14 +01:00
|
|
|
selectingActivity = makeSelectFeedActivity(feed: feed)
|
2019-09-03 22:52:59 +02:00
|
|
|
|
2019-11-15 13:19:14 +01:00
|
|
|
if let webFeed = feed as? WebFeed {
|
|
|
|
updateSelectingActivityFeedSearchAttributes(with: webFeed)
|
2019-11-14 22:06:32 +01:00
|
|
|
}
|
2019-08-28 00:43:15 +02:00
|
|
|
|
2019-10-18 20:01:28 +02:00
|
|
|
donate(selectingActivity!)
|
2019-08-26 00:04:15 +02:00
|
|
|
}
|
|
|
|
|
2019-09-03 22:52:59 +02:00
|
|
|
func invalidateSelecting() {
|
|
|
|
selectingActivity?.invalidate()
|
|
|
|
selectingActivity = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func selectingNextUnread() {
|
|
|
|
guard nextUnreadActivity == nil else { return }
|
2019-11-14 22:06:32 +01:00
|
|
|
|
|
|
|
nextUnreadActivity = NSUserActivity(activityType: ActivityType.nextUnread.rawValue)
|
|
|
|
nextUnreadActivity!.title = NSLocalizedString("See first unread article", comment: "First Unread")
|
|
|
|
|
|
|
|
#if os(iOS)
|
|
|
|
nextUnreadActivity!.suggestedInvocationPhrase = nextUnreadActivity!.title
|
|
|
|
nextUnreadActivity!.isEligibleForPrediction = true
|
|
|
|
nextUnreadActivity!.persistentIdentifier = "nextUnread:"
|
|
|
|
nextUnreadActivity!.contentAttributeSet?.relatedUniqueIdentifier = "nextUnread:"
|
|
|
|
#endif
|
|
|
|
|
2019-10-18 20:01:28 +02:00
|
|
|
donate(nextUnreadActivity!)
|
2019-09-03 22:52:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func invalidateNextUnread() {
|
|
|
|
nextUnreadActivity?.invalidate()
|
|
|
|
nextUnreadActivity = nil
|
|
|
|
}
|
|
|
|
|
2019-11-15 13:19:14 +01:00
|
|
|
func reading(feed: Feed?, article: Article?) {
|
2019-09-03 22:52:59 +02:00
|
|
|
invalidateReading()
|
|
|
|
invalidateNextUnread()
|
2019-10-04 02:05:54 +02:00
|
|
|
|
2019-11-14 22:35:19 +01:00
|
|
|
guard let article = article else { return }
|
2019-11-15 13:19:14 +01:00
|
|
|
readingActivity = makeReadArticleActivity(feed: feed, article: article)
|
2019-10-04 02:05:54 +02:00
|
|
|
|
|
|
|
#if os(iOS)
|
|
|
|
updateReadArticleSearchAttributes(with: article)
|
|
|
|
#endif
|
|
|
|
|
2019-10-18 20:01:28 +02:00
|
|
|
donate(readingActivity!)
|
2019-08-26 00:04:15 +02:00
|
|
|
}
|
|
|
|
|
2019-09-03 22:52:59 +02:00
|
|
|
func invalidateReading() {
|
2019-09-24 14:01:22 +02:00
|
|
|
readingActivity?.invalidate()
|
|
|
|
readingActivity = nil
|
2019-10-04 02:05:54 +02:00
|
|
|
readingArticle = nil
|
2019-09-03 22:52:59 +02:00
|
|
|
}
|
|
|
|
|
2019-10-03 22:49:27 +02:00
|
|
|
#if os(iOS)
|
2019-09-01 02:30:21 +02:00
|
|
|
static func cleanUp(_ account: Account) {
|
2019-08-28 18:30:40 +02:00
|
|
|
var ids = [String]()
|
|
|
|
|
|
|
|
if let folders = account.folders {
|
|
|
|
for folder in folders {
|
|
|
|
ids.append(identifer(for: folder))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-15 03:11:41 +01:00
|
|
|
for webFeed in account.flattenedWebFeeds() {
|
|
|
|
ids.append(contentsOf: identifers(for: webFeed))
|
2019-08-28 18:30:40 +02:00
|
|
|
}
|
|
|
|
|
2019-10-18 20:01:28 +02:00
|
|
|
CSSearchableIndex.default().deleteSearchableItems(withIdentifiers: ids)
|
2019-08-28 18:30:40 +02:00
|
|
|
}
|
|
|
|
|
2019-09-01 02:30:21 +02:00
|
|
|
static func cleanUp(_ folder: Folder) {
|
2019-08-28 18:30:40 +02:00
|
|
|
var ids = [String]()
|
|
|
|
ids.append(identifer(for: folder))
|
|
|
|
|
2019-11-15 03:11:41 +01:00
|
|
|
for webFeed in folder.flattenedWebFeeds() {
|
|
|
|
ids.append(contentsOf: identifers(for: webFeed))
|
2019-08-28 18:30:40 +02:00
|
|
|
}
|
|
|
|
|
2019-10-18 20:01:28 +02:00
|
|
|
CSSearchableIndex.default().deleteSearchableItems(withIdentifiers: ids)
|
2019-08-28 18:30:40 +02:00
|
|
|
}
|
|
|
|
|
2019-11-15 03:11:41 +01:00
|
|
|
static func cleanUp(_ webFeed: WebFeed) {
|
|
|
|
CSSearchableIndex.default().deleteSearchableItems(withIdentifiers: identifers(for: webFeed))
|
2019-08-28 18:30:40 +02:00
|
|
|
}
|
2019-10-03 22:49:27 +02:00
|
|
|
#endif
|
|
|
|
|
2019-11-15 03:11:41 +01:00
|
|
|
@objc func webFeedIconDidBecomeAvailable(_ note: Notification) {
|
|
|
|
guard let webFeed = note.userInfo?[UserInfoKey.webFeed] as? WebFeed, let activityFeedId = selectingActivity?.userInfo?[ArticlePathKey.webFeedID] as? String else {
|
2019-08-28 18:44:54 +02:00
|
|
|
return
|
|
|
|
}
|
2019-10-04 02:05:54 +02:00
|
|
|
|
2019-10-04 02:37:04 +02:00
|
|
|
#if os(iOS)
|
2019-11-15 03:11:41 +01:00
|
|
|
if let article = readingArticle, activityFeedId == article.webFeedID {
|
2019-10-04 02:05:54 +02:00
|
|
|
updateReadArticleSearchAttributes(with: article)
|
|
|
|
}
|
2019-10-04 02:37:04 +02:00
|
|
|
#endif
|
2019-10-04 02:05:54 +02:00
|
|
|
|
2019-11-15 03:11:41 +01:00
|
|
|
if activityFeedId == webFeed.webFeedID {
|
|
|
|
updateSelectingActivityFeedSearchAttributes(with: webFeed)
|
2019-08-28 18:44:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-26 00:04:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: Private
|
|
|
|
|
|
|
|
private extension ActivityManager {
|
|
|
|
|
2019-11-15 13:19:14 +01:00
|
|
|
func makeSelectFeedActivity(feed: Feed) -> NSUserActivity {
|
2019-11-14 22:06:32 +01:00
|
|
|
let activity = NSUserActivity(activityType: ActivityType.selectFeed.rawValue)
|
|
|
|
|
|
|
|
let localizedText = NSLocalizedString("See articles in “%@”", comment: "See articles in Folder")
|
2019-11-15 13:19:14 +01:00
|
|
|
let title = NSString.localizedStringWithFormat(localizedText as NSString, feed.nameForDisplay) as String
|
2019-08-26 00:04:15 +02:00
|
|
|
activity.title = title
|
2019-11-14 22:06:32 +01:00
|
|
|
|
2019-08-26 00:04:15 +02:00
|
|
|
activity.keywords = Set(makeKeywords(title))
|
|
|
|
activity.isEligibleForSearch = true
|
2019-11-14 22:06:32 +01:00
|
|
|
|
2019-11-15 13:19:14 +01:00
|
|
|
let articleFetcherIdentifierUserInfo = feed.feedID?.userInfo ?? [AnyHashable: Any]()
|
2019-11-14 22:06:32 +01:00
|
|
|
activity.userInfo = [UserInfoKey.feedIdentifier: articleFetcherIdentifierUserInfo]
|
|
|
|
activity.requiredUserInfoKeys = Set(activity.userInfo!.keys.map { $0 as! String })
|
2019-10-03 22:49:27 +02:00
|
|
|
|
|
|
|
#if os(iOS)
|
|
|
|
activity.suggestedInvocationPhrase = title
|
|
|
|
activity.isEligibleForPrediction = true
|
2019-11-15 13:19:14 +01:00
|
|
|
activity.persistentIdentifier = feed.feedID?.description ?? ""
|
|
|
|
activity.contentAttributeSet?.relatedUniqueIdentifier = feed.feedID?.description ?? ""
|
2019-10-03 22:49:27 +02:00
|
|
|
#endif
|
|
|
|
|
2019-08-26 00:04:15 +02:00
|
|
|
return activity
|
|
|
|
}
|
|
|
|
|
2019-11-15 13:19:14 +01:00
|
|
|
func makeReadArticleActivity(feed: Feed?, article: Article) -> NSUserActivity {
|
2019-08-25 02:31:29 +02:00
|
|
|
let activity = NSUserActivity(activityType: ActivityType.readArticle.rawValue)
|
2019-10-20 09:33:28 +02:00
|
|
|
activity.title = ArticleStringFormatter.truncatedTitle(article)
|
2019-11-14 22:06:32 +01:00
|
|
|
|
2019-11-15 13:19:14 +01:00
|
|
|
if let feed = feed {
|
|
|
|
let articleFetcherIdentifierUserInfo = feed.feedID?.userInfo ?? [AnyHashable: Any]()
|
2019-11-14 22:35:19 +01:00
|
|
|
let articlePathUserInfo = article.pathUserInfo
|
|
|
|
activity.userInfo = [UserInfoKey.feedIdentifier: articleFetcherIdentifierUserInfo, UserInfoKey.articlePath: articlePathUserInfo]
|
|
|
|
} else {
|
|
|
|
activity.userInfo = [UserInfoKey.articlePath: article.pathUserInfo]
|
|
|
|
}
|
2019-11-14 22:06:32 +01:00
|
|
|
activity.requiredUserInfoKeys = Set(activity.userInfo!.keys.map { $0 as! String })
|
|
|
|
|
2019-10-03 22:49:27 +02:00
|
|
|
activity.isEligibleForHandoff = true
|
|
|
|
|
|
|
|
#if os(iOS)
|
2019-10-04 02:05:54 +02:00
|
|
|
activity.keywords = Set(makeKeywords(article))
|
2019-08-24 21:57:51 +02:00
|
|
|
activity.isEligibleForSearch = true
|
|
|
|
activity.isEligibleForPrediction = false
|
2019-09-01 02:30:21 +02:00
|
|
|
activity.persistentIdentifier = ActivityManager.identifer(for: article)
|
2019-10-04 02:05:54 +02:00
|
|
|
updateReadArticleSearchAttributes(with: article)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
readingArticle = article
|
|
|
|
|
|
|
|
return activity
|
|
|
|
}
|
|
|
|
|
2019-10-04 02:37:04 +02:00
|
|
|
#if os(iOS)
|
2019-10-04 02:05:54 +02:00
|
|
|
func updateReadArticleSearchAttributes(with article: Article) {
|
2019-08-24 21:57:51 +02:00
|
|
|
|
|
|
|
let attributeSet = CSSearchableItemAttributeSet(itemContentType: kUTTypeCompositeContent as String)
|
2019-10-20 09:33:28 +02:00
|
|
|
attributeSet.title = ArticleStringFormatter.truncatedTitle(article)
|
2019-08-24 21:57:51 +02:00
|
|
|
attributeSet.contentDescription = article.summary
|
2019-10-04 02:05:54 +02:00
|
|
|
attributeSet.keywords = makeKeywords(article)
|
2019-10-18 20:01:28 +02:00
|
|
|
attributeSet.relatedUniqueIdentifier = ActivityManager.identifer(for: article)
|
|
|
|
|
2019-11-06 01:05:57 +01:00
|
|
|
if let iconImage = article.iconImage() {
|
|
|
|
attributeSet.thumbnailData = iconImage.image.pngData()
|
2019-08-24 21:57:51 +02:00
|
|
|
}
|
|
|
|
|
2019-10-04 02:05:54 +02:00
|
|
|
readingActivity?.contentAttributeSet = attributeSet
|
|
|
|
readingActivity?.needsSave = true
|
|
|
|
|
|
|
|
}
|
2019-10-04 02:37:04 +02:00
|
|
|
#endif
|
2019-10-04 02:05:54 +02:00
|
|
|
|
|
|
|
func makeKeywords(_ article: Article) -> [String] {
|
2019-11-15 03:11:41 +01:00
|
|
|
let feedNameKeywords = makeKeywords(article.webFeed?.nameForDisplay)
|
2019-10-20 09:33:28 +02:00
|
|
|
let articleTitleKeywords = makeKeywords(ArticleStringFormatter.truncatedTitle(article))
|
2019-10-04 02:05:54 +02:00
|
|
|
return feedNameKeywords + articleTitleKeywords
|
2019-08-24 21:57:51 +02:00
|
|
|
}
|
|
|
|
|
2019-08-26 00:04:15 +02:00
|
|
|
func makeKeywords(_ value: String?) -> [String] {
|
|
|
|
return value?.components(separatedBy: " ").filter { $0.count > 2 } ?? []
|
|
|
|
}
|
|
|
|
|
2019-11-15 03:11:41 +01:00
|
|
|
func updateSelectingActivityFeedSearchAttributes(with feed: WebFeed) {
|
2019-09-01 02:30:21 +02:00
|
|
|
|
|
|
|
let attributeSet = CSSearchableItemAttributeSet(itemContentType: kUTTypeItem as String)
|
|
|
|
attributeSet.title = feed.nameForDisplay
|
|
|
|
attributeSet.keywords = makeKeywords(feed.nameForDisplay)
|
2019-10-18 20:01:28 +02:00
|
|
|
attributeSet.relatedUniqueIdentifier = ActivityManager.identifer(for: feed)
|
2019-11-15 03:11:41 +01:00
|
|
|
if let iconImage = appDelegate.webFeedIconDownloader.icon(for: feed) {
|
2019-11-06 01:05:57 +01:00
|
|
|
attributeSet.thumbnailData = iconImage.image.dataRepresentation()
|
|
|
|
} else if let iconImage = appDelegate.faviconDownloader.faviconAsIcon(for: feed) {
|
|
|
|
attributeSet.thumbnailData = iconImage.image.dataRepresentation()
|
2019-09-01 02:30:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
selectingActivity!.contentAttributeSet = attributeSet
|
|
|
|
selectingActivity!.needsSave = true
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-10-18 20:01:28 +02:00
|
|
|
func donate(_ activity: NSUserActivity) {
|
|
|
|
// You have to put the search item in the index or the activity won't index
|
|
|
|
// itself because the relatedUniqueIdentifier on the activity attributeset is populated.
|
|
|
|
if let attributeSet = activity.contentAttributeSet {
|
|
|
|
let identifier = attributeSet.relatedUniqueIdentifier
|
|
|
|
let tempAttributeSet = CSSearchableItemAttributeSet(itemContentType: kUTTypeItem as String)
|
|
|
|
let searchableItem = CSSearchableItem(uniqueIdentifier: identifier, domainIdentifier: nil, attributeSet: tempAttributeSet)
|
|
|
|
CSSearchableIndex.default().indexSearchableItems([searchableItem])
|
|
|
|
}
|
|
|
|
|
|
|
|
activity.becomeCurrent()
|
|
|
|
}
|
|
|
|
|
2019-09-01 02:30:21 +02:00
|
|
|
static func identifer(for folder: Folder) -> String {
|
2019-08-28 18:30:40 +02:00
|
|
|
return "account_\(folder.account!.accountID)_folder_\(folder.nameForDisplay)"
|
|
|
|
}
|
|
|
|
|
2019-11-15 03:11:41 +01:00
|
|
|
static func identifer(for feed: WebFeed) -> String {
|
|
|
|
return "account_\(feed.account!.accountID)_feed_\(feed.webFeedID)"
|
2019-08-28 18:30:40 +02:00
|
|
|
}
|
|
|
|
|
2019-09-01 02:30:21 +02:00
|
|
|
static func identifer(for article: Article) -> String {
|
2019-11-15 03:11:41 +01:00
|
|
|
return "account_\(article.accountID)_feed_\(article.webFeedID)_article_\(article.articleID)"
|
2019-08-28 18:30:40 +02:00
|
|
|
}
|
|
|
|
|
2019-11-15 03:11:41 +01:00
|
|
|
static func identifers(for feed: WebFeed) -> [String] {
|
2019-08-28 18:30:40 +02:00
|
|
|
var ids = [String]()
|
|
|
|
ids.append(identifer(for: feed))
|
2019-12-17 07:45:59 +01:00
|
|
|
if let articles = try? feed.fetchArticles() {
|
|
|
|
for article in articles {
|
|
|
|
ids.append(identifer(for: article))
|
|
|
|
}
|
2019-08-28 18:30:40 +02:00
|
|
|
}
|
2019-12-17 07:45:59 +01:00
|
|
|
|
2019-08-28 18:30:40 +02:00
|
|
|
return ids
|
|
|
|
}
|
2019-08-24 21:57:51 +02:00
|
|
|
}
|