2011-12-29 19:45:18 +01:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
Plugin Name: WP FDroid
|
|
|
|
Plugin URI: http://f-droid.org/repository
|
|
|
|
Description: An FDroid repository browser
|
|
|
|
Author: Ciaran Gultnieks
|
|
|
|
Version: 0.01
|
|
|
|
Author URI: http://ciarang.com
|
|
|
|
|
|
|
|
Revision history
|
|
|
|
0.01 - 2010-12-04: Initial development version
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2012-01-12 21:27:32 +01:00
|
|
|
include('android-permissions.php');
|
|
|
|
|
2011-12-29 19:45:18 +01:00
|
|
|
class FDroid
|
|
|
|
{
|
|
|
|
|
|
|
|
// Our text domain, for internationalisation
|
|
|
|
private $textdom='wp-fdroid';
|
|
|
|
|
|
|
|
private $site_path;
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
function FDroid() {
|
|
|
|
// Add filters etc here!
|
|
|
|
add_shortcode('fdroidrepo',array($this, 'do_shortcode'));
|
|
|
|
add_filter('query_vars',array($this, 'queryvars'));
|
|
|
|
$this->inited=false;
|
2012-01-26 22:35:40 +01:00
|
|
|
$this->site_path=getenv('DOCUMENT_ROOT');
|
2012-01-30 21:55:33 +01:00
|
|
|
wp_register_sidebar_widget('fdroid_latest', 'FDroid Latest', 'widget_fdroidlatest');
|
2011-12-29 19:45:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Register additional query variables. (Handler for the 'query_vars' filter)
|
|
|
|
function queryvars($qvars) {
|
|
|
|
$qvars[]='fdfilter';
|
2012-02-12 16:44:50 +01:00
|
|
|
$qvars[]='fdcategory';
|
2011-12-29 19:45:18 +01:00
|
|
|
$qvars[]='fdid';
|
|
|
|
$qvars[]='fdpage';
|
|
|
|
$qvars[]='fdstyle';
|
|
|
|
return $qvars;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Lazy initialise. All non-trivial members should call this before doing anything else.
|
|
|
|
function lazyinit() {
|
|
|
|
if(!$this->inited) {
|
|
|
|
load_plugin_textdomain($this->textdom, PLUGINDIR.'/'.dirname(plugin_basename(__FILE__)), dirname(plugin_basename(__FILE__)));
|
|
|
|
|
|
|
|
$this->inited=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Gets a required query parameter by name.
|
|
|
|
function getrequiredparam($name) {
|
|
|
|
global $wp_query;
|
|
|
|
if(!isset($wp_query->query_vars[$name]))
|
|
|
|
wp_die("Missing parameter ".$name,"Error");
|
|
|
|
return $wp_query->query_vars[$name];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handler for the 'fdroidrepo' shortcode.
|
|
|
|
// $attribs - shortcode attributes
|
|
|
|
// $content - optional content enclosed between the starting and
|
|
|
|
// ending shortcode
|
|
|
|
// Returns the generated content.
|
|
|
|
function do_shortcode($attribs,$content=null) {
|
|
|
|
global $wp_query,$wp_rewrite;
|
|
|
|
$this->lazyinit();
|
|
|
|
|
|
|
|
// Init local query vars
|
|
|
|
foreach($this->queryvars(array()) as $qv) {
|
|
|
|
if(array_key_exists($qv,$wp_query->query_vars)) {
|
|
|
|
$query_vars[$qv] = $wp_query->query_vars[$qv];
|
|
|
|
} else {
|
|
|
|
$query_vars[$qv] = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Santiy check query vars
|
|
|
|
if(!isset($query_vars['fdpage']) || !is_numeric($query_vars['fdpage']) || $query_vars['fdpage'] <= 0) {
|
|
|
|
$query_vars['fdpage'] = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
$out = '';
|
|
|
|
|
|
|
|
if(isset($attribs['search']) && $query_vars['fdfilter']===null) {
|
|
|
|
$query_vars['fdfilter'] = '';
|
|
|
|
}
|
|
|
|
|
2012-02-12 16:44:50 +01:00
|
|
|
if($query_vars['fdcategory'] == 'All applications') {
|
|
|
|
unset($query_vars['fdcategory']);
|
|
|
|
}
|
|
|
|
|
2011-12-29 19:45:18 +01:00
|
|
|
if($query_vars['fdid']!==null) {
|
|
|
|
$out.=$this->get_app($query_vars);
|
|
|
|
} else {
|
2012-02-12 16:44:50 +01:00
|
|
|
if($query_vars['fdfilter'] !== null) {
|
|
|
|
$out.='<form name="searchform" action="" method="get">';
|
|
|
|
$out.='<p><input name="fdfilter" type="text" value="'.$query_vars['fdfilter'].'" size="30"> ';
|
|
|
|
$out.='<input type="submit" value="Search"></p>';
|
|
|
|
$out.=$this->makeformdata($query_vars);
|
|
|
|
$out.='</form>'."\n";
|
|
|
|
}
|
2011-12-29 19:45:18 +01:00
|
|
|
|
|
|
|
$out.=$this->get_apps($query_vars);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function get_app($query_vars) {
|
2012-01-17 21:48:48 +01:00
|
|
|
global $permissions_data;
|
2012-01-19 17:53:39 +01:00
|
|
|
$permissions_object = new AndroidPermissions($this->site_path.'/wp-content/plugins/wp-fdroid/AndroidManifest.xml',
|
|
|
|
$this->site_path.'/wp-content/plugins/wp-fdroid/strings.xml',
|
|
|
|
sys_get_temp_dir().'/android-permissions.cache');
|
2012-01-12 21:46:49 +01:00
|
|
|
$permissions_data = $permissions_object->get_permissions_array();
|
2011-12-29 19:45:18 +01:00
|
|
|
|
2012-01-17 19:41:22 +01:00
|
|
|
// Get app data
|
2012-01-12 21:27:32 +01:00
|
|
|
$xml = simplexml_load_file($this->site_path.'/repo/index.xml');
|
2011-12-29 19:45:18 +01:00
|
|
|
foreach($xml->children() as $app) {
|
|
|
|
|
|
|
|
$attrs=$app->attributes();
|
|
|
|
if($attrs['id']==$query_vars['fdid']) {
|
|
|
|
$apks=array();;
|
|
|
|
foreach($app->children() as $el) {
|
|
|
|
switch($el->getName()) {
|
|
|
|
case "name":
|
|
|
|
$name=$el;
|
|
|
|
break;
|
|
|
|
case "icon":
|
|
|
|
$icon=$el;
|
|
|
|
break;
|
|
|
|
case "summary":
|
|
|
|
$summary=$el;
|
|
|
|
break;
|
|
|
|
case "description":
|
|
|
|
$desc=$el;
|
|
|
|
break;
|
|
|
|
case "license":
|
|
|
|
$license=$el;
|
|
|
|
break;
|
|
|
|
case "source":
|
|
|
|
$source=$el;
|
|
|
|
break;
|
|
|
|
case "tracker":
|
|
|
|
$issues=$el;
|
|
|
|
break;
|
|
|
|
case "donate":
|
|
|
|
$donate=$el;
|
|
|
|
break;
|
|
|
|
case "web":
|
|
|
|
$web=$el;
|
|
|
|
break;
|
2012-01-23 21:07:33 +01:00
|
|
|
case "antifeatures";
|
|
|
|
$antifeatures=$el;
|
2012-01-23 21:19:33 +01:00
|
|
|
break;
|
2012-01-23 21:21:40 +01:00
|
|
|
case "requirements";
|
|
|
|
$requirements=$el;
|
|
|
|
break;
|
2011-12-29 19:45:18 +01:00
|
|
|
case "package":
|
|
|
|
$thisapk=array();
|
|
|
|
foreach($el->children() as $pel) {
|
|
|
|
switch($pel->getName()) {
|
|
|
|
case "version":
|
|
|
|
$thisapk['version']=$pel;
|
|
|
|
break;
|
|
|
|
case "vercode":
|
|
|
|
$thisapk['vercode']=$pel;
|
|
|
|
break;
|
|
|
|
case "apkname":
|
|
|
|
$thisapk['apkname']=$pel;
|
|
|
|
break;
|
|
|
|
case "srcname":
|
|
|
|
$thisapk['srcname']=$pel;
|
|
|
|
break;
|
|
|
|
case "hash":
|
|
|
|
$thisapk['hash']=$pel;
|
|
|
|
break;
|
|
|
|
case "size":
|
|
|
|
$thisapk['size']=$pel;
|
|
|
|
break;
|
|
|
|
case "sdkver":
|
|
|
|
$thisapk['sdkver']=$pel;
|
|
|
|
break;
|
|
|
|
case "permissions":
|
|
|
|
$thisapk['permissions']=$pel;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$apks[]=$thisapk;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2012-01-21 13:22:37 +01:00
|
|
|
|
2012-01-17 19:41:22 +01:00
|
|
|
// Generate app diff data
|
|
|
|
foreach(array_reverse($apks, true) as $key=>$apk) {
|
|
|
|
if(isset($previous)) {
|
2012-01-21 13:22:37 +01:00
|
|
|
// Apk size
|
|
|
|
$apks[$key]['diff']['size'] = $apk['size']-$previous['size'];
|
2012-01-17 19:41:22 +01:00
|
|
|
}
|
2012-01-21 13:22:37 +01:00
|
|
|
|
|
|
|
// Permissions
|
|
|
|
$permissions = explode(',',$apk['permissions']);
|
|
|
|
$permissionsPrevious = isset($previous['permissions'])?explode(',',$previous['permissions']):array();
|
|
|
|
$apks[$key]['diff']['permissions']['added'] = array_diff($permissions, $permissionsPrevious);
|
|
|
|
$apks[$key]['diff']['permissions']['removed'] = array_diff($permissionsPrevious, $permissions);
|
|
|
|
|
2012-01-17 19:41:22 +01:00
|
|
|
$previous = $apk;
|
|
|
|
}
|
2011-12-29 19:45:18 +01:00
|
|
|
|
2012-01-17 19:41:22 +01:00
|
|
|
// Output app information
|
2011-12-29 19:45:18 +01:00
|
|
|
$out='<div id="appheader">';
|
|
|
|
$out.='<div style="float:left;padding-right:10px;"><img src="http://f-droid.org/repo/icons/'.$icon.'" width=48></div>';
|
|
|
|
$out.='<p><span style="font-size:20px">'.$name."</span>";
|
|
|
|
$out.="<br>".$summary."</p>";
|
|
|
|
$out.="</div>";
|
|
|
|
|
|
|
|
$out.="<p>".$desc."</p>";
|
|
|
|
|
2012-01-23 21:07:33 +01:00
|
|
|
if(isset($antifeatures)) {
|
|
|
|
$antifeaturesArray = explode(',',$antifeatures);
|
|
|
|
foreach($antifeaturesArray as $antifeature) {
|
|
|
|
$antifeatureDesctiption = $this->get_antifeature_description($antifeature);
|
|
|
|
$out.='<p style="border:3px solid #CC0000;background-color:#FFDDDD;padding:5px;"><strong>'.$antifeatureDesctiption['name'].'</strong><br />';
|
|
|
|
$out.=$antifeatureDesctiption['description'].'</p>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-23 21:21:40 +01:00
|
|
|
$out.="<p>";
|
|
|
|
$out.="<b>License:</b> ".$license;
|
|
|
|
if(isset($requirements)) {
|
|
|
|
$out.='<br /><b>Additional requirements:</b> '.$requirements;
|
|
|
|
}
|
|
|
|
$out.="</p>";
|
2011-12-29 19:45:18 +01:00
|
|
|
|
|
|
|
$out.="<p>";
|
|
|
|
if(strlen($web)>0)
|
|
|
|
$out.='<b>Website:</b> <a href="'.$web.'">'.$web.'</a><br />';
|
|
|
|
if(strlen($issues)>0)
|
|
|
|
$out.='<b>Issue Tracker:</b> <a href="'.$issues.'">'.$issues.'</a><br />';
|
|
|
|
if(strlen($source)>0)
|
|
|
|
$out.='<b>Source Code:</b> <a href="'.$source.'">'.$source.'</a><br />';
|
|
|
|
if($donate && strlen($donate)>0)
|
|
|
|
$out.='<b>Donate:</b> <a href="'.$donate.'">'.$donate.'</a><br />';
|
|
|
|
$out.="</p>";
|
|
|
|
|
2012-01-12 21:27:32 +01:00
|
|
|
$out.='<script type="text/javascript">';
|
|
|
|
$out.='function showHidePermissions(id) {';
|
|
|
|
$out.=' if(document.getElementById(id).style.display==\'none\')';
|
|
|
|
$out.=' document.getElementById(id).style.display=\'block\';';
|
|
|
|
$out.=' else';
|
|
|
|
$out.=' document.getElementById(id).style.display=\'none\';';
|
|
|
|
$out.=' return false;';
|
|
|
|
$out.='}';
|
|
|
|
$out.='</script>';
|
|
|
|
|
2011-12-29 19:45:18 +01:00
|
|
|
$out.="<h3>Packages</h3>";
|
2012-01-12 21:27:32 +01:00
|
|
|
$i=0;
|
2011-12-29 19:45:18 +01:00
|
|
|
foreach($apks as $apk) {
|
2012-01-21 13:22:37 +01:00
|
|
|
$first = $i+1==count($apks);
|
2012-01-12 21:27:32 +01:00
|
|
|
$out.="<p><b>Version ".$apk['version']."</b><br />";
|
2012-02-21 01:02:30 +01:00
|
|
|
$out.='<a href="https://f-droid.org/repo/'.$apk['apkname'].'">download apk</a> ';
|
2012-01-14 15:11:59 +01:00
|
|
|
$out.=$this->human_readable_size($apk['size']);
|
2012-01-17 19:41:22 +01:00
|
|
|
$diffSize = $apk['diff']['size'];
|
|
|
|
if(abs($diffSize) > 500) {
|
|
|
|
$out.=' <span style="color:#AAAAAA;">(';
|
|
|
|
$out.=$diffSize>0?'+':'';
|
|
|
|
$out.=$this->human_readable_size($diffSize, 1).')</span>';
|
|
|
|
}
|
2012-01-21 11:24:18 +01:00
|
|
|
if(isset($apk['srcname']) && file_exists($this->site_path.'/repo/'.$apk['srcname'])) {
|
2012-02-21 01:02:30 +01:00
|
|
|
$out.='<br /><a href="https://f-droid.org/repo/'.$apk['srcname'].'">source tarball</a> ';
|
2012-01-14 15:11:59 +01:00
|
|
|
$out.=$this->human_readable_size(filesize($this->site_path.'/repo/'.$apk['srcname']));
|
|
|
|
}
|
2012-01-12 21:27:32 +01:00
|
|
|
|
2012-01-14 12:39:33 +01:00
|
|
|
if(isset($apk['permissions'])) {
|
2012-01-21 13:22:37 +01:00
|
|
|
// Permissions diff link
|
|
|
|
if($first == false) {
|
|
|
|
$permissionsAddedCount = count($apk['diff']['permissions']['added']);
|
|
|
|
$permissionsRemovedCount = count($apk['diff']['permissions']['removed']);
|
|
|
|
$divIdDiff='permissionsDiff'.$i;
|
|
|
|
if($permissionsAddedCount || $permissionsRemovedCount) {
|
|
|
|
$out.='<br /><a href="javascript:void(0);" onClick="showHidePermissions(\''.$divIdDiff.'\');">permissions diff</a>';
|
|
|
|
$out.=' <span style="color:#AAAAAA;">(';
|
|
|
|
if($permissionsAddedCount)
|
|
|
|
$out.='+'.$permissionsAddedCount;
|
|
|
|
if($permissionsAddedCount && $permissionsRemovedCount)
|
|
|
|
$out.='/';
|
|
|
|
if($permissionsRemovedCount)
|
|
|
|
$out.='-'.$permissionsRemovedCount;
|
|
|
|
$out.=')</span>';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$out.='<br /><span style="color:#999999;">no permission changes</span>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Permissions list link
|
|
|
|
$permissionsListString = $this->get_permission_list_string(explode(',',$apk['permissions']), $permissions_data, $summary);
|
2012-01-14 12:39:33 +01:00
|
|
|
/*if($i==0)
|
|
|
|
$divStyleDisplay='block';
|
|
|
|
else*/
|
|
|
|
$divStyleDisplay='none';
|
|
|
|
$divId='permissions'.$i;
|
2012-01-21 13:22:37 +01:00
|
|
|
$out.='<br /><a href="javascript:void(0);" onClick="showHidePermissions(\''.$divId.'\');">view permissions</a>';
|
|
|
|
$out.=' <span style="color:#AAAAAA;">['.$summary.']</span>';
|
|
|
|
$out.='<br/>';
|
|
|
|
|
|
|
|
// Permissions list
|
2012-01-14 12:39:33 +01:00
|
|
|
$out.='<div style="display:'.$divStyleDisplay.';" id="'.$divId.'">';
|
2012-01-21 13:22:37 +01:00
|
|
|
$out.=$permissionsListString;
|
|
|
|
$out.='</div>';
|
|
|
|
|
|
|
|
// Permissions diff
|
|
|
|
{
|
|
|
|
$out.='<div style="display:'.$divStyleDisplay.';" id="'.$divIdDiff.'">';
|
|
|
|
$permissionsRemoved = $apk['diff']['permissions']['removed'];
|
|
|
|
usort($permissionsRemoved, "permissions_cmp");
|
|
|
|
|
|
|
|
// Added permissions
|
|
|
|
if($permissionsAddedCount) {
|
|
|
|
$out.='<h5>ADDED</h5><br />';
|
|
|
|
$out.=$this->get_permission_list_string($apk['diff']['permissions']['added'], $permissions_data, $summary);
|
2012-01-12 21:27:32 +01:00
|
|
|
}
|
|
|
|
|
2012-01-21 13:22:37 +01:00
|
|
|
// Removed permissions
|
|
|
|
if($permissionsRemovedCount) {
|
|
|
|
$out.='<h5>REMOVED</h5><br />';
|
|
|
|
$out.=$this->get_permission_list_string($apk['diff']['permissions']['removed'], $permissions_data, $summary);
|
|
|
|
}
|
|
|
|
|
|
|
|
$out.='</div>';
|
2012-01-12 21:27:32 +01:00
|
|
|
}
|
2012-01-14 12:39:33 +01:00
|
|
|
}
|
|
|
|
else {
|
2012-01-21 13:22:37 +01:00
|
|
|
$out.='<br /><span style="color:#999999;">no extra permissions needed</span><br />';
|
2012-01-12 21:27:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$out.='</p>';
|
|
|
|
$i++;
|
2011-12-29 19:45:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$out.='<hr><p><a href="'.makelink($query_vars,array('fdid'=>null)).'">Index</a></p>';
|
|
|
|
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "<p>Application not found</p>";
|
|
|
|
}
|
|
|
|
|
2012-01-21 13:22:37 +01:00
|
|
|
private function get_permission_list_string($permissions, $permissions_data, &$summary) {
|
|
|
|
$out='';
|
|
|
|
usort($permissions, "permissions_cmp");
|
|
|
|
$permission_group_last = '';
|
|
|
|
foreach($permissions as $permission) {
|
|
|
|
$permission_group = $permissions_data['permission'][$permission]['permissionGroup'];
|
|
|
|
if($permission_group != $permission_group_last) {
|
|
|
|
$permission_group_label = $permissions_data['permission-group'][$permission_group]['label'];
|
|
|
|
if($permission_group_label=='') $permission_group_label = 'Extra/Custom';
|
|
|
|
$out.='<strong>'.strtoupper($permission_group_label).'</strong><br/>';
|
|
|
|
$permission_group_last = $permission_group;
|
|
|
|
}
|
|
|
|
|
|
|
|
$out.=$this->get_permission_protection_level_icon($permissions_data['permission'][$permission]['protectionLevel']).' ';
|
|
|
|
$out.='<strong>'.$permissions_data['permission'][$permission]['label'].'</strong> [<code>'.$permission.'</code>]<br/>';
|
|
|
|
if($permissions_data['permission'][$permission]['description']) $out.=$permissions_data['permission'][$permission]['description'].'<br/>';
|
|
|
|
//$out.=$permissions_data['permission'][$permission]['comment'].'<br/>';
|
|
|
|
$out.='<br/>';
|
|
|
|
|
|
|
|
if(!isset($summaryCount[$permissions_data['permission'][$permission]['protectionLevel']]))
|
|
|
|
$summaryCount[$permissions_data['permission'][$permission]['protectionLevel']] = 0;
|
|
|
|
$summaryCount[$permissions_data['permission'][$permission]['protectionLevel']]++;
|
|
|
|
}
|
|
|
|
|
|
|
|
$summary = '';
|
|
|
|
foreach($summaryCount as $protectionLevel => $count) {
|
|
|
|
$summary .= $this->get_permission_protection_level_icon($protectionLevel, 'regular').' '.$count;
|
|
|
|
$summary .= ', ';
|
|
|
|
}
|
|
|
|
$summary = substr($summary,0,-2);
|
|
|
|
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function get_permission_protection_level_icon($protection_level, $size='adjusted') {
|
|
|
|
$iconString = '';
|
2012-01-14 12:39:33 +01:00
|
|
|
if($protection_level=='dangerous') {
|
2012-01-21 13:22:37 +01:00
|
|
|
$iconString .= '<span style="color:#DD9900;';
|
|
|
|
if($size=='adjusted')
|
|
|
|
$iconString .= 'font-size:150%;';
|
2012-01-28 20:39:38 +01:00
|
|
|
$iconString .= '">⚠</span>'; // WARNING SIGN
|
2012-01-12 21:27:32 +01:00
|
|
|
}
|
2012-01-14 12:39:33 +01:00
|
|
|
elseif($protection_level=='normal') {
|
2012-01-21 13:22:37 +01:00
|
|
|
$iconString .= '<span style="color:#6666FF;';
|
|
|
|
if($size=='adjusted')
|
|
|
|
$iconString .= 'font-size:110%;';
|
2012-01-28 20:39:38 +01:00
|
|
|
$iconString .= '">ⓘ</span>'; // CIRCLED LATIN SMALL LETTER I
|
|
|
|
}
|
|
|
|
elseif($protection_level=='signature') {
|
|
|
|
$iconString .= '<span style="color:#33AAAA;';
|
|
|
|
if($size=='adjusted')
|
|
|
|
$iconString .= 'font-size:140%;';
|
|
|
|
$iconString .= '">✽</span>'; // HEAVY TEARDROP-SPOKED ASTERISK
|
|
|
|
}
|
|
|
|
elseif($protection_level=='signatureOrSystem') {
|
|
|
|
$iconString .= '<span style="color:#DD66DD;';
|
|
|
|
if($size=='adjusted')
|
|
|
|
$iconString .= 'font-size:140%;';
|
|
|
|
$iconString .= '">⚛</span>'; // ATOM SYMBOL
|
2012-01-12 21:27:32 +01:00
|
|
|
}
|
2012-01-14 12:39:33 +01:00
|
|
|
else {
|
2012-01-21 13:22:37 +01:00
|
|
|
$iconString .= '<span style="color:#33AA33';
|
|
|
|
if($size=='adjusted')
|
|
|
|
$iconString .= ';font-size:130%;';
|
2012-01-28 20:39:38 +01:00
|
|
|
$iconString .= '">⚙</span>'; // GEAR
|
2012-01-12 21:27:32 +01:00
|
|
|
}
|
2012-01-21 13:22:37 +01:00
|
|
|
|
|
|
|
return $iconString;
|
2012-01-12 21:27:32 +01:00
|
|
|
}
|
2012-01-21 13:22:37 +01:00
|
|
|
|
2012-01-17 19:41:22 +01:00
|
|
|
private function human_readable_size($size, $minDiv=0) {
|
2012-01-14 15:11:59 +01:00
|
|
|
$si_prefix = array('bytes','kB','MB');
|
|
|
|
$div = 1000;
|
2012-01-21 13:22:37 +01:00
|
|
|
|
2012-01-17 19:41:22 +01:00
|
|
|
for($i=0;(abs($size) > $div && $i < count($si_prefix)) || $i<$minDiv;$i++) {
|
2012-01-14 15:11:59 +01:00
|
|
|
$size /= $div;
|
|
|
|
}
|
|
|
|
|
|
|
|
return round($size,max(0,$i-1)).' '.$si_prefix[$i];
|
|
|
|
}
|
2011-12-29 19:45:18 +01:00
|
|
|
|
2012-01-23 21:07:33 +01:00
|
|
|
private function get_antifeature_description($antifeature) {
|
|
|
|
// Anti feature names and descriptions
|
|
|
|
$antifeatureDesctiption['ads']['name'] = 'Advertising';
|
|
|
|
$antifeatureDesctiption['ads']['description'] = 'This application contains advertising';
|
|
|
|
$antifeatureDesctiption['tracking']['name'] = 'Tracks You';
|
|
|
|
$antifeatureDesctiption['tracking']['description'] = 'This application tracks and reports your activity to somewhere';
|
|
|
|
$antifeatureDesctiption['nonfreenet']['name'] = 'Non-Free Network Services';
|
|
|
|
$antifeatureDesctiption['nonfreenet']['description'] = 'This application promotes a non-Free network service';
|
|
|
|
$antifeatureDesctiption['nonfreeadd']['name'] = 'Non-Free Addons';
|
|
|
|
$antifeatureDesctiption['nonfreeadd']['description'] = 'This application promotes non-Free add-ons';
|
|
|
|
$antifeatureDesctiption['nonfreedep']['name'] = 'Non-Free Dependencies';
|
|
|
|
$antifeatureDesctiption['nonfreedep']['description'] = 'This application depends on another non-Free application';
|
|
|
|
|
2012-01-23 21:13:32 +01:00
|
|
|
$antifeatureLower = strtolower($antifeature);
|
|
|
|
if(isset($antifeatureDesctiption[$antifeatureLower])) {
|
|
|
|
return $antifeatureDesctiption[$antifeatureLower];
|
|
|
|
}
|
|
|
|
return array('name'=>$antifeature);
|
2012-01-23 21:07:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-29 19:45:18 +01:00
|
|
|
function get_apps($query_vars) {
|
|
|
|
|
|
|
|
$xml = simplexml_load_file($this->site_path."/repo/index.xml");
|
|
|
|
$matches = $this->show_apps($xml,$query_vars,$numpages);
|
|
|
|
|
|
|
|
$out='';
|
|
|
|
|
|
|
|
if(($query_vars['fdfilter']===null || $query_vars['fdfilter']!='') && $numpages>0)
|
|
|
|
{
|
|
|
|
$out.='<div style="float:left;">';
|
2012-02-12 16:44:50 +01:00
|
|
|
if($query_vars['fdfilter']===null) {
|
|
|
|
$categories = array('All applications','Games','Internet','Multimedia','Navigation','Office','System');
|
|
|
|
|
|
|
|
$out.='<form name="categoryform" action="" method="get">';
|
|
|
|
$out.=$this->makeformdata($query_vars);
|
|
|
|
|
|
|
|
$out.='<select name="fdcategory" style="color:#333333;" onChange="document.categoryform.submit();">';
|
|
|
|
foreach($categories as $category) {
|
|
|
|
$out.='<option';
|
|
|
|
if(isset($query_vars['fdcategory']) && $category==$query_vars['fdcategory'])
|
|
|
|
$out.=' selected';
|
|
|
|
$out.='>'.$category.'</option>';
|
|
|
|
}
|
|
|
|
$out.='</select>';
|
|
|
|
|
|
|
|
$out.='</form>'."\n";
|
|
|
|
}
|
|
|
|
else {
|
2011-12-29 19:45:18 +01:00
|
|
|
$out.='Applications matching "'.$query_vars['fdfilter'].'"';
|
2012-02-12 16:44:50 +01:00
|
|
|
}
|
2011-12-29 19:45:18 +01:00
|
|
|
$out.="</div>";
|
|
|
|
|
|
|
|
$out.='<div style="float:right;">';
|
2012-02-12 16:44:50 +01:00
|
|
|
$out.='<a href="'.makelink($query_vars, array('fdstyle'=>'list','fdpage'=>'1')).'">List</a> | ';
|
|
|
|
$out.='<a href="'.makelink($query_vars, array('fdstyle'=>'grid','fdpage'=>'1')).'">Grid</a>';
|
2011-12-29 19:45:18 +01:00
|
|
|
$out.='</div>';
|
|
|
|
|
|
|
|
$out.='<br break="all"/>';
|
|
|
|
}
|
|
|
|
|
|
|
|
if($numpages>0) {
|
|
|
|
$out.=$matches;
|
|
|
|
|
|
|
|
$out.='<hr><p>';
|
2012-01-03 21:43:02 +01:00
|
|
|
|
|
|
|
$out.='<div style="width:20%; float:left; text-align:left;">';
|
2011-12-29 19:45:18 +01:00
|
|
|
$out.=' Page '.$query_vars['fdpage'].' of '.$numpages.' ';
|
2012-01-03 21:43:02 +01:00
|
|
|
$out.='</div>';
|
|
|
|
|
|
|
|
$out.='<div style="width:60%; float:left; text-align:center;">';
|
2012-01-03 21:35:37 +01:00
|
|
|
if($numpages>1) {
|
2012-01-03 21:43:02 +01:00
|
|
|
for($i=1;$i<=$numpages;$i++) {
|
|
|
|
if($i == $query_vars['fdpage']) {
|
|
|
|
$out.='<b>'.$i.'</b>';
|
|
|
|
} else {
|
|
|
|
$out.='<a href="'.makelink($query_vars, array('fdpage'=>$i)).'">';
|
|
|
|
$out.=$i;
|
|
|
|
$out.='</a>';
|
|
|
|
}
|
|
|
|
$out.=' ';
|
|
|
|
}
|
|
|
|
$out.=' ';
|
2012-01-03 21:35:37 +01:00
|
|
|
}
|
2012-01-03 21:43:02 +01:00
|
|
|
$out.='</div>';
|
2012-01-03 21:35:37 +01:00
|
|
|
|
|
|
|
$out.='<div style="width:20%; float:left; text-align:right;">';
|
|
|
|
if($query_vars['fdpage']!=$numpages) {
|
2011-12-29 19:45:18 +01:00
|
|
|
$out.='<a href="'.makelink($query_vars, array('fdpage'=>($query_vars['fdpage']+1))).'">next></a> ';
|
|
|
|
}
|
2012-01-03 21:35:37 +01:00
|
|
|
$out.='</div>';
|
2012-01-03 21:43:02 +01:00
|
|
|
|
2011-12-29 19:45:18 +01:00
|
|
|
$out.='</p>';
|
|
|
|
} else if($query_vars['fdfilter']!='') {
|
|
|
|
$out.='<p>No matches</p>';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-12 16:44:50 +01:00
|
|
|
function makeformdata($query_vars) {
|
2011-12-29 19:45:18 +01:00
|
|
|
|
|
|
|
$out='';
|
|
|
|
|
|
|
|
$out.='<input type="hidden" name="page_id" value="'.get_query_var('page_id').'">';
|
|
|
|
foreach($query_vars as $name => $value) {
|
|
|
|
if($value !== null && $name != 'fdfilter')
|
|
|
|
$out.='<input type="hidden" name="'.$name.'" value="'.$value.'">';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function show_apps($xml,$query_vars,&$numpages) {
|
|
|
|
|
|
|
|
$skipped=0;
|
|
|
|
$got=0;
|
|
|
|
$total=0;
|
|
|
|
|
|
|
|
if($query_vars['fdstyle']=='grid') {
|
|
|
|
$outputter = new FDOutGrid();
|
|
|
|
} else {
|
|
|
|
$outputter = new FDOutList();
|
|
|
|
}
|
|
|
|
|
|
|
|
$out = "";
|
|
|
|
|
|
|
|
$out.=$outputter->outputStart();
|
|
|
|
|
|
|
|
foreach($xml->children() as $app) {
|
|
|
|
|
|
|
|
if($app->getName() == 'repo') continue;
|
|
|
|
$appinfo['attrs']=$app->attributes();
|
|
|
|
$appinfo['id']=$appinfo['attrs']['id'];
|
|
|
|
foreach($app->children() as $el) {
|
|
|
|
switch($el->getName()) {
|
|
|
|
case "name":
|
|
|
|
$appinfo['name']=$el;
|
|
|
|
break;
|
|
|
|
case "icon":
|
|
|
|
$appinfo['icon']=$el;
|
|
|
|
break;
|
|
|
|
case "summary":
|
|
|
|
$appinfo['summary']=$el;
|
|
|
|
break;
|
2012-01-03 20:28:24 +01:00
|
|
|
case "description":
|
|
|
|
$appinfo['description']=$el;
|
|
|
|
break;
|
2011-12-29 19:45:18 +01:00
|
|
|
case "license":
|
|
|
|
$appinfo['license']=$el;
|
|
|
|
break;
|
2012-02-12 16:44:50 +01:00
|
|
|
case "category":
|
|
|
|
$appinfo['category']=$el;
|
|
|
|
break;
|
2011-12-29 19:45:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-12 16:44:50 +01:00
|
|
|
if(($query_vars['fdfilter']===null || $query_vars['fdfilter']!='' && (stristr($appinfo['name'],$query_vars['fdfilter']) || stristr($appinfo['summary'],$query_vars['fdfilter']) || stristr($appinfo['description'],$query_vars['fdfilter']))) && (!isset($query_vars['fdcategory']) || $query_vars['fdcategory'] && $query_vars['fdcategory']==$appinfo['category'])) {
|
2011-12-29 19:45:18 +01:00
|
|
|
if($skipped<($query_vars['fdpage']-1)*$outputter->perpage) {
|
|
|
|
$skipped++;
|
|
|
|
} else if($got<$outputter->perpage) {
|
|
|
|
$out.=$outputter->outputEntry($query_vars, $appinfo);
|
|
|
|
$got++;
|
|
|
|
}
|
|
|
|
$total++;
|
|
|
|
}
|
2012-01-03 20:28:24 +01:00
|
|
|
|
2011-12-29 19:45:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$out.=$outputter->outputEnd();
|
|
|
|
|
|
|
|
$numpages = ceil((float)$total/$outputter->perpage);
|
|
|
|
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Class to output app entries in a detailed list format
|
|
|
|
class FDOutList
|
|
|
|
{
|
|
|
|
var $perpage=30;
|
|
|
|
|
|
|
|
function FDOutList() {
|
|
|
|
}
|
|
|
|
|
|
|
|
function outputStart() {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
function outputEntry($query_vars, $appinfo) {
|
|
|
|
$out="";
|
2012-01-23 21:39:27 +01:00
|
|
|
$out.='<hr style="clear:both;" />'."\n";
|
2012-01-23 21:34:03 +01:00
|
|
|
$out.='<a href="'.makelink($query_vars, array('fdid'=>$appinfo['id'])).'">';
|
2011-12-29 19:45:18 +01:00
|
|
|
$out.='<div id="appheader">';
|
|
|
|
|
2012-01-23 21:34:03 +01:00
|
|
|
$out.='<div style="float:left;padding-right:10px;"><img src="http://f-droid.org/repo/icons/'.$appinfo['icon'].'" style="width:48px;border:none;"></div>';
|
2011-12-29 19:45:18 +01:00
|
|
|
|
|
|
|
$out.='<div style="float:right;">';
|
2012-01-23 21:34:03 +01:00
|
|
|
$out.='<p>Details...</p>';
|
2011-12-29 19:45:18 +01:00
|
|
|
$out.="</div>\n";
|
|
|
|
|
2012-01-23 21:34:03 +01:00
|
|
|
$out.='<p style="color:#000000;"><span style="font-size:20px;">'.$appinfo['name']."</span>";
|
2011-12-29 19:45:18 +01:00
|
|
|
$out.="<br>".$appinfo['summary']."</p>\n";
|
|
|
|
|
|
|
|
$out.="</div>\n";
|
2012-01-23 21:34:03 +01:00
|
|
|
$out.='</a>';
|
2011-12-29 19:45:18 +01:00
|
|
|
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
|
|
|
function outputEnd() {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Class to output app entries in a compact grid format
|
|
|
|
class FDOutGrid
|
|
|
|
{
|
|
|
|
var $perpage=80;
|
|
|
|
|
|
|
|
var $itemCount = 0;
|
|
|
|
|
|
|
|
function FDOutGrid() {
|
|
|
|
}
|
|
|
|
|
|
|
|
function outputStart() {
|
|
|
|
return "\n".'<table border="0" width="100%"><tr>'."\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
function outputEntry($query_vars, $appinfo) {
|
|
|
|
$link=makelink($query_vars, array('fdid'=>$appinfo['id']));
|
|
|
|
|
|
|
|
$out='';
|
|
|
|
|
|
|
|
if($this->itemCount%4 == 0 && $this->itemCount > 0)
|
|
|
|
{
|
|
|
|
$out.='</tr><tr>'."\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
$out.='<td align="center" valign="top" style="background-color:#F8F8F8;">';
|
|
|
|
$out.='<p>';
|
|
|
|
$out.='<div id="appheader" style="text-align:center;width:110px;">';
|
|
|
|
|
|
|
|
$out.='<a href="'.$link.'" style="border-bottom-style:none;">';
|
|
|
|
$out.='<img src="http://f-droid.org/repo/icons/'.$appinfo['icon'].'" style="width:48px;border-width:0;padding-top:5px;padding-bottom:5px;"><br/>';
|
|
|
|
$out.=$appinfo['name'].'<br/>';
|
|
|
|
$out.='</a>';
|
|
|
|
|
|
|
|
$out.="</div>";
|
|
|
|
$out.='</p>';
|
|
|
|
$out.="</td>\n";
|
|
|
|
|
|
|
|
$this->itemCount++;
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
|
|
|
function outputEnd() {
|
|
|
|
return '</tr></table>'."\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-17 21:48:48 +01:00
|
|
|
function permissions_cmp($a, $b) {
|
|
|
|
global $permissions_data;
|
|
|
|
|
|
|
|
$aProtectionLevel = $permissions_data['permission'][$a]['protectionLevel'];
|
|
|
|
$bProtectionLevel = $permissions_data['permission'][$b]['protectionLevel'];
|
|
|
|
|
|
|
|
if($aProtectionLevel != $bProtectionLevel) {
|
|
|
|
if(strlen($aProtectionLevel)==0) return 1;
|
|
|
|
if(strlen($bProtectionLevel)==0) return -1;
|
|
|
|
|
|
|
|
return strcmp($aProtectionLevel, $bProtectionLevel);
|
|
|
|
}
|
|
|
|
|
|
|
|
$aGroup = $permissions_data['permission'][$a]['permissionGroup'];
|
|
|
|
$bGroup = $permissions_data['permission'][$b]['permissionGroup'];
|
|
|
|
|
|
|
|
if($aGroup != $bGroup) {
|
|
|
|
return strcmp($aGroup, $bGroup);
|
|
|
|
}
|
|
|
|
|
|
|
|
return strcmp($a, $b);
|
|
|
|
}
|
|
|
|
|
2011-12-29 19:45:18 +01:00
|
|
|
// Make a link to this page, with the current query vars attached and desired params added/modified
|
|
|
|
function makelink($query_vars, $params=array()) {
|
|
|
|
$link=get_permalink();
|
|
|
|
$vars=linkify(array_merge($query_vars, $params));
|
|
|
|
if(strlen($vars)==0)
|
|
|
|
return $link;
|
|
|
|
if(strpos($link,'?')===false)
|
|
|
|
$link.='?';
|
|
|
|
else
|
|
|
|
$link.='&';
|
|
|
|
return $link.$vars;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the key value pairs in http-get-parameter format as a string
|
|
|
|
function linkify($vars) {
|
|
|
|
$retvar = '';
|
|
|
|
foreach($vars as $k => $v) {
|
|
|
|
if($k!==null && $v!==null && $v!='')
|
|
|
|
$retvar .= $k.'='.$v.'&';
|
|
|
|
}
|
|
|
|
return substr($retvar,0,-1);
|
|
|
|
}
|
|
|
|
|
2012-01-26 22:35:40 +01:00
|
|
|
function widget_fdroidlatest($args) {
|
|
|
|
extract($args);
|
|
|
|
echo $before_widget;
|
|
|
|
echo $before_title . 'Latest Apps' . $after_title;
|
2012-02-11 22:14:28 +01:00
|
|
|
|
|
|
|
$handle = fopen(getenv('DOCUMENT_ROOT').'/repo/latestapps.dat', 'r');
|
|
|
|
if ($handle) {
|
|
|
|
while (($buffer = fgets($handle, 4096)) !== false) {
|
|
|
|
$app = explode("\t", $buffer);
|
|
|
|
echo '<a href="/repository/browse/?fdid='.$app[0].'">';
|
2012-02-11 22:32:25 +01:00
|
|
|
if(isset($app[2]) && trim($app[2])) {
|
2012-02-11 22:14:28 +01:00
|
|
|
echo '<img src="http://f-droid.org/repo/icons/'.$app[2].'" style="width:32px;border:none;float:right;" />';
|
|
|
|
}
|
|
|
|
echo $app[1].'<br />';
|
2012-02-11 22:32:25 +01:00
|
|
|
if(isset($app[3]) && trim($app[3])) {
|
|
|
|
echo '<span style="color:#BBBBBB;">'.$app[3].'</span>';
|
|
|
|
}
|
2012-02-11 22:14:28 +01:00
|
|
|
echo '</a><br style="clear:both;" />';
|
|
|
|
}
|
|
|
|
fclose($handle);
|
|
|
|
}
|
|
|
|
|
2012-01-26 22:35:40 +01:00
|
|
|
echo $after_widget;
|
|
|
|
}
|
2011-12-29 19:45:18 +01:00
|
|
|
|
|
|
|
$wp_fdroid = new FDroid();
|
|
|
|
|
|
|
|
|
|
|
|
?>
|