Skip to content

Commit

Permalink
Merge pull request #20 from stockx/url-matcher
Browse files Browse the repository at this point in the history
Move URL matching into its own class
  • Loading branch information
devxoul authored Sep 5, 2016
2 parents 515b63d + 44d9581 commit 0a236af
Show file tree
Hide file tree
Showing 6 changed files with 615 additions and 421 deletions.
237 changes: 237 additions & 0 deletions Sources/URLMatcher.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,237 @@
//
// URLMatcher.swift
// URLNavigator
//
// Created by Sklar, Josh on 9/2/16.
// Copyright © 2016 Suyeol Jeon. All rights reserved.
//
// The MIT License (MIT)
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.

import Foundation

/// URLMatchComponents encapsulates data about a URL match.
/// It contains the following attributes:
/// - pattern: The URL pattern that was matched.
/// - values: The values extracted from the URL.
/// - queryItems: The query items of the URL.
public struct URLMatchComponents {
let pattern: String
let values: [String : AnyObject]
let queryItems: [String : AnyObject]
}

/// URLMatcher provides a way to match URLs against a list of specified patterns.
///
/// URLMatcher extracts the pattrn and the values from the URL if possible.
public class URLMatcher {

/// A closure type which matches a URL value string to a typed value.
public typealias URLValueMatcherHandler = (String) -> AnyObject?

/// A dictionary to store URL value matchers by value type.
private var customURLValueMatcherHandlers = [String : URLValueMatcherHandler]()

// MARK: Initialization

public init() {
// 🔄 I'm a URLMatcher!
}

// MARK: Singleton

public static func defaultMatcher() -> URLMatcher {
struct Shared {
static let defaultMatcher = URLMatcher()
}
return Shared.defaultMatcher
}

// MARK: Matching

/// Returns a matching URL pattern and placeholder values from specified URL and URL patterns. Returns `nil` if the
/// URL is not contained in URL patterns.
///
/// For example:
///
/// let urlMatchComponents = matcher.matchURL("myapp://user/123", from: ["myapp://user/<int:id>"])
///
/// The value of the `URLPattern` from an example above is `"myapp://user/<int:id>"` and the value of the `values`
/// is `["id": 123]`.
///
/// - Parameter URL: The placeholder-filled URL.
/// - Parameter from: The array of URL patterns.
///
/// - Returns: A `URLMatchComponents` struct that holds the URL pattern string, a dictionary of URL placeholder values, and any query items.
public func matchURL(URL: URLConvertible, scheme: String? = nil,
from URLPatterns: [String]) -> URLMatchComponents? {
let normalizedURLString = self.normalizedURL(URL, scheme: scheme).URLStringValue
let URLPathComponents = normalizedURLString.componentsSeparatedByString("/") // e.g. ["myapp:", "user", "123"]

outer: for URLPattern in URLPatterns {
// e.g. ["myapp:", "user", "<int:id>"]
let URLPatternPathComponents = URLPattern.componentsSeparatedByString("/")
let containsPathPlaceholder = URLPatternPathComponents.contains({ $0.hasPrefix("<path:") })
guard containsPathPlaceholder || URLPatternPathComponents.count == URLPathComponents.count else {
continue
}

var values = [String: AnyObject]()
var queryItems = [String: AnyObject]()

// Query String
let urlComponents = NSURLComponents(string: URL.URLStringValue)

for queryItem in urlComponents?.queryItems ?? [] {
queryItems[queryItem.name] = queryItem.value
}

// e.g. ["user", "<int:id>"]
for (i, component) in URLPatternPathComponents.enumerate() {
guard i < URLPathComponents.count else {
continue outer
}
let info = self.placeholderKeyValueFromURLPatternPathComponent(component,
URLPathComponents: URLPathComponents,
atIndex: i
)
if let key = info?.0, value = info?.1 {
values[key] = value // e.g. ["id": 123]
if component.hasPrefix("<path:") {
break // there's no more placeholder after <path:>
}
} else if component != URLPathComponents[i] {
continue outer
}
}

return URLMatchComponents(pattern: URLPattern, values: values, queryItems: queryItems)
}
return nil
}

// MARK: Utils

/// Adds a new handler for matching any custom URL value type.
/// If the custom URL type already has a custom handler, this overwrites its handler.
///
/// For example:
///
/// matcher.addURLValueMatcherHandler("SSN") { (ssnString) -> AnyObject? in
/// return SSN(string: ssnString)
/// }
///
/// The value type that this would match against is "ssn" (i.e. Social Security Number), and the
/// handler to be used for that type returns a newly created `SSN` object from the ssn string.
///
/// - Parameter valueType: The value type (string) to match against.
/// - Parameter handler: The handler to use when matching against that value type.
public func addURLValueMatcherHandler(valueType: String, handler: URLValueMatcherHandler) {
self.customURLValueMatcherHandlers[valueType] = handler
}

/// Returns an scheme-appended `URLConvertible` if given `URL` doesn't have its scheme.
func URLWithScheme(scheme: String?, _ URL: URLConvertible) -> URLConvertible {
let URLString = URL.URLStringValue
if let scheme = scheme where !URLString.containsString("://") {
#if DEBUG
if !URLPatternString.hasPrefix("/") {
NSLog("[Warning] URL pattern doesn't have leading slash(/): '\(URL)'")
}
#endif
return scheme + ":/" + URLString
} else if scheme == nil && !URLString.containsString("://") {
assertionFailure("Either matcher or URL should have scheme: '\(URL)'") // assert only in debug build
}
return URLString
}

/// Returns the URL by
///
/// - Removing redundant trailing slash(/) on scheme
/// - Removing redundant double-slashes(//)
/// - Removing trailing slash(/)
///
/// - Parameter URL: The dirty URL to be normalized.
///
/// - Returns: The normalized URL. Returns `nil` if the pecified URL is invalid.
func normalizedURL(dirtyURL: URLConvertible, scheme: String? = nil) -> URLConvertible {
guard dirtyURL.URLValue != nil else {
return dirtyURL
}
var URLString = self.URLWithScheme(scheme, dirtyURL).URLStringValue
URLString = URLString.componentsSeparatedByString("?")[0].componentsSeparatedByString("#")[0]
URLString = self.replaceRegex(":/{3,}", "://", URLString)
URLString = self.replaceRegex("(?<!:)/{2,}", "/", URLString)
URLString = self.replaceRegex("/+$", "", URLString)
return URLString
}

func placeholderKeyValueFromURLPatternPathComponent(component: String,
URLPathComponents: [String],
atIndex index: Int) -> (String, AnyObject)? {
guard component.hasPrefix("<") && component.hasSuffix(">") else {
return nil
}

let start = component.startIndex.advancedBy(1)
let end = component.endIndex.advancedBy(-1)
let placeholder = component[start..<end] // e.g. "<int:id>" -> "int:id"

let typeAndKey = placeholder.componentsSeparatedByString(":") // e.g. ["int", "id"]
if typeAndKey.count == 0 { // e.g. component is "<>"
return nil
}
if typeAndKey.count == 1 { // untyped placeholder
return (placeholder, URLPathComponents[index])
}

let (type, key) = (typeAndKey[0], typeAndKey[1]) // e.g. ("int", "id")
let value: AnyObject?
switch type {
case "UUID": value = NSUUID(UUIDString: URLPathComponents[index]) // e.g. 123e4567-e89b-12d3-a456-426655440000
case "string": value = String(URLPathComponents[index]) // e.g. "123"
case "int": value = Int(URLPathComponents[index]) // e.g. 123
case "float": value = Float(URLPathComponents[index]) // e.g. 123.0
case "path": value = URLPathComponents[index..<URLPathComponents.count].joinWithSeparator("/")
default:
if let customURLValueTypeHandler = customURLValueMatcherHandlers[type] {
value = customURLValueTypeHandler(URLPathComponents[index])
}
else {
value = URLPathComponents[index]
}
}

if let value = value {
return (key, value)
}
return nil
}

func replaceRegex(pattern: String, _ repl: String, _ string: String) -> String {
guard let regex = try? NSRegularExpression(pattern: pattern, options: []) else {
return string
}
let mutableString = NSMutableString(string: string)
let range = NSMakeRange(0, string.characters.count)
regex.replaceMatchesInString(mutableString, options: [], range: range, withTemplate: repl)
return mutableString as String
}
}
Loading

0 comments on commit 0a236af

Please sign in to comment.