2020-05-03 15:33:57 +02:00
|
|
|
//
|
|
|
|
// URL-Extensions.swift
|
|
|
|
// NetNewsWire
|
|
|
|
//
|
|
|
|
// Created by Stuart Breckenridge on 03/05/2020.
|
|
|
|
// Copyright © 2020 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
extension URL {
|
|
|
|
|
|
|
|
/// Extracts email address from a `URL` with a `mailto` scheme, otherwise `nil`.
|
|
|
|
var emailAddress: String? {
|
|
|
|
scheme == "mailto" ? URLComponents(url: self, resolvingAgainstBaseURL: false)?.path : nil
|
|
|
|
}
|
2020-05-03 16:37:01 +02:00
|
|
|
|
2020-07-13 08:24:57 +02:00
|
|
|
func valueFor(_ parameter: String) -> String? {
|
|
|
|
guard let components = URLComponents(url: self, resolvingAgainstBaseURL: false),
|
|
|
|
let queryItems = components.queryItems,
|
|
|
|
let value = queryItems.first(where: { $0.name == parameter })?.value else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
|
2020-05-03 15:33:57 +02:00
|
|
|
}
|