A easy to use api client that combines the power of Retrofit, Realm, Gson, Rxjava and Retrolambda in a library for Java and Android
compile 'io.fabianterhorst:apiclient:0.4'
compile 'io.fabianterhorst:apiclient-accountmanager:0.1'
compile 'io.fabianterhorst:apiclient-components:0.1'
Create your Api Class
public class Twitter extends ApiClient<TwitterApi> implements TwitterApi {
public Twitter(Realm realm, String apiKey) {
super(realm, TwitterApi.PARAM_API_KEY, apiKey, TwitterApi.class, TwitterApi.END_POINT);
}
public static void init(String apiKey) {
init(new Twitter(apiKey));
}
@Override
public Observable<List<Character>> getTweets() {
//Here you can define the tablename for realm and the fieldname if needed to sort the tweets with
return getApiObservable(getApi().getTweets(), Tweet.class, "name");
}
@Override
public Observable<List<Character>> getComments(ArrayList<Integer> ids) {
//You can also get results only for specific ids
return getApiObservable(getApi().getComments(), Comment.class, "id", ids);
}
}
Create your Api Interface (The Retrofit way)
public interface TwitterApi {
@GET("tweets")
Observable<List<Tweet>> getTweets();
@GET("comments")
Observable<List<Tweet>> getComments(@Query("id") ArrayList<Integer> ids);
}
Initiate the Singleton in the Application onCreate
public class MyApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
RealmConfiguration config = new RealmConfiguration.Builder(this)
.deleteRealmIfMigrationNeeded()
.build();
Realm.setDefaultConfiguration(config);
Twitter.init("0123456789");
}
}
Use it and have fun. The library is handling the saving, the loading and the refreshing for you.
Twitter twitter = Twitter.getInstance();
twitter.getTweets().subscribe(tweets-> System.out.println(tweets));
You can use the ApiClient component module to get access to RxActivity and RxFragment
In your Activity you have to get the Singleton with the Activity lifecycle. Your activity has to extend RxActivity.
Twitter twitter = Twitter.getInstance(bindToLifecycle());
And thats everythink you have to do to prevent memory leaks.
You can override the gson builder inside your api class and add custom deserializer adapters to avoid adding null objects.
@Override
public GsonBuilder getGsonBuilder(GsonBuilder gsonBuilder) {
GsonUtils.registerRemoveNullListSerializer(gsonBuilder, new TypeToken<RealmList<MyFirstObject>>() {}, MyFirstObject.class);
GsonUtils.registerRemoveNullListSerializer(gsonBuilder, new TypeToken<RealmList<MySecondObject>>() {}, MySecondObject.class);
GsonUtils.registerRemoveNullListSerializer(gsonBuilder, new TypeToken<RealmList<MyThirdObject>>() {}, MyThirdObject.class);
return gsonBuilder;
}
You can use the setApiKey
method.
Twitter.getInstance().setApiKey("9876543210");
You can override the getHttpUrlBuilder(HttpUrl.Builder builder)
method from the api client.
@Override
public HttpUrl.Builder getHttpUrlBuilder(HttpUrl.Builder builder) {
return addQueryParameter("lang", Locale.getDefault().getLanguage());
}
The easiest way is to use the AuthUtils to add a authentication via the request builder for post parameters and headers or the http url builder for query parameter
myurl.com/api
@Override
public Request.Builder getRequestBuilder(Request.Builder builder) {
return AuthUtils.addDefaultAuthentication(builder, getApiKey());
}
myurl.com/api?apiKey=012345
@Override
public HttpUrl.Builder getHttpUrlBuilder(HttpUrl.Builder builder) {
AuthUtils.addDefaultAuthentication(builder, "apiKey", getApiKey());
return builder.addQueryParameter("lang", Locale.getDefault().getLanguage());
}
Copyright 2016 Fabian Terhorst
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.