aboutsummaryrefslogtreecommitdiffstats
path: root/include/features.php
blob: d527f60e65cd5a763d131816e8734457b35952a0 (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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
<?php /** @file */

/*
 * Features management
 */

use Zotlabs\Lib\Config;

function feature_enabled($uid,$feature) {

	$x = Config::Get('feature_lock',$feature);
	if($x === false) {
		$x = get_pconfig($uid,'feature',$feature);
		if($x === false) {
			$x = Config::Get('feature',$feature);
			if($x === false)
				$x = get_feature_default($feature);
		}
	}
	$arr = array('uid' => $uid, 'feature' => $feature, 'enabled' => $x);
	call_hooks('feature_enabled',$arr);
	return($arr['enabled']);
}

function get_feature_default($feature) {
	$f = get_features(false);
	foreach($f as $cat) {
		foreach($cat as $feat) {
			if(is_array($feat) && $feat[0] === $feature) {
				return $feat[3];
			}
		}
	}
	return false;
}


function feature_level($feature,$def) {
	$x = Config::Get('feature_level',$feature);
	if($x !== false)
		return intval($x);
	return $def;
}

function process_module_features_get($uid, $features) {
	unset($features[0]);
	foreach($features as $f) {
		$arr[] = [
			'feature_' . $f[0],
			$f[1],
			((intval(feature_enabled($uid, $f[0]))) ? "1" : ''),
			$f[2],
			[t('Off'),t('On')],
			(($f[4] === false) ? '' : 'disabled'),
			$f[5]
		];
	}
	return $arr;
}

function process_module_features_post($uid, $features, $post_arr) {
	unset($features[0]);
	foreach($features as $f) {
		$k = $f[0];
		if(array_key_exists("feature_$k",$post_arr))
			set_pconfig($uid,'feature',$k, (string) $post_arr["feature_$k"]);
		else
			set_pconfig($uid,'feature', $k, '');
	}
}

function get_features($filtered = true, $level = (-1)) {

	$account = \App::get_account();

	$arr = [

		'calendar' => [

			t('Calendar'),

			[
				'cal_first_day',
				t('Start calendar week on Monday'),
				t('Default is Sunday'),
				false,
				Config::Get('feature_lock','cal_first_day')
			],

			[
				'event_tz_select',
				t('Event Timezone Selection'),
				t('Allow event creation in timezones other than your own.'),
				false,
				Config::Get('feature_lock','event_tz_select'),
			]

		],

		'channel_home' => [

			t('Channel Home'),

			[
				'archives',
				t('Search by Date'),
				t('Ability to select posts by date ranges'),
				false,
				Config::Get('feature_lock','archives')
			],

			[
				'tagadelic',
				t('Tag Cloud'),
				t('Provide a personal tag cloud on your channel page'),
				false,
				Config::Get('feature_lock','tagadelic'),
			],

			[
				'channel_list_mode',
				t('Use blog/list mode'),
				t('Comments will be displayed separately'),
				false,
				Config::Get('feature_lock','channel_list_mode'),
			]
		],

		'connections' => [

			t('Connections'),

			[
				'connfilter',
				t('Connection Filtering'),
				t('Filter incoming posts from connections based on keywords/content'),
				false,
				Config::Get('feature_lock','connfilter')
			]
		],

		'conversation' => [

			t('Conversation'),
			/* disable until we agree on how to implemnt this in zot6/activitypub
			[
				'commtag',
				t('Community Tagging'),
				t('Ability to tag existing posts'),
				false,
				Config::Get('feature_lock','commtag'),
			],
			*/
			[
				'emojis',
				t('Emoji Reactions'),
				t('Add emoji reaction ability to posts'),
				true,
				Config::Get('feature_lock','emojis'),
			],

			[
				'dislike',
				t('Dislike Posts'),
				t('Ability to dislike posts/comments'),
				false,
				Config::Get('feature_lock','dislike'),
			],

			[
				'star_posts',
				t('Star Posts'),
				t('Ability to mark special posts with a star indicator'),
				false,
				Config::Get('feature_lock','star_posts'),
			],

			[
				'reply_to',
				t('Reply on comment'),
				t('Ability to reply on selected comment'),
				false,
				Config::Get('feature_lock','reply_to'),
			]

		],

		'directory' => [

			t('Directory'),

			[
				'advanced_dirsearch',
				t('Advanced Directory Search'),
				t('Allows creation of complex directory search queries'),
				false,
				Config::Get('feature_lock','advanced_dirsearch'),
			]

		],

		'editor' => [

			t('Editor'),

			[
				'categories',
				t('Post Categories'),
				t('Add categories to your posts'),
				false,
				Config::Get('feature_lock','categories'),
			],

			[
				'large_photos',
				t('Large Photos'),
				t('Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails'),
				false,
				Config::Get('feature_lock','large_photos'),
			],

			[
				'content_encrypt',
				t('Even More Encryption'),
				t('Allow optional encryption of content end-to-end with a shared secret key'),
				false,
				Config::Get('feature_lock','content_encrypt'),
			],

			[
				'disable_comments',
				t('Disable Comments'),
				t('Provide the option to disable comments for a post'),
				false,
				Config::Get('feature_lock','disable_comments'),
			],

			[
				'delayed_posting',
				t('Delayed Posting'),
				t('Allow posts to be published at a later date'),
				false,
				Config::Get('feature_lock','delayed_posting'),
			],

			[
				'content_expire',
				t('Content Expiration'),
				t('Remove posts/comments and/or private messages at a future time'),
				false,
				Config::Get('feature_lock','content_expire'),
			],

			[
				'suppress_duplicates',
				t('Suppress Duplicate Posts/Comments'),
				t('Prevent posts with identical content to be published with less than two minutes in between submissions.'),
				true,
				Config::Get('feature_lock','suppress_duplicates'),
			],

			[
				'auto_save_draft',
				t('Auto-save drafts of posts and comments'),
				t('Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions'),
				true,
				Config::Get('feature_lock','auto_save_draft'),
			]

		],

		'manage' => [

			t('Manage'),

			[
				'nav_channel_select',
				t('Navigation Channel Select'),
				t('Change channels directly from within the navigation dropdown menu'),
				false,
				Config::Get('feature_lock','nav_channel_select'),
			]

		],

		'network' => [

			t('Network'),

			[
				'events_tab',
				t('Events Filter'),
				t('Ability to display only events'),
				false,
				Config::Get('feature_lock','events_tab')
			],

			[
				'polls_tab',
				t('Polls Filter'),
				t('Ability to display only polls'),
				false,
				Config::Get('feature_lock','polls_tab')
			],

			[
				'savedsearch',
				t('Saved Searches'),
				t('Save search terms for re-use'),
				false,
				Config::Get('feature_lock','savedsearch')
			],

			[
				'filing',
				t('Saved Folders'),
				t('Ability to file posts under folders'),
				false,
				Config::Get('feature_lock','filing'),
			],

			[
				'order_tab',
				t('Alternate Stream Order'),
				t('Ability to order the stream by last post date, last comment date or unthreaded activities'),
				false,
				Config::Get('feature_lock','order_tab')
			],

			[
				'name_tab',
				t('Contact Filter'),
				t('Ability to display only posts of a selected contact'),
				false,
				Config::Get('feature_lock','name_tab')
			],

			[
				'forums_tab',
				t('Forum Filter'),
				t('Ability to display only posts of a specific forum'),
				false,
				Config::Get('feature_lock','forums_tab')
			],

			[
				'personal_tab',
				t('Personal Posts Filter'),
				t('Ability to display only posts that you\'ve interacted on'),
				false,
				Config::Get('feature_lock','personal_tab')
			],

			[
				'network_list_mode',
				t('Use blog/list mode'),
				t('Comments will be displayed separately'),
				false,
				Config::Get('feature_lock','network_list_mode'),
			]

		],

		'photos' => [

			t('Photos'),

			[
				'photo_location',
				t('Photo Location'),
				t('If location data is available on uploaded photos, link this to a map.'),
				false,
				Config::Get('feature_lock','photo_location'),
			],

			[
				'adult_photo_flagging',
				t('Flag Adult Photos'),
				t('Provide photo edit option to hide inappropriate photos from default album view'),
				false,
				Config::Get('feature_lock','adult_photo_flagging'),
			]

		],

		'profiles' => [

			t('Profiles'),

			[
				'advanced_profiles',
				t('Advanced Profiles'),
				t('Additional profile sections and selections'),
				false,
				Config::Get('feature_lock','advanced_profiles')
			],

			[
				'profile_export',
				t('Profile Import/Export'),
				t('Save and load profile details across sites/channels'),
				false,
				Config::Get('feature_lock','profile_export')
			],

			[
				'multi_profiles',
				t('Multiple Profiles'),
				t('Ability to create multiple profiles'),
				false,
				Config::Get('feature_lock','multi_profiles')
			]

		]


	];

	$x = [ 'features' => $arr, ];
	call_hooks('get_features',$x);

	$arr = $x['features'];

	// removed any locked features and remove the entire category if this makes it empty

	if($filtered) {
		$narr = [];
		foreach($arr as $k => $x) {
			$narr[$k] = [ $arr[$k][0] ];
			$has_items = false;
			for($y = 0; $y < count($arr[$k]); $y ++) {
				$disabled = false;
				if(is_array($arr[$k][$y])) {
					if($arr[$k][$y][4] !== false) {
						$disabled = true;
					}
					if(! $disabled) {
						$has_items = true;
						$narr[$k][$y] = $arr[$k][$y];
					}
				}
			}
			if(! $has_items) {
				unset($narr[$k]);
			}
		}
	}
	else {
		$narr = $arr;
	}

	return $narr;
}

function get_module_features($module) {
	$features = get_features(false);
	return $features[$module];
}