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

use App;
use Zotlabs\Lib\Apps;
use Zotlabs\Web\Controller;

require_once('include/security.php');
require_once('include/bbcode.php');
require_once('include/items.php');



class Mood extends Controller {

	function init() {

		if(! local_channel())
			return;

		if(! Apps::system_app_installed(local_channel(), 'Mood')) {
			return;
		}

		$uid = local_channel();
		$channel = App::get_channel();
		$verb = ((isset($_GET['verb'])) ? notags(trim($_GET['verb'])) : '');

		if(! $verb)
			return;

		$verbs = get_mood_verbs();

		if(! array_key_exists($verb,$verbs))
			return;

		$activity = ACTIVITY_MOOD . '#' . urlencode($verb);

		$parent = ((x($_GET,'parent')) ? intval($_GET['parent']) : 0);


		logger('mood: verb ' . $verb, LOGGER_DEBUG);


		if($parent) {
			$r = q("select mid, owner_xchan, private, allow_cid, allow_gid, deny_cid, deny_gid
				from item where id = %d and parent = %d and uid = %d limit 1",
				intval($parent),
				intval($parent),
				intval($uid)
			);
			if(count($r)) {
				$parent_mid = $r[0]['mid'];
				$private    = $r[0]['item_private'];
				$allow_cid  = $r[0]['allow_cid'];
				$allow_gid  = $r[0]['allow_gid'];
				$deny_cid   = $r[0]['deny_cid'];
				$deny_gid   = $r[0]['deny_gid'];
			}
		}
		else {

			$private       = 0;

			$allow_cid     =  $channel['channel_allow_cid'];
			$allow_gid     =  $channel['channel_allow_gid'];
			$deny_cid      =  $channel['channel_deny_cid'];
			$deny_gid      =  $channel['channel_deny_gid'];
		}

		$poster = App::get_observer();

		$uuid = item_message_id();
		$mid = z_root() . '/item/' . $uuid;

		$action = sprintf( t('%1$s is %2$s','mood'), '[zrl=' . $poster['xchan_url'] . ']' . $poster['xchan_name'] . '[/zrl]' , $verbs[$verb]);

		$arr = array();

		$arr['aid']           = get_account_id();
		$arr['uid']           = $uid;
		$arr['uuid']          = $uuid;
		$arr['mid']           = $mid;
		$arr['parent_mid']    = (($parent_mid) ? $parent_mid : $mid);
		$arr['author_xchan']  = $poster['xchan_hash'];
		$arr['owner_xchan']   = (($parent_mid) ? $r[0]['owner_xchan'] : $poster['xchan_hash']);
		$arr['title']         = '';
		$arr['allow_cid']     = $allow_cid;
		$arr['allow_gid']     = $allow_gid;
		$arr['deny_cid']      = $deny_cid;
		$arr['deny_gid']      = $deny_gid;
		$arr['item_private']  = $private;
		$arr['verb']          = $activity;
		$arr['body']          = $action;
		$arr['item_origin']   = 1;
		$arr['item_wall']     = 1;
		$arr['item_unseen']   = 1;
		if(! $parent_mid)
			$item['item_thread_top'] = 1;

		if ((! $arr['plink']) && intval($arr['item_thread_top'])) {
			$arr['plink'] = z_root() . '/channel/' . $channel['channel_address'] . '/?f=&mid=' . urlencode($arr['mid']);
		}


		$post = item_store($arr);
		$item_id = $post['item_id'];

		if($item_id) {
			\Zotlabs\Daemon\Master::Summon(array('Notifier','activity', $item_id));
		}

		call_hooks('post_local_end', $arr);

		if($_SESSION['return_url'])
			goaway(z_root() . '/' . $_SESSION['return_url']);

		return;
	}



	function get() {

		if(! local_channel()) {
			notice( t('Permission denied.') . EOL);
			return;
		}

		if(! Apps::system_app_installed(local_channel(), 'Mood')) {
			//Do not display any associated widgets at this point
			App::$pdl = '';
			$papp = Apps::get_papp('Mood');
			return Apps::app_render($papp, 'module');
		}

		nav_set_selected('Mood');

		$parent = ((x($_GET,'parent')) ? intval($_GET['parent']) : '0');

		$verbs = get_mood_verbs();

		$shortlist = array();
		foreach($verbs as $k => $v)
			if($v !== 'NOTRANSLATION')
				$shortlist[] = array($k,$v);


		$tpl = get_markup_template('mood_content.tpl');

		$o = replace_macros($tpl,array(
			'$title' => t('Mood'),
			'$desc' => t('Set your current mood and tell your friends'),
			'$verbs' => $shortlist,
			'$parent' => $parent,
			'$submit' => t('Submit'),
		));

		return $o;

	}

}