31
31
public class MainActivity extends AppCompatActivity {
32
32
33
33
private static final String GOOGLE_REVERSE_IMAGE_SEARCH_URL = "https://www.google.com/searchbyimage/upload" ;
34
+ private static final String GOOGLE_REVERSE_IMAGE_SEARCH_URL_BY_URL = "https://www.google.com/searchbyimage?&image_url=" ;
34
35
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" ;
35
36
private static final String API_SCH_KEY = "sch" ;
36
37
private static final String API_SCH_VALUE = "sch" ;
@@ -49,38 +50,67 @@ protected void onCreate(Bundle savedInstanceState) {
49
50
progressStatus = findViewById (R .id .progressStatus );
50
51
51
52
Intent intent = getIntent ();
53
+ if (intent == null ) {
54
+ Toast .makeText (MainActivity .this , "No intent sent to application, closing." , Toast .LENGTH_SHORT ).show ();
55
+ this .finish ();
56
+ return ;
57
+ }
52
58
String action = intent .getAction ();
53
59
if (action == null ) {
54
60
Toast .makeText (MainActivity .this , "No action sent to application, closing." , Toast .LENGTH_SHORT ).show ();
55
61
this .finish ();
56
62
return ;
57
63
}
58
- if (isPermissionGranted ()) {
59
- if (action .equals (Intent .ACTION_SEND )) {
60
- progressStatus .setText (getString (R .string .progress_status_recieved_intent ));
61
- try {
62
- handleImageSearch (intent .getParcelableExtra (Intent .EXTRA_STREAM ));
63
- } catch (FileNotFoundException e ) {
64
- String err = "Failed to handle Share image intent:" +e .getMessage ();
65
- Log .e ("INTENT_HANDLE" ,err );
66
- Toast .makeText (getApplicationContext (), err , Toast .LENGTH_SHORT ).show ();
64
+ if (action .equals (Intent .ACTION_SEND )) {
65
+ if (intent .hasExtra (Intent .EXTRA_TEXT )) {
66
+ String intentExtraText = intent .getParcelableExtra (Intent .EXTRA_TEXT ).toString ();
67
+ progressStatus .setText (getString (R .string .progress_status_parsing_link ));
68
+ if (intentExtraText .endsWith (".jpg" ) ||
69
+ intentExtraText .endsWith (".png" ) ||
70
+ intentExtraText .endsWith (".gif" ) ||
71
+ intentExtraText .endsWith (".webp" )) {
72
+ progressStatus .setText (getString (R .string .progress_status_opening_from_url ));
73
+ Toast .makeText (MainActivity .this , getString (R .string .progress_status_opening_from_url ), Toast .LENGTH_SHORT ).show ();
74
+ Intent searchIntent = new Intent ();
75
+ searchIntent .setAction (Intent .ACTION_VIEW );
76
+ searchIntent .setData (Uri .parse (GOOGLE_REVERSE_IMAGE_SEARCH_URL_BY_URL .concat (intentExtraText )));
77
+ startActivity (searchIntent );
78
+ MainActivity .this .finish ();
79
+ } else {
80
+ progressStatus .setText (getString (R .string .progress_status_unsupported_format ));
81
+ Toast .makeText (MainActivity .this , getString (R .string .progress_status_unsupported_format ), Toast .LENGTH_SHORT ).show ();
82
+ this .finish ();
83
+ }
84
+ } else if (intent .hasExtra (Intent .EXTRA_STREAM )) {
85
+ if (isPermissionGranted ()) {
86
+ progressStatus .setText (getString (R .string .progress_status_recieved_intent ));
87
+ try {
88
+ handleImageSearch (intent .getParcelableExtra (Intent .EXTRA_STREAM ));
89
+ } catch (FileNotFoundException e ) {
90
+ String err = "Failed to handle Share image intent:" + e .getMessage ();
91
+ Log .e ("INTENT_HANDLE" , err );
92
+ Toast .makeText (getApplicationContext (), err , Toast .LENGTH_SHORT ).show ();
93
+ }
94
+ } else {
95
+ AlertDialog .Builder builder = new AlertDialog .Builder (this );
96
+ builder .setTitle ("Read storage permission required." );
97
+ builder .setMessage ("This application requires READ_EXTERNAL_STORAGE permission in order to function properly." );
98
+ builder .setPositiveButton ("Grant permission" , (dialog , which ) -> {
99
+ ActivityCompat .requestPermissions (MainActivity .this , new String []{Manifest .permission .READ_EXTERNAL_STORAGE }, REQUEST_PERMISSION_EXTERNAL_STORAGE_STATE );
100
+ if (action .equals (Intent .ACTION_SEND )) {
101
+ requestPermissionsFallbackUri = intent .getParcelableExtra (Intent .EXTRA_STREAM );
102
+ }
103
+ });
104
+ builder .setNegativeButton ("Deny permission" , ((dialog , which ) -> {
105
+ Toast .makeText (MainActivity .this , "Permission not granted, closing." , Toast .LENGTH_SHORT ).show ();
106
+ this .finish ();
107
+ }));
108
+ builder .create ().show ();
67
109
}
68
110
}
69
111
} else {
70
- android .support .v7 .app .AlertDialog .Builder builder = new AlertDialog .Builder (this );
71
- builder .setTitle ("Read storage permission required." );
72
- builder .setMessage ("This application requires READ_EXTERNAL_STORAGE permission in order to function properly." );
73
- builder .setPositiveButton ("Grant permission" , (dialog , which ) -> {
74
- ActivityCompat .requestPermissions (MainActivity .this , new String []{Manifest .permission .READ_EXTERNAL_STORAGE }, REQUEST_PERMISSION_EXTERNAL_STORAGE_STATE );
75
- if (action .equals (Intent .ACTION_SEND )) {
76
- requestPermissionsFallbackUri = intent .getParcelableExtra (Intent .EXTRA_STREAM );
77
- }
78
- });
79
- builder .setNegativeButton ("Deny permission" , ((dialog , which ) -> {
80
- Toast .makeText (MainActivity .this , "Permission not granted, closing." , Toast .LENGTH_SHORT ).show ();
81
- this .finish ();
82
- }));
83
- builder .create ().show ();
112
+ Toast .makeText (MainActivity .this , "Unhandled action sent to application, closing." , Toast .LENGTH_SHORT ).show ();
113
+ this .finish ();
84
114
}
85
115
}
86
116
@@ -156,7 +186,6 @@ public void onFailure(int statusCode, Header[] headers, byte[] responseBody, Thr
156
186
}
157
187
}
158
188
});
159
- // TODO: Display spinner until requestHandle.isFinished() is true
160
189
}
161
190
162
191
private boolean isPermissionGranted () {
0 commit comments