com.cpyf.twelve.spies.qr.code.result.supplement.URIResultInfoRetriever.java Source code

Java tutorial

Introduction

Here is the source code for com.cpyf.twelve.spies.qr.code.result.supplement.URIResultInfoRetriever.java

Source

/*
 * Copyright (C) 2010 ZXing authors
 *
 * 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.cpyf.twelve.spies.qr.code.result.supplement;

import java.io.*;

import org.apache.http.*;
import org.apache.http.client.methods.*;

import android.content.*;
import android.os.*;
import android.widget.*;

import com.cpyf.twelve.spies.qr.code.*;
import com.google.zxing.client.result.*;

final class URIResultInfoRetriever extends SupplementalInfoRetriever {

    private static final String[] REDIRECTOR_HOSTS = { "http://bit.ly/", "http://tinyurl.com/", "http://tr.im/",
            "http://goo.gl/", "http://ow.ly/", };

    private final URIParsedResult result;
    private final String redirectString;

    URIResultInfoRetriever(TextView textView, URIParsedResult result, Handler handler, Context context) {
        super(textView, handler, context);
        redirectString = context.getString(R.string.msg_redirect);
        this.result = result;
    }

    @Override
    void retrieveSupplementalInfo() throws IOException, InterruptedException {
        String oldURI = result.getURI();
        String newURI = unredirect(oldURI);
        int count = 0;
        while (count < 3 && !oldURI.equals(newURI)) {
            append(redirectString + ": " + newURI);
            count++;
            oldURI = newURI;
            newURI = unredirect(newURI);
        }
        setLink(newURI);
    }

    private static String unredirect(String uri) throws IOException {
        if (!isRedirector(uri)) {
            return uri;
        }
        HttpUriRequest head = new HttpHead(uri);
        AndroidHttpClient client = AndroidHttpClient.newInstance(null);
        HttpResponse response = client.execute(head);
        int status = response.getStatusLine().getStatusCode();
        if (status == 301 || status == 302) {
            Header redirect = response.getFirstHeader("Location");
            if (redirect != null) {
                String location = redirect.getValue();
                if (location != null) {
                    return location;
                }
            }
        }
        return uri;
    }

    private static boolean isRedirector(String uri) {
        for (String redirectorHost : REDIRECTOR_HOSTS) {
            if (uri.startsWith(redirectorHost)) {
                return true;
            }
        }
        return false;
    }

}