-
Notifications
You must be signed in to change notification settings - Fork 24.7k
Add JS library for requesting Android M Permissions #9292
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,161 @@ | ||
/** | ||
* Copyright (c) 2015-present, Facebook, Inc. | ||
* All rights reserved. | ||
* | ||
* This source code is licensed under the BSD-style license found in the | ||
* LICENSE file in the root directory of this source tree. An additional grant | ||
* of patent rights can be found in the PATENTS file in the same directory. | ||
* | ||
* @providesModule PermissionsAndroid | ||
* @flow | ||
*/ | ||
'use strict'; | ||
|
||
const DialogManagerAndroid = require('NativeModules').DialogManagerAndroid; | ||
const AndroidPermissions = require('NativeModules').AndroidPermissions; | ||
|
||
type Rationale = { | ||
title: string; | ||
message: string; | ||
} | ||
|
||
/** | ||
* `PermissionsAndroid` provides access to Android M's new permissions model. | ||
* Some permissions are granted by default when the application is installed | ||
* so long as they appear in `AndroidManifest.xml`. However, "dangerous" | ||
* permissions require a dialog prompt. You should use this module for those | ||
* permissions. | ||
* | ||
* On devices before SDK version 23, the permissions are automatically granted | ||
* if they appear in the manifest, so `checkPermission` and `requestPermission` | ||
* should always be true. | ||
* | ||
* If a user has previously turned off a permission that you prompt for, the OS | ||
* will advise your app to show a rationale for needing the permission. The | ||
* optional `rationale` argument will show a dialog prompt only if | ||
* necessary - otherwise the normal permission prompt will appear. | ||
* | ||
* ### Example | ||
* ``` | ||
* async function requestCameraPermission() { | ||
* try { | ||
* const granted = await AndroidPermissions.requestPermission( | ||
* AndroidPermissions.PERMISSIONS.CAMERA, | ||
* { | ||
* 'title': 'Cool Photo App Camera Permission', | ||
* 'message': 'Cool Photo App needs access to your camera ' + | ||
* 'so you can take awesome pictures.' | ||
* } | ||
* ) | ||
* if (granted) { | ||
* console.log("You can use the camera") | ||
* } else { | ||
* console.log("Camera permission denied") | ||
* } | ||
* } catch (err) { | ||
* console.warn(err) | ||
* } | ||
* } | ||
* ``` | ||
*/ | ||
|
||
class PermissionsAndroid { | ||
PERMISSIONS: Object; | ||
|
||
constructor() { | ||
/** | ||
* A list of specified "dangerous" permissions that require prompting the user | ||
*/ | ||
this.PERMISSIONS = { | ||
READ_CALENDAR: 'android.permission.READ_CALENDAR', | ||
WRITE_CALENDAR: 'android.permission.WRITE_CALENDAR', | ||
CAMERA: 'android.permission.CAMERA', | ||
READ_CONTACTS: 'android.permission.READ_CONTACTS', | ||
WRITE_CONTACTS: 'android.permission.WRITE_CONTACTS', | ||
GET_ACCOUNTS: 'android.permission.GET_ACCOUNTS', | ||
ACCESS_FINE_LOCATION: 'android.permission.ACCESS_FINE_LOCATION', | ||
ACCESS_COARSE_LOCATION: 'android.permission.ACCESS_COARSE_LOCATION', | ||
RECORD_AUDIO: 'android.permission.RECORD_AUDIO', | ||
READ_PHONE_STATE: 'android.permission.READ_PHONE_STATE', | ||
CALL_PHONE: 'android.permission.CALL_PHONE', | ||
READ_CALL_LOG: 'android.permission.READ_CALL_LOG', | ||
WRITE_CALL_LOG: 'android.permission.WRITE_CALL_LOG', | ||
ADD_VOICEMAIL: 'com.android.voicemail.permission.ADD_VOICEMAIL', | ||
USE_SIP: 'android.permission.USE_SIP', | ||
PROCESS_OUTGOING_CALLS: 'android.permission.PROCESS_OUTGOING_CALLS', | ||
BODY_SENSORS: 'android.permission.BODY_SENSORS', | ||
SEND_SMS: 'android.permission.SEND_SMS', | ||
RECEIVE_SMS: 'android.permission.RECEIVE_SMS', | ||
READ_SMS: 'android.permission.READ_SMS', | ||
RECEIVE_WAP_PUSH: 'android.permission.RECEIVE_WAP_PUSH', | ||
RECEIVE_MMS: 'android.permission.RECEIVE_MMS', | ||
READ_EXTERNAL_STORAGE: 'android.permission.READ_EXTERNAL_STORAGE', | ||
WRITE_EXTERNAL_STORAGE: 'android.permission.WRITE_EXTERNAL_STORAGE', | ||
}; | ||
} | ||
|
||
/** | ||
* Returns a promise resolving to a boolean value as to whether the specified | ||
* permissions has been granted | ||
*/ | ||
checkPermission(permission: string) : Promise<boolean> { | ||
return new Promise((resolve, reject) => { | ||
AndroidPermissions.checkPermission( | ||
permission, | ||
function(perm: string, result: boolean) { resolve(result); }, | ||
function(error: string) { reject(error); }, | ||
); | ||
}); | ||
} | ||
|
||
/** | ||
* Prompts the user to enable a permission and returns a promise resolving to a | ||
* boolean value indicating whether the user allowed or denied the request | ||
* | ||
* If the optional rationale argument is included (which is an object with a | ||
* `title` and `message`), this function checks with the OS whether it is | ||
* necessary to show a dialog explaining why the permission is needed | ||
* (https://developer.android.com/training/permissions/requesting.html#explain) | ||
* and then shows the system permission dialog | ||
*/ | ||
requestPermission(permission: string, rationale?: Rationale) : Promise<boolean> { | ||
return new Promise((resolve, reject) => { | ||
const requestPermission = () => { | ||
AndroidPermissions.requestPermission( | ||
permission, | ||
function(perm: string, result: boolean) { resolve(result); }, | ||
function(error: string) { reject(error); }, | ||
); | ||
}; | ||
|
||
if (rationale) { | ||
AndroidPermissions.shouldShowRequestPermissionRationale( | ||
permission, | ||
function(perm: string, shouldShowRationale: boolean) { | ||
if (shouldShowRationale) { | ||
DialogManagerAndroid.showAlert( | ||
rationale, | ||
() => { | ||
DialogManagerAndroid.showAlert({ | ||
message: 'Error Requesting Permissions' | ||
}, {}, {}); | ||
reject(); | ||
}, | ||
requestPermission | ||
); | ||
} else { | ||
requestPermission(); | ||
} | ||
}, | ||
function(error: string) { reject(error); }, | ||
); | ||
} else { | ||
requestPermission(); | ||
} | ||
}); | ||
} | ||
} | ||
|
||
PermissionsAndroid = new PermissionsAndroid(); | ||
|
||
module.exports = PermissionsAndroid; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
semi: Missing semicolon.