mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-07 09:31:31 +01:00
format swift code with swiftformat
This commit is contained in:
parent
05684b3b03
commit
da9bd3a8db
@ -10,17 +10,11 @@ import Cocoa
|
||||
|
||||
@NSApplicationMain
|
||||
class AppDelegate: NSObject, NSApplicationDelegate {
|
||||
|
||||
|
||||
|
||||
func applicationDidFinishLaunching(_ aNotification: Notification) {
|
||||
func applicationDidFinishLaunching(_: Notification) {
|
||||
// Insert code here to initialize your application
|
||||
}
|
||||
|
||||
func applicationWillTerminate(_ aNotification: Notification) {
|
||||
func applicationWillTerminate(_: Notification) {
|
||||
// Insert code here to tear down your application
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
@ -9,7 +9,6 @@
|
||||
import Cocoa
|
||||
|
||||
class ViewController: NSViewController {
|
||||
|
||||
override func viewDidLoad() {
|
||||
super.viewDidLoad()
|
||||
|
||||
@ -21,7 +20,4 @@ class ViewController: NSViewController {
|
||||
// Update the view, if already loaded.
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
@ -9,11 +9,10 @@
|
||||
import SafariServices
|
||||
|
||||
class SafariExtensionHandler: SFSafariExtensionHandler {
|
||||
|
||||
override func messageReceived(withName messageName: String, from page: SFSafariPage, userInfo: [String : Any]?) {
|
||||
override func messageReceived(withName messageName: String, from page: SFSafariPage, userInfo: [String: Any]?) {
|
||||
// This method will be called when a content script provided by your extension calls safari.extension.dispatchMessage("message").
|
||||
if(messageName == "bitwarden") {
|
||||
page.getPropertiesWithCompletionHandler { properties in
|
||||
if messageName == "bitwarden" {
|
||||
page.getPropertiesWithCompletionHandler { _ in
|
||||
// NSLog("The extension received a message (\(messageName)) from a script injected into (\(String(describing: properties?.url))) with userInfo (\(userInfo ?? [:]))")
|
||||
DispatchQueue.main.async {
|
||||
SafariExtensionViewController.shared.sendMessage(msg: userInfo)
|
||||
@ -22,12 +21,12 @@ class SafariExtensionHandler: SFSafariExtensionHandler {
|
||||
}
|
||||
}
|
||||
|
||||
override func toolbarItemClicked(in window: SFSafariWindow) {
|
||||
override func toolbarItemClicked(in _: SFSafariWindow) {
|
||||
// This method will be called when your toolbar item is clicked.
|
||||
// NSLog("The extension's toolbar item was clicked")
|
||||
}
|
||||
|
||||
override func validateToolbarItem(in window: SFSafariWindow, validationHandler: @escaping ((Bool, String) -> Void)) {
|
||||
override func validateToolbarItem(in _: SFSafariWindow, validationHandler: @escaping ((Bool, String) -> Void)) {
|
||||
// This is called when Safari's state changed in some way that would require the extension's toolbar item to be validated again.
|
||||
validationHandler(true, "")
|
||||
}
|
||||
@ -36,10 +35,9 @@ class SafariExtensionHandler: SFSafariExtensionHandler {
|
||||
return SafariExtensionViewController.shared
|
||||
}
|
||||
|
||||
override func popoverWillShow(in window: SFSafariWindow) {
|
||||
override func popoverWillShow(in _: SFSafariWindow) {
|
||||
DispatchQueue.main.async {
|
||||
SafariExtensionViewController.shared.sendMessage(msg: ["command": "reloadPopup"])
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -10,12 +10,11 @@ import SafariServices
|
||||
import WebKit
|
||||
|
||||
class SafariExtensionViewController: SFSafariExtensionViewController, WKScriptMessageHandler, WKNavigationDelegate {
|
||||
|
||||
var webView: WKWebView!
|
||||
|
||||
static let shared: SafariExtensionViewController = {
|
||||
let shared = SafariExtensionViewController()
|
||||
shared.preferredContentSize = NSSize(width:375, height:600)
|
||||
shared.preferredContentSize = NSSize(width: 375, height: 600)
|
||||
return shared
|
||||
}()
|
||||
|
||||
@ -32,12 +31,12 @@ class SafariExtensionViewController: SFSafariExtensionViewController, WKScriptMe
|
||||
webView.navigationDelegate = self
|
||||
webView.allowsLinkPreview = false
|
||||
webView.loadFileURL(html, allowingReadAccessTo: bundleURL)
|
||||
webView.alphaValue = 0.0;
|
||||
self.view.addSubview(webView)
|
||||
webView.alphaValue = 0.0
|
||||
view.addSubview(webView)
|
||||
}
|
||||
|
||||
func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!) {
|
||||
NSAnimationContext.runAnimationGroup({_ in
|
||||
func webView(_ webView: WKWebView, didFinish _: WKNavigation!) {
|
||||
NSAnimationContext.runAnimationGroup({ _ in
|
||||
NSAnimationContext.current.duration = 0.35
|
||||
webView.animator().alphaValue = 1.0
|
||||
})
|
||||
@ -45,94 +44,94 @@ class SafariExtensionViewController: SFSafariExtensionViewController, WKScriptMe
|
||||
|
||||
override func viewDidLoad() {
|
||||
super.viewDidLoad()
|
||||
let backgroundColor = NSColor.init(red: (39/255.0), green: (42/255.0), blue: (46/255.0), alpha: 1.0)
|
||||
let backgroundColor = NSColor(red: (39 / 255.0), green: (42 / 255.0), blue: (46 / 255.0), alpha: 1.0)
|
||||
view.setValue(backgroundColor, forKey: "backgroundColor")
|
||||
initWebView()
|
||||
}
|
||||
|
||||
func userContentController(_ userContentController: WKUserContentController, didReceive message: WKScriptMessage) {
|
||||
func userContentController(_: WKUserContentController, didReceive message: WKScriptMessage) {
|
||||
if message.name == "bitwardenApp" {
|
||||
let messageBody = message.body as! String;
|
||||
let messageBody = message.body as! String
|
||||
print(messageBody)
|
||||
let m : AppMessage? = jsonDeserialize(json: messageBody)
|
||||
if(m == nil) {
|
||||
let m: AppMessage? = jsonDeserialize(json: messageBody)
|
||||
if m == nil {
|
||||
print("m is nil")
|
||||
} else {
|
||||
let command = m?.command ?? "null"
|
||||
print(command)
|
||||
if(command == "storage_get") {
|
||||
if command == "storage_get" {
|
||||
let obj = UserDefaults.standard.string(forKey: m!.data!)
|
||||
m!.responseData = obj
|
||||
replyMessage(message: m!)
|
||||
} else if(command == "storage_save") {
|
||||
let data : StorageData? = jsonDeserialize(json: m!.data)
|
||||
if(data?.obj == nil) {
|
||||
} else if command == "storage_save" {
|
||||
let data: StorageData? = jsonDeserialize(json: m!.data)
|
||||
if data?.obj == nil {
|
||||
UserDefaults.standard.removeObject(forKey: data!.key)
|
||||
} else {
|
||||
UserDefaults.standard.set(data?.obj, forKey: data!.key)
|
||||
}
|
||||
replyMessage(message: m!)
|
||||
} else if(command == "storage_remove") {
|
||||
} else if command == "storage_remove" {
|
||||
UserDefaults.standard.removeObject(forKey: m!.data!)
|
||||
replyMessage(message: m!)
|
||||
} else if(command == "getLocaleStrings") {
|
||||
} else if command == "getLocaleStrings" {
|
||||
let language = m!.data
|
||||
let bundleURL = Bundle.main.resourceURL!.absoluteURL
|
||||
let messagesUrl = bundleURL.appendingPathComponent("app/_locales/en/messages.json")
|
||||
do {
|
||||
let json = try String(contentsOf: messagesUrl, encoding: .utf8)
|
||||
webView.evaluateJavaScript("window.bitwardenLocaleStrings = \(json);", completionHandler: nil)
|
||||
} catch { }
|
||||
} catch {}
|
||||
replyMessage(message: m!)
|
||||
} else if(command == "tabs_query") {
|
||||
let options : TabQueryOptions? = jsonDeserialize(json: m!.data)
|
||||
if(options?.currentWindow ?? false) {
|
||||
SFSafariApplication.getActiveWindow { (win) in
|
||||
} else if command == "tabs_query" {
|
||||
let options: TabQueryOptions? = jsonDeserialize(json: m!.data)
|
||||
if options?.currentWindow ?? false {
|
||||
SFSafariApplication.getActiveWindow { win in
|
||||
processWindowsForTabs(wins: [win!], options: options
|
||||
, complete: { (tabs) in
|
||||
, complete: { tabs in
|
||||
m!.responseData = jsonSerialize(obj: tabs)
|
||||
self.replyMessage(message: m!)
|
||||
})
|
||||
}
|
||||
} else {
|
||||
SFSafariApplication.getAllWindows { (wins) in
|
||||
SFSafariApplication.getAllWindows { wins in
|
||||
processWindowsForTabs(wins: wins, options: options
|
||||
, complete: { (tabs) in
|
||||
, complete: { tabs in
|
||||
m!.responseData = jsonSerialize(obj: tabs)
|
||||
self.replyMessage(message: m!)
|
||||
})
|
||||
}
|
||||
}
|
||||
} else if(command == "tabs_message") {
|
||||
} else if command == "tabs_message" {
|
||||
let tabMsg: TabMessage? = jsonDeserialize(json: m!.data)
|
||||
SFSafariApplication.getAllWindows { (wins) in
|
||||
SFSafariApplication.getAllWindows { wins in
|
||||
var theWin: SFSafariWindow?
|
||||
var winIndex = 0
|
||||
for win in wins {
|
||||
if(tabMsg?.tab.windowId == winIndex) {
|
||||
if tabMsg?.tab.windowId == winIndex {
|
||||
theWin = win
|
||||
break
|
||||
}
|
||||
winIndex = winIndex + 1
|
||||
}
|
||||
if(theWin == nil) {
|
||||
if theWin == nil {
|
||||
// TODO: error
|
||||
} else {
|
||||
var theTab: SFSafariTab?
|
||||
theWin!.getAllTabs { (tabs) in
|
||||
theWin!.getAllTabs { tabs in
|
||||
var tabIndex = 0
|
||||
for tab in tabs {
|
||||
if(tabMsg?.tab.index == tabIndex) {
|
||||
if tabMsg?.tab.index == tabIndex {
|
||||
theTab = tab
|
||||
break
|
||||
}
|
||||
tabIndex = tabIndex + 1
|
||||
}
|
||||
if(theTab == nil) {
|
||||
if theTab == nil {
|
||||
// TODO: error
|
||||
} else {
|
||||
theTab!.getActivePage { (activePage) in
|
||||
if(activePage != nil) {
|
||||
theTab!.getActivePage { activePage in
|
||||
if activePage != nil {
|
||||
activePage?.dispatchMessageToScript(withName: "bitwarden", userInfo: ["msg": tabMsg!.obj])
|
||||
}
|
||||
}
|
||||
@ -146,16 +145,16 @@ class SafariExtensionViewController: SFSafariExtensionViewController, WKScriptMe
|
||||
}
|
||||
|
||||
func replyMessage(message: AppMessage) {
|
||||
if(webView == nil) {
|
||||
return;
|
||||
if webView == nil {
|
||||
return
|
||||
}
|
||||
let json = (jsonSerialize(obj: message) ?? "null")
|
||||
webView.evaluateJavaScript("window.bitwardenSafariAppMessageReceiver(\(json));", completionHandler: nil)
|
||||
}
|
||||
|
||||
func sendMessage(msg: [String : Any]?) {
|
||||
if(webView == nil) {
|
||||
return;
|
||||
func sendMessage(msg: [String: Any]?) {
|
||||
if webView == nil {
|
||||
return
|
||||
}
|
||||
let newMsg = AppMessage()
|
||||
newMsg.command = "app_message"
|
||||
@ -170,7 +169,7 @@ class SafariExtensionViewController: SFSafariExtensionViewController, WKScriptMe
|
||||
}
|
||||
|
||||
func processWindowsForTabs(wins: [SFSafariWindow], options: TabQueryOptions?, complete: @escaping ([Tab]) -> Void) {
|
||||
if(wins.count == 0) {
|
||||
if wins.count == 0 {
|
||||
complete([])
|
||||
return
|
||||
}
|
||||
@ -179,15 +178,15 @@ func processWindowsForTabs(wins: [SFSafariWindow], options: TabQueryOptions?, co
|
||||
var windowIndex = 0
|
||||
for win in wins {
|
||||
winGroup.enter()
|
||||
win.getActiveTab { (activeTab) in
|
||||
win.getAllTabs { (allTabs) in
|
||||
win.getActiveTab { activeTab in
|
||||
win.getAllTabs { allTabs in
|
||||
let tabGroup = DispatchGroup()
|
||||
var tabIndex = 0
|
||||
for tab in allTabs {
|
||||
tabGroup.enter()
|
||||
if(options?.active ?? false) {
|
||||
if(activeTab != nil && activeTab == tab) {
|
||||
makeTabObject(tab: tab, activeTab: activeTab, windowIndex: windowIndex, tabIndex: tabIndex, complete: { (t) in
|
||||
if options?.active ?? false {
|
||||
if activeTab != nil && activeTab == tab {
|
||||
makeTabObject(tab: tab, activeTab: activeTab, windowIndex: windowIndex, tabIndex: tabIndex, complete: { t in
|
||||
newTabs.append(t)
|
||||
tabIndex = tabIndex + 1
|
||||
tabGroup.leave()
|
||||
@ -197,21 +196,21 @@ func processWindowsForTabs(wins: [SFSafariWindow], options: TabQueryOptions?, co
|
||||
tabGroup.leave()
|
||||
}
|
||||
} else {
|
||||
makeTabObject(tab: tab, activeTab: activeTab, windowIndex: windowIndex, tabIndex: tabIndex, complete: { (t) in
|
||||
makeTabObject(tab: tab, activeTab: activeTab, windowIndex: windowIndex, tabIndex: tabIndex, complete: { t in
|
||||
newTabs.append(t)
|
||||
tabIndex = tabIndex + 1
|
||||
tabGroup.leave()
|
||||
})
|
||||
}
|
||||
}
|
||||
tabGroup.notify(queue: .main){
|
||||
tabGroup.notify(queue: .main) {
|
||||
windowIndex = windowIndex + 1
|
||||
winGroup.leave()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
winGroup.notify(queue: .main){
|
||||
winGroup.notify(queue: .main) {
|
||||
complete(newTabs)
|
||||
}
|
||||
}
|
||||
@ -222,11 +221,11 @@ func makeTabObject(tab: SFSafariTab, activeTab: SFSafariTab?, windowIndex: Int,
|
||||
t.windowId = windowIndex
|
||||
t.index = tabIndex
|
||||
t.id = "\(windowIndex)_\(tabIndex)"
|
||||
tab.getActivePage { (page) in
|
||||
if(page == nil) {
|
||||
tab.getActivePage { page in
|
||||
if page == nil {
|
||||
complete(t)
|
||||
} else {
|
||||
page!.getPropertiesWithCompletionHandler({ (props) in
|
||||
page!.getPropertiesWithCompletionHandler({ props in
|
||||
t.title = props?.title
|
||||
t.url = props?.url?.absoluteString
|
||||
complete(t)
|
||||
@ -246,8 +245,8 @@ func jsonSerialize<T: Encodable>(obj: T?) -> String? {
|
||||
}
|
||||
|
||||
func jsonDeserialize<T: Decodable>(json: String?) -> T? {
|
||||
if(json == nil) {
|
||||
return nil;
|
||||
if json == nil {
|
||||
return nil
|
||||
}
|
||||
let decoder = JSONDecoder()
|
||||
do {
|
||||
@ -258,30 +257,31 @@ func jsonDeserialize<T: Decodable>(json: String?) -> T? {
|
||||
}
|
||||
}
|
||||
|
||||
class AppMessage : Decodable, Encodable {
|
||||
class AppMessage: Decodable, Encodable {
|
||||
init() {
|
||||
id = ""
|
||||
command = ""
|
||||
data = nil
|
||||
responseData = nil
|
||||
}
|
||||
|
||||
var id: String
|
||||
var command: String
|
||||
var data: String?
|
||||
var responseData: String?
|
||||
}
|
||||
|
||||
class StorageData : Decodable, Encodable {
|
||||
class StorageData: Decodable, Encodable {
|
||||
var key: String
|
||||
var obj: String?
|
||||
}
|
||||
|
||||
class TabQueryOptions : Decodable, Encodable {
|
||||
class TabQueryOptions: Decodable, Encodable {
|
||||
var currentWindow: Bool?
|
||||
var active: Bool?
|
||||
}
|
||||
|
||||
class Tab : Decodable, Encodable {
|
||||
class Tab: Decodable, Encodable {
|
||||
init() {
|
||||
id = ""
|
||||
index = -1
|
||||
|
Loading…
Reference in New Issue
Block a user