This PR contains all the work related to setting up this project as required to implement the [Assignment](https://repo.rock-n-code.com/rock-n-code/deep-linking-assignment/wiki/Assignment) on top, as intended. To summarise this work: - [x] created a new **Xcode** project; - [x] cloned the `Wikipedia` app and inserted it into the **Xcode** project; - [x] created the `Locations` app and also, its `Libraries` package; - [x] created the `Shared` package to share dependencies between the apps; - [x] added a `Makefile` file and implemented some **environment** and **help** commands. Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Reviewed-on: rock-n-code/deep-linking-assignment#1
105 lines
3.3 KiB
Swift
105 lines
3.3 KiB
Swift
import Foundation
|
|
|
|
/// An object that is passed through from fetchers to view controllers, for reference when displaying errors in a panel.
|
|
@objc public class MediaWikiAPIDisplayError: NSObject {
|
|
|
|
// Fully resolved html to display in the blocked panel.
|
|
@objc public let messageHtml: String
|
|
|
|
// Base url to be referenced when user taps a relative link within the messageHtml in the blocked panel.
|
|
public let linkBaseURL: URL
|
|
|
|
// Error code, passed through from original MediaWikiAPIError. Currently used for logging.
|
|
@objc public let code: String
|
|
|
|
public init(messageHtml: String, linkBaseURL: URL, code: String) {
|
|
self.messageHtml = messageHtml
|
|
self.linkBaseURL = linkBaseURL
|
|
self.code = code
|
|
}
|
|
}
|
|
|
|
|
|
/// Represents errors that come in the MediaWiki API response.
|
|
/// See https://www.mediawiki.org/wiki/API:Errors_and_warnings
|
|
public struct MediaWikiAPIError: Codable {
|
|
|
|
public struct Data: Codable {
|
|
public struct BlockInfo: Codable {
|
|
let blockReason: String
|
|
let blockPartial: Bool
|
|
let blockedBy: String
|
|
let blockID: Int64
|
|
let blockExpiry: String
|
|
let blockedTimestamp: String
|
|
|
|
enum CodingKeys: String, CodingKey {
|
|
case blockReason = "blockreason"
|
|
case blockPartial = "blockpartial"
|
|
case blockedBy = "blockedby"
|
|
case blockID = "blockid"
|
|
case blockExpiry = "blockexpiry"
|
|
case blockedTimestamp = "blockedtimestamp"
|
|
}
|
|
|
|
init?(dict: [String: Any]) {
|
|
|
|
guard let blockReason = dict["blockreason"] as? String,
|
|
let blockPartial = dict["blockpartial"] as? Bool,
|
|
let blockedBy = dict["blockedby"] as? String,
|
|
let blockID = dict["blockid"] as? Int64,
|
|
let blockExpiry = dict["blockexpiry"] as? String,
|
|
let blockedTimestamp = dict["blockedtimestamp"] as? String else {
|
|
return nil
|
|
}
|
|
|
|
self.blockReason = blockReason
|
|
self.blockPartial = blockPartial
|
|
self.blockedBy = blockedBy
|
|
self.blockID = blockID
|
|
self.blockExpiry = blockExpiry
|
|
self.blockedTimestamp = blockedTimestamp
|
|
}
|
|
}
|
|
|
|
let blockInfo: BlockInfo?
|
|
|
|
enum CodingKeys: String, CodingKey {
|
|
case blockInfo = "blockinfo"
|
|
}
|
|
|
|
init?(dict: [String: Any]) {
|
|
|
|
guard let blockInfoDict = dict["blockinfo"] as? [String: Any] else {
|
|
self.blockInfo = nil
|
|
return
|
|
}
|
|
|
|
self.blockInfo = BlockInfo(dict: blockInfoDict)
|
|
}
|
|
}
|
|
|
|
public let code: String
|
|
let html: String
|
|
let data: Data?
|
|
|
|
init?(dict: [String: Any]) {
|
|
|
|
guard let code = dict["code"] as? String,
|
|
let html = dict["html"] as? String
|
|
else {
|
|
return nil
|
|
}
|
|
|
|
self.code = code
|
|
self.html = html
|
|
|
|
guard let dataDict = dict["data"] as? [String: Any] else {
|
|
self.data = nil
|
|
return
|
|
}
|
|
|
|
self.data = Data(dict: dataDict)
|
|
}
|
|
}
|