A Swift wrapper for the IGDB.com Free Video Game Database API.
IMPORTANT
This wrapper is compatible with ONLY their newest release V4.
One of the principles behind IGDB.com is accessibility of data. We wish to share the data with anyone who wants to build cool video game oriented websites, apps and services. This means that the information you contribute to IGDB.com can be used by other projects as well.
Thus, you are not only contributing to the value of this site but to thousands of other projects as well. We are looking forward to see what exciting game related projects you come up with. Happy coding!
More info here:
Information about the Querying language APICalypse:
This wrapper is written and tested in Swift 4.
The Wrapper can handle both the IGDB generated classes and JSON (Strings), I have chosen to make the Generated classes the standard way because it will make it easier to use as you don't have to create your own classes to hold the information.
You can either import this library using Xcode by simply pasting this repository link:
XCode -> Swift Packages -> Add Package Dependecy
Or if you have a Package.swift
file you can add this:
dependencies: [
.package(url: "https://github.com/husnjak/IGDB-SWIFT-API.git", from: "0.4.4"),
],
targets: [
.target(name: "MyTarget", dependencies: ["IGDB-SWIFT-API"]),
]
CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ gem install cocoapods
To integrate IGDBWrapper into your Xcode project using CocoaPods, specify it in your Podfile
:
$ pod 'IGDB-SWIFT-API', git: "https://github.com/husnjak/IGDB-API-SWIFT.git"
Then, run the following command:
$ pod install
- Create a new IGDBWrapper Object by passing and then pass it your API key.
let wrapper: IGDBWrapper = IGDBWrapper(clientID: "CLIENT_ID", accessToken: "ACCESS_TOKEN")
It is not recommended to create new Access Tokens on the Users devices as you don't want to create multiple access_tokens
for each device.
It is recommended to create your token on a server and then use a proxy api to call the IGDB api, where you append the Bearer token for each request.
IGDB provides a free AWS CloudFormation template that you can deploy for this purpose with instructions on how to use it.
- Create a new IGDBWrapper Object connected to the AWS Proxy server.
let wrapper: IGDBWrapper = IGDBWrapper(proxyURL: "PROXY_URL/v4", proxyHeaders: ["x-api-key": "PROXY_API_KEY"])
The wrapper has two "wrapping" functions and a lot of helper functions (one for each endpoint..)
The two main functions are called apiRequest
and apiJsonRequest
and they handle all of the requests to the api.
The class APICalypse
handles the new querying language, so that you don't need to care about structure and syntax as much.
-
apiProtoRequest
This method handles IGDB generated proto classes which returns Data to be used to fill the appropriate class.wrapper.apiProtoRequest(endpoint: .GAMES, apicalypseQuery: "fields *;", dataResponse: { bytes in let games: [Proto_Game] = try! Proto_GameResult(serializedData: bytes) // This converts Binary to a struct }, errorResponse: { error in // Do Something })
returns a list of Game objects.
-
apiJsonRequest
This method return raw JSON (String) from the API.wrapper.apiJsonRequest(endpoint: .GAMES, apicalypseQuery: "fields *;", dataResponse: { json in print(json) }, errorResponse: { error in // Do Something })
returns a String.
-
APICalypse
let apicalypse = APICalypse() .fields(fields: "*") .exclude(fields: "*") .limit(value: 10) .offset(value: 0) .search(searchQuery: "Halo") .sort(field: "release_dates.date", order: .ASCENDING) .where(query: "platforms = 48")
Here are all of the options, this creates a query for you. To get a String query from APICalypse just add
.buildQuery()
.
NOTE
These examples above are only here to show you how to use the "manual" part of the wrapper. This wrapper comes with complete functions for each endpoint in the API :) so you don't have to deal with the manual stuff..
There are two functions for each endpoint, one for classes and one for json, for quick access. The difference between them is the name see the examples below:
wrapper.games(apiCalypse: APICalypse(), result: ([Proto_Game]) -> (Void), errorResponse: (RequestException) -> (Void))
wrapper.platforms(apiCalypse: APICalypse(), result: ([Proto_Platforms]) -> (Void), errorResponse: (RequestException) -> (Void))
wrapper.genres(apiCalypse: APICalypse(), result: ([Proto_Genres]) -> (Void), errorResponse: (RequestException) -> (Void))
...
wrapper.jsonGames(apiCalypse: APICalypse(), result: (String) -> (Void), errorResponse: (RequestException) -> (Void))
wrapper.jsonPlatforms(apiCalypse: APICalypse(), result: (String) -> (Void), errorResponse: (RequestException) -> (Void))
wrapper.jsonGenres(apiCalypse: APICalypse(), result: (String) -> (Void), errorResponse: (RequestException) -> (Void))
...
To simplify the process of building the image URLs for IGDB images there is a new function called imageBuilder
which is a helping tool in requesting the perfect sized images for your project. The function requires you to get the image_id
then set your desired size (resolution), set your desired image format (default is set to PNG).
let image_id = "mnljdjtrh44x4snmierh"
let imageURL = imageBuilder(imageID: image_id, size: .SCREENSHOT_HUGE, imageType: .PNG)
/*
* Result:
* imageURL = https://images.igdb.com/igdb/image/upload/t_screenshot_huge/mnljdjtrh44x4snmierh.png
*/
More information about images can be found here
The wrapper returns an RequestException
on every exception from the API. This exception hold three things:
- HTTP status code
- URL
- MSG, the message from the api
- Request games from the API:
let wrapper = IGDBWrapper(clientID: "CLIENT_ID", accessToken: "ACCESS_TOKEN")
let apicalypse = APICalypse()
.fields(fields: "*")
.sort(field: "release_dates.date", order: .DESCENDING)
wrapper.games(apiCalypse: apicalypse, result: { games in
// Do something..
}) { error in
// Do something..
}
- Search in the API:
NOTE
Search objects contain the objects from search ex: Characters, Collections, Games, Platforms, and Themes.
Search does not work with Sorting!
let wrapper = IGDBWrapper(clientID: "CLIENT_ID", accessToken: "ACCESS_TOKEN")
let apicalypse = APICalypse()
.search(searchQuery: "Halo")
.fields(fields: "*")
.sort(field: "release_dates.date", order: .ASCENDING)
wrapper.search(apiCalypse: apicalypse, result: { searchResults in
// Do something..
}) { error in
// Do something..
}
- Request filtered results:
let wrapper = IGDBWrapper(clientID: "CLIENT_ID", accessToken: "ACCESS_TOKEN")
let apicalypse = APICalypse()
.fields(fields: "*")
.sort(field: "release_dates.date", order: .DESCENDING)
.where(query: "themes != 42")
wrapper.games(apiCalypse: apicalypse, result: { games in
// Do something..
}) { error in
// Do something..
}
IGDB-SWIFT-API is available under the MIT license. See the LICENSE file for more info.