blob: 1a1c1baa97b74e0b2742fe041016e50b64f7d348 [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* 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.
*/
package com.android.flatfoot.apireviewdemo.lifecycle_03_viewmodel;
import android.support.annotation.NonNull;
import com.android.flatfoot.apireviewdemo.common.entity.Person;
import com.android.flatfoot.apireviewdemo.common.github.GithubService;
import retrofit2.Call;
import retrofit2.Response;
import retrofit2.Retrofit;
import retrofit2.converter.gson.GsonConverterFactory;
class DataManagement {
private static DataManagement sInstance = new DataManagement();
interface Callback {
void success(@NonNull Person person);
void failure(String errorMsg);
}
public static DataManagement getInstance() {
return sInstance;
}
private final GithubService mGithubService;
public DataManagement() {
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("https://api.github.com")
.addConverterFactory(GsonConverterFactory.create())
.build();
mGithubService = retrofit.create(GithubService.class);
}
void requestPersonData(String user, final Callback callback) {
mGithubService.getUser(user).enqueue(new retrofit2.Callback<Person>() {
@Override
public void onResponse(Call<Person> call, Response<Person> response) {
if (response.isSuccessful()) {
callback.success(response.body());
} else {
callback.failure("Failed with " + response.code());
}
}
@Override
public void onFailure(Call<Person> call, Throwable t) {
callback.failure("Failed with " + t.getMessage());
}
});
}
}