summaryrefslogtreecommitdiff
path: root/Hutch/Networking
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-04-11 23:36:35 -0500
committerChristian Cleberg <[email protected]>2026-04-11 23:36:35 -0500
commit00cc231e9b419d27b412036d93457c2cbabe0b16 (patch)
tree6b042b802fcddcd1e03f1ae0f666965620225485 /Hutch/Networking
parent0fde7529ceaebf1cd9baa01826d95d587023d001 (diff)
downloadhutch-00cc231e9b419d27b412036d93457c2cbabe0b16.tar.gz
hutch-00cc231e9b419d27b412036d93457c2cbabe0b16.tar.bz2
hutch-00cc231e9b419d27b412036d93457c2cbabe0b16.zip
Add SourceHut system status screen and home disruption banner
Diffstat (limited to 'Hutch/Networking')
-rw-r--r--Hutch/Networking/SystemStatusRepository.swift57
-rw-r--r--Hutch/Networking/SystemStatusService.swift400
2 files changed, 457 insertions, 0 deletions
diff --git a/Hutch/Networking/SystemStatusRepository.swift b/Hutch/Networking/SystemStatusRepository.swift
new file mode 100644
index 0000000..48c5b16
--- /dev/null
+++ b/Hutch/Networking/SystemStatusRepository.swift
@@ -0,0 +1,57 @@
+import Foundation
+
+actor SystemStatusRepository {
+ private let service: SystemStatusService
+ private let ttl: TimeInterval
+
+ private var snapshotCache: CacheEntry<SystemStatusSnapshot>?
+ private var incidentsCache: CacheEntry<[StatusIncident]>?
+
+ init(service: SystemStatusService = SystemStatusService(), ttl: TimeInterval = 10 * 60) {
+ self.service = service
+ self.ttl = ttl
+ }
+
+ func snapshot(forceRefresh: Bool = false) async throws -> SystemStatusSnapshot {
+ if let cached = snapshotCache, !forceRefresh, !cached.isExpired(ttl: ttl) {
+ return cached.value
+ }
+
+ do {
+ let snapshot = try await service.fetchSnapshot()
+ snapshotCache = CacheEntry(value: snapshot, timestamp: Date())
+ return snapshot
+ } catch {
+ if let cached = snapshotCache {
+ return cached.value
+ }
+ throw error
+ }
+ }
+
+ func recentIncidents(forceRefresh: Bool = false) async throws -> [StatusIncident] {
+ if let cached = incidentsCache, !forceRefresh, !cached.isExpired(ttl: ttl) {
+ return cached.value
+ }
+
+ do {
+ let incidents = try await service.fetchIncidentFeed()
+ incidentsCache = CacheEntry(value: incidents, timestamp: Date())
+ return incidents
+ } catch {
+ if let cached = incidentsCache {
+ return cached.value
+ }
+ throw error
+ }
+ }
+}
+
+private struct CacheEntry<Value: Sendable>: Sendable {
+ let value: Value
+ let timestamp: Date
+
+ nonisolated func isExpired(ttl: TimeInterval) -> Bool {
+ Date().timeIntervalSince(timestamp) > ttl
+ }
+}
diff --git a/Hutch/Networking/SystemStatusService.swift b/Hutch/Networking/SystemStatusService.swift
new file mode 100644
index 0000000..fd38fd3
--- /dev/null
+++ b/Hutch/Networking/SystemStatusService.swift
@@ -0,0 +1,400 @@
+import Foundation
+
+struct SystemStatusService: Sendable {
+ nonisolated static let statusURL = URL(string: "https://status.sr.ht/")!
+ nonisolated static let feedURL = URL(string: "https://status.sr.ht/index.xml")!
+
+ private let session: URLSession
+ private let now: @Sendable () -> Date
+
+ nonisolated init(session: URLSession = .shared, now: @escaping @Sendable () -> Date = Date.init) {
+ self.session = session
+ self.now = now
+ }
+
+ func fetchSnapshot() async throws -> SystemStatusSnapshot {
+ let html = try await fetchText(from: Self.statusURL, accept: "text/html,application/xhtml+xml")
+ return try Self.parseSnapshotHTML(html, fetchedAt: now())
+ }
+
+ func fetchIncidentFeed() async throws -> [StatusIncident] {
+ let data = try await fetchData(from: Self.feedURL, accept: "application/rss+xml,application/xml,text/xml")
+ return try await Self.parseIncidentFeedXML(data)
+ }
+
+ private func fetchText(from url: URL, accept: String) async throws -> String {
+ let data = try await fetchData(from: url, accept: accept)
+ guard let text = String(data: data, encoding: .utf8) else {
+ throw SRHTError.decodingError(
+ DecodingError.dataCorrupted(.init(codingPath: [], debugDescription: "Response is not UTF-8 text"))
+ )
+ }
+ return text
+ }
+
+ private func fetchData(from url: URL, accept: String) async throws -> Data {
+ var request = URLRequest(url: url)
+ request.setValue(userAgent, forHTTPHeaderField: "User-Agent")
+ request.setValue(accept, forHTTPHeaderField: "Accept")
+
+ let (data, response): (Data, URLResponse)
+ do {
+ (data, response) = try await session.data(for: request)
+ } catch {
+ throw SRHTError.networkError(error)
+ }
+
+ if let http = response as? HTTPURLResponse,
+ !(200...299).contains(http.statusCode) {
+ throw SRHTError.httpError(http.statusCode)
+ }
+
+ return data
+ }
+
+ private var userAgent: String {
+ let bundle = Bundle.main
+ let name = (bundle.object(forInfoDictionaryKey: "CFBundleDisplayName") as? String)
+ ?? (bundle.object(forInfoDictionaryKey: "CFBundleName") as? String)
+ ?? "Hutch"
+ let version = (bundle.object(forInfoDictionaryKey: "CFBundleShortVersionString") as? String) ?? "dev"
+ return "\(name)/\(version) (System Status)"
+ }
+}
+
+extension SystemStatusService {
+ nonisolated static func parseSnapshotHTML(_ html: String, fetchedAt: Date) throws -> SystemStatusSnapshot {
+ let services = parseServices(in: html)
+ let incidents = parseHTMLIncidentCards(in: html)
+ let summaries = parseActiveIncidentSummaries(in: html)
+
+ let activeIncidents = incidents
+ .filter { $0.isActive == true }
+ .map { incident in
+ let summary = incident.url.flatMap { summaries[$0.absoluteString] } ?? incident.summary
+ return StatusIncident(
+ id: incident.id,
+ title: incident.title,
+ summary: summary,
+ url: incident.url,
+ publishedAt: incident.publishedAt,
+ updatedAt: incident.updatedAt,
+ isActive: incident.isActive
+ )
+ }
+
+ return SystemStatusSnapshot(services: services, activeIncidents: activeIncidents, lastUpdated: fetchedAt)
+ }
+
+ nonisolated static func parseIncidentFeedXML(_ data: Data) async throws -> [StatusIncident] {
+ try await MainActor.run {
+ let parser = SystemStatusFeedParser()
+ return try parser.parse(data: data)
+ }
+ }
+
+ nonisolated private static func parseServices(in html: String) -> [StatusServiceState] {
+ firstMatches(
+ in: html,
+ pattern: #"<div class="component" data-status="([^"]+)">([\s\S]*?)</div>"#
+ ).compactMap { captures in
+ guard captures.count >= 2 else { return nil }
+
+ let rawStatus = captures[0]
+ let content = captures[1]
+ guard let linkCaptures = firstMatches(
+ in: content,
+ pattern: #"<a[^>]*href="([^"]+)"[^>]*>\s*(.*?)\s*</a>"#
+ ).first,
+ linkCaptures.count >= 2,
+ let statusText = firstMatch(in: content, pattern: #"<span class="component-status">\s*(.*?)\s*</span>"#) else {
+ return nil
+ }
+
+ let href = linkCaptures[0]
+ let cleanedName = cleanText(linkCaptures[1])
+ let readableStatus = cleanText(statusText)
+ let level = statusLevel(fromHTMLStatus: rawStatus)
+
+ return StatusServiceState(
+ id: normalizedSlug(from: href, fallback: cleanedName) ?? cleanedName,
+ name: cleanedName,
+ slug: normalizedSlug(from: href, fallback: cleanedName),
+ status: level == .unknown ? statusLevel(fromLabel: readableStatus) : level,
+ description: nil
+ )
+ }
+ }
+
+ nonisolated private static func parseHTMLIncidentCards(in html: String) -> [StatusIncident] {
+ firstMatches(
+ in: html,
+ pattern: #"<a href="([^"]+)" class="issue no-underline">([\s\S]*?)</a>"#
+ ).compactMap { captures in
+ guard captures.count >= 2 else { return nil }
+ let href = captures[0]
+ let content = captures[1]
+ guard let titleHTML = firstMatch(in: content, pattern: #"<h3>\s*([\s\S]*?)\s*</h3>"#),
+ let titleAttribute = firstMatch(in: content, pattern: #"<small class="date[^"]*" title="([^"]+)">"#),
+ let publishedAt = htmlIssueDateFormatter.date(from: cleanText(titleAttribute)) else {
+ return nil
+ }
+
+ let url = URL(string: href, relativeTo: statusURL)?.absoluteURL
+ let isActive = content.localizedCaseInsensitiveContains("This issue is not resolved yet")
+ return StatusIncident(
+ id: url?.absoluteString ?? cleanText(titleHTML),
+ title: cleanText(titleHTML),
+ summary: nil,
+ url: url,
+ publishedAt: publishedAt,
+ updatedAt: nil,
+ isActive: isActive
+ )
+ }
+ }
+
+ nonisolated private static func parseActiveIncidentSummaries(in html: String) -> [String: String] {
+ firstMatches(
+ in: html,
+ pattern: #"<div class="announcement-box"[\s\S]*?<div class="padding">([\s\S]*?)</div>\s*<hr class="clean announcement-box">"#
+ ).reduce(into: [:]) { partialResult, captures in
+ guard let content = captures.first,
+ let titleLinkCaptures = firstMatches(
+ in: content,
+ pattern: #"<a href="([^"]+)"><strong class="bold">([\s\S]*?)</strong></a>"#
+ ).first,
+ let href = titleLinkCaptures.first else {
+ return
+ }
+
+ let paragraphs = firstMatches(in: content, pattern: #"<p>([\s\S]*?)</p>"#)
+ .compactMap(\.first)
+ .map(cleanText)
+ .filter { !$0.isEmpty }
+
+ let summary = paragraphs.dropFirst(2).first ?? paragraphs.dropFirst().first
+ guard let summary, !summary.isEmpty else { return }
+ if let url = URL(string: href, relativeTo: statusURL)?.absoluteURL {
+ partialResult[url.absoluteString] = summary
+ }
+ }
+ }
+
+ nonisolated private static func statusLevel(fromHTMLStatus status: String) -> StatusLevel {
+ switch status.trimmingCharacters(in: .whitespacesAndNewlines).lowercased() {
+ case "ok":
+ .operational
+ case "disrupted":
+ .degraded
+ case "down":
+ .majorOutage
+ case "notice":
+ .maintenance
+ default:
+ .unknown
+ }
+ }
+
+ nonisolated private static func statusLevel(fromLabel label: String) -> StatusLevel {
+ switch label.trimmingCharacters(in: .whitespacesAndNewlines).lowercased() {
+ case "operational":
+ .operational
+ case "disrupted", "degraded":
+ .degraded
+ case "down", "major outage":
+ .majorOutage
+ case "maintenance":
+ .maintenance
+ default:
+ .unknown
+ }
+ }
+
+ nonisolated private static func normalizedSlug(from href: String, fallback name: String) -> String? {
+ if href.contains("/affected/") {
+ let trimmed = href.trimmingCharacters(in: CharacterSet(charactersIn: "/"))
+ if let slug = trimmed.split(separator: "/").last {
+ return String(slug)
+ }
+ }
+ return name.isEmpty ? nil : name
+ }
+
+ nonisolated private static func firstMatch(in text: String, pattern: String) -> String? {
+ firstMatches(in: text, pattern: pattern).first?.first
+ }
+
+ nonisolated private static func firstMatches(in text: String, pattern: String) -> [[String]] {
+ guard let regex = try? NSRegularExpression(
+ pattern: pattern,
+ options: [.caseInsensitive, .dotMatchesLineSeparators]
+ ) else {
+ return []
+ }
+
+ let range = NSRange(text.startIndex..., in: text)
+ return regex.matches(in: text, range: range).map { match in
+ (1..<match.numberOfRanges).compactMap { captureIndex in
+ guard let captureRange = Range(match.range(at: captureIndex), in: text) else { return nil }
+ return String(text[captureRange])
+ }
+ }
+ }
+
+ nonisolated private static func cleanText(_ text: String) -> String {
+ let stripped = text.replacingOccurrences(of: #"<[^>]+>"#, with: " ", options: .regularExpression)
+ let decoded = decodeHTMLEntities(stripped)
+ return decoded
+ .replacingOccurrences(of: #"\s+"#, with: " ", options: .regularExpression)
+ .replacingOccurrences(of: #"\s+([.,!?;:])"#, with: "$1", options: .regularExpression)
+ .replacingOccurrences(of: "→", with: "")
+ .trimmingCharacters(in: .whitespacesAndNewlines)
+ }
+
+ nonisolated private static let htmlIssueDateFormatter: DateFormatter = {
+ let formatter = DateFormatter()
+ formatter.locale = Locale(identifier: "en_US_POSIX")
+ formatter.timeZone = TimeZone(identifier: "UTC")
+ formatter.dateFormat = "MMM d HH:mm:ss yyyy zzz"
+ return formatter
+ }()
+}
+
+@MainActor
+private final class SystemStatusFeedParser: NSObject, XMLParserDelegate, @unchecked Sendable {
+ private var incidents: [StatusIncident] = []
+ private var currentItem: FeedItem?
+ private var textBuffer = ""
+
+ func parse(data: Data) throws -> [StatusIncident] {
+ incidents = []
+ currentItem = nil
+ textBuffer = ""
+
+ let parser = XMLParser(data: data)
+ parser.delegate = self
+ guard parser.parse() else {
+ throw parser.parserError ?? SRHTError.decodingError(
+ DecodingError.dataCorrupted(.init(codingPath: [], debugDescription: "Failed to parse status feed"))
+ )
+ }
+ return incidents.sorted { $0.publishedAt > $1.publishedAt }
+ }
+
+ func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String: String] = [:]) {
+ textBuffer = ""
+ if elementName == "item" {
+ currentItem = FeedItem()
+ }
+ }
+
+ func parser(_ parser: XMLParser, foundCharacters string: String) {
+ textBuffer += string
+ }
+
+ func parser(_ parser: XMLParser, foundCDATA CDATABlock: Data) {
+ if let string = String(data: CDATABlock, encoding: .utf8) {
+ textBuffer += string
+ }
+ }
+
+ func parser(_ parser: XMLParser, didEndElement elementName: String, namespaceURI: String?, qualifiedName qName: String?) {
+ guard var currentItem else {
+ textBuffer = ""
+ return
+ }
+
+ let value = textBuffer.trimmingCharacters(in: .whitespacesAndNewlines)
+ switch elementName {
+ case "title":
+ currentItem.title = value
+ case "link":
+ currentItem.link = value
+ case "guid":
+ currentItem.guid = value
+ case "description":
+ currentItem.description = value
+ case "pubDate":
+ currentItem.pubDate = value
+ case "category":
+ currentItem.category = value
+ case "item":
+ if let incident = currentItem.makeIncident() {
+ incidents.append(incident)
+ }
+ self.currentItem = nil
+ default:
+ self.currentItem = currentItem
+ }
+
+ if elementName != "item" {
+ self.currentItem = currentItem
+ }
+ textBuffer = ""
+ }
+
+ private struct FeedItem {
+ var title = ""
+ var link = ""
+ var guid = ""
+ var description = ""
+ var pubDate = ""
+ var category = ""
+
+ func makeIncident() -> StatusIncident? {
+ let cleanedTitle = title.replacingOccurrences(of: "[Resolved] ", with: "")
+ guard !cleanedTitle.isEmpty,
+ let publishedAt = SystemStatusFeedParser.pubDateFormatter.date(from: pubDate) else {
+ return nil
+ }
+
+ let url = URL(string: link)
+ let updatedAt = category.isEmpty ? nil : SystemStatusFeedParser.updatedDateFormatter.date(from: category)
+
+ return StatusIncident(
+ id: guid.isEmpty ? (url?.absoluteString ?? cleanedTitle) : guid,
+ title: cleanedTitle,
+ summary: SystemStatusFeedParser.summary(from: description),
+ url: url,
+ publishedAt: publishedAt,
+ updatedAt: updatedAt,
+ isActive: category.isEmpty
+ )
+ }
+ }
+
+ nonisolated private static func summary(from html: String) -> String? {
+ html
+ .components(separatedBy: "</p>")
+ .map { $0.replacingOccurrences(of: "<p>", with: "") }
+ .map(stripHTML)
+ .map {
+ $0.replacingOccurrences(of: #"\s+"#, with: " ", options: .regularExpression)
+ .replacingOccurrences(of: #"\s+([.,!?;:])"#, with: "$1", options: .regularExpression)
+ .trimmingCharacters(in: .whitespacesAndNewlines)
+ }
+ .first { !$0.isEmpty }
+ }
+
+ nonisolated private static func stripHTML(_ text: String) -> String {
+ let stripped = text.replacingOccurrences(of: #"<[^>]+>"#, with: " ", options: .regularExpression)
+ return decodeHTMLEntities(stripped)
+ }
+
+ nonisolated private static let pubDateFormatter: DateFormatter = {
+ let formatter = DateFormatter()
+ formatter.locale = Locale(identifier: "en_US_POSIX")
+ formatter.timeZone = TimeZone(identifier: "UTC")
+ formatter.dateFormat = "EEE, dd MMM yyyy HH:mm:ss Z"
+ return formatter
+ }()
+
+ nonisolated private static let updatedDateFormatter: DateFormatter = {
+ let formatter = DateFormatter()
+ formatter.locale = Locale(identifier: "en_US_POSIX")
+ formatter.timeZone = TimeZone(identifier: "UTC")
+ formatter.dateFormat = "yyyy-MM-dd HH:mm:ss"
+ return formatter
+ }()
+}