org.jetbrains.webdemo.authorization.AuthorizationTwitterHelper.java Source code

Java tutorial

Introduction

Here is the source code for org.jetbrains.webdemo.authorization.AuthorizationTwitterHelper.java

Source

/*
 * Copyright 2000-2015 JetBrains s.r.o.
 *
 * 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 org.jetbrains.webdemo.authorization;

import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.webdemo.ApplicationSettings;
import org.jetbrains.webdemo.ErrorWriter;
import org.jetbrains.webdemo.session.SessionInfo;
import org.jetbrains.webdemo.session.UserInfo;
import org.scribe.builder.ServiceBuilder;
import org.scribe.builder.api.TwitterApi;
import org.scribe.model.*;
import org.scribe.oauth.OAuthService;

import java.util.concurrent.TimeUnit;

public class AuthorizationTwitterHelper extends AuthorizationHelper {
    private static final String PROTECTED_RESOURCE_URL = "https://api.twitter.com/1.1/account/verify_credentials.json";
    private static OAuthService twitterService;
    private static Token requestToken;
    private final String TYPE = "twitter";

    public AuthorizationTwitterHelper(String host) {
        super(host);
    }

    public String getAuthorizationUrl() {
        try {
            twitterService = new ServiceBuilder().provider(TwitterApi.Authenticate.class)
                    .apiKey(ApplicationSettings.TWITTER_OAUTH_CREDENTIALS.KEY)
                    .apiSecret(ApplicationSettings.TWITTER_OAUTH_CREDENTIALS.SECRET).callback(getCallbackUrl())
                    .build();
            requestToken = twitterService.getRequestToken();
            return twitterService.getAuthorizationUrl(requestToken);
        } catch (Throwable e) {
            ErrorWriter.ERROR_WRITER.writeExceptionToExceptionAnalyzer(e,
                    SessionInfo.TypeOfRequest.AUTHORIZATION.name(), "unknown", "twitter");
        }
        return "";
    }

    @Override
    @Nullable
    public UserInfo verify(String oauthVerifier) {
        UserInfo userInfo = null;
        try {
            Verifier verifier = new Verifier(oauthVerifier);
            Token accessToken = twitterService.getAccessToken(requestToken, verifier);
            OAuthRequest request = new OAuthRequest(Verb.GET, PROTECTED_RESOURCE_URL);
            request.setConnectTimeout(TIMEOUT, TimeUnit.MILLISECONDS);
            twitterService.signRequest(accessToken, request); // the access token from step 4
            Response response = request.send();

            userInfo = new UserInfo();
            JsonNode obj = new ObjectMapper().readTree(response.getBody());
            String id = obj.get("id").toString();
            String name = obj.has("name") ? obj.get("name").asText() : "";
            if (name != null && id != null) {
                userInfo.login(name, id, TYPE);
            }
        } catch (Throwable e) {
            ErrorWriter.ERROR_WRITER.writeExceptionToExceptionAnalyzer(e,
                    SessionInfo.TypeOfRequest.AUTHORIZATION.name(), "unknown", "twitter");
        }
        return userInfo;
    }

    @NotNull
    @Override
    protected String getType() {
        return "twitter";
    }
}