mirror of
https://github.com/yattee/yattee.git
synced 2026-02-20 01:39:46 +00:00
Yattee v2 rewrite
This commit is contained in:
340
Yattee/Services/Logging/LogExportHTTPServer.swift
Normal file
340
Yattee/Services/Logging/LogExportHTTPServer.swift
Normal file
@@ -0,0 +1,340 @@
|
||||
//
|
||||
// LogExportHTTPServer.swift
|
||||
// Yattee
|
||||
//
|
||||
// Lightweight HTTP server for exporting logs on tvOS.
|
||||
// Uses NWListener to serve logs as a downloadable text file.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
import Network
|
||||
|
||||
#if os(tvOS)
|
||||
import Darwin
|
||||
import UIKit
|
||||
|
||||
/// Lightweight HTTP server for exporting logs on tvOS.
|
||||
/// Starts a temporary server that serves logs at /logs.txt for download.
|
||||
@MainActor
|
||||
@Observable
|
||||
final class LogExportHTTPServer {
|
||||
// MARK: - State
|
||||
|
||||
/// Whether the server is currently running.
|
||||
private(set) var isRunning = false
|
||||
|
||||
/// The URL where logs can be downloaded (e.g., "http://192.168.1.50:8080/logs.txt").
|
||||
private(set) var serverURL: String?
|
||||
|
||||
/// The port the server is listening on.
|
||||
private(set) var port: UInt16?
|
||||
|
||||
/// Error message if server failed to start.
|
||||
private(set) var errorMessage: String?
|
||||
|
||||
/// Seconds remaining until auto-stop.
|
||||
private(set) var secondsRemaining: Int = 0
|
||||
|
||||
// MARK: - Private
|
||||
|
||||
private var listener: NWListener?
|
||||
private var autoStopTask: Task<Void, Never>?
|
||||
private var countdownTask: Task<Void, Never>?
|
||||
private let queue = DispatchQueue(label: "stream.yattee.logexport", qos: .userInitiated)
|
||||
|
||||
/// Auto-stop timeout in seconds (5 minutes).
|
||||
let autoStopTimeout: Int = 300
|
||||
|
||||
// MARK: - Initialization
|
||||
|
||||
init() {}
|
||||
|
||||
// MARK: - Public API
|
||||
|
||||
/// Start the HTTP server.
|
||||
func start() {
|
||||
guard !isRunning else { return }
|
||||
|
||||
errorMessage = nil
|
||||
|
||||
guard let ipAddress = getLocalIPAddress() else {
|
||||
errorMessage = String(localized: "settings.advanced.logs.export.noNetwork")
|
||||
return
|
||||
}
|
||||
|
||||
do {
|
||||
let parameters = NWParameters.tcp
|
||||
parameters.acceptLocalOnly = true
|
||||
|
||||
// Use port 0 to let the system assign an available port
|
||||
let listener = try NWListener(using: parameters, on: .any)
|
||||
|
||||
listener.stateUpdateHandler = { [weak self] state in
|
||||
Task { @MainActor [weak self] in
|
||||
self?.handleListenerState(state, ipAddress: ipAddress)
|
||||
}
|
||||
}
|
||||
|
||||
listener.newConnectionHandler = { [weak self] connection in
|
||||
Task { @MainActor [weak self] in
|
||||
self?.handleConnection(connection)
|
||||
}
|
||||
}
|
||||
|
||||
listener.start(queue: queue)
|
||||
self.listener = listener
|
||||
isRunning = true
|
||||
secondsRemaining = autoStopTimeout
|
||||
startAutoStopTimer()
|
||||
startCountdownTimer()
|
||||
|
||||
LoggingService.shared.info("Log export HTTP server starting", category: .general)
|
||||
|
||||
} catch {
|
||||
errorMessage = error.localizedDescription
|
||||
LoggingService.shared.error("Failed to start log export server", category: .general, details: error.localizedDescription)
|
||||
}
|
||||
}
|
||||
|
||||
/// Stop the HTTP server.
|
||||
func stop() {
|
||||
guard isRunning else { return }
|
||||
|
||||
listener?.cancel()
|
||||
listener = nil
|
||||
autoStopTask?.cancel()
|
||||
autoStopTask = nil
|
||||
countdownTask?.cancel()
|
||||
countdownTask = nil
|
||||
isRunning = false
|
||||
serverURL = nil
|
||||
port = nil
|
||||
secondsRemaining = 0
|
||||
|
||||
LoggingService.shared.info("Log export HTTP server stopped", category: .general)
|
||||
}
|
||||
|
||||
// MARK: - Private: Listener State
|
||||
|
||||
private func handleListenerState(_ state: NWListener.State, ipAddress: String) {
|
||||
switch state {
|
||||
case .ready:
|
||||
if let port = listener?.port?.rawValue {
|
||||
self.port = port
|
||||
self.serverURL = "http://\(ipAddress):\(port)"
|
||||
LoggingService.shared.info("Log export server ready", category: .general, details: serverURL)
|
||||
}
|
||||
|
||||
case .failed(let error):
|
||||
errorMessage = error.localizedDescription
|
||||
LoggingService.shared.error("Log export server failed", category: .general, details: error.localizedDescription)
|
||||
stop()
|
||||
|
||||
case .cancelled:
|
||||
isRunning = false
|
||||
|
||||
default:
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
// MARK: - Private: Connection Handling
|
||||
|
||||
private func handleConnection(_ connection: NWConnection) {
|
||||
connection.stateUpdateHandler = { state in
|
||||
switch state {
|
||||
case .ready:
|
||||
self.receiveHTTPRequest(on: connection)
|
||||
case .failed, .cancelled:
|
||||
connection.cancel()
|
||||
default:
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
connection.start(queue: queue)
|
||||
}
|
||||
|
||||
private nonisolated func receiveHTTPRequest(on connection: NWConnection) {
|
||||
connection.receive(minimumIncompleteLength: 1, maximumLength: 4096) { [weak self] data, _, _, error in
|
||||
guard let self, let data, error == nil else {
|
||||
connection.cancel()
|
||||
return
|
||||
}
|
||||
|
||||
// Parse HTTP request (minimal parsing)
|
||||
if let request = String(data: data, encoding: .utf8) {
|
||||
Task { @MainActor in
|
||||
self.handleHTTPRequest(request, on: connection)
|
||||
}
|
||||
} else {
|
||||
connection.cancel()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private func handleHTTPRequest(_ request: String, on connection: NWConnection) {
|
||||
// Check if it's a GET request for /logs.txt
|
||||
let lines = request.components(separatedBy: "\r\n")
|
||||
guard let requestLine = lines.first else {
|
||||
sendErrorResponse(on: connection, code: 400, message: "Bad Request")
|
||||
return
|
||||
}
|
||||
|
||||
let parts = requestLine.components(separatedBy: " ")
|
||||
guard parts.count >= 2 else {
|
||||
sendErrorResponse(on: connection, code: 400, message: "Bad Request")
|
||||
return
|
||||
}
|
||||
|
||||
let method = parts[0]
|
||||
var path = parts[1]
|
||||
|
||||
// Handle absolute URLs (some clients send full URL instead of just path)
|
||||
if path.hasPrefix("http://") || path.hasPrefix("https://") {
|
||||
if let url = URL(string: path) {
|
||||
path = url.path.isEmpty ? "/" : url.path
|
||||
}
|
||||
}
|
||||
|
||||
// Handle GET /logs.txt or GET /
|
||||
if method == "GET" && (path == "/logs.txt" || path == "/" || path.hasPrefix("/?")) {
|
||||
sendLogsResponse(on: connection)
|
||||
} else if method == "GET" && path == "/favicon.ico" {
|
||||
// Ignore favicon requests
|
||||
sendErrorResponse(on: connection, code: 404, message: "Not Found")
|
||||
} else {
|
||||
sendErrorResponse(on: connection, code: 404, message: "Not Found")
|
||||
}
|
||||
}
|
||||
|
||||
private func sendLogsResponse(on connection: NWConnection) {
|
||||
let logs = LoggingService.shared.exportLogs()
|
||||
let logsData = logs.data(using: .utf8) ?? Data()
|
||||
let filename = generateLogFilename()
|
||||
|
||||
let headers = """
|
||||
HTTP/1.1 200 OK\r
|
||||
Content-Type: text/plain; charset=utf-8\r
|
||||
Content-Disposition: attachment; filename="\(filename)"\r
|
||||
Content-Length: \(logsData.count)\r
|
||||
Connection: close\r
|
||||
\r
|
||||
|
||||
"""
|
||||
|
||||
var responseData = headers.data(using: .utf8) ?? Data()
|
||||
responseData.append(logsData)
|
||||
|
||||
connection.send(content: responseData, completion: .contentProcessed { _ in
|
||||
connection.cancel()
|
||||
})
|
||||
|
||||
LoggingService.shared.info("Logs downloaded via HTTP", category: .general)
|
||||
}
|
||||
|
||||
/// Generate a filename with device name, build number, and timestamp.
|
||||
private func generateLogFilename() -> String {
|
||||
let dateFormatter = DateFormatter()
|
||||
dateFormatter.dateFormat = "yyyy-MM-dd_HH-mm-ss"
|
||||
let timestamp = dateFormatter.string(from: Date())
|
||||
|
||||
// Get device name and sanitize it for filename
|
||||
let deviceName = UIDevice.current.name
|
||||
.replacingOccurrences(of: " ", with: "-")
|
||||
.replacingOccurrences(of: "'", with: "")
|
||||
.filter { $0.isLetter || $0.isNumber || $0 == "-" || $0 == "_" }
|
||||
|
||||
// Get build number
|
||||
let buildNumber = Bundle.main.object(forInfoDictionaryKey: "CFBundleVersion") as? String ?? "0"
|
||||
|
||||
return "yattee-logs_\(deviceName)_b\(buildNumber)_\(timestamp).txt"
|
||||
}
|
||||
|
||||
private func sendErrorResponse(on connection: NWConnection, code: Int, message: String) {
|
||||
let body = "<html><body><h1>\(code) \(message)</h1></body></html>"
|
||||
let bodyData = body.data(using: .utf8) ?? Data()
|
||||
|
||||
let headers = """
|
||||
HTTP/1.1 \(code) \(message)\r
|
||||
Content-Type: text/html; charset=utf-8\r
|
||||
Content-Length: \(bodyData.count)\r
|
||||
Connection: close\r
|
||||
\r
|
||||
|
||||
"""
|
||||
|
||||
var responseData = headers.data(using: .utf8) ?? Data()
|
||||
responseData.append(bodyData)
|
||||
|
||||
connection.send(content: responseData, completion: .contentProcessed { _ in
|
||||
connection.cancel()
|
||||
})
|
||||
}
|
||||
|
||||
// MARK: - Private: Timers
|
||||
|
||||
private func startAutoStopTimer() {
|
||||
autoStopTask?.cancel()
|
||||
autoStopTask = Task { [weak self] in
|
||||
guard let self else { return }
|
||||
try? await Task.sleep(for: .seconds(autoStopTimeout))
|
||||
guard !Task.isCancelled else { return }
|
||||
self.stop()
|
||||
}
|
||||
}
|
||||
|
||||
private func startCountdownTimer() {
|
||||
countdownTask?.cancel()
|
||||
countdownTask = Task { [weak self] in
|
||||
guard let self else { return }
|
||||
while !Task.isCancelled && self.secondsRemaining > 0 {
|
||||
try? await Task.sleep(for: .seconds(1))
|
||||
guard !Task.isCancelled else { return }
|
||||
self.secondsRemaining -= 1
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// MARK: - Private: IP Address Detection
|
||||
|
||||
/// Get the local IP address, preferring WiFi (en0) or Ethernet (en1).
|
||||
private func getLocalIPAddress() -> String? {
|
||||
var address: String?
|
||||
var ifaddr: UnsafeMutablePointer<ifaddrs>?
|
||||
|
||||
guard getifaddrs(&ifaddr) == 0, let firstAddr = ifaddr else { return nil }
|
||||
defer { freeifaddrs(ifaddr) }
|
||||
|
||||
// Prefer en0 (WiFi) or en1 (Ethernet on Apple TV)
|
||||
let preferredInterfaces = ["en0", "en1"]
|
||||
|
||||
for ptr in sequence(first: firstAddr, next: { $0.pointee.ifa_next }) {
|
||||
let interface = ptr.pointee
|
||||
let family = interface.ifa_addr.pointee.sa_family
|
||||
|
||||
guard family == UInt8(AF_INET) else { continue } // IPv4 only
|
||||
|
||||
let name = String(cString: interface.ifa_name)
|
||||
guard preferredInterfaces.contains(name) else { continue }
|
||||
|
||||
var hostname = [CChar](repeating: 0, count: Int(NI_MAXHOST))
|
||||
getnameinfo(
|
||||
interface.ifa_addr,
|
||||
socklen_t(interface.ifa_addr.pointee.sa_len),
|
||||
&hostname,
|
||||
socklen_t(hostname.count),
|
||||
nil,
|
||||
0,
|
||||
NI_NUMERICHOST
|
||||
)
|
||||
address = String(cString: hostname)
|
||||
|
||||
// Prefer en0 if both exist
|
||||
if name == "en0" { break }
|
||||
}
|
||||
|
||||
return address
|
||||
}
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user