2019-10-03 02:42:16 +02:00
|
|
|
//
|
|
|
|
// NotificationManager.swift
|
|
|
|
// NetNewsWire
|
|
|
|
//
|
|
|
|
// Created by Maurice Parker on 10/2/19.
|
|
|
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import Account
|
|
|
|
import Articles
|
|
|
|
import UserNotifications
|
|
|
|
|
|
|
|
final class UserNotificationManager: NSObject {
|
|
|
|
|
|
|
|
override init() {
|
|
|
|
super.init()
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(accountDidDownloadArticles(_:)), name: .AccountDidDownloadArticles, object: nil)
|
2019-10-04 18:20:57 +02:00
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(statusesDidChange(_:)), name: .StatusesDidChange, object: nil)
|
2019-10-03 02:42:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@objc func accountDidDownloadArticles(_ note: Notification) {
|
|
|
|
guard let articles = note.userInfo?[Account.UserInfoKey.newArticles] as? Set<Article> else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for article in articles {
|
2019-10-03 18:44:54 +02:00
|
|
|
if !article.status.read, let feed = article.feed, feed.isNotifyAboutNewArticles ?? false {
|
2019-10-03 02:42:16 +02:00
|
|
|
sendNotification(feed: feed, article: article)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-04 18:20:57 +02:00
|
|
|
@objc func statusesDidChange(_ note: Notification) {
|
|
|
|
guard let articles = note.userInfo?[Account.UserInfoKey.articles] as? Set<Article> else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
let identifiers = articles.filter({ $0.status.read }).map { "articleID:\($0.articleID)" }
|
|
|
|
UNUserNotificationCenter.current().removeDeliveredNotifications(withIdentifiers: identifiers)
|
|
|
|
}
|
|
|
|
|
2019-10-03 02:42:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private extension UserNotificationManager {
|
|
|
|
|
|
|
|
private func sendNotification(feed: Feed, article: Article) {
|
|
|
|
let content = UNMutableNotificationContent()
|
2019-10-03 16:53:21 +02:00
|
|
|
|
2019-10-03 02:42:16 +02:00
|
|
|
content.title = feed.nameForDisplay
|
2019-10-20 09:28:00 +02:00
|
|
|
content.body = ArticleStringFormatter.truncatedTitle(article)
|
2019-10-03 16:53:21 +02:00
|
|
|
if content.body.isEmpty {
|
2019-10-20 09:28:00 +02:00
|
|
|
content.body = ArticleStringFormatter.truncatedSummary(article)
|
2019-10-03 16:53:21 +02:00
|
|
|
}
|
|
|
|
|
2019-10-03 02:42:16 +02:00
|
|
|
content.sound = UNNotificationSound.default
|
2019-10-03 16:53:21 +02:00
|
|
|
content.userInfo = article.deepLinkUserInfo
|
|
|
|
|
2019-10-03 02:42:16 +02:00
|
|
|
let request = UNNotificationRequest.init(identifier: "articleID:\(article.articleID)", content: content, trigger: nil)
|
|
|
|
UNUserNotificationCenter.current().add(request)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|