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


class Bookmarks extends \Zotlabs\Web\Controller {

	function init() {
		if(! local_channel())
			return;

		nav_set_selected(t('View Bookmarks'));

		$item_id = intval($_REQUEST['item']);
		$burl = trim($_REQUEST['burl']);
	
		if(! $item_id)
			return;
	
		$u = \App::get_channel();
	
		$item_normal = item_normal();
	
		$i = q("select * from item where id = %d and uid = %d $item_normal limit 1",
			intval($item_id),
			intval(local_channel())
		);
	
		if(! $i)
			return;
	
		$i = fetch_post_tags($i);
	
		$item = $i[0];
	
		$terms = get_terms_oftype($item['term'],TERM_BOOKMARK);
	
		if($terms) {
			require_once('include/bookmarks.php');
	
			$s = q("select * from xchan where xchan_hash = '%s' limit 1",
				dbesc($item['author_xchan'])
			);
			if(! $s) {
				logger('mod_bookmarks: author lookup failed.');
				killme();
			}
			foreach($terms as $t) {
				if($burl) {
					if($burl == $t['url']) {
						bookmark_add($u,$s[0],$t,$item['item_private']);
					}
				}
				else
					bookmark_add($u,$s[0],$t,$item['item_private']);
	
				info( t('Bookmark added') . EOL);
			}
		}
		killme();
	}
	
		function get() {
		if(! local_channel()) {
			notice( t('Permission denied.') . EOL);
			return;
		}
	
	
		require_once('include/menu.php');
		require_once('include/conversation.php');
	
		$channel = \App::get_channel();
	
		//$o = profile_tabs($a,true,$channel['channel_address']);
		$o = '';
	
		$o .= '<div class="generic-content-wrapper-styled">';
	
		$o .= '<h3>' . t('My Bookmarks') . '</h3>';
	
		$x = menu_list(local_channel(),'',MENU_BOOKMARK);
	
		if($x) {
			foreach($x as $xx) {
				$y = menu_fetch($xx['menu_name'],local_channel(),get_observer_hash());
				$o .= menu_render($y,'',true);
			}
		}
	
		$o .= '<h3>' . t('My Connections Bookmarks') . '</h3>';
	
	
		$x = menu_list(local_channel(),'',MENU_SYSTEM|MENU_BOOKMARK);
	
		if($x) {
			foreach($x as $xx) {
				$y = menu_fetch($xx['menu_name'],local_channel(),get_observer_hash());
				$o .= menu_render($y,'',true);
			}
		}
	
		$o .= '</div>';
	
		return $o;
	
	}
	
	
}