Created
June 14, 2020 22:03
-
-
Save kirilltitov/ce1018c146c45f384ce03af900909589 to your computer and use it in GitHub Desktop.
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
import Foundation | |
public extension Dictionary where Key == String, Value == Any { | |
fileprivate func _get<T>(path: [String]) -> T? { | |
var root = self | |
for idx in 0 ..< path.count - 1 { | |
guard let _root = root[path[idx]] as? [String: Any] else { | |
return nil | |
} | |
root = _root | |
} | |
guard let result = root[path[path.endIndex - 1]] as? T else { | |
return nil | |
} | |
return result | |
} | |
subscript<T>(path: String...) -> T? { | |
return self._get(path: path) | |
} | |
} | |
public extension Data { | |
private func _json<T>(path: [String]) -> T? { | |
guard | |
let rawJson = try? JSONSerialization.jsonObject(with: self), | |
let json = rawJson as? [String: Any] | |
else { | |
return nil | |
} | |
return json._get(path: path) | |
} | |
subscript<T>(json path: String...) -> T? { | |
return self._json(path: path) | |
} | |
subscript<T>(jsonPath path: String) -> T? { | |
return self._json(path: path.split(separator: "/").map { String($0) }) | |
} | |
} | |
// usage | |
let json: [String: Any] = [:] | |
let str: String? = json["foo", "bar", "baz"] | |
// or | |
let jsonData = Data() | |
let str2: String? = jsonData[json: "foo", "bar", "baz"] | |
let str3: String? = jsonData[jsonPath: "foo/bar/baz"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment