aboutsummaryrefslogtreecommitdiffstats
path: root/mod/notifications.php
blob: f5bbe9a1692d0f95ecd70d9e35c10ac87346ad6c (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
<?php

function notifications_post(&$a) {

	if((! x($_SESSION,'authenticated')) || (! (x($_SESSION,'uid')))) {
		goaway($a->get_baseurl());
	}
	
	$request_id = (($a->argc > 1) ? $a->argv[0] : 0);
	
	if($request_id == "all")
		return;

	if($request_id) {

		$r = q("SELECT `id` FROM `intro` 
			WHERE `request-id` = %d 
			AND `uid` = %d LIMIT 1",
				intval($request_id),
				intval($_SESSION['uid'])
		);
	
		if(count($r)) {
			$intro_id = $r[0]['id'];
		}
		else {
			$_SESSION['sysmsg'] .= "Invalid request identifier." . EOL;
			return;
		}
		if($_POST['submit'] == 'Discard') {
			$r = q("DELETE FROM `intro` WHERE `id` = %d LIMIT 1", intval($intro_id));	
			$r = q("DELETE `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", 
				intval($request_id),
				intval($_SESSION['uid']));
			return;
		}
		if($_POST['submit'] == 'Ignore') {
			$r = q("UPDATE `intro` SET `ignore` = 1 WHERE `id` = %d LIMIT 1",
				intval($intro_id));
			return;
		}
	}
}





function notifications_content(&$a) {

	$o = '';

	if((! x($_SESSION,'authenticated')) || (! (x($_SESSION,'uid')))) {
		goaway($a->get_baseurl());
	}

	if(($a->argc > 1) && ($a->argv[1] == 'all'))
		$sql_extra = '';
	else
		$sql_extra = " AND `ignore` = 0 ";


	$tpl = file_get_contents('view/intros-top.tpl');
	$o .= replace_macros($tpl,array(
		'$hide_url' => ((strlen($sql_extra)) ? 'notifications/all' : 'notifications' ),
		'$hide_text' => ((strlen($sql_extra)) ? 'Show Ignored Requests' : 'Hide Ignored Requests')
	)); 

	$r = q("SELECT `intro`.`id` AS `intro-id`, `intro`.*, `contact`.* 
		FROM `intro` LEFT JOIN `contact` ON `intro`.`contact-id` = `contact`.`id`
		WHERE `intro`.`uid` = %d $sql_extra AND `intro`.`blocked` = 0 ",
			intval($_SESSION['uid']));

	if(($r !== false) && (count($r))) {


		$tpl = file_get_contents("view/intros.tpl");

		foreach($r as $rr) {

			$o .= replace_macros($tpl,array(
				'$intro_id' => $rr['intro-id'],
				'$dfrn-id' => $rr['issued-id'],
				'$uid' => $_SESSION['uid'],
				'$contact-id' => $rr['contact-id'],
				'$photo' => ((x($rr,'photo')) ? $rr['photo'] : "images/default-profile.jpg"),
				'$fullname' => $rr['name'],
				'$knowyou' => (($rr['knowyou']) ? 'yes' : 'no'),
				'$url' => $rr['url'],
				'$note' => $rr['note']
			));
		}
	}
	else
		$_SESSION['sysmsg'] .= "No notifications." . EOL;

	return $o;
}