streams/Zotlabs/Module/Appman.php

150 lines
4.5 KiB
PHP
Raw Normal View History

2019-06-17 06:05:15 +00:00
<?php
2016-05-05 00:35:27 +00:00
namespace Zotlabs\Module;
2016-04-19 03:38:38 +00:00
2019-06-17 06:05:15 +00:00
use App;
use Zotlabs\Web\Controller;
use Zotlabs\Lib\Apps;
2016-04-19 03:38:38 +00:00
2019-06-17 06:05:15 +00:00
class Appman extends Controller {
2016-04-19 03:38:38 +00:00
function post() {
2019-06-17 06:05:15 +00:00
if (! local_channel()) {
2016-04-19 03:38:38 +00:00
return;
2019-06-17 06:05:15 +00:00
}
2016-04-19 03:38:38 +00:00
2019-06-17 06:05:15 +00:00
if ($_POST['url']) {
$arr = [
'uid' => intval($_REQUEST['uid']),
'url' => escape_tags($_REQUEST['url']),
'guid' => escape_tags($_REQUEST['guid']),
'author' => escape_tags($_REQUEST['author']),
'addr' => escape_tags($_REQUEST['addr']),
'name' => escape_tags($_REQUEST['name']),
'desc' => escape_tags($_REQUEST['desc']),
'photo' => escape_tags($_REQUEST['photo']),
'version' => escape_tags($_REQUEST['version']),
'price' => escape_tags($_REQUEST['price']),
'page' => escape_tags($_REQUEST['sellpage']), // do not use 'page' as a request variable here as it conflicts with pagination
'requires' => escape_tags($_REQUEST['requires']),
'system' => intval($_REQUEST['system']),
'plugin' => escape_tags($_REQUEST['plugin']),
'sig' => escape_tags($_REQUEST['sig']),
2016-05-05 00:35:27 +00:00
'categories' => escape_tags($_REQUEST['categories'])
2019-06-17 06:05:15 +00:00
];
2016-04-19 03:38:38 +00:00
2019-06-17 06:05:15 +00:00
$_REQUEST['appid'] = Apps::app_install(local_channel(),$arr);
2016-04-19 03:38:38 +00:00
2019-06-17 06:05:15 +00:00
if (Apps::app_installed(local_channel(),$arr)) {
2016-04-19 03:38:38 +00:00
info( t('App installed.') . EOL);
2019-06-17 06:05:15 +00:00
}
2017-02-22 10:22:43 +00:00
goaway(z_root() . '/apps');
2016-04-19 03:38:38 +00:00
}
2019-06-17 06:05:15 +00:00
$papp = Apps::app_decode($_POST['papp']);
2016-04-19 03:38:38 +00:00
2019-06-17 06:05:15 +00:00
if (! is_array($papp)) {
2016-04-19 03:38:38 +00:00
notice( t('Malformed app.') . EOL);
return;
}
2019-06-17 06:05:15 +00:00
if ($_POST['install']) {
Apps::app_install(local_channel(),$papp);
if (Apps::app_installed(local_channel(),$papp))
2016-04-19 03:38:38 +00:00
info( t('App installed.') . EOL);
}
2019-06-17 06:05:15 +00:00
if ($_POST['delete']) {
Apps::app_destroy(local_channel(),$papp);
2016-04-19 03:38:38 +00:00
}
2019-06-17 06:05:15 +00:00
if ($_POST['edit']) {
2016-04-19 03:38:38 +00:00
return;
}
2017-01-13 21:22:36 +00:00
2019-06-17 06:05:15 +00:00
if ($_POST['feature']) {
Apps::app_feature(local_channel(), $papp, $_POST['feature']);
}
2019-06-17 06:05:15 +00:00
if ($_POST['pin']) {
Apps::app_feature(local_channel(), $papp, $_POST['pin']);
2017-01-30 14:17:46 +00:00
}
2019-06-17 06:05:15 +00:00
if ($_SESSION['return_url']) {
2016-04-19 03:38:38 +00:00
goaway(z_root() . '/' . $_SESSION['return_url']);
2019-06-17 06:05:15 +00:00
}
2016-04-19 03:38:38 +00:00
goaway(z_root() . '/apps');
}
function get() {
2016-04-19 03:38:38 +00:00
2019-06-17 06:05:15 +00:00
if (! local_channel()) {
2016-04-19 03:38:38 +00:00
notice( t('Permission denied.') . EOL);
return;
}
2017-01-13 21:22:36 +00:00
2019-06-17 06:05:15 +00:00
$channel = App::get_channel();
2019-06-17 06:05:15 +00:00
if (argc() > 3) {
if(argv(2) === 'moveup') {
2019-06-17 06:05:15 +00:00
Apps::moveup(local_channel(),argv(1),argv(3));
}
if(argv(2) === 'movedown') {
2019-06-17 06:05:15 +00:00
Apps::movedown(local_channel(),argv(1),argv(3));
}
goaway(z_root() . '/apporder');
}
2016-04-19 03:38:38 +00:00
$app = null;
$embed = null;
2019-06-17 06:05:15 +00:00
if ($_REQUEST['appid']) {
2016-04-19 03:38:38 +00:00
$r = q("select * from app where app_id = '%s' and app_channel = %d limit 1",
dbesc($_REQUEST['appid']),
dbesc(local_channel())
);
2019-06-17 06:05:15 +00:00
if ($r) {
2016-04-19 03:38:38 +00:00
$app = $r[0];
2016-05-05 00:35:27 +00:00
2018-10-05 03:29:41 +00:00
$term = q("select * from term where otype = %d and oid = %d and uid = %d",
2016-05-05 00:35:27 +00:00
intval(TERM_OBJ_APP),
2018-10-05 03:29:41 +00:00
intval($r[0]['id']),
intval(local_channel())
2016-05-05 00:35:27 +00:00
);
2019-06-17 06:05:15 +00:00
if ($term) {
$app['categories'] = array_elm_to_str($term,'term');
2016-05-05 00:35:27 +00:00
}
}
2019-06-17 06:05:15 +00:00
$embed = [ 'embed', t('Embed code'), Apps::app_encode($app,true), EMPTY_STR, 'onclick="this.select();"' ];
2016-04-19 03:38:38 +00:00
}
2019-06-17 06:05:15 +00:00
return replace_macros(get_markup_template('app_create.tpl'), [
'$banner' => (($app) ? t('Edit App') : t('Create App')),
'$app' => $app,
'$guid' => (($app) ? $app['app_id'] : EMPTY_STR),
'$author' => (($app) ? $app['app_author'] : $channel['channel_hash']),
'$addr' => (($app) ? $app['app_addr'] : $channel['xchan_addr']),
'$name' => [ 'name', t('Name of app'),(($app) ? $app['app_name'] : EMPTY_STR), t('Required') ],
'$url' => [ 'url', t('Location (URL) of app'),(($app) ? $app['app_url'] : EMPTY_STR), t('Required') ],
'$desc' => [ 'desc', t('Description'),(($app) ? $app['app_desc'] : EMPTY_STR), EMPTY_STR],
'$photo' => [ 'photo', t('Photo icon URL'),(($app) ? $app['app_photo'] : EMPTY_STR), t('80 x 80 pixels - optional') ],
'$categories' => [ 'categories',t('Categories (optional, comma separated list)'),(($app) ? $app['categories'] : EMPTY_STR), EMPTY_STR ],
'$version' => [ 'version', t('Version ID'),(($app) ? $app['app_version'] : EMPTY_STR), EMPTY_STR ],
'$price' => [ 'price', t('Price of app'),(($app) ? $app['app_price'] : EMPTY_STR), EMPTY_STR ],
'$page' => [ 'sellpage', t('Location (URL) to purchase app'),(($app) ? $app['app_page'] : EMPTY_STR), EMPTY_STR ],
'$system' => (($app) ? intval($app['app_system']) : 0),
'$plugin' => (($app) ? $app['app_plugin'] : EMPTY_STR),
'$requires' => (($app) ? $app['app_requires'] : EMPTY_STR),
'$embed' => $embed,
'$submit' => t('Submit')
]);
2016-04-19 03:38:38 +00:00
}
}