-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from auth0/feature-logging
Introduce simple logging for HTTP requests and OAuth2 flow
- Loading branch information
Showing
9 changed files
with
3,643 additions
and
1,314 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
// Logger.swift | ||
// | ||
// Copyright (c) 2016 Auth0 (http://auth0.com) | ||
// | ||
// 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 | ||
|
||
class Auth0Logger { | ||
static let sharedInstance = Auth0Logger() | ||
|
||
var logger: Logger? = nil | ||
} | ||
|
||
public protocol Logger { | ||
func trace(request: NSURLRequest, session: NSURLSession) | ||
func trace(response: NSURLResponse, data: NSData?) | ||
func trace(url: NSURL, source: String?) | ||
} | ||
|
||
struct DefaultLogger: Logger { | ||
|
||
func trace(request: NSURLRequest, session: NSURLSession) { | ||
guard | ||
let method = request.HTTPMethod, | ||
let url = request.URL | ||
else { return } | ||
print("\(method) \(url.absoluteString) HTTP/1.1") | ||
session.configuration.HTTPAdditionalHeaders?.forEach { key, value in print("\(key): \(value)") } | ||
request.allHTTPHeaderFields?.forEach { key, value in print("\(key): \(value)") } | ||
if let data = request.HTTPBody, let string = String(data: data, encoding: NSUTF8StringEncoding) { | ||
print() | ||
print(string) | ||
} | ||
print() | ||
} | ||
|
||
func trace(response: NSURLResponse, data: NSData?) { | ||
if let http = response as? NSHTTPURLResponse { | ||
print("HTTP/1.1 \(http.statusCode)") | ||
http.allHeaderFields.forEach { key, value in print("\(key): \(value)") } | ||
if let data = data, let string = String(data: data, encoding: NSUTF8StringEncoding) { | ||
print() | ||
print(string) | ||
} | ||
print() | ||
} | ||
} | ||
|
||
func trace(url: NSURL, source: String?) { | ||
print("\(source ?? "URL"): \(url.absoluteString)") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// _ObjectiveLogger.swift | ||
// | ||
// Copyright (c) 2016 Auth0 (http://auth0.com) | ||
// | ||
// 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 | ||
|
||
@objc(A0Logger) | ||
public class _ObjectiveLogger: NSObject { | ||
/** | ||
Turn on Auth0.swift debug logging of HTTP requests and OAuth2 flow (iOS only). | ||
|
||
- note: By default all logging is **disabled** | ||
- important: Logging should be turned on/off **before** making request to Auth0 for the flag to take effect. | ||
*/ | ||
public static func loggingEnabled() { | ||
enableLogging(true) | ||
} | ||
|
||
/** | ||
Turn on/off Auth0.swift debug logging of HTTP requests and OAuth2 flow (iOS only). | ||
|
||
- parameter enabled: flag to turn on/off logging | ||
- note: By default all logging is **disabled** | ||
- important: Logging should be turned on/off **before** making request to Auth0 for the flag to take effect. | ||
*/ | ||
public static func loggingEnabled(enabled: Bool) { | ||
enableLogging(enabled) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters