-
Notifications
You must be signed in to change notification settings - Fork 655
Expand file tree
/
Copy pathGeolocation.java
More file actions
113 lines (99 loc) · 4.74 KB
/
Geolocation.java
File metadata and controls
113 lines (99 loc) · 4.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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.apache.cordova.geolocation;
import android.content.Context;
import android.content.pm.PackageManager;
import android.Manifest;
import android.location.LocationManager;
import android.os.Build;
import org.apache.cordova.CallbackContext;
import org.apache.cordova.CordovaPlugin;
import org.apache.cordova.PermissionHelper;
import org.apache.cordova.PluginResult;
import org.apache.cordova.LOG;
import org.json.JSONArray;
import org.json.JSONException;
public class Geolocation extends CordovaPlugin {
String TAG = "GeolocationPlugin";
CallbackContext context;
String[] highAccuracyPermissions = {Manifest.permission.ACCESS_COARSE_LOCATION, Manifest.permission.ACCESS_FINE_LOCATION};
String[] lowAccuracyPermissions = {Manifest.permission.ACCESS_COARSE_LOCATION};
String[] permissionsToRequest;
String[] permissionsToCheck;
LocationManager manager;
public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException {
LOG.d(TAG, "We are entering execute");
context = callbackContext;
if (action.equals("getPermission")) {
if (!isLocationProviderAvailable()) {
LOG.d(TAG, "Location Provider Unavailable!");
PluginResult result = new PluginResult(PluginResult.Status.ILLEGAL_ACCESS_EXCEPTION);
context.sendPluginResult(result);
return true;
}
boolean highAccuracy = args.getBoolean(0);
permissionsToCheck = highAccuracy ? highAccuracyPermissions : lowAccuracyPermissions;
// Always request both FINE & COARSE permissions on API <= 31 due to bug in WebView that manifests on these versions
// See https://bugs.chromium.org/p/chromium/issues/detail?id=1269362
permissionsToRequest = Build.VERSION.SDK_INT <= 31 ? highAccuracyPermissions : permissionsToCheck;
if (hasPermission(permissionsToCheck)) {
PluginResult r = new PluginResult(PluginResult.Status.OK, Build.VERSION.SDK_INT);
context.sendPluginResult(r);
return true;
} else {
PermissionHelper.requestPermissions(this, 0, permissionsToRequest);
}
return true;
}
return false;
}
public void onRequestPermissionResult(int requestCode, String[] permissions, int[] grantResults) {
PluginResult result;
//This is important if we're using Cordova without using Cordova, but we have the geolocation plugin installed
if (context != null) {
for (int r : grantResults) {
if (r == PackageManager.PERMISSION_GRANTED) {
result = new PluginResult(PluginResult.Status.OK);
context.sendPluginResult(result);
return;
}
}
LOG.d(TAG, "Permission Denied!");
result = new PluginResult(PluginResult.Status.ILLEGAL_ACCESS_EXCEPTION);
context.sendPluginResult(result);
}
}
public boolean hasPermission(String[] permissions) {
for (String p : permissions) {
if (!PermissionHelper.hasPermission(this, p)) {
return false;
}
}
return true;
}
/*
* We override this so that we can access the permissions variable, which no longer exists in
* the parent class, since we can't initialize it reliably in the constructor!
*/
public void requestPermissions(int requestCode) {
PermissionHelper.requestPermissions(this, requestCode, permissionsToRequest);
}
private boolean isLocationProviderAvailable() {
manager = (LocationManager) this.cordova.getActivity().getApplicationContext().getSystemService(Context.LOCATION_SERVICE);
return manager.isProviderEnabled(LocationManager.GPS_PROVIDER) || manager.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
}
}