623 lines
24 KiB
Swift
Executable File
623 lines
24 KiB
Swift
Executable File
//
|
|
// AppDelegate.swift
|
|
// ShadowsocksX-NG
|
|
//
|
|
// Created by 邱宇舟 on 16/6/5.
|
|
// Copyright © 2016年 qiuyuzhou. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
import Carbon
|
|
import RxCocoa
|
|
import RxSwift
|
|
|
|
@NSApplicationMain
|
|
class AppDelegate: NSObject, NSApplicationDelegate, NSUserNotificationCenterDelegate {
|
|
|
|
var shareWinCtrl: ShareServerProfilesWindowController!
|
|
var qrcodeWinCtrl: SWBQRCodeWindowController!
|
|
var preferencesWinCtrl: PreferencesWindowController!
|
|
var editUserRulesWinCtrl: UserRulesController!
|
|
var allInOnePreferencesWinCtrl: PreferencesWinController!
|
|
var toastWindowCtrl: ToastWindowController!
|
|
|
|
@IBOutlet weak var window: NSWindow!
|
|
@IBOutlet weak var statusMenu: NSMenu!
|
|
|
|
@IBOutlet weak var runningStatusMenuItem: NSMenuItem!
|
|
@IBOutlet weak var toggleRunningMenuItem: NSMenuItem!
|
|
@IBOutlet weak var autoModeMenuItem: NSMenuItem!
|
|
@IBOutlet weak var globalModeMenuItem: NSMenuItem!
|
|
@IBOutlet weak var manualModeMenuItem: NSMenuItem!
|
|
|
|
@IBOutlet weak var serversMenuItem: NSMenuItem!
|
|
@IBOutlet var showQRCodeMenuItem: NSMenuItem!
|
|
@IBOutlet var scanQRCodeMenuItem: NSMenuItem!
|
|
@IBOutlet var serverProfilesBeginSeparatorMenuItem: NSMenuItem!
|
|
@IBOutlet var serverProfilesEndSeparatorMenuItem: NSMenuItem!
|
|
|
|
@IBOutlet weak var copyHttpProxyExportCmdLineMenuItem: NSMenuItem!
|
|
|
|
@IBOutlet weak var lanchAtLoginMenuItem: NSMenuItem!
|
|
|
|
@IBOutlet weak var hudWindow: NSPanel!
|
|
@IBOutlet weak var panelView: NSView!
|
|
@IBOutlet weak var isNameTextField: NSTextField!
|
|
|
|
let kProfileMenuItemIndexBase = 100
|
|
|
|
var statusItem: NSStatusItem!
|
|
static let StatusItemIconWidth: CGFloat = NSStatusItem.variableLength
|
|
|
|
func ensureLaunchAgentsDirOwner () {
|
|
let dirPath = NSHomeDirectory() + "/Library/LaunchAgents"
|
|
let fileMgr = FileManager.default
|
|
if fileMgr.fileExists(atPath: dirPath) {
|
|
do {
|
|
let attrs = try fileMgr.attributesOfItem(atPath: dirPath)
|
|
if attrs[FileAttributeKey.ownerAccountName] as! String != NSUserName() {
|
|
//try fileMgr.setAttributes([FileAttributeKey.ownerAccountName: NSUserName()], ofItemAtPath: dirPath)
|
|
let bashFilePath = Bundle.main.path(forResource: "fix_dir_owner.sh", ofType: nil)!
|
|
let script = "do shell script \"bash \\\"\(bashFilePath)\\\" \(NSUserName()) \" with administrator privileges"
|
|
if let appleScript = NSAppleScript(source: script) {
|
|
var err: NSDictionary? = nil
|
|
appleScript.executeAndReturnError(&err)
|
|
}
|
|
}
|
|
}
|
|
catch {
|
|
NSLog("Error when ensure the owner of $HOME/Library/LaunchAgents, \(error.localizedDescription)")
|
|
}
|
|
}
|
|
}
|
|
|
|
func applicationDidFinishLaunching(_ aNotification: Notification) {
|
|
|
|
_ = LaunchAtLoginController()// Ensure set when launch
|
|
|
|
NSUserNotificationCenter.default.delegate = self
|
|
|
|
self.ensureLaunchAgentsDirOwner()
|
|
|
|
// Prepare ss-local
|
|
InstallSSLocal()
|
|
InstallPrivoxy()
|
|
InstallSimpleObfs()
|
|
// Prepare defaults
|
|
let defaults = UserDefaults.standard
|
|
defaults.register(defaults: [
|
|
"ShadowsocksOn": true,
|
|
"ShadowsocksRunningMode": "auto",
|
|
"LocalSocks5.ListenPort": NSNumber(value: 1086 as UInt16),
|
|
"LocalSocks5.ListenAddress": "127.0.0.1",
|
|
"PacServer.ListenPort":NSNumber(value: 1089 as UInt16),
|
|
"LocalSocks5.Timeout": NSNumber(value: 60 as UInt),
|
|
"LocalSocks5.EnableUDPRelay": NSNumber(value: false as Bool),
|
|
"LocalSocks5.EnableVerboseMode": NSNumber(value: false as Bool),
|
|
"GFWListURL": "https://raw.githubusercontent.com/gfwlist/gfwlist/master/gfwlist.txt",
|
|
"AutoConfigureNetworkServices": NSNumber(value: true as Bool),
|
|
"LocalHTTP.ListenAddress": "127.0.0.1",
|
|
"LocalHTTP.ListenPort": NSNumber(value: 1087 as UInt16),
|
|
"LocalHTTPOn": true,
|
|
"LocalHTTP.FollowGlobal": true,
|
|
"Kcptun.LocalHost": "127.0.0.1",
|
|
"Kcptun.LocalPort": NSNumber(value: 8388),
|
|
"Kcptun.Conn": NSNumber(value: 1),
|
|
"ProxyExceptions": "127.0.0.1, localhost, 192.168.0.0/16, 10.0.0.0/8",
|
|
])
|
|
|
|
statusItem = NSStatusBar.system.statusItem(withLength: AppDelegate.StatusItemIconWidth)
|
|
let image : NSImage = NSImage(named: NSImage.Name(rawValue: "menu_icon"))!
|
|
image.isTemplate = true
|
|
statusItem.image = image
|
|
statusItem.menu = statusMenu
|
|
|
|
let notifyCenter = NotificationCenter.default
|
|
|
|
_ = notifyCenter.rx.notification(NOTIFY_CONF_CHANGED)
|
|
.subscribe(onNext: { noti in
|
|
self.applyConfig()
|
|
self.updateCopyHttpProxyExportMenu()
|
|
})
|
|
|
|
notifyCenter.addObserver(forName: NOTIFY_SERVER_PROFILES_CHANGED, object: nil, queue: nil
|
|
, using: {
|
|
(note) in
|
|
let profileMgr = ServerProfileManager.instance
|
|
if profileMgr.activeProfileId == nil &&
|
|
profileMgr.profiles.count > 0{
|
|
if profileMgr.profiles[0].isValid(){
|
|
profileMgr.setActiveProfiledId(profileMgr.profiles[0].uuid)
|
|
}
|
|
}
|
|
self.updateServersMenu()
|
|
self.updateRunningModeMenu()
|
|
SyncSSLocal()
|
|
}
|
|
)
|
|
_ = notifyCenter.rx.notification(NOTIFY_TOGGLE_RUNNING_SHORTCUT)
|
|
.subscribe(onNext: { noti in
|
|
self.doToggleRunning(showToast: true)
|
|
})
|
|
_ = notifyCenter.rx.notification(NOTIFY_SWITCH_PROXY_MODE_SHORTCUT)
|
|
.subscribe(onNext: { noti in
|
|
let mode = defaults.string(forKey: "ShadowsocksRunningMode")!
|
|
|
|
var toastMessage: String!;
|
|
switch mode {
|
|
case "auto":
|
|
defaults.setValue("global", forKey: "ShadowsocksRunningMode")
|
|
toastMessage = "Global Mode".localized
|
|
case "global":
|
|
defaults.setValue("auto", forKey: "ShadowsocksRunningMode")
|
|
toastMessage = "Auto Mode By PAC".localized
|
|
default:
|
|
defaults.setValue("auto", forKey: "ShadowsocksRunningMode")
|
|
toastMessage = "Auto Mode By PAC".localized
|
|
}
|
|
|
|
self.updateRunningModeMenu()
|
|
self.applyConfig()
|
|
|
|
self.makeToast(toastMessage)
|
|
})
|
|
|
|
_ = notifyCenter.rx.notification(NOTIFY_FOUND_SS_URL)
|
|
.subscribe(onNext: { noti in
|
|
self.handleFoundSSURL(noti)
|
|
})
|
|
|
|
// Handle ss url scheme
|
|
NSAppleEventManager.shared().setEventHandler(self
|
|
, andSelector: #selector(self.handleURLEvent)
|
|
, forEventClass: AEEventClass(kInternetEventClass), andEventID: AEEventID(kAEGetURL))
|
|
|
|
updateMainMenu()
|
|
updateCopyHttpProxyExportMenu()
|
|
updateServersMenu()
|
|
updateRunningModeMenu()
|
|
|
|
ProxyConfHelper.install()
|
|
ProxyConfHelper.startMonitorPAC()
|
|
applyConfig()
|
|
|
|
// Register global hotkey
|
|
ShortcutsController.bindShortcuts()
|
|
}
|
|
|
|
func applicationWillTerminate(_ aNotification: Notification) {
|
|
// Insert code here to tear down your application
|
|
StopSSLocal()
|
|
StopPrivoxy()
|
|
ProxyConfHelper.disableProxy()
|
|
}
|
|
|
|
func applyConfig() {
|
|
SyncSSLocal()
|
|
|
|
let defaults = UserDefaults.standard
|
|
let isOn = defaults.bool(forKey: "ShadowsocksOn")
|
|
let mode = defaults.string(forKey: "ShadowsocksRunningMode")
|
|
|
|
if isOn {
|
|
if mode == "auto" {
|
|
ProxyConfHelper.enablePACProxy()
|
|
} else if mode == "global" {
|
|
ProxyConfHelper.enableGlobalProxy()
|
|
} else if mode == "manual" {
|
|
ProxyConfHelper.disableProxy()
|
|
}
|
|
} else {
|
|
ProxyConfHelper.disableProxy()
|
|
}
|
|
}
|
|
|
|
// MARK: - UI Methods
|
|
@IBAction func toggleRunning(_ sender: NSMenuItem) {
|
|
self.doToggleRunning(showToast: false)
|
|
}
|
|
|
|
func doToggleRunning(showToast: Bool) {
|
|
let defaults = UserDefaults.standard
|
|
var isOn = UserDefaults.standard.bool(forKey: "ShadowsocksOn")
|
|
isOn = !isOn
|
|
defaults.set(isOn, forKey: "ShadowsocksOn")
|
|
|
|
self.updateMainMenu()
|
|
self.applyConfig()
|
|
|
|
if showToast {
|
|
if isOn {
|
|
self.makeToast("Shadowsocks: On".localized)
|
|
}
|
|
else {
|
|
self.makeToast("Shadowsocks: Off".localized)
|
|
}
|
|
}
|
|
}
|
|
|
|
@IBAction func updateGFWList(_ sender: NSMenuItem) {
|
|
UpdatePACFromGFWList()
|
|
}
|
|
|
|
@IBAction func editUserRulesForPAC(_ sender: NSMenuItem) {
|
|
if editUserRulesWinCtrl != nil {
|
|
editUserRulesWinCtrl.close()
|
|
}
|
|
let ctrl = UserRulesController(windowNibName: NSNib.Name(rawValue: "UserRulesController"))
|
|
editUserRulesWinCtrl = ctrl
|
|
|
|
ctrl.showWindow(self)
|
|
NSApp.activate(ignoringOtherApps: true)
|
|
ctrl.window?.makeKeyAndOrderFront(self)
|
|
}
|
|
|
|
@IBAction func showQRCodeForCurrentServer(_ sender: NSMenuItem) {
|
|
var errMsg: String?
|
|
if let profile = ServerProfileManager.instance.getActiveProfile() {
|
|
if profile.isValid() {
|
|
// Show window
|
|
if qrcodeWinCtrl != nil{
|
|
qrcodeWinCtrl.close()
|
|
}
|
|
qrcodeWinCtrl = SWBQRCodeWindowController(windowNibName: NSNib.Name(rawValue: "SWBQRCodeWindowController"))
|
|
qrcodeWinCtrl.qrCode = profile.URL()!.absoluteString
|
|
qrcodeWinCtrl.legacyQRCode = profile.URL(legacy: true)!.absoluteString
|
|
qrcodeWinCtrl.title = profile.title()
|
|
qrcodeWinCtrl.showWindow(self)
|
|
NSApp.activate(ignoringOtherApps: true)
|
|
qrcodeWinCtrl.window?.makeKeyAndOrderFront(nil)
|
|
|
|
return
|
|
} else {
|
|
errMsg = "Current server profile is not valid.".localized
|
|
}
|
|
} else {
|
|
errMsg = "No current server profile.".localized
|
|
}
|
|
if let msg = errMsg {
|
|
self.makeToast(msg)
|
|
}
|
|
}
|
|
|
|
@IBAction func showShareServerProfiles(_ sender: NSMenuItem) {
|
|
if shareWinCtrl != nil {
|
|
shareWinCtrl.close()
|
|
}
|
|
shareWinCtrl = ShareServerProfilesWindowController(windowNibName: NSNib.Name(rawValue: "ShareServerProfilesWindowController"))
|
|
shareWinCtrl.showWindow(self)
|
|
NSApp.activate(ignoringOtherApps: true)
|
|
shareWinCtrl.window?.makeKeyAndOrderFront(nil)
|
|
}
|
|
|
|
@IBAction func scanQRCodeFromScreen(_ sender: NSMenuItem) {
|
|
ScanQRCodeOnScreen()
|
|
}
|
|
|
|
@IBAction func importProfileURLFromPasteboard(_ sender: NSMenuItem) {
|
|
let pb = NSPasteboard.general
|
|
if #available(OSX 10.13, *) {
|
|
if let text = pb.string(forType: NSPasteboard.PasteboardType.URL) {
|
|
if let url = URL(string: text) {
|
|
NotificationCenter.default.post(
|
|
name: Notification.Name(rawValue: "NOTIFY_FOUND_SS_URL"), object: nil
|
|
, userInfo: [
|
|
"urls": [url],
|
|
"source": "pasteboard",
|
|
])
|
|
}
|
|
}
|
|
}
|
|
if let text = pb.string(forType: NSPasteboard.PasteboardType.string) {
|
|
var urls = text.split(separator: "\n")
|
|
.map { String($0).trimmingCharacters(in: CharacterSet.whitespacesAndNewlines) }
|
|
.map { URL(string: $0) }
|
|
.filter { $0 != nil }
|
|
.map { $0! }
|
|
urls = urls.filter { $0.scheme == "ss" }
|
|
|
|
NotificationCenter.default.post(
|
|
name: Notification.Name(rawValue: "NOTIFY_FOUND_SS_URL"), object: nil
|
|
, userInfo: [
|
|
"urls": urls,
|
|
"source": "pasteboard",
|
|
])
|
|
}
|
|
}
|
|
|
|
@IBAction func selectPACMode(_ sender: NSMenuItem) {
|
|
let defaults = UserDefaults.standard
|
|
defaults.setValue("auto", forKey: "ShadowsocksRunningMode")
|
|
updateRunningModeMenu()
|
|
applyConfig()
|
|
}
|
|
|
|
@IBAction func selectGlobalMode(_ sender: NSMenuItem) {
|
|
let defaults = UserDefaults.standard
|
|
defaults.setValue("global", forKey: "ShadowsocksRunningMode")
|
|
updateRunningModeMenu()
|
|
applyConfig()
|
|
}
|
|
|
|
@IBAction func selectManualMode(_ sender: NSMenuItem) {
|
|
let defaults = UserDefaults.standard
|
|
defaults.setValue("manual", forKey: "ShadowsocksRunningMode")
|
|
updateRunningModeMenu()
|
|
applyConfig()
|
|
}
|
|
|
|
@IBAction func editServerPreferences(_ sender: NSMenuItem) {
|
|
if preferencesWinCtrl != nil {
|
|
preferencesWinCtrl.close()
|
|
}
|
|
preferencesWinCtrl = PreferencesWindowController(windowNibName: NSNib.Name(rawValue: "PreferencesWindowController"))
|
|
|
|
preferencesWinCtrl.showWindow(self)
|
|
NSApp.activate(ignoringOtherApps: true)
|
|
preferencesWinCtrl.window?.makeKeyAndOrderFront(self)
|
|
}
|
|
|
|
@IBAction func showAllInOnePreferences(_ sender: NSMenuItem) {
|
|
if allInOnePreferencesWinCtrl != nil {
|
|
allInOnePreferencesWinCtrl.close()
|
|
}
|
|
|
|
allInOnePreferencesWinCtrl = PreferencesWinController(windowNibName: NSNib.Name(rawValue: "PreferencesWinController"))
|
|
|
|
allInOnePreferencesWinCtrl.showWindow(self)
|
|
NSApp.activate(ignoringOtherApps: true)
|
|
allInOnePreferencesWinCtrl.window?.makeKeyAndOrderFront(self)
|
|
}
|
|
|
|
@IBAction func selectServer(_ sender: NSMenuItem) {
|
|
let index = sender.tag - kProfileMenuItemIndexBase
|
|
let spMgr = ServerProfileManager.instance
|
|
let newProfile = spMgr.profiles[index]
|
|
if newProfile.uuid != spMgr.activeProfileId {
|
|
spMgr.setActiveProfiledId(newProfile.uuid)
|
|
updateServersMenu()
|
|
SyncSSLocal()
|
|
applyConfig()
|
|
}
|
|
updateRunningModeMenu()
|
|
}
|
|
|
|
@IBAction func copyExportCommand(_ sender: NSMenuItem) {
|
|
// Get the Http proxy config.
|
|
let defaults = UserDefaults.standard
|
|
let address = defaults.string(forKey: "LocalHTTP.ListenAddress")!
|
|
let port = defaults.integer(forKey: "LocalHTTP.ListenPort")
|
|
|
|
// Format an export string.
|
|
let command = "export http_proxy=http://\(address):\(port);export https_proxy=http://\(address):\(port);"
|
|
|
|
// Copy to paste board.
|
|
NSPasteboard.general.clearContents()
|
|
NSPasteboard.general.setString(command, forType: NSPasteboard.PasteboardType.string)
|
|
|
|
// Show a toast notification.
|
|
self.makeToast("Export Command Copied.".localized)
|
|
}
|
|
|
|
@IBAction func showLogs(_ sender: NSMenuItem) {
|
|
let ws = NSWorkspace.shared
|
|
if let appUrl = ws.urlForApplication(withBundleIdentifier: "com.apple.Console") {
|
|
try! ws.launchApplication(at: appUrl
|
|
,options: NSWorkspace.LaunchOptions.default
|
|
,configuration: [NSWorkspace.LaunchConfigurationKey.arguments: "~/Library/Logs/ss-local.log"])
|
|
}
|
|
}
|
|
|
|
@IBAction func feedback(_ sender: NSMenuItem) {
|
|
NSWorkspace.shared.open(URL(string: "https://github.com/qiuyuzhou/ShadowsocksX-NG/issues")!)
|
|
}
|
|
|
|
@IBAction func checkForUpdates(_ sender: NSMenuItem) {
|
|
NSWorkspace.shared.open(URL(string: "https://github.com/shadowsocks/ShadowsocksX-NG/releases")!)
|
|
}
|
|
|
|
@IBAction func showHelp(_ sender: NSMenuItem) {
|
|
NSWorkspace.shared.open(URL(string: "https://github.com/shadowsocks/ShadowsocksX-NG/wiki")!)
|
|
}
|
|
|
|
@IBAction func showAbout(_ sender: NSMenuItem) {
|
|
NSApp.orderFrontStandardAboutPanel(sender);
|
|
NSApp.activate(ignoringOtherApps: true)
|
|
}
|
|
|
|
func updateRunningModeMenu() {
|
|
let defaults = UserDefaults.standard
|
|
let mode = defaults.string(forKey: "ShadowsocksRunningMode")
|
|
|
|
var serverMenuText = "Servers".localized
|
|
|
|
let mgr = ServerProfileManager.instance
|
|
for p in mgr.profiles {
|
|
if mgr.activeProfileId == p.uuid {
|
|
var profileName :String
|
|
if !p.remark.isEmpty {
|
|
profileName = p.remark
|
|
} else {
|
|
profileName = p.serverHost
|
|
}
|
|
serverMenuText = "\(serverMenuText) - \(profileName)"
|
|
}
|
|
}
|
|
serversMenuItem.title = serverMenuText
|
|
|
|
if mode == "auto" {
|
|
autoModeMenuItem.state = .on
|
|
globalModeMenuItem.state = .off
|
|
manualModeMenuItem.state = .off
|
|
} else if mode == "global" {
|
|
autoModeMenuItem.state = .off
|
|
globalModeMenuItem.state = .on
|
|
manualModeMenuItem.state = .off
|
|
} else if mode == "manual" {
|
|
autoModeMenuItem.state = .off
|
|
globalModeMenuItem.state = .off
|
|
manualModeMenuItem.state = .on
|
|
}
|
|
updateStatusMenuImage()
|
|
}
|
|
|
|
func updateStatusMenuImage() {
|
|
let defaults = UserDefaults.standard
|
|
let mode = defaults.string(forKey: "ShadowsocksRunningMode")
|
|
let isOn = defaults.bool(forKey: "ShadowsocksOn")
|
|
if isOn {
|
|
if let m = mode {
|
|
switch m {
|
|
case "auto":
|
|
statusItem.image = NSImage(named: NSImage.Name(rawValue: "menu_p_icon"))
|
|
case "global":
|
|
statusItem.image = NSImage(named: NSImage.Name(rawValue: "menu_g_icon"))
|
|
case "manual":
|
|
statusItem.image = NSImage(named: NSImage.Name(rawValue: "menu_m_icon"))
|
|
default: break
|
|
}
|
|
statusItem.image?.isTemplate = true
|
|
}
|
|
} else {
|
|
statusItem.image = NSImage(named: NSImage.Name(rawValue: "menu_icon_disabled"))
|
|
statusItem.image?.isTemplate = true
|
|
}
|
|
}
|
|
|
|
func updateMainMenu() {
|
|
let defaults = UserDefaults.standard
|
|
let isOn = defaults.bool(forKey: "ShadowsocksOn")
|
|
if isOn {
|
|
runningStatusMenuItem.title = "Shadowsocks: On".localized
|
|
toggleRunningMenuItem.title = "Turn Shadowsocks Off".localized
|
|
let image = NSImage(named: NSImage.Name(rawValue: "menu_icon"))
|
|
statusItem.image = image
|
|
} else {
|
|
runningStatusMenuItem.title = "Shadowsocks: Off".localized
|
|
toggleRunningMenuItem.title = "Turn Shadowsocks On".localized
|
|
let image = NSImage(named: NSImage.Name(rawValue: "menu_icon_disabled"))
|
|
statusItem.image = image
|
|
}
|
|
statusItem.image?.isTemplate = true
|
|
|
|
updateStatusMenuImage()
|
|
}
|
|
|
|
func updateCopyHttpProxyExportMenu() {
|
|
let defaults = UserDefaults.standard
|
|
let isOn = defaults.bool(forKey: "LocalHTTPOn")
|
|
copyHttpProxyExportCmdLineMenuItem.isHidden = !isOn
|
|
}
|
|
|
|
func updateServersMenu() {
|
|
guard let menu = serversMenuItem.submenu else { return }
|
|
|
|
let mgr = ServerProfileManager.instance
|
|
let profiles = mgr.profiles
|
|
|
|
// Remove all profile menu items
|
|
let beginIndex = menu.index(of: serverProfilesBeginSeparatorMenuItem) + 1
|
|
let endIndex = menu.index(of: serverProfilesEndSeparatorMenuItem)
|
|
// Remove from end to begin, so the index won't change :)
|
|
for index in (beginIndex..<endIndex).reversed() {
|
|
menu.removeItem(at: index)
|
|
}
|
|
|
|
// Insert all profile menu items
|
|
for (i, profile) in profiles.enumerated().reversed() {
|
|
let item = NSMenuItem()
|
|
item.tag = i + kProfileMenuItemIndexBase
|
|
item.title = profile.title()
|
|
item.state = (mgr.activeProfileId == profile.uuid) ? .on : .off
|
|
item.isEnabled = profile.isValid()
|
|
item.action = #selector(AppDelegate.selectServer)
|
|
|
|
menu.insertItem(item, at: beginIndex)
|
|
}
|
|
|
|
// End separator is redundant if profile section is empty
|
|
serverProfilesEndSeparatorMenuItem.isHidden = profiles.isEmpty
|
|
}
|
|
|
|
@objc func handleURLEvent(_ event: NSAppleEventDescriptor, withReplyEvent replyEvent: NSAppleEventDescriptor) {
|
|
if let urlString = event.paramDescriptor(forKeyword: AEKeyword(keyDirectObject))?.stringValue {
|
|
if let url = URL(string: urlString) {
|
|
NotificationCenter.default.post(
|
|
name: Notification.Name(rawValue: "NOTIFY_FOUND_SS_URL"), object: nil
|
|
, userInfo: [
|
|
"urls": [url],
|
|
"source": "url",
|
|
])
|
|
}
|
|
}
|
|
}
|
|
|
|
func handleFoundSSURL(_ note: Notification) {
|
|
let sendNotify = {
|
|
(title: String, subtitle: String, infoText: String) in
|
|
|
|
let userNote = NSUserNotification()
|
|
userNote.title = title
|
|
userNote.subtitle = subtitle
|
|
userNote.informativeText = infoText
|
|
userNote.soundName = NSUserNotificationDefaultSoundName
|
|
|
|
NSUserNotificationCenter.default
|
|
.deliver(userNote);
|
|
}
|
|
|
|
if let userInfo = (note as NSNotification).userInfo {
|
|
let urls: [URL] = userInfo["urls"] as! [URL]
|
|
|
|
let mgr = ServerProfileManager.instance
|
|
var addCount = 0
|
|
|
|
var subtitle: String = ""
|
|
if userInfo["source"] as! String == "qrcode" {
|
|
subtitle = "By scan QR Code".localized
|
|
} else if userInfo["source"] as! String == "url" {
|
|
subtitle = "By handle SS URL".localized
|
|
} else if userInfo["source"] as! String == "pasteboard" {
|
|
subtitle = "By import from pasteboard".localized
|
|
}
|
|
|
|
for url in urls {
|
|
if let profile = ServerProfile(url: url) {
|
|
mgr.profiles.append(profile)
|
|
addCount = addCount + 1
|
|
}
|
|
}
|
|
|
|
if addCount > 0 {
|
|
sendNotify("Add \(addCount) Shadowsocks Server Profile".localized, subtitle, "")
|
|
mgr.save()
|
|
self.updateServersMenu()
|
|
} else {
|
|
sendNotify("", "", "Not found valid qrcode or url of shadowsocks profile".localized)
|
|
}
|
|
}
|
|
}
|
|
|
|
//------------------------------------------------------------
|
|
// NSUserNotificationCenterDelegate
|
|
|
|
func userNotificationCenter(_ center: NSUserNotificationCenter
|
|
, shouldPresent notification: NSUserNotification) -> Bool {
|
|
return true
|
|
}
|
|
|
|
|
|
func makeToast(_ message: String) {
|
|
if toastWindowCtrl != nil {
|
|
toastWindowCtrl.close()
|
|
}
|
|
toastWindowCtrl = ToastWindowController(windowNibName: NSNib.Name(rawValue: "ToastWindowController"))
|
|
toastWindowCtrl.message = message
|
|
toastWindowCtrl.showWindow(self)
|
|
//NSApp.activate(ignoringOtherApps: true)
|
|
//toastWindowCtrl.window?.makeKeyAndOrderFront(self)
|
|
toastWindowCtrl.fadeInHud()
|
|
}
|
|
}
|
|
|