aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Dircensor.php
blob: 0fa65e9486ad03e35b707ad2076a906716dc13d8 (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
<?php

namespace Zotlabs\Module;

use App;
use Zotlabs\Web\Controller;


class Dircensor extends Controller {

	function get() {
		if(! is_site_admin()) {
			return;
		}

		$dirmode = intval(get_config('system','directory_mode'));

		if (! ($dirmode == DIRECTORY_MODE_PRIMARY || $dirmode == DIRECTORY_MODE_STANDALONE)) {
			return;
		}

		$xchan = argv(1);
		if(! $xchan) {
			return;
		}

		$r = q("select * from xchan where xchan_hash = '%s'",
			dbesc($xchan)
		);

		if(! $r) {
			return;
		}

		$val = (($r[0]['xchan_censored']) ? 0 : 1);

		q("update xchan set xchan_censored = $val where xchan_hash = '%s'",
			dbesc($xchan)
		);

		if($val) {
			info( t('Entry censored') . EOL);
		}
		else {
			info( t('Entry uncensored') . EOL);
		}
		
		goaway(z_root() . '/directory');

	}

}