TestsTested | ✓ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
To include this library just add the following to your projects Podfile.
pod 'ObjcGitlabApi', '~> 1.0'
All of the calls to the API are executed from the singleton GLGitlabApi
which uses blocks for the callbacks on each request. Each call returns the operation that it begins so that it maybe canceled if necessary.
Logging in will return the information for the user requesting the login.
[[GLGitlabApi sharedInstance] loginToHost:@"http://gitlab.example.com"
username:@"exampleuser"
password:@"password"
success:^(GLUser *user) {
// Perform additional work here
}
failure:^(NSError *error) {
// Handle login failure
}];
To get all projects for a user you would use the following method:
[[GLGitlabApi sharedInstance] getUsersProjectsSuccess:^(NSArray *projects) {
// Process projects
}
failure:^(NSError *error) {
// Handle error
}];
Fetch details about a project:
[[GLGitlabApi sharedInstance] getProjectWithId:1
success:^(GLProject *project) {
// Perform additional work here
}
failure:^(NSError *error) {
// Handle error here
}];
The remaining calls in the api follow a similar pattern.
The library contains a collection of model objects to manage the data passed back and forth between the api and the library. It includes the following objects: