- Refactor chapter runtime: replace window coordinator/snapshot with warmup orchestrator - Update EPUB core: parser, reading session, JS bridge, navigator layout - Update reader controller: data source, location resolution, persistence - Update chapter runtime: data cache, loader, runtime store, disk cache, warmup orchestrator - Remove deprecated navigation state machine and pagination state - Update text rendering: book cache, HTML normalizer - Update UI: text content view, dark image adjuster, text selection controller - Update settings and reader configuration - Add CODE_REVIEW.md and AUDIT_FINAL.md documentation - Update pod dependencies (remove SSAlertSwift, SnapKit) - Update podspec and pod configuration files Co-Authored-By: Claude <noreply@anthropic.com>
154 lines
5.6 KiB
Swift
154 lines
5.6 KiB
Swift
|
|
import Foundation
|
|
import ZIPFoundation
|
|
|
|
extension RDEPUBParser {
|
|
|
|
func parseContainerRootFile(at containerURL: URL) throws -> String {
|
|
guard let parser = XMLParser(contentsOf: containerURL) else {
|
|
throw RDEPUBParserError.invalidXML(containerURL)
|
|
}
|
|
|
|
let delegate = ContainerXMLParserDelegate()
|
|
parser.shouldProcessNamespaces = false
|
|
parser.delegate = delegate
|
|
|
|
guard parser.parse() else {
|
|
throw parser.parserError ?? RDEPUBParserError.invalidXML(containerURL)
|
|
}
|
|
|
|
guard let rootFilePath = delegate.rootFilePath, !rootFilePath.isEmpty else {
|
|
throw RDEPUBParserError.missingRootFile
|
|
}
|
|
|
|
return rootFilePath
|
|
}
|
|
|
|
func extractArchiveIfNeeded(epubURL: URL) throws -> URL {
|
|
let fileManager = FileManager.default
|
|
let extractionURL = temporaryExtractionDirectory(for: epubURL)
|
|
|
|
if fileManager.fileExists(atPath: extractionURL.path) {
|
|
let containerURL = extractionURL.appendingPathComponent("META-INF/container.xml")
|
|
if fileManager.fileExists(atPath: containerURL.path) {
|
|
return extractionURL
|
|
}
|
|
try? fileManager.removeItem(at: extractionURL)
|
|
}
|
|
|
|
guard let archive = Archive(url: epubURL, accessMode: .read) else {
|
|
throw RDEPUBParserError.archiveOpenFailed(epubURL)
|
|
}
|
|
|
|
try fileManager.createDirectory(at: extractionURL, withIntermediateDirectories: true)
|
|
|
|
do {
|
|
for entry in archive {
|
|
if shouldSkipEntry(entry.path) { continue }
|
|
|
|
guard let destinationURL = validatedExtractionDestination(for: entry.path, extractionRoot: extractionURL) else {
|
|
if isCriticalEntry(entry.path) {
|
|
throw RDEPUBParserError.invalidArchiveEntryPath(entry.path)
|
|
}
|
|
continue
|
|
}
|
|
switch entry.type {
|
|
case .directory:
|
|
try fileManager.createDirectory(at: destinationURL, withIntermediateDirectories: true)
|
|
case .file:
|
|
try fileManager.createDirectory(at: destinationURL.deletingLastPathComponent(), withIntermediateDirectories: true)
|
|
_ = try archive.extract(entry, to: destinationURL)
|
|
case .symlink:
|
|
continue
|
|
}
|
|
}
|
|
} catch {
|
|
try? fileManager.removeItem(at: extractionURL)
|
|
throw error
|
|
}
|
|
|
|
return extractionURL
|
|
}
|
|
|
|
private func isCriticalEntry(_ entryPath: String) -> Bool {
|
|
let lowercased = entryPath.lowercased()
|
|
return lowercased == "mimetype"
|
|
|| lowercased.hasPrefix("meta-inf/")
|
|
|| lowercased.hasSuffix(".opf")
|
|
}
|
|
|
|
private func shouldSkipEntry(_ entryPath: String) -> Bool {
|
|
let lowercased = entryPath.lowercased()
|
|
if lowercased.hasPrefix("__macosx/") { return true }
|
|
if lowercased.hasPrefix(".ds_store") { return true }
|
|
if lowercased.contains("/.ds_store") { return true }
|
|
if lowercased.hasSuffix("/thumbs.db") { return true }
|
|
return false
|
|
}
|
|
|
|
private func validatedExtractionDestination(for entryPath: String, extractionRoot: URL) -> URL? {
|
|
|
|
if entryPath.hasPrefix("/") {
|
|
return nil
|
|
}
|
|
|
|
let components = entryPath.split(separator: "/", omittingEmptySubsequences: true)
|
|
if components.contains(where: { $0 == ".." }) {
|
|
return nil
|
|
}
|
|
let destinationURL = extractionRoot.appendingPathComponent(entryPath)
|
|
let standardizedDest = destinationURL.standardizedFileURL.path
|
|
let standardizedRoot = extractionRoot.standardizedFileURL.path
|
|
|
|
guard standardizedDest.hasPrefix(standardizedRoot) else {
|
|
return nil
|
|
}
|
|
return destinationURL
|
|
}
|
|
|
|
func temporaryExtractionDirectory(for epubURL: URL) -> URL {
|
|
let baseURL = FileManager.default.urls(for: .cachesDirectory, in: .userDomainMask).first?
|
|
.appendingPathComponent("ssreaderview-epub", isDirectory: true)
|
|
?? FileManager.default.temporaryDirectory.appendingPathComponent("ssreaderview-epub", isDirectory: true)
|
|
let fileAttributes = try? FileManager.default.attributesOfItem(atPath: epubURL.path)
|
|
let fileSize = (fileAttributes?[.size] as? NSNumber)?.stringValue ?? "0"
|
|
let modifiedAt = (fileAttributes?[.modificationDate] as? Date)?.timeIntervalSince1970 ?? 0
|
|
let slug = epubURL.deletingPathExtension().lastPathComponent
|
|
.replacingOccurrences(of: " ", with: "-")
|
|
let signature = String(format: "%.0f", modifiedAt)
|
|
return baseURL.appendingPathComponent("\(slug)-\(fileSize)-\(signature)", isDirectory: true)
|
|
}
|
|
|
|
func reset() {
|
|
extractionRootURL = nil
|
|
opfURL = nil
|
|
resetPublicationState()
|
|
}
|
|
|
|
func resetPublicationState() {
|
|
metadata = RDEPUBMetadata()
|
|
manifest = [:]
|
|
spine = []
|
|
tableOfContents = []
|
|
}
|
|
}
|
|
|
|
private final class ContainerXMLParserDelegate: NSObject, XMLParserDelegate {
|
|
|
|
private(set) var rootFilePath: String?
|
|
|
|
func parser(
|
|
_ parser: XMLParser,
|
|
didStartElement elementName: String,
|
|
namespaceURI: String?,
|
|
qualifiedName qName: String?,
|
|
attributes attributeDict: [String: String] = [:]
|
|
) {
|
|
let name = XMLName.localName(from: qName ?? elementName)
|
|
guard name == "rootfile", rootFilePath == nil else {
|
|
return
|
|
}
|
|
rootFilePath = attributeDict["full-path"]?.trimmingCharacters(in: .whitespacesAndNewlines)
|
|
}
|
|
}
|