tokenary/Encrypted Ink/Agent.swift

308 lines
12 KiB
Swift
Raw Normal View History

2021-06-12 19:16:23 +03:00
// Copyright © 2021 Encrypted Ink. All rights reserved.
import Cocoa
2021-06-13 13:13:47 +03:00
import WalletConnect
2021-06-13 15:30:19 +03:00
import LocalAuthentication
2021-06-12 19:16:23 +03:00
class Agent: NSObject {
2021-06-13 05:45:54 +03:00
2021-06-13 06:30:20 +03:00
static let shared = Agent()
2021-06-13 13:53:38 +03:00
private lazy var statusImage = NSImage(named: "Status")
2021-06-12 19:16:23 +03:00
private override init() { super.init() }
2021-06-13 13:13:47 +03:00
private var statusBarItem: NSStatusItem!
private var hasPassword = Keychain.shared.password != nil
private var didEnterPasswordOnStart = false
private var didStartInitialLAEvaluation = false
private var didCompleteInitialLAEvaluation = false
private var initialWCSession: WCSession?
var statusBarButtonIsBlocked = false
2021-06-13 06:30:20 +03:00
2021-06-12 19:16:23 +03:00
func start() {
checkPasteboardAndOpen()
2021-06-28 16:20:08 +03:00
setupStatusBarItem()
2021-06-13 05:45:54 +03:00
}
func reopen() {
checkPasteboardAndOpen()
2021-06-13 05:45:54 +03:00
}
2021-06-24 23:35:57 +03:00
func showInitialScreen(wcSession: WCSession?) {
let isEvaluatingInitialLA = didStartInitialLAEvaluation && !didCompleteInitialLAEvaluation
guard !isEvaluatingInitialLA else {
if wcSession != nil {
initialWCSession = wcSession
}
return
}
2021-06-19 00:38:05 +03:00
guard hasPassword else {
let welcomeViewController = WelcomeViewController.new { [weak self] createdPassword in
guard createdPassword else { return }
self?.didEnterPasswordOnStart = true
self?.didCompleteInitialLAEvaluation = true
2021-06-19 00:38:05 +03:00
self?.hasPassword = true
2021-06-24 23:35:57 +03:00
self?.showInitialScreen(wcSession: wcSession)
2021-06-19 00:38:05 +03:00
}
let windowController = Window.showNew()
2021-06-19 00:38:05 +03:00
windowController.contentViewController = welcomeViewController
return
}
guard didEnterPasswordOnStart else {
askAuthentication(on: nil, onStart: true, reason: .start) { [weak self] success in
if success {
self?.didEnterPasswordOnStart = true
2021-06-24 23:35:57 +03:00
self?.showInitialScreen(wcSession: wcSession)
2021-07-10 22:54:55 +03:00
WalletConnect.shared.restartSessions()
}
}
return
}
let session: WCSession?
if wcSession == nil, initialWCSession != nil {
session = initialWCSession
initialWCSession = nil
} else {
session = wcSession
}
let windowController = Window.showNew()
2021-08-01 19:42:27 +03:00
let completion = onSelectedWallet(session: session)
2021-07-20 23:19:35 +03:00
let accountsList = instantiate(AccountsListViewController.self)
2021-08-01 19:42:27 +03:00
accountsList.onSelectedWallet = completion
2021-07-20 23:19:35 +03:00
windowController.contentViewController = accountsList
2021-06-12 19:16:23 +03:00
}
2021-08-06 23:39:58 +03:00
func showApprove(transaction: Transaction, chain: EthereumChain, peerMeta: WCPeerMeta?, completion: @escaping (Transaction?) -> Void) {
let windowController = Window.showNew()
2021-08-06 23:39:58 +03:00
let approveViewController = ApproveTransactionViewController.with(transaction: transaction, chain: chain, peerMeta: peerMeta) { [weak self] transaction in
if transaction != nil {
self?.askAuthentication(on: windowController.window, onStart: false, reason: .sendTransaction) { success in
completion(success ? transaction : nil)
Window.closeAllAndActivateBrowser()
}
} else {
Window.closeAllAndActivateBrowser()
completion(nil)
}
}
windowController.contentViewController = approveViewController
}
2021-08-15 12:04:34 +03:00
func showApprove(reason: ApprovalReason, meta: String, peerMeta: WCPeerMeta?, completion: @escaping (Bool) -> Void) {
2021-06-13 09:32:07 +03:00
let windowController = Window.showNew()
2021-08-15 12:04:34 +03:00
let approveViewController = ApproveViewController.with(reason: reason, meta: meta, peerMeta: peerMeta) { [weak self] result in
2021-06-13 15:30:19 +03:00
if result {
2021-08-15 12:04:34 +03:00
self?.askAuthentication(on: windowController.window, onStart: false, reason: reason.asAuthenticationReason) { success in
completion(success)
Window.closeAllAndActivateBrowser()
}
2021-06-13 15:30:19 +03:00
} else {
Window.closeAllAndActivateBrowser()
2021-06-13 15:30:19 +03:00
completion(result)
}
2021-06-13 09:32:07 +03:00
}
windowController.contentViewController = approveViewController
}
func showErrorMessage(_ message: String) {
let windowController = Window.showNew()
windowController.contentViewController = ErrorViewController.withMessage(message)
}
func processInputLink(_ link: String) {
let session = sessionWithLink(link)
2021-06-24 23:35:57 +03:00
showInitialScreen(wcSession: session)
}
2021-08-06 18:58:32 +03:00
func getWalletSelectionCompletionIfShouldSelect() -> ((Int, InkWallet) -> Void)? {
2021-06-17 23:56:42 +03:00
let session = getSessionFromPasteboard()
2021-08-01 19:42:27 +03:00
return onSelectedWallet(session: session)
2021-06-17 23:56:42 +03:00
}
lazy private var statusBarMenu: NSMenu = {
let menu = NSMenu(title: "Encrypted Ink")
let showItem = NSMenuItem(title: "Show Encrypted Ink", action: #selector(didSelectShowMenuItem), keyEquivalent: "")
2021-07-17 19:05:59 +03:00
let howToItem = NSMenuItem(title: "How to WalletConnect?", action: #selector(showInstructionsAlert), keyEquivalent: "")
2021-07-06 21:08:06 +03:00
let mailItem = NSMenuItem(title: "Drop us a line…", action: #selector(didSelectMailMenuItem), keyEquivalent: "")
let githubItem = NSMenuItem(title: "View on GitHub…", action: #selector(didSelectGitHubMenuItem), keyEquivalent: "")
2021-08-10 03:52:26 +03:00
let twitterItem = NSMenuItem(title: "View on Twitter…", action: #selector(didSelectTwitterMenuItem), keyEquivalent: "")
2021-07-06 21:08:06 +03:00
let quitItem = NSMenuItem(title: "Quit", action: #selector(didSelectQuitMenuItem), keyEquivalent: "q")
2021-07-27 23:58:00 +03:00
showItem.attributedTitle = NSAttributedString(string: "👀 Show Encrypted Ink", attributes: [.font: NSFont.systemFont(ofSize: 15, weight: .semibold)])
showItem.target = self
2021-07-17 19:05:59 +03:00
howToItem.target = self
2021-07-06 19:59:45 +03:00
githubItem.target = self
2021-07-30 02:47:14 +03:00
twitterItem.target = self
2021-07-06 19:59:45 +03:00
mailItem.target = self
quitItem.target = self
2021-07-06 19:59:45 +03:00
menu.delegate = self
menu.addItem(showItem)
2021-07-06 19:59:45 +03:00
menu.addItem(NSMenuItem.separator())
2021-07-17 19:05:59 +03:00
menu.addItem(howToItem)
menu.addItem(NSMenuItem.separator())
2021-07-30 02:47:14 +03:00
menu.addItem(twitterItem)
2021-07-06 19:59:45 +03:00
menu.addItem(githubItem)
menu.addItem(mailItem)
menu.addItem(NSMenuItem.separator())
menu.addItem(quitItem)
return menu
}()
2021-06-23 22:21:23 +03:00
func warnBeforeQuitting(updateStatusBarAfterwards: Bool = false) {
Window.activateWindow(nil)
let alert = Alert()
alert.messageText = "Quit Encrypted Ink?"
2021-06-19 19:39:43 +03:00
alert.informativeText = "You won't be able to sign requests."
alert.alertStyle = .warning
alert.addButton(withTitle: "OK")
alert.addButton(withTitle: "Cancel")
if alert.runModal() == .alertFirstButtonReturn {
NSApp.terminate(nil)
}
2021-06-23 22:21:23 +03:00
if updateStatusBarAfterwards {
setupStatusBarItem()
}
}
2021-07-30 02:47:14 +03:00
@objc private func didSelectTwitterMenuItem() {
if let url = URL(string: "https://encrypted.ink/twitter") {
NSWorkspace.shared.open(url)
}
}
2021-07-06 19:59:45 +03:00
@objc private func didSelectGitHubMenuItem() {
if let url = URL(string: "https://github.com/zeriontech/Encrypted-Ink") {
NSWorkspace.shared.open(url)
}
}
2021-07-17 19:05:59 +03:00
@objc private func showInstructionsAlert() {
Window.activateWindow(nil)
Alert.showWalletConnectInstructions()
}
2021-07-06 19:59:45 +03:00
@objc private func didSelectMailMenuItem() {
if let url = URL(string: "mailto:support@encrypted.ink") {
NSWorkspace.shared.open(url)
}
}
@objc private func didSelectShowMenuItem() {
checkPasteboardAndOpen()
}
2021-06-23 21:28:52 +03:00
@objc private func didSelectQuitMenuItem() {
warnBeforeQuitting()
}
func setupStatusBarItem() {
let statusBar = NSStatusBar.system
statusBarItem = statusBar.statusItem(withLength: NSStatusItem.squareLength)
statusBarItem.button?.image = statusImage
statusBarItem.button?.target = self
statusBarItem.button?.action = #selector(statusBarButtonClicked(sender:))
statusBarItem.button?.sendAction(on: [.leftMouseUp, .rightMouseUp])
}
@objc private func statusBarButtonClicked(sender: NSStatusBarButton) {
guard !statusBarButtonIsBlocked, let event = NSApp.currentEvent, event.type == .rightMouseUp || event.type == .leftMouseUp else { return }
if let session = getSessionFromPasteboard() {
showInitialScreen(wcSession: session)
} else {
statusBarItem.menu = statusBarMenu
statusBarItem.button?.performClick(nil)
}
}
2021-08-06 18:58:32 +03:00
private func onSelectedWallet(session: WCSession?) -> ((Int, InkWallet) -> Void)? {
2021-06-17 23:11:03 +03:00
guard let session = session else { return nil }
2021-08-06 18:58:32 +03:00
return { [weak self] chainId, wallet in
self?.connectWallet(session: session, chainId: chainId, wallet: wallet)
2021-06-17 23:11:03 +03:00
}
}
private func getSessionFromPasteboard() -> WCSession? {
2021-06-13 13:13:47 +03:00
let pasteboard = NSPasteboard.general
let link = pasteboard.string(forType: .string) ?? ""
let session = sessionWithLink(link)
if session != nil {
pasteboard.clearContents()
}
2021-06-17 23:11:03 +03:00
return session
}
private func checkPasteboardAndOpen() {
2021-06-17 23:11:03 +03:00
let session = getSessionFromPasteboard()
2021-06-24 23:35:57 +03:00
showInitialScreen(wcSession: session)
}
private func sessionWithLink(_ link: String) -> WCSession? {
return WalletConnect.shared.sessionWithLink(link)
}
func askAuthentication(on: NSWindow?, getBackTo: NSViewController? = nil, onStart: Bool, reason: AuthenticationReason, completion: @escaping (Bool) -> Void) {
2021-06-13 15:30:19 +03:00
let context = LAContext()
var error: NSError?
let policy = LAPolicy.deviceOwnerAuthenticationWithBiometrics
let canDoLocalAuthentication = context.canEvaluatePolicy(policy, error: &error)
func showPasswordScreen() {
let window = on ?? Window.showNew().window
let passwordViewController = PasswordViewController.with(mode: .enter, reason: reason) { [weak window] success in
if let getBackTo = getBackTo {
window?.contentViewController = getBackTo
} else {
Window.closeAll()
}
2021-06-13 15:30:19 +03:00
completion(success)
}
window?.contentViewController = passwordViewController
}
if canDoLocalAuthentication {
context.localizedCancelTitle = "Cancel"
didStartInitialLAEvaluation = true
context.evaluatePolicy(.deviceOwnerAuthentication, localizedReason: reason.title) { [weak self] success, _ in
DispatchQueue.main.async {
self?.didCompleteInitialLAEvaluation = true
if !success, onStart, self?.didEnterPasswordOnStart == false {
showPasswordScreen()
}
completion(success)
}
}
} else {
showPasswordScreen()
2021-06-13 15:30:19 +03:00
}
}
2021-08-06 18:58:32 +03:00
private func connectWallet(session: WCSession, chainId: Int, wallet: InkWallet) {
let windowController = Window.showNew()
let window = windowController.window
windowController.contentViewController = WaitingViewController.withReason("Connecting")
2021-08-06 18:58:32 +03:00
WalletConnect.shared.connect(session: session, chainId: chainId, walletId: wallet.id) { [weak window] _ in
if window?.isVisible == true {
2021-06-19 19:38:51 +03:00
Window.closeAllAndActivateBrowser()
}
2021-06-13 06:30:20 +03:00
}
}
2021-06-12 19:16:23 +03:00
}
extension Agent: NSMenuDelegate {
func menuDidClose(_ menu: NSMenu) {
statusBarItem.menu = nil
}
}