-
Notifications
You must be signed in to change notification settings - Fork 429
/
Copy pathTabURLInterceptor.swift
121 lines (103 loc) · 4.21 KB
/
TabURLInterceptor.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
//
// TabURLInterceptor.swift
// DuckDuckGo
//
// Copyright © 2024 DuckDuckGo. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
import Foundation
import BrowserServicesKit
import Common
import Subscription
import AIChat
enum InterceptedURL: String {
case privacyPro
case aiChat
}
struct InterceptedURLInfo {
let id: InterceptedURL
let path: String
}
protocol TabURLInterceptor {
func allowsNavigatingTo(url: URL) -> Bool
}
final class TabURLInterceptorDefault: TabURLInterceptor {
typealias CanPurchaseUpdater = () -> Bool
private let canPurchase: CanPurchaseUpdater
private let featureFlagger: FeatureFlagger
init(featureFlagger: FeatureFlagger, canPurchase: @escaping CanPurchaseUpdater) {
self.canPurchase = canPurchase
self.featureFlagger = featureFlagger
}
static let interceptedURLs: [InterceptedURLInfo] = [
InterceptedURLInfo(id: .privacyPro, path: "/pro")
]
func allowsNavigatingTo(url: URL) -> Bool {
if url.isDuckAIURL {
return handleURLInterception(interceptedURL: .aiChat, queryItems: nil)
}
guard url.isPart(ofDomain: "duckduckgo.com"),
let components = normalizeScheme(url.absoluteString),
let matchingURL = urlToIntercept(path: components.path) else {
return true
}
return handleURLInterception(interceptedURL: matchingURL.id, queryItems: components.percentEncodedQueryItems)
}
}
extension TabURLInterceptorDefault {
private func urlToIntercept(path: String) -> InterceptedURLInfo? {
let results = Self.interceptedURLs.filter { $0.path == path }
return results.first
}
private func normalizeScheme(_ rawUrl: String) -> URLComponents? {
if !rawUrl.starts(with: URL.URLProtocol.https.scheme) &&
!rawUrl.starts(with: URL.URLProtocol.http.scheme) &&
rawUrl.contains("://") {
return nil
}
let noScheme = rawUrl.dropping(prefix: URL.URLProtocol.https.scheme).dropping(prefix: URL.URLProtocol.http.scheme)
return URLComponents(string: "\(URL.URLProtocol.https.scheme)\(noScheme)")
}
private func handleURLInterception(interceptedURL: InterceptedURL, queryItems: [URLQueryItem]?) -> Bool {
switch interceptedURL {
// Opens the Privacy Pro Subscription Purchase page (if user can purchase)
case .privacyPro:
if canPurchase() {
// If URL has an `origin` query parameter, append it to the `subscriptionPurchase` URL.
// Also forward the origin as it will need to be sent as parameter to the Pixel to track subcription attributions.
let originQueryItem = queryItems?.first(where: { $0.name == AttributionParameter.origin })
NotificationCenter.default.post(
name: .urlInterceptPrivacyPro,
object: nil,
userInfo: [AttributionParameter.origin: originQueryItem?.value as Any]
)
return false
}
case .aiChat:
if featureFlagger.isFeatureOn(.aiChat) {
NotificationCenter.default.post(
name: .urlInterceptAIChat,
object: nil,
userInfo: nil
)
return false
}
}
return true
}
}
extension NSNotification.Name {
static let urlInterceptPrivacyPro: NSNotification.Name = Notification.Name(rawValue: "com.duckduckgo.notification.urlInterceptPrivacyPro")
static let urlInterceptAIChat: NSNotification.Name = Notification.Name(rawValue: "com.duckduckgo.notification.urlInterceptAIChat")
}