How to initialise the apiClient
let apiClient = TVDBClient(apikey: "XXX", userkey: "XXX", username: "XXX")
Example of search of a serie
let searchRequest = TVDB.Search.GetSearchSeries.Request.init(name: "The Walking Dead")
apiClient.makeRequest(request: searchRequest) { apiResponse in
if let obj = try? apiResponse.result.get().success {
print(obj)
}
}
Example of extracting actors from a serie
let searchSeriesByActorsRequest = TVDB.Series.GetSeriesByIdActors.Request(id: 153021)
apiClient.makeRequest(request: searchSeriesByActorsRequest) { apiResponse in
if let obj = try? apiResponse.result.get().success {
print(obj)
}
}
https://api.thetvdb.com/swagger
This is an api generated from a OpenAPI 3.0 spec with SwagGen
Each operation lives under the TVDB
namespace and within an optional tag: TVDB(.tagName).operationId
. If an operation doesn't have an operationId one will be generated from the path and method.
Each operation has a nested Request
and a Response
, as well as a static service
property
This is the struct that contains the static information about an operation including it's id, tag, method, pre-modified path, and authorization requirements. It has a generic ResponseType
type which maps to the Response
type.
You shouldn't really need to interact with this service type.
Each request is a subclass of APIRequest
and has an init
with a body param if it has a body, and a options
struct for other url and path parameters. There is also a convenience init for passing parameters directly.
The options
and body
structs are both mutable so they can be modified before actually sending the request.
The response is an enum of all the possible responses the request can return. it also contains getters for the statusCode
, whether it was successful
, and the actual decoded optional success
response. If the operation only has one type of failure type there is also an optional failure
type.
Models that are sent and returned from the API are immutable classes. Each model is Equatable
and Codable
.
Required
properties are non optional and non-required are optional
All properties can be passed into the initializer, with required
properties being mandatory.
If a model has additionalProperties
it will have a subscript to access these by string
The APIClient
is used to encode, authorize, send, monitor, and decode the requests. There is a APIClient.default
that uses the default baseURL
otherwise a custom one can be initialized:
public init(baseURL: String, sessionManager: SessionManager = .default, defaultHeaders: [String: String] = [:], behaviours: [RequestBehaviour] = [])
baseURL
: The base url that every requestpath
will be appended tobehaviours
: A list of Request Behaviours to add to every requestsessionManager
: AnAlamofire.SessionManager
that can be customizeddefaultHeaders
: Headers that will be applied to every requestdecodingQueue
: TheDispatchQueue
to decode responses on
To make a request first initialize a Request and then pass it to makeRequest
. The complete
closure will be called with an APIResponse
func makeRequest<T>(_ request: APIRequest<T>, behaviours: [RequestBehaviour] = [], queue: DispatchQueue = DispatchQueue.main, complete: @escaping (APIResponse<T>) -> Void) -> Request? {
Example request (that is not neccessarily in this api):
let getUserRequest = TVDB.User.GetUser.Request(id: 123)
let apiClient = APIClient.default
apiClient.makeRequest(getUserRequest) { apiResponse in
switch apiResponse {
case .result(let apiResponseValue):
if let user = apiResponseValue.success {
print("GetUser returned user \(user)")
} else {
print("GetUser returned \(apiResponseValue)")
}
case .error(let apiError):
print("GetUser failed with \(apiError)")
}
}
Each Request also has a makeRequest
convenience function that uses TVDB.shared
.
The APIResponse
that gets passed to the completion closure contains the following properties:
request
: The original requestresult
: AResult
type either containing anAPIClientError
or the Response of the requesturlRequest
: TheURLRequest
used to send the requesturlResponse
: TheHTTPURLResponse
that was returned by the requestdata
: TheData
returned by the request.timeline
: TheAlamofire.Timeline
of the request which contains timing information.
Only JSON requests and responses are supported. These are encoded and decoded by JSONEncoder
and JSONDecoder
respectively, using Swift's Codable
apis.
There are some options to control how invalid JSON is handled when decoding and these are available as static properties on TVDB
:
safeOptionalDecoding
: Whether to discard any errors when decoding optional properties. Defaults totrue
.safeArrayDecoding
: Whether to remove invalid elements instead of throwing when decoding arrays. Defaults totrue
.
Dates are encoded and decoded differently according to the swagger date format. They use different DateFormatter
's that you can set.
date-time
DateTime.dateEncodingFormatter
: defaults toyyyy-MM-dd'T'HH:mm:ss.Z
DateTime.dateDecodingFormatters
: an array of date formatters. The first one to decode successfully will be used
date
DateDay.dateFormatter
: defaults toyyyy-MM-dd
This is error enum that APIResponse.result
may contain:
public enum APIClientError: Error {
case unexpectedStatusCode(statusCode: Int, data: Data)
case decodingError(DecodingError)
case requestEncodingError(String)
case validationError(String)
case networkError(Error)
case unknownError(Error)
}
Request behaviours are used to modify, authorize, monitor or respond to requests. They can be added to the APIClient.behaviours
for all requests, or they can passed into makeRequest
for just that single request.
RequestBehaviour
is a protocol you can conform to with each function being optional. As the behaviours must work across multiple different request types, they only have access to a typed erased AnyRequest
.
public protocol RequestBehaviour {
/// runs first and allows the requests to be modified. If modifying asynchronously use validate
func modifyRequest(request: AnyRequest, urlRequest: URLRequest) -> URLRequest
/// validates and modifies the request. complete must be called with either .success or .fail
func validate(request: AnyRequest, urlRequest: URLRequest, complete: @escaping (RequestValidationResult) -> Void)
/// called before request is sent
func beforeSend(request: AnyRequest)
/// called when request successfuly returns a 200 range response
func onSuccess(request: AnyRequest, result: Any)
/// called when request fails with an error. This will not be called if the request returns a known response even if the a status code is out of the 200 range
func onFailure(request: AnyRequest, error: APIClientError)
/// called if the request recieves a network response. This is not called if request fails validation or encoding
func onResponse(request: AnyRequest, response: AnyResponse)
}
Each request has an optional securityRequirement
. You can create a RequestBehaviour
that checks this requirement and adds some form of authorization (usually via headers) in validate
or modifyRequest
. An alternative way is to set the APIClient.defaultHeaders
which applies to all requests.
To add support for a specific asynchronous library, just add an extension on APIClient
and add a function that wraps the makeRequest
function and converts from a closure based syntax to returning the object of choice (stream, future...ect)
- TVDBAuth
- TVDBBasicEpisode
- TVDBConflict
- TVDBEpisode
- TVDBEpisodeDataQueryParams
- TVDBEpisodeLanguageInfo
- TVDBEpisodeRecordData
- TVDBFilterKeys
- TVDBJSONErrors
- TVDBLanguage
- TVDBLanguageData
- TVDBLinks
- TVDBNotAuthorized
- TVDBNotFound
- TVDBSeries
- TVDBSeriesActors
- TVDBSeriesActorsData
- TVDBSeriesData
- TVDBSeriesEpisodes
- TVDBSeriesEpisodesQuery
- TVDBSeriesEpisodesQueryParams
- TVDBSeriesEpisodesSummary
- TVDBSeriesImageQueryResult
- TVDBSeriesImageQueryResults
- TVDBSeriesImagesCount
- TVDBSeriesImagesCounts
- TVDBSeriesImagesQueryParam
- TVDBSeriesImagesQueryParams
- TVDBSeriesSearchResult
- TVDBSeriesSearchResults
- TVDBToken
- TVDBUpdate
- TVDBUpdateData
- TVDBUpdateDataQueryParams
- TVDBUser
- TVDBUserData
- TVDBUserFavorites
- TVDBUserFavoritesData
- TVDBUserRatings
- TVDBUserRatingsData
- TVDBUserRatingsDataNoLinks
- TVDBUserRatingsQueryParams
- TVDB.Authentication
- GetRefreshToken: GET
/refresh_token
- PostLogin: POST
/login
- GetRefreshToken: GET
- TVDB.Episodes
- GetEpisodesById: GET
/episodes/{id}
- GetEpisodesById: GET
- TVDB.Languages
- GetLanguages: GET
/languages
- GetLanguagesById: GET
/languages/{id}
- GetLanguages: GET
- TVDB.Search
- GetSearchSeries: GET
/search/series
- GetSearchSeriesParams: GET
/search/series/params
- GetSearchSeries: GET
- TVDB.Series
- GetSeriesById: GET
/series/{id}
- GetSeriesByIdActors: GET
/series/{id}/actors
- GetSeriesByIdEpisodes: GET
/series/{id}/episodes
- GetSeriesByIdEpisodesQuery: GET
/series/{id}/episodes/query
- GetSeriesByIdEpisodesQueryParams: GET
/series/{id}/episodes/query/params
- GetSeriesByIdEpisodesSummary: GET
/series/{id}/episodes/summary
- GetSeriesByIdFilter: GET
/series/{id}/filter
- GetSeriesByIdFilterParams: GET
/series/{id}/filter/params
- GetSeriesByIdImages: GET
/series/{id}/images
- GetSeriesByIdImagesQuery: GET
/series/{id}/images/query
- GetSeriesByIdImagesQueryParams: GET
/series/{id}/images/query/params
- HeadSeriesById: HEAD
/series/{id}
- GetSeriesById: GET
- TVDB.Updates
- GetUpdatedQuery: GET
/updated/query
- GetUpdatedQueryParams: GET
/updated/query/params
- GetUpdatedQuery: GET
- TVDB.Users
- DeleteUserFavoritesById: DELETE
/user/favorites/{id}
- DeleteUserRatingsByItemTypeByItemId: DELETE
/user/ratings/{itemtype}/{itemid}
- GetUser: GET
/user
- GetUserFavorites: GET
/user/favorites
- GetUserRatings: GET
/user/ratings
- GetUserRatingsQuery: GET
/user/ratings/query
- GetUserRatingsQueryParams: GET
/user/ratings/query/params
- PutUserFavoritesById: PUT
/user/favorites/{id}
- PutUserRatingsByItemTypeByItemIdByItemRating: PUT
/user/ratings/{itemtype}/{itemid}/{itemrating}
- DeleteUserFavoritesById: DELETE