aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Viewsrc.php
blob: b73d81283926eda5603002ecc36493e4ff79bec8 (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
<?php
namespace Zotlabs\Module;



class Viewsrc extends \Zotlabs\Web\Controller {

	function get() {
	
		$o = '';
	
		$sys = get_sys_channel();
	
		$item_id = ((argc() > 1) ? intval(argv(1)) : 0);
		$json    = ((argc() > 2 && argv(2) === 'json') ? true : false);
		$dload   = ((argc() > 2 && argv(2) === 'download') ? true : false);
	
		if(! local_channel()) {
			notice( t('Permission denied.') . EOL);
		}
	
	
		if(! $item_id) {
			\App::$error = 404;
			notice( t('Item not found.') . EOL);
		}
	
		$item_normal = item_normal();
	
		if(local_channel() && $item_id) {
			$r = q("select id, mid, item_flags, mimetype, item_obscured, body, llink, plink from item where uid in (%d , %d) and id = %d $item_normal limit 1",
				intval(local_channel()),
				intval($sys['channel_id']),
				intval($item_id)
			);
	
			if($r) {
				if(intval($r[0]['item_obscured']))
					$dload = true;

				if($dload) {
					header('Content-type: ' . $r[0]['mimetype']);
					header('Content-disposition: attachment; filename="' . t('item') . '-' . $item_id . '"' );
					echo $r[0]['body'];
					killme();
				}


				$content = escape_tags($r[0]['body']);
				$o = (($json) ? json_encode($content) : $content);
			}
		}
	
		if(is_ajax()) {
			echo '<div class="p-1">';
			echo '<div>id: ' . $r[0]['id'] . ' | <a href="' . $r[0]['plink'] . '" target="_blank">plink</a> | <a href="' . $r[0]['llink'] . '" target="_blank">llink</a><br>mid: ' . $r[0]['mid'] . '</div>';
			echo '<hr>';
			echo '<pre class="p-1">' . $o . '</pre>';
			echo '</div>';
			killme();
		} 
	
		return $o;
	}
	
	
}