Files
AFFiNE-Mirror/packages/frontend/apps/ios/App/Shared/ShareInbox/ShareInboxSafety.swift
T
DarkSky b6de0ad51b feat(ios): improve share preview (#15538)
#### PR Dependency Tree

* **PR #15538** 👈

This tree was auto-generated by
[Charcoal](https://github.com/danerwilliams/charcoal)

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

* **New Features**
* Added rich link previews to mobile and iOS sharing, including images,
metadata, transcripts, and selected text.
* Share imports can now create structured content blocks, embeds,
bookmarks, and transcript callouts.
* Added workspace-aware preview handling for cloud, self-hosted, and
signed-out modes.
* **Accessibility**
* Improved collapse/expand controls with semantic buttons and ARIA
relationships.
* **Bug Fixes**
  * Enhanced URL and error sanitization in server logs.
* Improved link-preview CORS support, validation, and request handling.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
2026-08-28 03:32:26 +08:00

139 lines
4.3 KiB
Swift

import Foundation
enum ShareWorkspaceMode: String, Codable {
case selfHostedPresent
case cloudOnly
case signedOut
case unknown
}
enum SharePreviewRoute: String, Codable {
case official
case deferred
}
struct ShareWorkspaceModeSnapshot: Codable, Equatable {
static let schemaVersion = 1
var mode: ShareWorkspaceMode
var schemaVersion: Int
var updatedAt: Date
init(mode: ShareWorkspaceMode, updatedAt: Date = Date()) {
self.mode = mode
self.schemaVersion = Self.schemaVersion
self.updatedAt = updatedAt
}
}
enum ShareInboxSafety {
private static let workspaceModeMaxAge: TimeInterval = 24 * 60 * 60
static func manifestTitle(original: String, userEdited: String?) -> String {
(userEdited ?? original).trimmingCharacters(in: .whitespacesAndNewlines)
}
static func previewTitle(original: String, userEdited: String?, serverTitle: String?) -> String {
if let userEdited { return userEdited }
guard let serverTitle, !serverTitle.isEmpty else { return original }
return serverTitle
}
static func normalizedManifestID(_ value: String) -> String? {
UUID(uuidString: value)?.uuidString
}
static func normalizedWebURL(_ value: String) -> String? {
guard
let components = URLComponents(
string: value.trimmingCharacters(in: .whitespacesAndNewlines)
),
let scheme = components.scheme?.lowercased(),
scheme == "http" || scheme == "https",
components.host?.isEmpty == false,
components.user == nil,
components.password == nil,
let url = components.url
else {
return nil
}
return url.absoluteString
}
static func isOfficialPreviewURL(_ value: String) -> Bool {
guard let normalized = normalizedWebURL(value), let url = URL(string: normalized) else {
return false
}
let host = url.host?.lowercased()
let components = url.pathComponents.filter { $0 != "/" }
if ["x.com", "www.x.com", "twitter.com", "www.twitter.com"].contains(host) {
return components.count == 3
&& components[1] == "status"
&& !components[2].isEmpty
&& components[2].allSatisfy(\.isNumber)
}
if host == "youtu.be" {
return components.count == 1 && !components[0].isEmpty
}
if ["youtube.com", "www.youtube.com", "m.youtube.com"].contains(host) {
if url.path == "/watch" {
return !(URLComponents(url: url, resolvingAgainstBaseURL: false)?
.queryItems?.first(where: { $0.name == "v" })?.value?.isEmpty ?? true)
}
return components.count == 2
&& ["shorts", "live", "embed"].contains(components[0])
&& !components[1].isEmpty
}
return false
}
static func previewRoute(mode: ShareWorkspaceMode, url: String) -> SharePreviewRoute {
if isOfficialPreviewURL(url) { return .official }
switch mode {
case .cloudOnly, .signedOut:
return .official
case .selfHostedPresent, .unknown:
return .deferred
}
}
static func workspaceMode(from data: Data?, now: Date = Date()) -> ShareWorkspaceMode {
guard let data else { return .unknown }
let decoder = JSONDecoder()
decoder.dateDecodingStrategy = .iso8601
guard let snapshot = try? decoder.decode(ShareWorkspaceModeSnapshot.self, from: data),
snapshot.schemaVersion == ShareWorkspaceModeSnapshot.schemaVersion,
(0...workspaceModeMaxAge).contains(now.timeIntervalSince(snapshot.updatedAt))
else {
return .unknown
}
return snapshot.mode
}
static func detectRasterImageMimeType(_ data: Data) -> String? {
let bytes = [UInt8](data.prefix(12))
if bytes.starts(with: [0xFF, 0xD8, 0xFF]) {
return "image/jpeg"
}
if bytes.starts(with: [0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A]) {
return "image/png"
}
if bytes.starts(with: Array("GIF87a".utf8)) || bytes.starts(with: Array("GIF89a".utf8)) {
return "image/gif"
}
if bytes.count >= 12,
Array(bytes[0..<4]) == Array("RIFF".utf8),
Array(bytes[8..<12]) == Array("WEBP".utf8)
{
return "image/webp"
}
if bytes.count >= 12, Array(bytes[4..<8]) == Array("ftyp".utf8) {
let brand = String(decoding: bytes[8..<12], as: UTF8.self).lowercased()
if ["heic", "heix", "hevc", "hevx", "mif1", "msf1"].contains(brand) {
return "image/heic"
}
}
return nil
}
}