Search in sources :

Example 1 with OAuthService

use of com.meisolsson.githubsdk.service.OAuthService in project gh4a by slapperwan.

the class Github4AndroidActivity method handleIntent.

private boolean handleIntent(Intent intent) {
    Uri data = intent.getData();
    if (data != null && data.getScheme().equals(CALLBACK_URI.getScheme()) && data.getHost().equals(CALLBACK_URI.getHost())) {
        OAuthService service = ServiceGenerator.createAuthService();
        RequestToken request = RequestToken.builder().clientId(BuildConfig.CLIENT_ID).clientSecret(BuildConfig.CLIENT_SECRET).code(data.getQueryParameter(PARAM_CODE)).build();
        service.getToken(request).map(ApiHelpers::throwOnFailure).flatMap(token -> {
            UserService userService = ServiceFactory.get(UserService.class, true, null, token.accessToken(), null);
            Single<User> userSingle = userService.getUser().map(ApiHelpers::throwOnFailure);
            return Single.zip(Single.just(token), userSingle, (t, user) -> Pair.create(t.accessToken(), user));
        }).compose(RxUtils::doInBackground).subscribe(pair -> onLoginFinished(pair.first, pair.second), this::handleLoadFailure);
        return true;
    }
    return false;
}
Also used : OAuthService(com.meisolsson.githubsdk.service.OAuthService) User(com.meisolsson.githubsdk.model.User) UserService(com.meisolsson.githubsdk.service.users.UserService) RequestToken(com.meisolsson.githubsdk.model.request.RequestToken) ApiHelpers(com.gh4a.utils.ApiHelpers) Uri(android.net.Uri)

Aggregations

Uri (android.net.Uri)1 ApiHelpers (com.gh4a.utils.ApiHelpers)1 User (com.meisolsson.githubsdk.model.User)1 RequestToken (com.meisolsson.githubsdk.model.request.RequestToken)1 OAuthService (com.meisolsson.githubsdk.service.OAuthService)1 UserService (com.meisolsson.githubsdk.service.users.UserService)1