-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathTabViewControllerContextualAIChatExtension.swift
More file actions
103 lines (83 loc) · 3.98 KB
/
TabViewControllerContextualAIChatExtension.swift
File metadata and controls
103 lines (83 loc) · 3.98 KB
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
//
// TabViewControllerContextualAIChatExtension.swift
// DuckDuckGo
//
// Copyright © 2025 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 AIChat
import Core
import UIKit
// MARK: - Contextual AI Chat
extension TabViewController {
/// Presents the contextual AI chat sheet over the current tab.
/// Re-presents an active chat if one exists for this tab, or restores from persisted URL after app restart.
///
/// - Parameter presentingViewController: The view controller to present the sheet from.
func presentContextualAIChatSheet(from presentingViewController: UIViewController) {
Task { @MainActor in
var restoreURL: URL?
if !aiChatContextualSheetCoordinator.hasActiveSheet,
let urlString = tabModel.contextualChatURL {
restoreURL = URL(string: urlString)
}
await aiChatContextualSheetCoordinator.presentSheet(
from: presentingViewController,
restoreURL: restoreURL
)
}
}
/// Reloads the contextual AI chat web view if one exists.
func reloadContextualAIChatIfNeeded() {
aiChatContextualSheetCoordinator.reloadIfNeeded()
}
}
// MARK: - Favicon Helpers
extension TabViewController {
func getFaviconBase64(for url: URL) -> String? {
guard let domain = url.host else { return nil }
let faviconResult = FaviconsHelper.loadFaviconSync(forDomain: domain, usingCache: .tabs, useFakeFavicon: false)
guard let favicon = faviconResult.image, !faviconResult.isFake else { return nil }
return makeBase64EncodedFavicon(from: favicon)
}
private func makeBase64EncodedFavicon(from image: UIImage) -> String? {
guard let pngData = image.pngData() else { return nil }
return "data:image/png;base64,\(pngData.base64EncodedString())"
}
}
// MARK: - AIChatContextualSheetCoordinatorDelegate
extension TabViewController: AIChatContextualSheetCoordinatorDelegate {
func aiChatContextualSheetCoordinator(_ coordinator: AIChatContextualSheetCoordinator, didRequestToLoad url: URL) {
delegate?.tab(self, didRequestNewTabForUrl: url, openedByPage: false, inheritingAttribution: nil)
}
func aiChatContextualSheetCoordinator(_ coordinator: AIChatContextualSheetCoordinator, didRequestExpandWithURL url: URL) {
delegate?.tab(self, didRequestNewTabForUrl: url, openedByPage: false, inheritingAttribution: nil)
}
func aiChatContextualSheetCoordinatorDidRequestOpenSettings(_ coordinator: AIChatContextualSheetCoordinator) {
delegate?.tabDidRequestSettingsToAIChat(self)
}
func aiChatContextualSheetCoordinatorDidRequestOpenSyncSettings(_ coordinator: AIChatContextualSheetCoordinator) {
delegate?.tabDidRequestSettingsToSync(self)
}
func aiChatContextualSheetCoordinator(_ coordinator: AIChatContextualSheetCoordinator, didUpdateContextualChatURL url: URL?) {
tabModel.contextualChatURL = url?.absoluteString
delegate?.tabLoadingStateDidChange(tab: self)
}
func aiChatContextualSheetCoordinator(_ coordinator: AIChatContextualSheetCoordinator, didRequestOpenDownloadWithFileName fileName: String) {
delegate?.tabDidRequestDownloads(tab: self)
}
func aiChatContextualSheetCoordinator(_ coordinator: AIChatContextualSheetCoordinator, didRequestDeleteChatWithID chatID: String) {
delegate?.tabDidRequestDeleteContextualChat(tab: self, chatID: chatID)
}
}