1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

Added functionality to parse android permission data from the appropriate XML file from the Android source.

This commit is contained in:
Hans-Emil Skogh 2011-12-27 20:29:45 +01:00
parent 59fa3f3a19
commit 34ae635f50

View File

@ -0,0 +1,39 @@
<?php
// Path to the AndroidManifest.xml-file from the Android source. Get it from https://raw.github.com/android/platform_frameworks_base/master/core/res/AndroidManifest.xml for example.
$android_manifest_file_path = 'AndroidManifest.xml';
// Returns an associative array with android permissions and data about them
function get_android_permissions_array($android_manifest_file_path) {
$doc = new DOMDocument;
$doc->load($android_manifest_file_path);
$xpath = new DOMXPath($doc);
$description = '';
foreach ($xpath->query('node()') as $node) {
// Save permissions and permission groups from tags
if($node->nodeName == 'permission-group' || $node->nodeName == 'permission') {
$name = $node->attributes->getNamedItem('name')->value;
$name = substr(strrchr($name,'.'), 1);
$permissions[$node->nodeName][$name]['description'] = str_replace(array("\r\n", "\r", "\n", "\t", ' '), '', $description);
if($node->nodeName == 'permission') {
$permissions[$node->nodeName][$name]['permissionGroup'] = substr(strrchr($node->attributes->getNamedItem('permissionGroup')->value,'.'), 1);
$permissions[$node->nodeName][$name]['protectionLevel'] = $node->attributes->getNamedItem('protectionLevel')->value;
}
}
// Cache descriptions from comments preceding the tags
if($node->nodeName == '#comment') {
$description .= $node->textContent;
}
elseif($node->nodeName != '#text') {
$description = '';
}
}
return $permissions;
}
?>