92 lines
3.5 KiB
Swift
Executable File
92 lines
3.5 KiB
Swift
Executable File
//
|
|
// URLRequest+RSWeb.swift
|
|
// NetNewsWire
|
|
//
|
|
// Created by Brent Simmons on 12/27/16.
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import RSWeb
|
|
import Secrets
|
|
|
|
public extension URLRequest {
|
|
|
|
init(url: URL, credentials: Credentials?, conditionalGet: HTTPConditionalGetInfo? = nil) {
|
|
|
|
self.init(url: url)
|
|
|
|
guard let credentials = credentials else {
|
|
return
|
|
}
|
|
|
|
switch credentials.type {
|
|
case .basic:
|
|
let data = "\(credentials.username):\(credentials.secret)".data(using: .utf8)
|
|
let base64 = data?.base64EncodedString()
|
|
let auth = "Basic \(base64 ?? "")"
|
|
setValue(auth, forHTTPHeaderField: HTTPRequestHeader.authorization)
|
|
case .feedWranglerBasic:
|
|
self.url = url.appendingQueryItems([
|
|
URLQueryItem(name: "email", value: credentials.username),
|
|
URLQueryItem(name: "password", value: credentials.secret),
|
|
URLQueryItem(name: "client_key", value: FeedWranglerConfig.clientKey)
|
|
])
|
|
case .feedWranglerToken:
|
|
self.url = url.appendingQueryItem(URLQueryItem(name: "access_token", value: credentials.secret))
|
|
case .newsBlurBasic:
|
|
setValue("application/x-www-form-urlencoded", forHTTPHeaderField: HTTPRequestHeader.contentType)
|
|
httpMethod = "POST"
|
|
var postData = URLComponents()
|
|
postData.queryItems = [
|
|
URLQueryItem(name: "username", value: credentials.username),
|
|
URLQueryItem(name: "password", value: credentials.secret),
|
|
]
|
|
httpBody = postData.percentEncodedQuery?.data(using: .utf8)
|
|
case .newsBlurSessionId:
|
|
setValue("\(NewsBlurAPICaller.SessionIdCookie)=\(credentials.secret)", forHTTPHeaderField: "Cookie")
|
|
httpShouldHandleCookies = true
|
|
case .readerBasic:
|
|
setValue("application/x-www-form-urlencoded", forHTTPHeaderField: "Content-Type")
|
|
httpMethod = "POST"
|
|
var postData = URLComponents()
|
|
postData.queryItems = [
|
|
URLQueryItem(name: "Email", value: credentials.username),
|
|
URLQueryItem(name: "Passwd", value: credentials.secret)
|
|
]
|
|
httpBody = postData.percentEncodedQuery?.data(using: .utf8)
|
|
case .readerAPIKey:
|
|
let auth = "GoogleLogin auth=\(credentials.secret)"
|
|
setValue(auth, forHTTPHeaderField: HTTPRequestHeader.authorization)
|
|
case .oauthAccessToken:
|
|
let auth = "OAuth \(credentials.secret)"
|
|
setValue(auth, forHTTPHeaderField: "Authorization")
|
|
case .oauthAccessTokenSecret:
|
|
assertionFailure("Token secrets are used by OAuth1. Did you mean to use `OAuthSwift` instead of a URLRequest?")
|
|
break
|
|
case .oauthRefreshToken:
|
|
// While both access and refresh tokens are credentials, it seems the `Credentials` cases
|
|
// enumerates how the identity of the user can be proved rather than
|
|
// credentials-in-general, such as in this refresh token case,
|
|
// the authority to prove an identity.
|
|
assertionFailure("Refresh tokens are used to replace expired access tokens. Did you mean to use `accessToken` instead?")
|
|
break
|
|
}
|
|
|
|
guard let conditionalGet = conditionalGet else {
|
|
return
|
|
}
|
|
|
|
// Bug seen in the wild: lastModified with last possible 32-bit date, which is in 2038. Ignore those.
|
|
// TODO: drop this check in late 2037.
|
|
if let lastModified = conditionalGet.lastModified, !lastModified.contains("2038") {
|
|
setValue(lastModified, forHTTPHeaderField: HTTPRequestHeader.ifModifiedSince)
|
|
}
|
|
if let etag = conditionalGet.etag {
|
|
setValue(etag, forHTTPHeaderField: HTTPRequestHeader.ifNoneMatch)
|
|
}
|
|
|
|
}
|
|
|
|
}
|