Repository: cordova-plugin-file
Updated Branches:
  refs/heads/master 6aeb9d9d1 -> e666ba32e


Replace PermissionHelper.java with cordova-plugin-compat


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/commit/e666ba32
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/tree/e666ba32
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/diff/e666ba32

Branch: refs/heads/master
Commit: e666ba32e377f4db9058e716c6be3bf96c39ca2b
Parents: 6aeb9d9
Author: Simon MacDonald <simon.macdon...@gmail.com>
Authored: Tue Apr 5 12:14:03 2016 -0400
Committer: Simon MacDonald <simon.macdon...@gmail.com>
Committed: Tue Apr 5 12:20:32 2016 -0400

----------------------------------------------------------------------
 plugin.xml                        |   2 +-
 src/android/FileUtils.java        |   1 +
 src/android/PermissionHelper.java | 138 ---------------------------------
 3 files changed, 2 insertions(+), 139 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/blob/e666ba32/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index 46dbbdb..8dce8bc 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -28,6 +28,7 @@ xmlns:android="http://schemas.android.com/apk/res/android";
     <keywords>cordova,file</keywords>
     
<repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-file.git</repo>
     <issue>https://issues.apache.org/jira/browse/CB/component/12320651</issue>
+    <dependency id="cordova-plugin-compat" version="^1.0.0" />
 
     <js-module src="www/DirectoryEntry.js" name="DirectoryEntry">
         <clobbers target="window.DirectoryEntry" />
@@ -147,7 +148,6 @@ to config.xml in order for the application to find 
previously stored files.
         <source-file src="src/android/ContentFilesystem.java" 
target-dir="src/org/apache/cordova/file" />
         <source-file src="src/android/AssetFilesystem.java" 
target-dir="src/org/apache/cordova/file" />
         <source-file src="src/android/PendingRequests.java" 
target-dir="src/org/apache/cordova/file" />
-        <source-file src="src/android/PermissionHelper.java" 
target-dir="src/org/apache/cordova/file" />
 
         <!-- android specific file apis -->
         <js-module src="www/android/FileSystem.js" name="androidFileSystem">

http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/blob/e666ba32/src/android/FileUtils.java
----------------------------------------------------------------------
diff --git a/src/android/FileUtils.java b/src/android/FileUtils.java
index cf193d0..c5a99bd 100644
--- a/src/android/FileUtils.java
+++ b/src/android/FileUtils.java
@@ -32,6 +32,7 @@ import org.apache.cordova.CallbackContext;
 import org.apache.cordova.CordovaInterface;
 import org.apache.cordova.CordovaPlugin;
 import org.apache.cordova.CordovaWebView;
+import org.apache.cordova.PermissionHelper;
 import org.apache.cordova.PluginResult;
 
 import org.json.JSONArray;

