2020-03-04 07:14:38 +00:00
|
|
|
import Foundation
|
|
|
|
import UserNotifications
|
2020-03-22 00:52:51 +00:00
|
|
|
import AppKit
|
2020-03-22 01:43:26 +00:00
|
|
|
import SecretKit
|
|
|
|
import SecretAgentKit
|
|
|
|
import Brief
|
2020-03-04 07:14:38 +00:00
|
|
|
|
|
|
|
class Notifier {
|
|
|
|
|
2020-03-22 01:43:26 +00:00
|
|
|
fileprivate let notificationDelegate = NotificationDelegate()
|
|
|
|
|
|
|
|
init() {
|
|
|
|
let action = UNNotificationAction(identifier: Constants.updateIdentitifier, title: "Update", options: [])
|
|
|
|
let categories = UNNotificationCategory(identifier: Constants.updateIdentitifier, actions: [action], intentIdentifiers: [], options: [])
|
|
|
|
UNUserNotificationCenter.current().setNotificationCategories([categories])
|
|
|
|
UNUserNotificationCenter.current().delegate = notificationDelegate
|
|
|
|
}
|
|
|
|
|
2020-03-04 07:14:38 +00:00
|
|
|
func prompt() {
|
|
|
|
let notificationCenter = UNUserNotificationCenter.current()
|
|
|
|
notificationCenter.requestAuthorization(options: .alert) { _, _ in
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-17 07:56:55 +00:00
|
|
|
func notify(accessTo secret: AnySecret, by provenance: SigningRequestProvenance) {
|
2020-03-04 07:14:38 +00:00
|
|
|
let notificationCenter = UNUserNotificationCenter.current()
|
|
|
|
let notificationContent = UNMutableNotificationContent()
|
2020-03-22 00:52:51 +00:00
|
|
|
notificationContent.title = "Signed Request from \(provenance.origin.name)"
|
2020-03-22 00:55:31 +00:00
|
|
|
notificationContent.subtitle = "Using secret \"\(secret.name)\""
|
2020-03-22 00:52:51 +00:00
|
|
|
if let iconURL = iconURL(for: provenance), let attachment = try? UNNotificationAttachment(identifier: "icon", url: iconURL, options: nil) {
|
|
|
|
notificationContent.attachments = [attachment]
|
|
|
|
}
|
2020-03-04 07:14:38 +00:00
|
|
|
let request = UNNotificationRequest(identifier: UUID().uuidString, content: notificationContent, trigger: nil)
|
|
|
|
notificationCenter.add(request, withCompletionHandler: nil)
|
|
|
|
}
|
|
|
|
|
2020-03-22 01:43:26 +00:00
|
|
|
func notify(update: Release) {
|
|
|
|
notificationDelegate.release = update
|
|
|
|
let notificationCenter = UNUserNotificationCenter.current()
|
|
|
|
let notificationContent = UNMutableNotificationContent()
|
|
|
|
if update.critical {
|
|
|
|
notificationContent.title = "Critical Security Update - \(update.name)"
|
|
|
|
} else {
|
|
|
|
notificationContent.title = "Update Available - \(update.name)"
|
|
|
|
}
|
|
|
|
notificationContent.subtitle = "Click to Update"
|
|
|
|
notificationContent.body = update.body
|
|
|
|
notificationContent.categoryIdentifier = Constants.updateIdentitifier
|
|
|
|
let request = UNNotificationRequest(identifier: UUID().uuidString, content: notificationContent, trigger: nil)
|
|
|
|
notificationCenter.add(request, withCompletionHandler: nil)
|
|
|
|
}
|
|
|
|
|
2020-03-04 07:14:38 +00:00
|
|
|
}
|
2020-03-17 06:39:34 +00:00
|
|
|
|
2020-03-22 00:52:51 +00:00
|
|
|
extension Notifier {
|
|
|
|
|
|
|
|
func iconURL(for provenance: SigningRequestProvenance) -> URL? {
|
|
|
|
do {
|
|
|
|
if let app = NSRunningApplication(processIdentifier: provenance.origin.pid), let icon = app.icon?.tiffRepresentation {
|
|
|
|
let temporaryURL = URL(fileURLWithPath: (NSTemporaryDirectory() as NSString).appendingPathComponent("\(UUID().uuidString).png"))
|
|
|
|
let bitmap = NSBitmapImageRep(data: icon)
|
|
|
|
try bitmap?.representation(using: .png, properties: [:])?.write(to: temporaryURL)
|
|
|
|
return temporaryURL
|
|
|
|
}
|
|
|
|
} catch {
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-03-17 06:39:34 +00:00
|
|
|
extension Notifier: SigningWitness {
|
|
|
|
|
2020-03-19 03:04:24 +00:00
|
|
|
func speakNowOrForeverHoldYourPeace(forAccessTo secret: AnySecret, by provenance: SigningRequestProvenance) throws {
|
|
|
|
}
|
|
|
|
|
2020-03-17 07:56:55 +00:00
|
|
|
func witness(accessTo secret: AnySecret, by provenance: SigningRequestProvenance) throws {
|
|
|
|
notify(accessTo: secret, by: provenance)
|
2020-03-17 06:39:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2020-03-22 01:43:26 +00:00
|
|
|
|
|
|
|
extension Notifier {
|
|
|
|
|
|
|
|
enum Constants {
|
|
|
|
static let updateIdentitifier = "com.maxgoedjen.Secretive.SecretAgent.update"
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
class NotificationDelegate: NSObject, UNUserNotificationCenterDelegate {
|
|
|
|
|
|
|
|
fileprivate var release: Release?
|
|
|
|
|
|
|
|
func userNotificationCenter(_ center: UNUserNotificationCenter, openSettingsFor notification: UNNotification?) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
|
|
|
|
guard response.notification.request.content.categoryIdentifier == Notifier.Constants.updateIdentitifier else { return }
|
|
|
|
guard let update = release else { return }
|
|
|
|
NSWorkspace.shared.open(update.html_url)
|
|
|
|
completionHandler()
|
|
|
|
}
|
|
|
|
|
|
|
|
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
|
|
|
|
completionHandler(.alert)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|