Back to project page simplerepost.
The source code is released under:
GNU General Public License
If you think the Android project simplerepost listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * SimpleRepost -- A simple Instagram reposting Android app. * Copyright (C) 2014-2014 Danilo Bargen */*from w w w . j a v a 2 s . co m*/ * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. **/ package ch.dbrgn.android.simplerepost.services; import com.squareup.otto.Bus; import com.squareup.otto.Subscribe; import ch.dbrgn.android.simplerepost.api.UserApi; import ch.dbrgn.android.simplerepost.events.ApiErrorEvent; import ch.dbrgn.android.simplerepost.events.LoadCurrentUserEvent; import ch.dbrgn.android.simplerepost.events.LoadedCurrentUserEvent; import ch.dbrgn.android.simplerepost.models.Profile; import retrofit.Callback; import retrofit.RetrofitError; import retrofit.client.Response; public class CurrentUserService implements Service { private final UserApi mApi; private final Bus mBus; public CurrentUserService(UserApi api, Bus bus) { mApi = api; mBus = bus; } /** * When desired, fetch the currently logged in user * and post a `LoadedCurrentUserEvent` event. */ @Subscribe public void onLoadCurrentUser(LoadCurrentUserEvent event) { mApi.getCurrentUser(event.getAccessToken(), new Callback<Profile>() { @Override public void success(Profile profile, Response response) { mBus.post(new LoadedCurrentUserEvent(profile.getUser())); } @Override public void failure(RetrofitError error) { mBus.post(new ApiErrorEvent(error)); } }); } }