http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/blob/e666ba32/src/android/PermissionHelper.java
----------------------------------------------------------------------
diff --git a/src/android/PermissionHelper.java 
b/src/android/PermissionHelper.java
deleted file mode 100644
index 778e5ce..0000000
--- a/src/android/PermissionHelper.java
+++ /dev/null
@@ -1,138 +0,0 @@
-/*
-       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.file;
-
-import java.lang.reflect.InvocationTargetException;
-import java.lang.reflect.Method;
-import java.util.Arrays;
-
-import org.apache.cordova.CordovaInterface;
-import org.apache.cordova.CordovaPlugin;
-import org.apache.cordova.LOG;
-
-import android.content.pm.PackageManager;
-
-/**
- * This class provides reflective methods for permission requesting and 
checking so that plugins
- * written for cordova-android 5.0.0+ can still compile with earlier 
cordova-android versions.
- */
-public class PermissionHelper {
-    private static final String LOG_TAG = "CordovaPermissionHelper";
-
-    /**
-     * Requests a "dangerous" permission for the application at runtime. This 
is a helper method
-     * alternative to cordovaInterface.requestPermission() that does not 
require the project to be
-     * built with cordova-android 5.0.0+
-     *
-     * @param plugin        The plugin the permission is being requested for
-     * @param requestCode   A requestCode to be passed to the plugin's 
onRequestPermissionResult()
-     *                      along with the result of the permission request
-     * @param permission    The permission to be requested
-     */
-    public static void requestPermission(CordovaPlugin plugin, int 
requestCode, String permission) {
-        PermissionHelper.requestPermissions(plugin, requestCode, new String[] 
{permission});
-    }
-
-    /**
-     * Requests "dangerous" permissions for the application at runtime. This 
is a helper method
-     * alternative to cordovaInterface.requestPermissions() that does not 
require the project to be
-     * built with cordova-android 5.0.0+
-     *
-     * @param plugin        The plugin the permissions are being requested for
-     * @param requestCode   A requestCode to be passed to the plugin's 
onRequestPermissionResult()
-     *                      along with the result of the permissions request
-     * @param permissions   The permissions to be requested
-     */
-    public static void requestPermissions(CordovaPlugin plugin, int 
requestCode, String[] permissions) {
-        try {
-            Method requestPermission = 
CordovaInterface.class.getDeclaredMethod(
-                    "requestPermissions", CordovaPlugin.class, int.class, 
String[].class);
-
-            // If there is no exception, then this is cordova-android 5.0.0+
-            requestPermission.invoke(plugin.cordova, plugin, requestCode, 
permissions);
-        } catch (NoSuchMethodException noSuchMethodException) {
-            // cordova-android version is less than 5.0.0, so permission is 
implicitly granted
-            LOG.d(LOG_TAG, "No need to request permissions " + 
Arrays.toString(permissions));
-
-            // Notify the plugin that all were granted by using more reflection
-            deliverPermissionResult(plugin, requestCode, permissions);
-        } catch (IllegalAccessException illegalAccessException) {
-            // Should never be caught; this is a public method
-            LOG.e(LOG_TAG, "IllegalAccessException when requesting permissions 
" + Arrays.toString(permissions), illegalAccessException);
-        } catch(InvocationTargetException invocationTargetException) {
-            // This method does not throw any exceptions, so this should never 
be caught
-            LOG.e(LOG_TAG, "invocationTargetException when requesting 
permissions " + Arrays.toString(permissions), invocationTargetException);
-        }
-    }
-
-    /**
-     * Checks at runtime to see if the application has been granted a 
permission. This is a helper
-     * method alternative to cordovaInterface.hasPermission() that does not 
require the project to
-     * be built with cordova-android 5.0.0+
-     *
-     * @param plugin        The plugin the permission is being checked against
-     * @param permission    The permission to be checked
-     *
-     * @return              True if the permission has already been granted 
and false otherwise
-     */
-    public static boolean hasPermission(CordovaPlugin plugin, String 
permission) {
-        try {
-            Method hasPermission = 
CordovaInterface.class.getDeclaredMethod("hasPermission", String.class);
-
-            // If there is no exception, then this is cordova-android 5.0.0+
-            return (Boolean) hasPermission.invoke(plugin.cordova, permission);
-        } catch (NoSuchMethodException noSuchMethodException) {
-            // cordova-android version is less than 5.0.0, so permission is 
implicitly granted
-            LOG.d(LOG_TAG, "No need to check for permission " + permission);
-            return true;
-        } catch (IllegalAccessException illegalAccessException) {
-            // Should never be caught; this is a public method
-            LOG.e(LOG_TAG, "IllegalAccessException when checking permission " 
+ permission, illegalAccessException);
-        } catch(InvocationTargetException invocationTargetException) {
-            // This method does not throw any exceptions, so this should never 
be caught
-            LOG.e(LOG_TAG, "invocationTargetException when checking permission 
" + permission, invocationTargetException);
-        }
-        return false;
-    }
-
-    private static void deliverPermissionResult(CordovaPlugin plugin, int 
requestCode, String[] permissions) {
-        // Generate the request results
-        int[] requestResults = new int[permissions.length];
-        Arrays.fill(requestResults, PackageManager.PERMISSION_GRANTED);
-
-        try {
-            Method onRequestPermissionResult = 
CordovaPlugin.class.getDeclaredMethod(
-                    "onRequestPermissionResult", int.class, String[].class, 
int[].class);
-
-            onRequestPermissionResult.invoke(plugin, requestCode, permissions, 
requestResults);
-        } catch (NoSuchMethodException noSuchMethodException) {
-            // Should never be caught since the plugin must be written for 
cordova-android 5.0.0+ if it
-            // made it to this point
-            LOG.e(LOG_TAG, "NoSuchMethodException when delivering permissions 
results", noSuchMethodException);
-        } catch (IllegalAccessException illegalAccessException) {
-            // Should never be caught; this is a public method
-            LOG.e(LOG_TAG, "IllegalAccessException when delivering permissions 
results", illegalAccessException);
-        } catch(InvocationTargetException invocationTargetException) {
-            // This method may throw a JSONException. We are just duplicating 
cordova-android's
-            // exception handling behavior here; all it does is log the 
exception in CordovaActivity,
-            // print the stacktrace, and ignore it
-            LOG.e(LOG_TAG, "InvocationTargetException when delivering 
permissions results", invocationTargetException);
-        }
-    }
-}


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org

Reply via email to