2018-01-06 16:14:21 +00:00
|
|
|
import UIKit
|
|
|
|
import WebKit
|
|
|
|
import AVFoundation
|
|
|
|
|
|
|
|
class ViewController: UIViewController, WKNavigationDelegate, WKUIDelegate {
|
|
|
|
var webView: WKWebView!
|
2018-03-04 02:32:26 +00:00
|
|
|
let profileRegex = try! NSRegularExpression(pattern: "^https?://(www\\.)?f-list.net/c/(.+)/?#?", options: [.caseInsensitive])
|
|
|
|
|
2018-01-06 16:14:21 +00:00
|
|
|
override func loadView() {
|
|
|
|
let config = WKWebViewConfiguration()
|
|
|
|
let controller = WKUserContentController()
|
|
|
|
let scriptPath = Bundle.main.path(forResource: "native", ofType: "js")
|
|
|
|
let js = try! String(contentsOfFile: scriptPath!)
|
|
|
|
let userScript = WKUserScript(source: js, injectionTime: WKUserScriptInjectionTime.atDocumentStart, forMainFrameOnly: false)
|
|
|
|
controller.addUserScript(userScript)
|
|
|
|
controller.add(File(), name: "File")
|
|
|
|
controller.add(Notification(), name: "Notification")
|
2018-03-04 02:32:26 +00:00
|
|
|
controller.add(Background(), name: "Background")
|
|
|
|
controller.add(Logs(), name: "Logs")
|
2018-01-06 16:14:21 +00:00
|
|
|
config.userContentController = controller
|
|
|
|
config.mediaTypesRequiringUserActionForPlayback = [.video]
|
|
|
|
config.setValue(true, forKey: "_alwaysRunsAtForegroundPriority")
|
|
|
|
webView = WKWebView(frame: .zero, configuration: config)
|
|
|
|
webView.uiDelegate = self
|
|
|
|
view = webView
|
2018-03-28 13:51:05 +00:00
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(ViewController.keyboardWillShow), name: NSNotification.Name.UIKeyboardWillShow, object: nil)
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(ViewController.keyboardWillHide), name: NSNotification.Name.UIKeyboardWillHide, object: nil)
|
2018-03-04 02:32:26 +00:00
|
|
|
UIApplication.shared.statusBarStyle = .lightContent
|
|
|
|
(UIApplication.shared.value(forKey: "statusBar") as! UIView).backgroundColor = UIColor(white: 0, alpha: 0.5)
|
2018-01-06 16:14:21 +00:00
|
|
|
}
|
2018-03-04 02:32:26 +00:00
|
|
|
|
2018-01-06 16:14:21 +00:00
|
|
|
override func viewDidLoad() {
|
|
|
|
super.viewDidLoad()
|
|
|
|
let htmlPath = Bundle.main.path(forResource: "www/index", ofType: "html")
|
|
|
|
let url = URL(fileURLWithPath: htmlPath!, isDirectory: false)
|
|
|
|
webView.loadFileURL(url, allowingReadAccessTo: url)
|
|
|
|
webView.scrollView.isScrollEnabled = false
|
|
|
|
}
|
|
|
|
|
|
|
|
override func didReceiveMemoryWarning() {
|
|
|
|
super.didReceiveMemoryWarning()
|
|
|
|
// Dispose of any resources that can be recreated.
|
|
|
|
}
|
2018-03-04 02:32:26 +00:00
|
|
|
|
2018-03-28 13:51:05 +00:00
|
|
|
@objc func keyboardWillShow(notification: NSNotification) {
|
|
|
|
let info = notification.userInfo!
|
|
|
|
let frame = webView.frame
|
|
|
|
let newHeight = view.window!.frame.height - (info[UIKeyboardFrameEndUserInfoKey] as! NSValue).cgRectValue.height
|
|
|
|
UIView.animate(withDuration: (info[UIKeyboardAnimationDurationUserInfoKey] as! NSNumber).doubleValue, animations: {
|
|
|
|
self.webView.scrollView.bounds = CGRect(x: 0, y: 0, width: frame.width, height: newHeight)
|
|
|
|
}, completion: { (_: Bool) in self.webView.evaluateJavaScript("window.dispatchEvent(new Event('resize'))", completionHandler: nil) })
|
|
|
|
}
|
|
|
|
|
|
|
|
@objc func keyboardWillHide(notification: NSNotification) {
|
|
|
|
let info = notification.userInfo!
|
|
|
|
let frame = webView.scrollView.bounds
|
|
|
|
let newHeight = frame.height + (info[UIKeyboardFrameEndUserInfoKey] as! NSValue).cgRectValue.height
|
|
|
|
UIView.animate(withDuration: (info[UIKeyboardAnimationDurationUserInfoKey] as! NSNumber).doubleValue, animations: {
|
|
|
|
self.webView.scrollView.bounds = CGRect(x: 0, y: 0, width: frame.width, height: newHeight)
|
|
|
|
}, completion: { (_: Bool) in self.webView.evaluateJavaScript("window.dispatchEvent(new Event('resize'))", completionHandler: nil) })
|
|
|
|
}
|
|
|
|
|
2018-01-06 16:14:21 +00:00
|
|
|
func webView(_ webView: WKWebView, runJavaScriptAlertPanelWithMessage message: String, initiatedByFrame frame: WKFrameInfo,
|
|
|
|
completionHandler: @escaping () -> Void) {
|
2018-03-04 02:32:26 +00:00
|
|
|
let alertController = UIAlertController(title: nil, message: message, preferredStyle: .alert)
|
2018-01-06 16:14:21 +00:00
|
|
|
alertController.addAction(UIAlertAction(title: NSLocalizedString("OK", comment: "OK"), style: .default, handler: { (action) in completionHandler() }))
|
|
|
|
present(alertController, animated: true, completion: nil)
|
|
|
|
}
|
2018-03-04 02:32:26 +00:00
|
|
|
|
2018-01-06 16:14:21 +00:00
|
|
|
func webView(_ webView: WKWebView, runJavaScriptConfirmPanelWithMessage message: String, initiatedByFrame frame: WKFrameInfo,
|
|
|
|
completionHandler: @escaping (Bool) -> Void) {
|
2018-03-04 02:32:26 +00:00
|
|
|
let alertController = UIAlertController(title: nil, message: message, preferredStyle: .alert)
|
2018-01-06 16:14:21 +00:00
|
|
|
alertController.addAction(UIAlertAction(title: NSLocalizedString("OK", comment: "OK"), style: .default, handler: { (action) in completionHandler(true) }))
|
|
|
|
alertController.addAction(UIAlertAction(title: NSLocalizedString("Cancel", comment: "Cancel"), style: .cancel, handler: { (action) in completionHandler(false) }))
|
|
|
|
present(alertController, animated: true, completion: nil)
|
|
|
|
}
|
2018-03-04 02:32:26 +00:00
|
|
|
|
|
|
|
func webView(_ webView: WKWebView, createWebViewWith configuration: WKWebViewConfiguration, for navigationAction: WKNavigationAction, windowFeatures: WKWindowFeatures) -> WKWebView? {
|
2018-03-28 13:51:05 +00:00
|
|
|
let url = navigationAction.request.url!
|
|
|
|
let str = url.absoluteString
|
|
|
|
if(url.scheme == "data") {
|
|
|
|
let start = str.index(of: ",")!
|
|
|
|
let file = FileManager.default.temporaryDirectory.appendingPathComponent(str[str.index(str.startIndex, offsetBy: 5)..<start].removingPercentEncoding!)
|
|
|
|
try! str.suffix(from: str.index(after: start)).removingPercentEncoding!.write(to: file, atomically: false, encoding: .utf8)
|
|
|
|
self.present(UIActivityViewController(activityItems: [file], applicationActivities: nil), animated: true, completion: nil)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
let match = profileRegex.matches(in: str, range: NSRange(location: 0, length: str.count))
|
2018-03-04 02:32:26 +00:00
|
|
|
if(match.count == 1) {
|
2018-03-28 13:51:05 +00:00
|
|
|
let char = str[Range(match[0].range(at: 2), in: str)!].removingPercentEncoding!;
|
2018-03-04 02:32:26 +00:00
|
|
|
webView.evaluateJavaScript("document.dispatchEvent(new CustomEvent('open-profile',{detail:'\(char)'}))", completionHandler: nil)
|
|
|
|
return nil
|
|
|
|
}
|
2018-03-28 13:51:05 +00:00
|
|
|
UIApplication.shared.open(navigationAction.request.url!)
|
2018-03-04 02:32:26 +00:00
|
|
|
return nil
|
|
|
|
}
|
2018-03-28 13:51:05 +00:00
|
|
|
|
|
|
|
func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
|
|
|
|
decisionHandler(.cancel)
|
|
|
|
}
|
2018-01-06 16:14:21 +00:00
|
|
|
}
|
|
|
|
|