123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- //
- // NCBrowserWeb.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 22/08/2019.
- // Copyright (c) 2019 Marino Faggiana. All rights reserved.
- //
- // Author Marino Faggiana <marino.faggiana@nextcloud.com>
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- //
- import UIKit
- @preconcurrency import WebKit
- @objc protocol NCBrowserWebDelegate: AnyObject {
- @objc optional func browserWebDismiss()
- }
- class NCBrowserWeb: UIViewController {
- var urlBase = ""
- var isHiddenButtonExit = false
- var titleBrowser: String?
- weak var delegate: NCBrowserWebDelegate?
- @IBOutlet weak var buttonExit: UIButton!
- // MARK: - View Life Cycle
- override func viewDidLoad() {
- super.viewDidLoad()
- let webView = WKWebView(frame: CGRect.zero)
- webView.navigationDelegate = self
- view.addSubview(webView)
- webView.translatesAutoresizingMaskIntoConstraints = false
- webView.leadingAnchor.constraint(equalTo: view.leadingAnchor, constant: 0).isActive = true
- webView.rightAnchor.constraint(equalTo: view.rightAnchor, constant: 0).isActive = true
- webView.topAnchor.constraint(equalTo: view.topAnchor, constant: 0).isActive = true
- webView.bottomAnchor.constraint(equalTo: view.bottomAnchor, constant: 0).isActive = true
- if isHiddenButtonExit {
- buttonExit.isHidden = true
- } else {
- self.view.bringSubviewToFront(buttonExit)
- let image = NCUtility().loadImage(named: "xmark", colors: [.systemBlue])
- buttonExit.setImage(image, for: .normal)
- }
- if let url = URL(string: urlBase) {
- loadWebPage(webView: webView, url: url)
- } else {
- let url = URL(fileURLWithPath: urlBase)
- loadWebPage(webView: webView, url: url)
- }
- }
- override func viewWillAppear(_ animated: Bool) {
- super.viewWillAppear(animated)
- if let titleBrowser = titleBrowser {
- navigationItem.title = titleBrowser
- }
- }
- deinit {
- }
- // MARK: - Action
- @IBAction func touchUpInsideButtonExit(_ sender: UIButton) {
- self.dismiss(animated: true) {
- self.delegate?.browserWebDismiss?()
- }
- }
- func loadWebPage(webView: WKWebView, url: URL) {
- let language = NSLocale.preferredLanguages[0] as String
- var request = URLRequest(url: url)
- request.addValue("true", forHTTPHeaderField: "OCS-APIRequest")
- request.addValue(language, forHTTPHeaderField: "Accept-Language")
- webView.customUserAgent = userAgent
- webView.load(request)
- }
- }
- extension NCBrowserWeb: WKNavigationDelegate {
- public func webView(_ webView: WKWebView, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
- DispatchQueue.global().async {
- if let serverTrust = challenge.protectionSpace.serverTrust {
- completionHandler(Foundation.URLSession.AuthChallengeDisposition.useCredential, URLCredential(trust: serverTrust))
- } else {
- completionHandler(URLSession.AuthChallengeDisposition.useCredential, nil)
- }
- }
- }
- public func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
- DispatchQueue.global().async {
- decisionHandler(.allow)
- }
- }
- }
|