aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Menu.php
blob: 4f79b66d15bbfcd0c149ebdb2d8499dff883afba (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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
<?php
namespace Zotlabs\Module;

require_once('include/menu.php');
require_once('include/channel.php');


class Menu extends \Zotlabs\Web\Controller {


	function init() {

		if(argc() > 1 && argv(1) === 'sys' && is_site_admin()) {
			$sys = get_sys_channel();
			if($sys && intval($sys['channel_id'])) {
				\App::$is_sys = true;
			}
		}

		if(argc() > 1)
			$which = argv(1);
		else
			return;

		profile_load($which);

	}


	function post() {

		if(! \App::$profile) {
			return;
		}

		$which = argv(1);


		$uid = \App::$profile['channel_id'];

		if(array_key_exists('sys', $_REQUEST) && $_REQUEST['sys'] && is_site_admin()) {
			$sys = get_sys_channel();
			$uid = intval($sys['channel_id']);
			\App::$is_sys = true;
		}

		if(! $uid)
			return;

		$_REQUEST['menu_channel_id'] = $uid;

		if($_REQUEST['menu_bookmark'])
			$_REQUEST['menu_flags'] |= MENU_BOOKMARK;
		if($_REQUEST['menu_system'])
			$_REQUEST['menu_flags'] |= MENU_SYSTEM;

		$menu_id = ((argc() > 2) ? intval(argv(2)) : 0);

		if($menu_id) {
			$_REQUEST['menu_id'] = $menu_id;
			$r = menu_edit($_REQUEST);
			if($r) {
				menu_sync_packet($uid,get_observer_hash(),$menu_id);
				//info( t('Menu updated.') . EOL);
				goaway(z_root() . '/mitem/' . $which . '/' . $menu_id . ((\App::$is_sys) ? '?f=&sys=1' : ''));
			}
			else
				notice( t('Unable to update menu.'). EOL);
		}
		else {
			$r = menu_create($_REQUEST);
			if($r) {
				menu_sync_packet($uid,get_observer_hash(),$r);

				//info( t('Menu created.') . EOL);
				goaway(z_root() . '/mitem/' . $which . '/' . $r . ((\App::$is_sys) ? '?f=&sys=1' : ''));
			}
			else
				notice( t('Unable to create menu.'). EOL);

		}
	}




	function get() {



		if(! \App::$profile) {
			notice( t('Requested profile is not available.') . EOL );
			\App::$error = 404;
			return;
		}

		$which = argv(1);

		$_SESSION['return_url'] = \App::$query_string;

		$uid = local_channel();
		$owner = 0;
		$channel = null;
		$sys = [];
		$observer = \App::get_observer();
		$channel = \App::get_channel();

		if(\App::$is_sys && is_site_admin()) {
			$sys = get_sys_channel();
			if($sys && intval($sys['channel_id'])) {
				$uid = $owner = intval($sys['channel_id']);
				$channel = $sys;
				$observer = $sys;
			}
		}

		if(! $owner) {
			// Figure out who the page owner is.
			$r = channelx_by_nick($which);
			if($r) {
				$owner = intval($r['channel_id']);
			}
		}

		$ob_hash = (($observer) ? $observer['xchan_hash'] : '');

		$perms = get_all_perms($owner,$ob_hash);

		if(! $perms['write_pages']) {
			notice( t('Permission denied.') . EOL);
			return;
		}

		// Get the observer, check their permissions

		$ob_hash = (($observer) ? $observer['xchan_hash'] : '');

		$perms = get_all_perms($owner,$ob_hash);

		if(! $perms['write_pages']) {
			notice( t('Permission denied.') . EOL);
			return;
		}

		if(argc() == 2) {

			$channel = (($sys) ? $sys : channelx_by_n($owner));

			// list menus
			$x = menu_list($owner);
			if($x) {
				for($y = 0; $y < count($x); $y ++) {
					$m = menu_fetch($x[$y]['menu_name'],$owner,get_observer_hash());
					if($m)
						$x[$y]['element'] = '[element]' . base64url_encode(json_encode(menu_element($channel,$m))) . '[/element]';
					$x[$y]['bookmark'] = (($x[$y]['menu_flags'] & MENU_BOOKMARK) ? true : false);
				}
			}

			$create = replace_macros(get_markup_template('menuedit.tpl'), array(
				'$menu_name' => array('menu_name', t('Menu Name'), '', t('Unique name (not visible on webpage) - required'), '*'),
				'$menu_desc' => array('menu_desc', t('Menu Title'), '', t('Visible on webpage - leave empty for no title'), ''),
				'$menu_bookmark' => array('menu_bookmark', t('Allow Bookmarks'), 0 , t('Menu may be used to store saved bookmarks'), array(t('No'), t('Yes'))),
				'$submit' => t('Submit and proceed'),
				'$sys' => \App::$is_sys,
				'$nick' => $which,
				'$display' => 'none'
			));

			$o = replace_macros(get_markup_template('menulist.tpl'),array(
				'$title' => t('Menus'),
				'$create' => $create,
				'$menus' => $x,
				'$nametitle' => t('Menu Name'),
				'$desctitle' => t('Menu Title'),
				'$edit' => t('Edit'),
				'$drop' => t('Drop'),
				'$created' => t('Created'),
				'$edited' => t('Edited'),
				'$new' => t('New'),
				'$bmark' => t('Bookmarks allowed'),
				'$hintnew' => t('Create'),
				'$hintdrop' => t('Delete this menu'),
				'$hintcontent' => t('Edit menu contents'),
				'$hintedit' => t('Edit this menu'),
				'$nick' => $which,
				'$sys' => \App::$is_sys
			));

			return $o;

		}

		if(argc() > 2) {
			if(intval(argv(2))) {

				if(argc() == 4 && argv(3) == 'drop') {
					menu_sync_packet($owner,get_observer_hash(),intval(argv(1)),true);
					$r = menu_delete_id(intval(argv(2)),$owner);
					if(!$r)
						notice( t('Menu could not be deleted.'). EOL);

					goaway(z_root() . '/menu/' . $which . ((\App::$is_sys) ? '?f=&sys=1' : ''));
				}

				$m = menu_fetch_id(intval(argv(2)),$owner);

				if(! $m) {
					notice( t('Menu not found.') . EOL);
					return '';
				}

				$o = replace_macros(get_markup_template('menuedit.tpl'), array(
					'$header' => t('Edit Menu'),
					'$sys' => \App::$is_sys,
					'$menu_id' => intval(argv(2)),
					'$menu_edit_link' => 'mitem/' . $which . '/' . intval(argv(2)) . ((\App::$is_sys) ? '?f=&sys=1' : ''),
					'$hintedit' => t('Add or remove entries to this menu'),
					'$editcontents' => t('Edit menu contents'),
					'$menu_name' => array('menu_name', t('Menu name'), $m['menu_name'], t('Must be unique, only seen by you'), '*'),
					'$menu_desc' => array('menu_desc', t('Menu title'), $m['menu_desc'], t('Menu title as seen by others'), ''),
					'$menu_bookmark' => array('menu_bookmark', t('Allow bookmarks'), (($m['menu_flags'] & MENU_BOOKMARK) ? 1 : 0), t('Menu may be used to store saved bookmarks'), array(t('No'), t('Yes'))),
					'$menu_system' => (($m['menu_flags'] & MENU_SYSTEM) ? 1 : 0),
					'$nick' => $which,
					'$submit' => t('Submit and proceed')
				));

				return $o;

			}
			else {
				notice( t('Not found.') . EOL);
				return;
			}
		}

	}

}