aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Appman.php
blob: 5c06673573d13106345380011fde6983b20d16c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php /** @file */

namespace Zotlabs\Module; 

//require_once('include/apps.php');

use \Zotlabs\Lib as Zlib;

class Appman extends \Zotlabs\Web\Controller {

	function post() {
	
		if(! local_channel())
			return;
	
		if($_POST['url']) {
			$arr = array(
				'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']),
				'requires' => escape_tags($_REQUEST['requires']),
				'system' => intval($_REQUEST['system']),
				'plugin' => escape_tags($_REQUEST['plugin']),
				'sig' => escape_tags($_REQUEST['sig']),
				'categories' => escape_tags($_REQUEST['categories'])
			);
	
			$_REQUEST['appid'] = Zlib\Apps::app_install(local_channel(),$arr);
	
			if(Zlib\Apps::app_installed(local_channel(),$arr))
				info( t('App installed.') . EOL);

			goaway(z_root() . '/apps');
			return; //not reached
		}
	
	
		$papp = Zlib\Apps::app_decode($_POST['papp']);
	
		if(! is_array($papp)) {
			notice( t('Malformed app.') . EOL);
			return;
		}
	
		if($_POST['install']) {
			Zlib\Apps::app_install(local_channel(),$papp);
			if(Zlib\Apps::app_installed(local_channel(),$papp))
				info( t('App installed.') . EOL);
		}
	
		if($_POST['delete']) {
			Zlib\Apps::app_destroy(local_channel(),$papp);
		}

		if($_POST['edit']) {
			return;
		}

		if($_POST['feature']) {
			Zlib\Apps::app_feature(local_channel(),$papp);
		}

		if($_SESSION['return_url']) 
			goaway(z_root() . '/' . $_SESSION['return_url']);

		goaway(z_root() . '/apps');
	
	
	}
	
	
	function get() {
	
		if(! local_channel()) {
			notice( t('Permission denied.') . EOL);
			return;
		}

		$channel = \App::get_channel();

		if(argc() > 2) {
			if(argv(2) === 'moveup') {
				Zlib\Apps::moveup(local_channel(),argv(1));
			}
			if(argv(2) === 'movedown') {
				Zlib\Apps::movedown(local_channel(),argv(1));
			}
			goaway(z_root() . '/apporder');
		}




		$app = null;
		$embed = null;
		if($_REQUEST['appid']) {
			$r = q("select * from app where app_id = '%s' and app_channel = %d limit 1",
				dbesc($_REQUEST['appid']),
				dbesc(local_channel())
			);
			if($r) {
				$app = $r[0];

				$term = q("select * from term where otype = %d and oid = %d",
					intval(TERM_OBJ_APP),
					intval($r[0]['id'])
				);
				if($term) {
					$app['categories'] = '';
					foreach($term as $t) {
						if($app['categories'])
							$app['categories'] .= ',';
						$app['categories'] .= $t['term'];
					}
				}
			}

			$embed = array('embed', t('Embed code'), Zlib\Apps::app_encode($app,true),'', 'onclick="this.select();"');
	
		}
				
		return replace_macros(get_markup_template('app_create.tpl'), array(
	
			'$banner' => (($app) ? t('Edit App') : t('Create App')),
			'$app' => $app,
			'$guid' => (($app) ? $app['app_id'] : ''),
			'$author' => (($app) ? $app['app_author'] : $channel['channel_hash']),
			'$addr' => (($app) ? $app['app_addr'] : $channel['xchan_addr']),
			'$name' => array('name', t('Name of app'),(($app) ? $app['app_name'] : ''), t('Required')),
			'$url' => array('url', t('Location (URL) of app'),(($app) ? $app['app_url'] : ''), t('Required')),
	 		'$desc' => array('desc', t('Description'),(($app) ? $app['app_desc'] : ''), ''),
			'$photo' => array('photo', t('Photo icon URL'),(($app) ? $app['app_photo'] : ''), t('80 x 80 pixels - optional')),
			'$categories' => array('categories',t('Categories (optional, comma separated list)'),(($app) ? $app['categories'] : ''),''),
			'$version' => array('version', t('Version ID'),(($app) ? $app['app_version'] : ''), ''),
			'$price' => array('price', t('Price of app'),(($app) ? $app['app_price'] : ''), ''),
			'$page' => array('page', t('Location (URL) to purchase app'),(($app) ? $app['app_page'] : ''), ''),
			'$system' => (($app) ? intval($app['app_system']) : 0),
			'$plugin' => (($app) ? $app['app_plugin'] : ''),
			'$requires' => (($app) ? $app['app_requires'] : ''),
			'$embed' => $embed,
			'$submit' => t('Submit')
		));
	
	}
	
}