|
1 | 1 | package eu.dasancti.reversee;
|
2 | 2 |
|
3 | 3 | import android.Manifest;
|
4 |
| -import android.content.ContentProviderClient; |
5 | 4 | import android.content.Intent;
|
6 | 5 | import android.content.pm.PackageManager;
|
7 | 6 | import android.net.Uri;
|
8 | 7 | import android.os.Bundle;
|
9 | 8 | import android.support.v4.content.ContextCompat;
|
10 | 9 | import android.support.v7.app.AppCompatActivity;
|
11 | 10 | import android.util.Log;
|
12 |
| -import android.util.Xml; |
| 11 | +import android.widget.TextView; |
13 | 12 | import android.widget.Toast;
|
14 |
| -import com.android.volley.Request; |
15 |
| -import com.android.volley.RequestQueue; |
16 |
| -import com.android.volley.Response; |
17 |
| -import com.android.volley.VolleyError; |
18 |
| -import com.android.volley.toolbox.StringRequest; |
19 |
| -import com.android.volley.toolbox.Volley; |
20 |
| -import org.apache.commons.io.IOUtils; |
| 13 | +import com.loopj.android.http.AsyncHttpClient; |
| 14 | +import com.loopj.android.http.AsyncHttpResponseHandler; |
| 15 | +import com.loopj.android.http.RequestHandle; |
| 16 | +import com.loopj.android.http.RequestParams; |
| 17 | +import cz.msebera.android.httpclient.Header; |
21 | 18 | import org.jsoup.Jsoup;
|
22 | 19 | import org.jsoup.nodes.Document;
|
23 | 20 | import org.jsoup.nodes.Element;
|
24 | 21 | import org.jsoup.select.Elements;
|
25 | 22 |
|
26 |
| -import java.io.*; |
27 |
| -import java.util.HashMap; |
28 |
| -import java.util.Map; |
| 23 | +import java.io.FileNotFoundException; |
| 24 | +import java.util.Arrays; |
29 | 25 | import java.util.Objects;
|
30 | 26 | import java.util.concurrent.atomic.AtomicReference;
|
31 | 27 |
|
32 | 28 | public class MainActivity extends AppCompatActivity {
|
33 | 29 |
|
34 | 30 | private static final String GOOGLE_REVERSE_IMAGE_SEARCH_URL = "https://www.google.com/searchbyimage/upload";
|
35 | 31 | private static final String FAKE_USER_AGENT = "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.97 Safari/537.11";
|
| 32 | + private static final String API_SCH_KEY = "sch"; |
| 33 | + private static final String API_SCH_VALUE = "sch"; |
| 34 | + private static final String API_ENCODED_IMAGE_KEY = "encoded_image"; |
| 35 | + private static final String API_USER_AGENT_KEY = "User-Agent"; |
| 36 | + |
| 37 | + private TextView progressStatus; |
36 | 38 |
|
37 | 39 | @Override
|
38 | 40 | protected void onCreate(Bundle savedInstanceState) {
|
39 | 41 | super.onCreate(savedInstanceState);
|
40 | 42 | setContentView(R.layout.activity_main);
|
41 | 43 |
|
| 44 | + progressStatus = findViewById(R.id.progressStatus); |
| 45 | + |
42 | 46 | Intent intent = getIntent();
|
43 | 47 | String action = intent.getAction();
|
44 | 48 | if (isPermissionGranted()) {
|
45 | 49 | if (action.equals(Intent.ACTION_SEND)) {
|
46 |
| - handleImageSearch(intent); |
| 50 | + progressStatus.setText(getString(R.string.progress_status_recieved_intent)); |
| 51 | + try { |
| 52 | + handleImageSearch(intent); |
| 53 | + } catch (FileNotFoundException e) { |
| 54 | + String err = "Failed to handle Share image intent:"+e.getMessage(); |
| 55 | + Log.e("INTENT_HANDLE",err); |
| 56 | + Toast.makeText(getApplicationContext(), err, Toast.LENGTH_SHORT).show(); |
| 57 | + } |
47 | 58 | }
|
48 | 59 | } else {
|
49 | 60 | Toast.makeText(this, "The app wasn't allowed permissions to manage files.", Toast.LENGTH_LONG).show();
|
50 | 61 | }
|
51 | 62 | }
|
52 | 63 |
|
53 |
| - private void handleImageSearch(Intent intent) { |
| 64 | + private void handleImageSearch(Intent intent) throws FileNotFoundException { |
54 | 65 | Uri imageUri = intent.getParcelableExtra(Intent.EXTRA_STREAM);
|
55 |
| - Toast.makeText(this, "Received image URI:"+imageUri.getPath(), Toast.LENGTH_SHORT).show(); |
56 |
| - AtomicReference<String> imageData = new AtomicReference<>(); |
57 |
| - try { |
58 |
| - imageData.set(IOUtils.toString(Objects.requireNonNull(getContentResolver().openInputStream(imageUri)))); |
59 |
| - } catch (FileNotFoundException e) { |
60 |
| - String err = "Couldn't open the shared image as an input stream."; |
61 |
| - Toast.makeText(this, err, Toast.LENGTH_LONG).show(); |
62 |
| - Log.e("GET_IMAGE_FILE", err); |
63 |
| - this.finish(); |
64 |
| - return; |
65 |
| - } catch (IOException e) { |
66 |
| - String err = "Couldn't read input stream of image."; |
67 |
| - Toast.makeText(this, err, Toast.LENGTH_LONG).show(); |
68 |
| - Log.e("GET_IMAGE_FILE", err); |
69 |
| - this.finish(); |
70 |
| - return; |
71 |
| - } |
72 |
| - Intent searchIntent = new Intent(); |
73 |
| - searchIntent.setAction(Intent.ACTION_VIEW); |
74 |
| - //TODO: Implement browser intent with POST method |
75 |
| - RequestQueue requestQueue = Volley.newRequestQueue(this); |
76 |
| - final AtomicReference<String> browserRedirect = new AtomicReference<>(); |
77 |
| - StringRequest getGoogleRedirectUrl = new StringRequest( |
78 |
| - Request.Method.POST, |
79 |
| - GOOGLE_REVERSE_IMAGE_SEARCH_URL, |
80 |
| - response -> { |
81 |
| - Document doc = Jsoup.parse(response); |
82 |
| - Element content = doc.getElementById("content"); |
83 |
| - Elements redirects = content.getElementsByTag("meta"); |
| 66 | + progressStatus.setText(getString(R.string.progress_status_handling_image)); |
| 67 | + AtomicReference<String> reverseSearchRedirectURL = new AtomicReference<>(); |
| 68 | + AsyncHttpClient asyncHttpClient = new AsyncHttpClient(); |
| 69 | + asyncHttpClient.addHeader(API_USER_AGENT_KEY, FAKE_USER_AGENT); |
| 70 | + RequestParams requestParams = new RequestParams(); |
| 71 | + requestParams.put(API_SCH_KEY, API_SCH_VALUE); |
| 72 | + requestParams.put(API_ENCODED_IMAGE_KEY, Objects.requireNonNull(getContentResolver().openInputStream(imageUri))); |
| 73 | + RequestHandle requestHandle = asyncHttpClient.post(getApplicationContext(),GOOGLE_REVERSE_IMAGE_SEARCH_URL, requestParams, new AsyncHttpResponseHandler() { |
| 74 | + @Override |
| 75 | + public void onSuccess(int statusCode, Header[] headers, byte[] responseBody) { |
| 76 | + Log.e("UNEXPECTED", "Based on the stupendous behavior of this async library, we should never be able to get here. 3xx HTML codes are considered a failure."); |
| 77 | + MainActivity.this.finish(); |
| 78 | + } |
| 79 | + |
| 80 | + @Override |
| 81 | + public void onFailure(int statusCode, Header[] headers, byte[] responseBody, Throwable error) { |
| 82 | + if (statusCode == 302) { |
| 83 | + progressStatus.setText(getString(R.string.progress_status_response_success)); |
| 84 | + Log.i("RESPONSE_SUCCESS", "Recieved 302 redirect, processing HTML response."); |
| 85 | + String responseString = new String(responseBody); |
| 86 | + Document doc = Jsoup.parse(responseString); |
| 87 | + Elements redirects = doc.getElementsByTag("a"); |
84 | 88 | for (Element redirect : redirects) {
|
85 |
| - String redirectUrl = redirect.attr("url"); |
| 89 | + String redirectUrl = redirect.attr("href"); |
86 | 90 | if (redirectUrl.contains("/search?tbs=sbi:")) {
|
87 |
| - browserRedirect.set(redirectUrl); |
| 91 | + reverseSearchRedirectURL.set(redirectUrl); |
| 92 | + progressStatus.setText(getString(R.string.progress_status_redirect_found)); |
88 | 93 | break;
|
89 | 94 | }
|
90 | 95 | }
|
91 |
| - if (browserRedirect.get().isEmpty()) { |
92 |
| - Toast.makeText(this, "Failed to get redirect URL", Toast.LENGTH_LONG).show(); |
| 96 | + if (reverseSearchRedirectURL.get().isEmpty()) { |
| 97 | + Toast.makeText(MainActivity.this, "Failed to get redirect URL", Toast.LENGTH_LONG).show(); |
93 | 98 | } else {
|
94 |
| - //TODO: Launch browser intent with the redirect |
95 |
| - Toast.makeText(this, "Found redirect URL for reverse search.", Toast.LENGTH_SHORT).show(); |
96 |
| - Log.i("REVERSE_SEARCH_URL", browserRedirect.get()); |
| 99 | + Toast.makeText(MainActivity.this, "Found redirect URL for reverse search, opening browser.", Toast.LENGTH_SHORT).show(); |
| 100 | + Log.i("REVERSE_SEARCH_URL", reverseSearchRedirectURL.get()); |
| 101 | + Intent searchIntent = new Intent(); |
| 102 | + searchIntent.setAction(Intent.ACTION_VIEW); |
| 103 | + searchIntent.setData(Uri.parse(reverseSearchRedirectURL.get())); |
| 104 | + startActivity(searchIntent); |
| 105 | + MainActivity.this.finish(); |
97 | 106 | }
|
98 |
| - }, |
99 |
| - error -> Toast.makeText(this, "POST call to reverse search failed: "+error.getMessage(), Toast.LENGTH_LONG).show() |
100 |
| - ) { |
101 |
| - protected Map<String, String> getParams() { |
102 |
| - Map<String, String> params = new HashMap<>(); |
103 |
| - params.put("sch", "sch"); |
104 |
| - params.put("encoded_image", imageData.get()); |
105 |
| - return params; |
106 |
| - } |
107 |
| - public Map<String, String> getHeaders() { |
108 |
| - Map<String, String> headers = new HashMap<>(); |
109 |
| - headers.put("User-Agent", FAKE_USER_AGENT); |
110 |
| - return headers; |
| 107 | + } else { |
| 108 | + String err = "POST call to reverse search failed [" + statusCode + "] error message: " + error.getMessage() + "\n body:" + Arrays.toString(responseBody); |
| 109 | + Log.e("POST_CALL_FAILED", err); |
| 110 | + Toast.makeText(MainActivity.this, err, Toast.LENGTH_LONG).show(); |
| 111 | + } |
111 | 112 | }
|
112 |
| - }; |
113 |
| - requestQueue.add(getGoogleRedirectUrl); |
114 |
| - Toast.makeText(this, "Handling google reverse image search.", Toast.LENGTH_LONG).show(); |
115 |
| - this.finish(); |
| 113 | + }); |
| 114 | + // TODO: Display spinner until requestHandle.isFinished() is true |
116 | 115 | }
|
117 | 116 |
|
118 | 117 | private boolean isPermissionGranted() {
|
|
0 commit comments