All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.bluelink8888.translate.Token Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.github.bluelink8888.translate;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.HttpClientBuilder;

/**
 * This class design for google translate, will get param before calculate tk param 
 * @author YuWeiHung
 *
 */
public abstract class Token {

  private String googleUrl = "https://translate.google.com/";

  private List tkArray;

  public Token() {
    tkArray = this.getGoogleArray();
  }

  /**
   * This method get param from google translate website page, will return calculate tk needs param
   * Cause google hide param in javascript code
   * @return
   */
  private List getGoogleArray() {

    HttpClient client = HttpClientBuilder.create().build();
    HttpGet req = new HttpGet(googleUrl);

    String tkk = null;

    HttpResponse resp = null;
    try {
      resp = client.execute(req);
    } catch (Exception e) {
      e.printStackTrace();
    }
    if (resp.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
      HttpEntity entity = resp.getEntity();
      BufferedReader bf = null;
      try {
        bf = new BufferedReader(new InputStreamReader(
            entity.getContent()));
      } catch (Exception e) {
        e.printStackTrace();
      }
      StringBuffer sb = new StringBuffer();
      String line = "";
      try {
        while ((line = bf.readLine()) != null) {
          sb.append(line);
        }
      } catch (Exception e) {
        e.printStackTrace();
      }

      String target = sb.toString();
      tkk = target.substring(target.indexOf("TKK="),
          target.indexOf("WEB_TRANSLATION_PATH") - 1);
    } else {
      System.out.println("failure");
    }

    String[] tkks = tkk.split(";");

    List result = new ArrayList();

    // Split String from google website
    for (int i = (tkks.length - 1); i >= 0; i--) {
      long temp = 0;
      if (i == 2) {
        temp = Long.parseLong(tkks[i].substring(tkks[i].indexOf(" ") + 1,
            tkks[i].indexOf("+")));
        result.add(temp);
      } else {
        temp = Long.parseLong(tkks[i].substring(tkks[i].indexOf("x3d") + 3));
        result.add(temp);
      }
    }

    return result;
  }

  protected List getTkArray() {
    return tkArray;
  }

  public abstract String getToken(String input);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy