aboutsummaryrefslogtreecommitdiffstats
path: root/mod/notify.php
blob: 229020f4a715df876d44c1b44cc44734009e3bc3 (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
<?php


function notify_init(&$a) {
	if(! local_user())
		return;

	if($a->argc > 2 && $a->argv[1] === 'view' && intval($a->argv[2])) {
		$r = q("select * from notify where id = %d and uid = %d limit 1",
			intval($a->argv[2]),
			intval(local_user())
		);
		if(count($r)) {
			q("update notify set seen = 1 where id = %d and uid = %d limit 1",
				intval($a->argv[2]),
				intval(local_user())
			);
			goaway($r[0]['link']);
		}

		goaway($a->get_baseurl());
	}

	if($a->argc > 2 && $a->argv[1] === 'mark' && $a->argv[2] === 'all' ) {
		$r = q("update notify set seen = 1 where uid = %d",
			intval(local_user())
		);
		$j = json_encode(array('result' => ($r) ? 'success' : 'fail'));
		echo $j;
		killme();
	}

}


function notify_content(&$a) {
	if(! local_user())
		return login();
}