59 lines
1.5 KiB
Swift
59 lines
1.5 KiB
Swift
//
|
|
// SeekingFavicon.swift
|
|
// Evergreen
|
|
//
|
|
// Created by Brent Simmons on 11/23/17.
|
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Notification.Name {
|
|
|
|
static let SeekingFaviconSeekDidComplete = Notification.Name("SeekingFaviconSeekDidCompleteNotification")
|
|
}
|
|
|
|
final class SeekingFavicon {
|
|
|
|
// At first, when looking for a favicon, we only know the homePageURL.
|
|
// The faviconURL may be specified by metadata in the home page,
|
|
// or it might be at /favicon.ico,
|
|
// or it might not exist (or be unfindable, which is the same thing).
|
|
|
|
var didSeek = false
|
|
var faviconURL: String? {
|
|
return didSeek ? (foundFaviconURL ?? defaultFaviconURL) : nil
|
|
}
|
|
|
|
private let homePageURL: String
|
|
private var foundFaviconURL: String?
|
|
private let defaultFaviconURL: String // /favicon.ico
|
|
private static let localeForLowercasing = Locale(identifier: "en_US")
|
|
|
|
init?(homePageURL: String) {
|
|
|
|
guard let url = URL(string: homePageURL), let scheme = url.scheme, let host = url.host else {
|
|
return nil
|
|
}
|
|
|
|
self.homePageURL = homePageURL
|
|
self.defaultFaviconURL = "\(scheme)://\(host)/favicon.ico".lowercased(with: SeekingFavicon.localeForLowercasing)
|
|
|
|
findFaviconURL()
|
|
}
|
|
}
|
|
|
|
private extension SeekingFavicon {
|
|
|
|
func findFaviconURL() {
|
|
|
|
FaviconURLFinder.findFaviconURL(homePageURL) { (faviconURL) in
|
|
|
|
self.foundFaviconURL = faviconURL
|
|
self.didSeek = true
|
|
|
|
NotificationCenter.default.post(name: .SeekingFaviconSeekDidComplete, object: self)
|
|
}
|
|
}
|
|
}
|