48 lines
1.3 KiB
Swift
48 lines
1.3 KiB
Swift
//
|
|
// Browser.swift
|
|
// Evergren
|
|
//
|
|
// Created by Brent Simmons on 2/23/16.
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import RSWeb
|
|
|
|
struct Browser {
|
|
|
|
static var defaultBrowser: MacWebBrowser? {
|
|
if let bundleID = AppDefaults.defaultBrowserID, let browser = MacWebBrowser(bundleIdentifier: bundleID) {
|
|
return browser
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
static func open(_ urlString: String) {
|
|
// Opens according to prefs.
|
|
open(urlString, inBackground: invert ? !AppDefaults.openInBrowserInBackground : AppDefaults.openInBrowserInBackground)
|
|
}
|
|
|
|
static func open(_ urlString: String, inBackground: Bool) {
|
|
if let url = URL(string: urlString) {
|
|
if let defaultBrowser = defaultBrowser {
|
|
defaultBrowser.openURL(url, inBackground: inBackground)
|
|
} else {
|
|
MacWebBrowser.openURL(url, inBackground: inBackground)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
extension Browser {
|
|
|
|
static var titleForOpenInBrowserInverted: String {
|
|
let openInBackgroundPref = AppDefaults.openInBrowserInBackground
|
|
|
|
return openInBackgroundPref ?
|
|
NSLocalizedString("Open in Browser in Foreground", comment: "Open in Browser in Foreground menu item title") :
|
|
NSLocalizedString("Open in Browser in Background", comment: "Open in Browser in Background menu item title")
|
|
}
|
|
}
|