streams/Zotlabs/Lib/Apps.php

1271 lines
33 KiB
PHP
Raw Normal View History

2016-05-23 02:26:21 +00:00
<?php /** @file */
namespace Zotlabs\Lib;
2018-06-05 01:40:11 +00:00
use Zotlabs\Lib\Libsync;
2018-06-01 04:05:09 +00:00
2016-05-23 02:26:21 +00:00
/**
* Apps
*
*/
require_once('include/plugin.php');
require_once('include/channel.php');
class Apps {
2018-07-05 05:56:43 +00:00
static public $available_apps = null;
static public $installed_apps = null;
static public $base_apps = null;
2016-05-23 02:26:21 +00:00
static public function get_system_apps($translate = true) {
$ret = array();
if(is_dir('apps'))
$files = glob('apps/*.apd');
else
$files = glob('app/*.apd');
if($files) {
foreach($files as $f) {
$x = self::parse_app_description($f,$translate);
if($x) {
$ret[] = $x;
}
}
}
$files = glob('addon/*/*.apd');
if($files) {
foreach($files as $f) {
2016-07-01 09:16:23 +00:00
$path = explode('/',$f);
$plugin = trim($path[1]);
2016-07-01 09:16:23 +00:00
if(plugin_is_installed($plugin)) {
2016-05-23 02:26:21 +00:00
$x = self::parse_app_description($f,$translate);
if($x) {
$x['plugin'] = $plugin;
2016-05-23 02:26:21 +00:00
$ret[] = $x;
}
}
}
}
2018-05-21 23:19:17 +00:00
call_hooks('get_system_apps',$ret);
2016-05-23 02:26:21 +00:00
return $ret;
}
static public function get_base_apps() {
2019-01-09 04:34:39 +00:00
$x = get_config('system','base_apps',[
2018-07-05 05:56:43 +00:00
'Connections',
'Suggest Channels',
'Network',
'Settings',
'Files',
'Channel Home',
'View Profile',
'Photos',
'Events',
'Directory',
'Search',
'Profile Photo'
]);
2019-01-09 04:34:39 +00:00
call_hooks('get_base_apps',$x);
return $x;
}
2018-07-05 06:20:35 +00:00
static public function import_system_apps() {
if(! local_channel())
return;
2018-07-05 05:56:43 +00:00
self::$base_apps = self::get_base_apps();
$apps = self::get_system_apps(false);
2016-05-23 02:26:21 +00:00
2018-07-05 05:56:43 +00:00
self::$available_apps = q("select * from app where app_channel = 0");
self::$installed_apps = q("select * from app where app_channel = %d",
intval(local_channel())
);
2016-05-23 02:26:21 +00:00
if($apps) {
foreach($apps as $app) {
$id = self::check_install_system_app($app);
2018-07-05 06:20:35 +00:00
// $id will be boolean true or false to install an app, or an integer id to update an existing app
if($id !== false) {
$app['uid'] = 0;
$app['guid'] = hash('whirlpool',$app['name']);
$app['system'] = 1;
self::app_install(0,$app);
}
2018-07-05 05:56:43 +00:00
$id = self::check_install_personal_app($app);
// $id will be boolean true or false to install an app, or an integer id to update an existing app
if($id === false)
continue;
if($id !== true) {
// if we already installed this app, but it changed, preserve any categories we created
2018-07-05 05:56:43 +00:00
$s = EMPTY_STR;
$r = q("select term from term where otype = %d and oid = %d",
intval(TERM_OBJ_APP),
intval($id)
);
if($r) {
foreach($r as $t) {
if($s)
$s .= ',';
$s .= $t['term'];
}
$app['categories'] = $s;
}
}
2016-05-23 02:26:21 +00:00
$app['uid'] = local_channel();
$app['guid'] = hash('whirlpool',$app['name']);
$app['system'] = 1;
self::app_install(local_channel(),$app);
2018-07-05 05:56:43 +00:00
2016-05-23 02:26:21 +00:00
}
}
}
/**
* Install the system app if no system apps have been installed, or if a new system app
* is discovered, or if the version of a system app changes.
*/
static public function check_install_system_app($app) {
2018-07-05 05:56:43 +00:00
if((! is_array(self::$available_apps)) || (! count(self::$available_apps))) {
return true;
}
$notfound = true;
2018-07-05 05:56:43 +00:00
foreach(self::$available_apps as $iapp) {
if($iapp['app_id'] == hash('whirlpool',$app['name'])) {
$notfound = false;
2018-07-27 20:59:27 +00:00
if(($iapp['app_version'] !== $app['version'])
2017-01-13 21:22:36 +00:00
|| ($app['plugin'] && (! $iapp['app_plugin']))) {
return intval($iapp['app_id']);
}
2018-07-27 20:59:27 +00:00
if(($iapp['app_url'] !== $app['url'])
|| ($iapp['app_photo'] !== $app['photo'])) {
return intval($iapp['app_id']);
}
}
}
2017-01-13 21:22:36 +00:00
return $notfound;
2016-05-23 02:26:21 +00:00
}
2018-07-05 05:56:43 +00:00
/**
* Install the system app if no system apps have been installed, or if a new system app
* is discovered, or if the version of a system app changes.
*/
static public function check_install_personal_app($app) {
2018-07-06 05:27:44 +00:00
$installed = false;
foreach(self::$installed_apps as $iapp) {
2018-07-05 05:56:43 +00:00
if($iapp['app_id'] == hash('whirlpool',$app['name'])) {
2018-07-06 05:27:44 +00:00
$installed = true;
2018-07-05 05:56:43 +00:00
if(($iapp['app_version'] != $app['version'])
|| ($app['plugin'] && (! $iapp['app_plugin']))) {
return intval($iapp['app_id']);
}
}
}
2018-07-06 05:27:44 +00:00
if(! $installed && in_array($app['name'],self::$base_apps)) {
2018-07-05 05:56:43 +00:00
return true;
}
return false;
}
2016-05-23 02:26:21 +00:00
static public function app_name_compare($a,$b) {
return strcasecmp($a['name'],$b['name']);
2016-05-23 02:26:21 +00:00
}
static public function parse_app_description($f,$translate = true) {
2016-05-23 02:26:21 +00:00
$ret = array();
$baseurl = z_root();
$channel = \App::get_channel();
$address = (($channel) ? $channel['channel_address'] : '');
//future expansion
$observer = \App::get_observer();
$lines = @file($f);
if($lines) {
foreach($lines as $x) {
if(preg_match('/^([a-zA-Z].*?):(.*?)$/ism',$x,$matches)) {
2018-07-27 20:59:27 +00:00
$ret[$matches[1]] = trim($matches[2]);
2016-05-23 02:26:21 +00:00
}
}
}
if(! $ret['photo'])
$ret['photo'] = $baseurl . '/' . get_default_profile_photo(80);
$ret['type'] = 'system';
foreach($ret as $k => $v) {
if(strpos($v,'http') === 0) {
if(! (local_channel() && strpos($v,z_root()) === 0)) {
$ret[$k] = zid($v);
}
}
2016-05-23 02:26:21 +00:00
}
if(array_key_exists('desc',$ret))
$ret['desc'] = str_replace(array('\'','"'),array('&#39;','&dquot;'),$ret['desc']);
if(array_key_exists('target',$ret))
$ret['target'] = str_replace(array('\'','"'),array('&#39;','&dquot;'),$ret['target']);
if(array_key_exists('version',$ret))
$ret['version'] = str_replace(array('\'','"'),array('&#39;','&dquot;'),$ret['version']);
2017-02-02 22:49:51 +00:00
if(array_key_exists('categories',$ret))
$ret['categories'] = str_replace(array('\'','"'),array('&#39;','&dquot;'),$ret['categories']);
2016-05-23 02:26:21 +00:00
if(array_key_exists('requires',$ret)) {
$requires = explode(',',$ret['requires']);
foreach($requires as $require) {
$require = trim(strtolower($require));
$config = false;
if(substr($require, 0, 7) == 'config:') {
$config = true;
$require = ltrim($require, 'config:');
$require = explode('=', $require);
}
2016-05-23 02:26:21 +00:00
switch($require) {
case 'nologin':
if(local_channel())
unset($ret);
break;
case 'admin':
if(! is_site_admin())
unset($ret);
break;
case 'local_channel':
if(! local_channel())
unset($ret);
break;
case 'public_profile':
if(! is_public_profile())
unset($ret);
break;
case 'public_stream':
if(! can_view_public_stream())
unset($ret);
break;
2018-10-05 03:29:41 +00:00
case 'custom_role':
if(get_pconfig(local_channel(),'system','permissions_role') !== 'custom')
unset($ret);
break;
2016-05-23 02:26:21 +00:00
case 'observer':
if(! $observer)
unset($ret);
break;
default:
if($config)
$unset = ((get_config('system', $require[0]) == $require[1]) ? false : true);
else
$unset = ((local_channel() && feature_enabled(local_channel(),$require)) ? false : true);
if($unset)
2016-05-23 02:26:21 +00:00
unset($ret);
break;
}
}
}
if($ret) {
if($translate)
self::translate_system_apps($ret);
return $ret;
}
return false;
}
static public function translate_system_apps(&$arr) {
$apps = array(
2017-05-23 08:18:34 +00:00
'Apps' => t('Apps'),
'Affinity Tool' => t('Affinity Tool'),
2018-01-16 05:46:27 +00:00
'Articles' => t('Articles'),
2017-08-23 07:01:02 +00:00
'Cards' => t('Cards'),
2019-03-25 03:18:13 +00:00
'Categories' => t('Categories'),
'Admin' => t('Site Admin'),
2019-01-23 03:11:53 +00:00
'Content Filter' => t('Content Filter'),
2019-03-08 04:13:33 +00:00
'Content Import' => t('Content Import'),
'Report Bug' => t('Report Bug'),
2016-05-23 02:26:21 +00:00
'View Bookmarks' => t('View Bookmarks'),
2018-09-13 09:32:43 +00:00
'Chatrooms' => t('Chatrooms'),
'Content Import' => t('Content Import'),
2016-05-23 02:26:21 +00:00
'Connections' => t('Connections'),
'Remote Diagnostics' => t('Remote Diagnostics'),
'Suggest Channels' => t('Suggest Channels'),
'Login' => t('Login'),
'Channel Manager' => t('Channel Manager'),
'Network' => t('Stream'),
2016-05-23 02:26:21 +00:00
'Settings' => t('Settings'),
'Files' => t('Files'),
'Webpages' => t('Webpages'),
'Wiki' => t('Wiki'),
2016-05-23 02:26:21 +00:00
'Channel Home' => t('Channel Home'),
'View Profile' => t('View Profile'),
'Photos' => t('Photos'),
'Events' => t('Events'),
'Directory' => t('Directory'),
'Help' => t('Help'),
'Mail' => t('Mail'),
'Mood' => t('Mood'),
'Poke' => t('Poke'),
'Chat' => t('Chat'),
'Search' => t('Search'),
2018-09-05 01:44:02 +00:00
'Stream Order' => t('Stream Order'),
2016-05-23 02:26:21 +00:00
'Probe' => t('Probe'),
'Suggest' => t('Suggest'),
'Random Channel' => t('Random Channel'),
'Invite' => t('Invite'),
'Features' => t('Features'),
'Language' => t('Language'),
'Post' => t('Post'),
2018-07-20 05:15:50 +00:00
'ZotPost' => t('ZotPost'),
2018-07-31 02:25:35 +00:00
'Profile Photo' => t('Profile Photo'),
2018-07-27 09:29:38 +00:00
'Profile' => t('Profile'),
'Profiles' => t('Profiles'),
'Privacy Groups' => t('Access Lists'),
'Notifications' => t('Notifications'),
2018-10-05 03:29:41 +00:00
'Order Apps' => t('Order Apps'),
'CalDAV' => t('CalDAV'),
'CardDAV' => t('CardDAV'),
'Channel Sources' => t('Channel Sources'),
'Gallery' => t('Gallery'),
'Guest Access' => t('Guest Access'),
'Notes' => t('Notes'),
'OAuth Apps Manager' => t('OAuth Apps Manager'),
'OAuth2 Apps Manager' => t('OAuth2 Apps Manager'),
'PDL Editor' => t('PDL Editor'),
'Permission Categories' => t('Permission Categories'),
'Premium Channel' => t('Premium Channel'),
'Public Stream' => t('Public Stream'),
2019-03-08 04:13:33 +00:00
'My Chatrooms' => t('My Chatrooms')
2016-05-23 02:26:21 +00:00
);
2017-04-03 00:34:16 +00:00
if(array_key_exists('name',$arr)) {
if(array_key_exists($arr['name'],$apps)) {
$arr['name'] = $apps[$arr['name']];
}
}
else {
for($x = 0; $x < count($arr); $x++) {
if(array_key_exists($arr[$x]['name'],$apps)) {
$arr[$x]['name'] = $apps[$arr[$x]['name']];
}
2018-10-05 03:29:41 +00:00
else {
// Try to guess by app name if not in list
$arr[$x]['name'] = t(trim($arr[$x]['name']));
}
2017-04-03 00:34:16 +00:00
}
}
2016-05-23 02:26:21 +00:00
}
// papp is a portable app
static public function app_render($papp,$mode = 'view') {
/**
* modes:
* view: normal mode for viewing an app via bbcode from a conversation or page
* provides install/update button if you're logged in locally
2018-07-05 05:56:43 +00:00
* install: like view but does not display app-bin options if they are present
2016-05-23 02:26:21 +00:00
* list: normal mode for viewing an app on the app page
* no buttons are shown
* edit: viewing the app page in editing mode provides a delete button
* nav: render apps for app-bin
2016-05-23 02:26:21 +00:00
*/
$installed = false;
if(! $papp)
return;
if(! $papp['photo'])
2018-07-05 05:56:43 +00:00
$papp['photo'] = 'icon:gear';
2016-05-23 02:26:21 +00:00
2016-06-15 23:24:45 +00:00
self::translate_system_apps($papp);
if(trim($papp['plugin']) && (! plugin_is_installed(trim($papp['plugin']))))
return '';
2016-05-23 02:26:21 +00:00
$papp['papp'] = self::papp_encode($papp);
2018-07-27 20:59:27 +00:00
// This will catch somebody clicking on a system "available" app that hasn't had the path macros replaced
// and they are allowed to see the app
2018-10-05 03:29:41 +00:00
if(strpos($papp['url'],'$baseurl') !== false || strpos($papp['url'],'$nick') !== false || strpos($papp['photo'],'$baseurl') !== false || strpos($papp['photo'],'$nick') !== false) {
2018-07-27 20:59:27 +00:00
$view_channel = local_channel();
if(! $view_channel) {
$sys = get_sys_channel();
$view_channel = $sys['channel_id'];
}
self::app_macros($view_channel,$papp);
}
2018-10-05 03:29:41 +00:00
if(strpos($papp['url'], ',')) {
$urls = explode(',', $papp['url']);
$papp['url'] = trim($urls[0]);
$papp['settings_url'] = trim($urls[1]);
}
2016-05-23 02:26:21 +00:00
if(! strstr($papp['url'],'://'))
$papp['url'] = z_root() . ((strpos($papp['url'],'/') === 0) ? '' : '/') . $papp['url'];
2018-07-27 20:59:27 +00:00
2016-05-23 02:26:21 +00:00
foreach($papp as $k => $v) {
if(strpos($v,'http') === 0 && $k != 'papp') {
if(! (local_channel() && strpos($v,z_root()) === 0)) {
$papp[$k] = zid($v);
}
}
2016-05-23 02:26:21 +00:00
if($k === 'desc')
$papp['desc'] = str_replace(array('\'','"'),array('&#39;','&dquot;'),$papp['desc']);
if($k === 'requires') {
$requires = explode(',',$v);
2016-05-23 02:26:21 +00:00
foreach($requires as $require) {
$require = trim(strtolower($require));
$config = false;
if(substr($require, 0, 7) == 'config:') {
$config = true;
$require = ltrim($require, 'config:');
$require = explode('=', $require);
}
2016-05-23 02:26:21 +00:00
switch($require) {
case 'nologin':
if(local_channel())
return '';
break;
case 'admin':
if(! is_site_admin())
return '';
break;
case 'local_channel':
if(! local_channel())
return '';
break;
case 'public_profile':
if(! is_public_profile())
return '';
break;
case 'public_stream':
if(! can_view_public_stream())
return '';
break;
2018-10-05 03:29:41 +00:00
case 'custom_role':
if(get_pconfig(local_channel(),'system','permissions_role') != 'custom')
return '';
break;
2016-05-23 02:26:21 +00:00
case 'observer':
$observer = \App::get_observer();
if(! $observer)
return '';
break;
default:
if($config)
2017-12-03 11:31:41 +00:00
$unset = ((get_config('system', $require[0]) === $require[1]) ? false : true);
else
$unset = ((local_channel() && feature_enabled(local_channel(),$require)) ? false : true);
if($unset)
2016-05-23 02:26:21 +00:00
return '';
break;
}
}
}
}
$hosturl = '';
if(local_channel()) {
2018-10-05 03:29:41 +00:00
if(self::app_installed(local_channel(),$papp) && !$papp['deleted'])
$installed = true;
2016-05-23 02:26:21 +00:00
$hosturl = z_root() . '/';
}
elseif(remote_channel()) {
$observer = \App::get_observer();
2018-09-14 05:39:05 +00:00
if($observer && $observer['xchan_network'] === 'zot6') {
2016-05-23 02:26:21 +00:00
// some folks might have xchan_url redirected offsite, use the connurl
$x = parse_url($observer['xchan_connurl']);
if($x) {
$hosturl = $x['scheme'] . '://' . $x['host'] . '/';
}
}
}
$install_action = (($installed) ? t('Update') : t('Install'));
$icon = ((strpos($papp['photo'],'icon:') === 0) ? substr($papp['photo'],5) : '');
2016-05-23 02:26:21 +00:00
if($mode === 'navbar') {
return replace_macros(get_markup_template('app_nav.tpl'),array(
'$app' => $papp,
'$icon' => $icon,
));
}
2018-07-05 05:56:43 +00:00
if($mode === 'install') {
$papp['embed'] = true;
}
2016-05-23 02:26:21 +00:00
return replace_macros(get_markup_template('app.tpl'),array(
'$app' => $papp,
'$icon' => $icon,
2016-05-23 02:26:21 +00:00
'$hosturl' => $hosturl,
'$purchase' => (($papp['page'] && (! $installed)) ? t('Purchase') : ''),
'$installed' => $installed,
'$action_label' => (($hosturl && in_array($mode, ['view','install'])) ? $install_action : ''),
2018-10-05 03:29:41 +00:00
'$edit' => ((local_channel() && $installed && $mode === 'edit') ? t('Edit') : ''),
'$delete' => ((local_channel() && $installed && $mode === 'edit') ? t('Delete') : ''),
'$undelete' => ((local_channel() && $installed && $mode === 'edit') ? t('Undelete') : ''),
'$settings_url' => ((local_channel() && $installed && $mode === 'list') ? $papp['settings_url'] : ''),
2017-01-30 14:17:46 +00:00
'$deleted' => $papp['deleted'],
2018-10-05 03:29:41 +00:00
'$feature' => (($papp['embed'] || $mode === 'edit') ? false : true),
'$pin' => (($papp['embed'] || $mode === 'edit') ? false : true),
'$featured' => ((strpos($papp['categories'], 'nav_featured_app') === false) ? false : true),
'$pinned' => ((strpos($papp['categories'], 'nav_pinned_app') === false) ? false : true),
2018-10-05 03:29:41 +00:00
'$navapps' => (($mode === 'nav') ? true : false),
'$order' => (($mode === 'nav-order') ? true : false),
2017-02-22 10:22:43 +00:00
'$add' => t('Add to app-tray'),
'$remove' => t('Remove from app-tray'),
2017-11-16 20:42:39 +00:00
'$add_nav' => t('Pin to navbar'),
'$remove_nav' => t('Unpin from navbar')
2016-05-23 02:26:21 +00:00
));
}
static public function app_install($uid,$app) {
2018-07-06 05:27:44 +00:00
2018-10-05 03:29:41 +00:00
if(! is_array($app)) {
$r = q("select * from app where app_name = '%s' and app_channel = 0",
dbesc($app)
);
if(! $r)
return false;
$app = self::app_encode($r[0]);
}
2016-05-23 02:26:21 +00:00
$app['uid'] = $uid;
2018-10-05 03:29:41 +00:00
if(self::app_installed($uid,$app,true))
2016-05-23 02:26:21 +00:00
$x = self::app_update($app);
else
$x = self::app_store($app);
if($x['success']) {
$r = q("select * from app where app_id = '%s' and app_channel = %d limit 1",
dbesc($x['app_id']),
intval($uid)
);
if($r) {
2018-07-27 22:05:29 +00:00
if(($app['uid']) && (! $r[0]['app_system'])) {
2016-05-23 02:26:21 +00:00
if($app['categories'] && (! $app['term'])) {
$r[0]['term'] = q("select * from term where otype = %d and oid = %d",
2016-05-23 02:26:21 +00:00
intval(TERM_OBJ_APP),
intval($r[0]['id'])
);
if(intval($r[0]['app_system'])) {
Libsync::build_sync_packet($uid,array('sysapp' => $r[0]));
}
else {
Libsync::build_sync_packet($uid,array('app' => $r[0]));
}
2016-05-23 02:26:21 +00:00
}
}
}
return $x['app_id'];
}
return false;
}
static public function can_delete($uid,$app) {
if(! $uid) {
return false;
}
$base_apps = self::get_base_apps();
if($base_apps) {
foreach($base_apps as $b) {
if($app['guid'] === hash('whirlpool',$b)) {
return false;
}
}
}
return true;
}
2016-05-23 02:26:21 +00:00
static public function app_destroy($uid,$app) {
2016-05-23 02:26:21 +00:00
if($uid && $app['guid']) {
$x = q("select * from app where app_id = '%s' and app_channel = %d limit 1",
dbesc($app['guid']),
intval($uid)
);
if($x) {
if(! intval($x[0]['app_deleted'])) {
$x[0]['app_deleted'] = 1;
if(self::can_delete($uid,$app)) {
$r = q("delete from app where app_id = '%s' and app_channel = %d",
dbesc($app['guid']),
intval($uid)
);
q("delete from term where otype = %d and oid = %d",
intval(TERM_OBJ_APP),
intval($x[0]['id'])
);
2018-10-05 03:29:41 +00:00
call_hooks('app_destroy',$x[0]);
}
else {
$r = q("update app set app_deleted = 1 where app_id = '%s' and app_channel = %d",
dbesc($app['guid']),
intval($uid)
);
}
if(intval($x[0]['app_system'])) {
Libsync::build_sync_packet($uid,array('sysapp' => $x));
}
else {
2018-06-05 01:40:11 +00:00
Libsync::build_sync_packet($uid,array('app' => $x));
}
2016-05-23 02:26:21 +00:00
}
else {
self::app_undestroy($uid,$app);
}
}
}
}
static public function app_undestroy($uid,$app) {
// undelete a system app
if($uid && $app['guid']) {
$x = q("select * from app where app_id = '%s' and app_channel = %d limit 1",
dbesc($app['guid']),
intval($uid)
);
if($x) {
if($x[0]['app_system']) {
$r = q("update app set app_deleted = 0 where app_id = '%s' and app_channel = %d",
2016-05-23 02:26:21 +00:00
dbesc($app['guid']),
intval($uid)
);
}
}
}
}
static public function app_feature($uid,$app,$term) {
2017-01-30 14:17:46 +00:00
$r = q("select id from app where app_id = '%s' and app_channel = %d limit 1",
dbesc($app['guid']),
intval($uid)
);
2016-05-23 02:26:21 +00:00
$x = q("select * from term where otype = %d and oid = %d and term = '%s' limit 1",
2017-01-30 14:17:46 +00:00
intval(TERM_OBJ_APP),
intval($r[0]['id']),
dbesc($term)
2017-01-30 14:17:46 +00:00
);
2017-01-30 14:17:46 +00:00
if($x) {
q("delete from term where otype = %d and oid = %d and term = '%s'",
2017-01-30 14:17:46 +00:00
intval(TERM_OBJ_APP),
intval($x[0]['oid']),
dbesc($term)
2017-01-30 14:17:46 +00:00
);
}
else {
store_item_tag($uid, $r[0]['id'], TERM_OBJ_APP, TERM_CATEGORY, $term, escape_tags(z_root() . '/apps/?f=&cat=' . $term));
2017-01-30 14:17:46 +00:00
}
}
2018-10-05 03:29:41 +00:00
static public function app_installed($uid,$app,$bypass_filter = false) {
2016-05-23 02:26:21 +00:00
$r = q("select id from app where app_id = '%s' and app_channel = %d limit 1",
2016-05-23 02:26:21 +00:00
dbesc((array_key_exists('guid',$app)) ? $app['guid'] : ''),
intval($uid)
);
2018-10-05 03:29:41 +00:00
if (!$bypass_filter) {
$filter_arr = [
'uid'=>$uid,
'app'=>$app,
'installed'=>$r
];
call_hooks('app_installed_filter',$filter_arr);
$r = $filter_arr['installed'];
}
2016-05-23 02:26:21 +00:00
return(($r) ? true : false);
}
2018-10-05 03:29:41 +00:00
static public function addon_app_installed($uid,$app,$bypass_filter = false) {
2018-07-06 00:52:32 +00:00
$r = q("select id from app where app_plugin = '%s' and app_channel = %d limit 1",
dbesc($app),
intval($uid)
);
2018-10-05 03:29:41 +00:00
if (!$bypass_filter) {
$filter_arr = [
'uid'=>$uid,
'app'=>$app,
'installed'=>$r
];
call_hooks('addon_app_installed_filter',$filter_arr);
$r = $filter_arr['installed'];
}
2018-07-06 00:52:32 +00:00
return(($r) ? true : false);
}
2018-10-05 03:29:41 +00:00
static public function system_app_installed($uid,$app,$bypass_filter = false) {
2018-08-23 00:52:22 +00:00
2018-07-16 01:31:39 +00:00
$r = q("select id from app where app_id = '%s' and app_channel = %d limit 1",
dbesc(hash('whirlpool',$app)),
intval($uid)
);
2018-10-05 03:29:41 +00:00
if (!$bypass_filter) {
$filter_arr = [
'uid'=>$uid,
'app'=>$app,
'installed'=>$r
];
call_hooks('system_app_installed_filter',$filter_arr);
$r = $filter_arr['installed'];
}
2018-07-16 01:31:39 +00:00
return(($r) ? true : false);
}
2016-05-23 02:26:21 +00:00
static public function app_list($uid, $deleted = false, $cats = []) {
2016-05-23 02:26:21 +00:00
if($deleted)
$sql_extra = "";
2016-05-23 02:26:21 +00:00
else
$sql_extra = " and app_deleted = 0 ";
if($cats) {
$cat_sql_extra = " and ( ";
foreach($cats as $cat) {
if(strpos($cat_sql_extra, 'term'))
$cat_sql_extra .= "or ";
$cat_sql_extra .= "term = '" . dbesc($cat) . "' ";
}
$cat_sql_extra .= ") ";
$r = q("select oid from term where otype = %d $cat_sql_extra",
intval(TERM_OBJ_APP)
2016-05-23 02:26:21 +00:00
);
if(! $r)
return $r;
$sql_extra .= " and app.id in ( ";
$s = '';
foreach($r as $rr) {
if($s)
$s .= ',';
$s .= intval($rr['oid']);
}
$sql_extra .= $s . ') ';
}
$r = q("select * from app where app_channel = %d $sql_extra order by app_name asc",
intval($uid)
);
2017-02-06 09:49:42 +00:00
2016-05-23 02:26:21 +00:00
if($r) {
2018-12-29 23:40:07 +00:00
$hookinfo = [ 'uid' => $uid, 'deleted' => $deleted, 'cats' => $cats, 'apps' => $r ];
call_hooks('app_list',$hookinfo);
$r = $hookinfo['apps'];
2016-05-23 02:26:21 +00:00
for($x = 0; $x < count($r); $x ++) {
if(! $r[$x]['app_system'])
$r[$x]['type'] = 'personal';
$r[$x]['term'] = q("select * from term where otype = %d and oid = %d",
intval(TERM_OBJ_APP),
intval($r[$x]['id'])
);
}
}
2016-05-23 02:26:21 +00:00
return($r);
}
2018-12-13 03:04:14 +00:00
static public function app_order($uid,$apps,$menu) {
if(! $apps)
return $apps;
2018-12-13 03:04:14 +00:00
$conf = (($menu === 'nav_featured_app') ? 'app_order' : 'app_pin_order');
$x = (($uid) ? get_pconfig($uid,'system',$conf) : get_config('system',$conf));
if(($x) && (! is_array($x))) {
$y = explode(',',$x);
$y = array_map('trim',$y);
$x = $y;
}
if(! (is_array($x) && ($x)))
return $apps;
$ret = [];
foreach($x as $xx) {
$y = self::find_app_in_array($xx,$apps);
if($y) {
$ret[] = $y;
}
}
foreach($apps as $ap) {
if(! self::find_app_in_array($ap['name'],$ret)) {
$ret[] = $ap;
}
}
return $ret;
}
static function find_app_in_array($name,$arr) {
if(! $arr)
return false;
foreach($arr as $x) {
if($x['name'] === $name) {
return $x;
}
}
return false;
}
2018-12-13 03:04:14 +00:00
static function moveup($uid,$guid,$menu) {
$syslist = array();
2018-12-13 03:04:14 +00:00
$conf = (($menu === 'nav_featured_app') ? 'app_order' : 'app_pin_order');
$list = self::app_list($uid, false, [ $menu ]);
if($list) {
foreach($list as $li) {
2018-12-13 03:04:14 +00:00
$papp = self::app_encode($li);
if($menu !== 'nav_pinned_app' && strpos($papp['categories'],'nav_pinned_app') !== false)
continue;
$syslist[] = $papp;
}
}
self::translate_system_apps($syslist);
usort($syslist,'self::app_name_compare');
2018-12-13 03:04:14 +00:00
$syslist = self::app_order($uid,$syslist,$menu);
if(! $syslist)
return;
$newlist = [];
foreach($syslist as $k => $li) {
if($li['guid'] === $guid) {
$position = $k;
break;
}
}
if(! $position)
return;
$dest_position = $position - 1;
$saved = $syslist[$dest_position];
$syslist[$dest_position] = $syslist[$position];
$syslist[$position] = $saved;
$narr = [];
foreach($syslist as $x) {
$narr[] = $x['name'];
}
2018-12-13 03:04:14 +00:00
set_pconfig($uid,'system',$conf,implode(',',$narr));
}
2018-12-13 03:04:14 +00:00
static function movedown($uid,$guid,$menu) {
$syslist = array();
2018-12-13 03:04:14 +00:00
$conf = (($menu === 'nav_featured_app') ? 'app_order' : 'app_pin_order');
$list = self::app_list($uid, false, [ $menu ]);
if($list) {
foreach($list as $li) {
2018-12-13 03:04:14 +00:00
$papp = self::app_encode($li);
if($menu !== 'nav_pinned_app' && strpos($papp['categories'],'nav_pinned_app') !== false)
continue;
$syslist[] = $papp;
}
}
self::translate_system_apps($syslist);
usort($syslist,'self::app_name_compare');
2018-12-13 03:04:14 +00:00
$syslist = self::app_order($uid,$syslist,$menu);
if(! $syslist)
return;
$newlist = [];
foreach($syslist as $k => $li) {
if($li['guid'] === $guid) {
$position = $k;
break;
}
}
if($position >= count($syslist) - 1)
return;
$dest_position = $position + 1;
$saved = $syslist[$dest_position];
$syslist[$dest_position] = $syslist[$position];
$syslist[$position] = $saved;
$narr = [];
foreach($syslist as $x) {
$narr[] = $x['name'];
}
2018-12-13 03:04:14 +00:00
set_pconfig($uid,'system',$conf,implode(',',$narr));
}
2016-05-23 02:26:21 +00:00
static public function app_decode($s) {
$x = base64_decode(str_replace(array('<br />',"\r","\n",' '),array('','','',''),$s));
return json_decode($x,true);
}
2018-07-27 20:59:27 +00:00
static public function app_macros($uid,&$arr) {
if(! intval($uid))
return;
$baseurl = z_root();
$channel = channelx_by_n($uid);
$address = (($channel) ? $channel['channel_address'] : '');
//future expansion
$observer = \App::get_observer();
$arr['url'] = str_replace(array('$baseurl','$nick'),array($baseurl,$address),$arr['url']);
$arr['photo'] = str_replace(array('$baseurl','$nick'),array($baseurl,$address),$arr['photo']);
}
2016-05-23 02:26:21 +00:00
static public function app_store($arr) {
2017-01-13 21:22:36 +00:00
//logger('app_store: ' . print_r($arr,true));
2016-05-23 02:26:21 +00:00
$darray = array();
$ret = array('success' => false);
2018-07-05 05:56:43 +00:00
$sys = get_sys_channel();
2018-07-27 20:59:27 +00:00
self::app_macros($arr['uid'],$arr);
2018-07-05 05:56:43 +00:00
2016-05-23 02:26:21 +00:00
$darray['app_url'] = ((x($arr,'url')) ? $arr['url'] : '');
$darray['app_channel'] = ((x($arr,'uid')) ? $arr['uid'] : 0);
2018-07-05 05:56:43 +00:00
if(! $darray['app_url'])
2016-05-23 02:26:21 +00:00
return $ret;
2018-07-05 05:56:43 +00:00
if((! $arr['uid']) && (! $arr['author'])) {
$arr['author'] = $sys['channel_hash'];
}
2018-10-05 03:29:41 +00:00
if($arr['photo'] && (strpos($arr['photo'],'icon:') === false) && (strpos($arr['photo'],z_root()) !== false)) {
$x = import_xchan_photo(str_replace('$baseurl',z_root(),$arr['photo']),get_observer_hash(),true);
2016-05-23 02:26:21 +00:00
$arr['photo'] = $x[1];
}
$darray['app_id'] = ((x($arr,'guid')) ? $arr['guid'] : random_string(). '.' . \App::get_hostname());
$darray['app_sig'] = ((x($arr,'sig')) ? $arr['sig'] : '');
$darray['app_author'] = ((x($arr,'author')) ? $arr['author'] : get_observer_hash());
$darray['app_name'] = ((x($arr,'name')) ? escape_tags($arr['name']) : t('Unknown'));
$darray['app_desc'] = ((x($arr,'desc')) ? escape_tags($arr['desc']) : '');
$darray['app_photo'] = ((x($arr,'photo')) ? $arr['photo'] : z_root() . '/' . get_default_profile_photo(80));
$darray['app_version'] = ((x($arr,'version')) ? escape_tags($arr['version']) : '');
$darray['app_addr'] = ((x($arr,'addr')) ? escape_tags($arr['addr']) : '');
$darray['app_price'] = ((x($arr,'price')) ? escape_tags($arr['price']) : '');
$darray['app_page'] = ((x($arr,'page')) ? escape_tags($arr['page']) : '');
$darray['app_plugin'] = ((x($arr,'plugin')) ? escape_tags(trim($arr['plugin'])) : '');
2016-05-23 02:26:21 +00:00
$darray['app_requires'] = ((x($arr,'requires')) ? escape_tags($arr['requires']) : '');
$darray['app_system'] = ((x($arr,'system')) ? intval($arr['system']) : 0);
$darray['app_deleted'] = ((x($arr,'deleted')) ? intval($arr['deleted']) : 0);
2018-08-03 05:49:30 +00:00
$darray['app_options'] = ((x($arr,'options')) ? intval($arr['options']) : 0);
2016-05-23 02:26:21 +00:00
$created = datetime_convert();
2018-08-03 05:49:30 +00:00
$r = q("insert into app ( app_id, app_sig, app_author, app_name, app_desc, app_url, app_photo, app_version, app_channel, app_addr, app_price, app_page, app_requires, app_created, app_edited, app_system, app_plugin, app_deleted, app_options ) values ( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, '%s', '%s', '%s', '%s', '%s', '%s', %d, '%s', %d, %d )",
2016-05-23 02:26:21 +00:00
dbesc($darray['app_id']),
dbesc($darray['app_sig']),
dbesc($darray['app_author']),
dbesc($darray['app_name']),
dbesc($darray['app_desc']),
dbesc($darray['app_url']),
dbesc($darray['app_photo']),
dbesc($darray['app_version']),
intval($darray['app_channel']),
dbesc($darray['app_addr']),
dbesc($darray['app_price']),
dbesc($darray['app_page']),
dbesc($darray['app_requires']),
dbesc($created),
dbesc($created),
intval($darray['app_system']),
dbesc($darray['app_plugin']),
2018-08-03 05:49:30 +00:00
intval($darray['app_deleted']),
intval($darray['app_options'])
2016-05-23 02:26:21 +00:00
);
2018-03-24 22:13:19 +00:00
2016-05-23 02:26:21 +00:00
if($r) {
$ret['success'] = true;
$ret['app_id'] = $darray['app_id'];
}
2018-07-06 05:27:44 +00:00
2016-05-23 02:26:21 +00:00
if($arr['categories']) {
$x = q("select id from app where app_id = '%s' and app_channel = %d limit 1",
dbesc($darray['app_id']),
intval($darray['app_channel'])
);
$y = explode(',',$arr['categories']);
if($y) {
foreach($y as $t) {
$t = trim($t);
if($t) {
store_item_tag($darray['app_channel'],$x[0]['id'],TERM_OBJ_APP,TERM_CATEGORY,escape_tags($t),escape_tags(z_root() . '/apps/?f=&cat=' . escape_tags($t)));
}
}
}
}
return $ret;
}
static public function app_update($arr) {
2017-01-13 21:22:36 +00:00
//logger('app_update: ' . print_r($arr,true));
2016-05-23 02:26:21 +00:00
$darray = array();
$ret = array('success' => false);
2018-07-27 20:59:27 +00:00
self::app_macros($arr['uid'],$arr);
2016-05-23 02:26:21 +00:00
$darray['app_url'] = ((x($arr,'url')) ? $arr['url'] : '');
$darray['app_channel'] = ((x($arr,'uid')) ? $arr['uid'] : 0);
$darray['app_id'] = ((x($arr,'guid')) ? $arr['guid'] : 0);
2018-07-27 20:59:27 +00:00
if((! $darray['app_url']) || (! $darray['app_id']))
2016-05-23 02:26:21 +00:00
return $ret;
2018-10-05 03:29:41 +00:00
if($arr['photo'] && (strpos($arr['photo'],'icon:') === false) && (strpos($arr['photo'],z_root()) !== false)) {
$x = import_xchan_photo(str_replace('$baseurl',z_root(),$arr['photo']),get_observer_hash(),true);
2016-05-23 02:26:21 +00:00
$arr['photo'] = $x[1];
}
$darray['app_sig'] = ((x($arr,'sig')) ? $arr['sig'] : '');
$darray['app_author'] = ((x($arr,'author')) ? $arr['author'] : get_observer_hash());
$darray['app_name'] = ((x($arr,'name')) ? escape_tags($arr['name']) : t('Unknown'));
$darray['app_desc'] = ((x($arr,'desc')) ? escape_tags($arr['desc']) : '');
$darray['app_photo'] = ((x($arr,'photo')) ? $arr['photo'] : z_root() . '/' . get_default_profile_photo(80));
$darray['app_version'] = ((x($arr,'version')) ? escape_tags($arr['version']) : '');
$darray['app_addr'] = ((x($arr,'addr')) ? escape_tags($arr['addr']) : '');
$darray['app_price'] = ((x($arr,'price')) ? escape_tags($arr['price']) : '');
$darray['app_page'] = ((x($arr,'page')) ? escape_tags($arr['page']) : '');
$darray['app_plugin'] = ((x($arr,'plugin')) ? escape_tags(trim($arr['plugin'])) : '');
2016-05-23 02:26:21 +00:00
$darray['app_requires'] = ((x($arr,'requires')) ? escape_tags($arr['requires']) : '');
$darray['app_system'] = ((x($arr,'system')) ? intval($arr['system']) : 0);
$darray['app_deleted'] = ((x($arr,'deleted')) ? intval($arr['deleted']) : 0);
2018-08-03 05:49:30 +00:00
$darray['app_options'] = ((x($arr,'options')) ? intval($arr['options']) : 0);
2016-05-23 02:26:21 +00:00
$edited = datetime_convert();
2018-08-03 05:49:30 +00:00
$r = q("update app set app_sig = '%s', app_author = '%s', app_name = '%s', app_desc = '%s', app_url = '%s', app_photo = '%s', app_version = '%s', app_addr = '%s', app_price = '%s', app_page = '%s', app_requires = '%s', app_edited = '%s', app_system = %d, app_plugin = '%s', app_deleted = %d, app_options = %d where app_id = '%s' and app_channel = %d",
2016-05-23 02:26:21 +00:00
dbesc($darray['app_sig']),
dbesc($darray['app_author']),
dbesc($darray['app_name']),
dbesc($darray['app_desc']),
dbesc($darray['app_url']),
dbesc($darray['app_photo']),
dbesc($darray['app_version']),
dbesc($darray['app_addr']),
dbesc($darray['app_price']),
dbesc($darray['app_page']),
dbesc($darray['app_requires']),
dbesc($edited),
intval($darray['app_system']),
dbesc($darray['app_plugin']),
2016-05-23 02:26:21 +00:00
intval($darray['app_deleted']),
2018-08-03 05:49:30 +00:00
intval($darray['app_options']),
2016-05-23 02:26:21 +00:00
dbesc($darray['app_id']),
intval($darray['app_channel'])
);
if($r) {
$ret['success'] = true;
$ret['app_id'] = $darray['app_id'];
}
$x = q("select id from app where app_id = '%s' and app_channel = %d limit 1",
dbesc($darray['app_id']),
intval($darray['app_channel'])
);
2018-07-06 05:27:44 +00:00
// if updating an embed app and we don't have a 0 channel_id don't mess with any existing categories
2018-07-06 05:27:44 +00:00
if(array_key_exists('embed',$arr) && intval($arr['embed']) && (intval($darray['app_channel'])))
return $ret;
2016-05-23 02:26:21 +00:00
if($x) {
q("delete from term where otype = %d and oid = %d",
intval(TERM_OBJ_APP),
intval($x[0]['id'])
);
if($arr['categories']) {
$y = explode(',',$arr['categories']);
if($y) {
foreach($y as $t) {
$t = trim($t);
if($t) {
store_item_tag($darray['app_channel'],$x[0]['id'],TERM_OBJ_APP,TERM_CATEGORY,escape_tags($t),escape_tags(z_root() . '/apps/?f=&cat=' . escape_tags($t)));
}
}
}
}
}
return $ret;
}
static public function app_encode($app,$embed = false) {
$ret = array();
$ret['type'] = 'personal';
if($app['app_id'])
$ret['guid'] = $app['app_id'];
if($app['app_sig'])
$ret['sig'] = $app['app_sig'];
if($app['app_author'])
$ret['author'] = $app['app_author'];
if($app['app_name'])
$ret['name'] = $app['app_name'];
if($app['app_desc'])
$ret['desc'] = $app['app_desc'];
if($app['app_url'])
$ret['url'] = $app['app_url'];
if($app['app_photo'])
$ret['photo'] = $app['app_photo'];
if($app['app_icon'])
$ret['icon'] = $app['app_icon'];
2016-05-23 02:26:21 +00:00
if($app['app_version'])
$ret['version'] = $app['app_version'];
if($app['app_addr'])
$ret['addr'] = $app['app_addr'];
if($app['app_price'])
$ret['price'] = $app['app_price'];
if($app['app_page'])
$ret['page'] = $app['app_page'];
if($app['app_requires'])
$ret['requires'] = $app['app_requires'];
if($app['app_system'])
$ret['system'] = $app['app_system'];
2018-08-03 05:49:30 +00:00
if($app['app_options'])
$ret['options'] = $app['app_options'];
if($app['app_plugin'])
$ret['plugin'] = trim($app['app_plugin']);
2016-05-23 02:26:21 +00:00
if($app['app_deleted'])
$ret['deleted'] = $app['app_deleted'];
if($app['term']) {
$s = '';
foreach($app['term'] as $t) {
if($s)
$s .= ',';
$s .= $t['term'];
}
$ret['categories'] = $s;
}
if(! $embed)
return $ret;
$ret['embed'] = true;
2016-05-23 02:26:21 +00:00
if(array_key_exists('categories',$ret))
unset($ret['categories']);
$j = json_encode($ret);
return '[app]' . chunk_split(base64_encode($j),72,"\n") . '[/app]';
}
static public function papp_encode($papp) {
return chunk_split(base64_encode(json_encode($papp)),72,"\n");
}
}