]> git.mxchange.org Git - friendica.git/blob - mod/notifications.php
Merge branch 'erikl-master'
[friendica.git] / mod / notifications.php
1 <?php
2
3 function notifications_post(&$a) {
4
5         if(! local_user()) {
6                 goaway($a->get_baseurl());
7         }
8         
9         $request_id = (($a->argc > 1) ? $a->argv[1] : 0);
10         
11         if($request_id === "all")
12                 return;
13
14         if($request_id) {
15
16                 $r = q("SELECT * FROM `intro` 
17                         WHERE `id` = %d 
18                         AND `uid` = %d LIMIT 1",
19                                 intval($request_id),
20                                 intval(local_user())
21                 );
22         
23                 if(count($r)) {
24                         $intro_id = $r[0]['id'];
25                         $contact_id = $r[0]['contact-id'];
26                 }
27                 else {
28                         notice( t('Invalid request identifier.') . EOL);
29                         return;
30                 }
31                 if($_POST['submit'] == t('Discard')) {
32                         $r = q("DELETE FROM `intro` WHERE `id` = %d LIMIT 1", 
33                                 intval($intro_id)
34                         );      
35                         $r = q("DELETE FROM `contact` WHERE `id` = %d AND `uid` = %d AND `self` = 0 LIMIT 1", 
36                                 intval($contact_id),
37                                 intval(local_user())
38                         );
39                         return;
40                 }
41                 if($_POST['submit'] == t('Ignore')) {
42                         $r = q("UPDATE `intro` SET `ignore` = 1 WHERE `id` = %d LIMIT 1",
43                                 intval($intro_id));
44                         return;
45                 }
46         }
47 }
48
49
50
51
52
53 function notifications_content(&$a) {
54
55         if(! local_user()) {
56                 notice( t('Permission denied.') . EOL);
57                 goaway($a->get_baseurl());
58         }
59
60         $o = '';
61         $o .= '<script> $(document).ready(function() { $(\'#nav-notify-link\').addClass(\'nav-selected\'); });</script>';
62
63         if(($a->argc > 1) && ($a->argv[1] == 'all'))
64                 $sql_extra = '';
65         else
66                 $sql_extra = " AND `ignore` = 0 ";
67
68         $o .= '<h1>' . t('Pending Friend/Connect Notifications') . '</h1>' . "\r\n";
69         
70         $o .= '<div id="notification-show-hide-wrapper" >';
71         $o .= '<a href="' . ((strlen($sql_extra)) ? 'notifications/all' : 'notifications' ) . '" id="notifications-show-hide-link" >'
72                 . ((strlen($sql_extra)) ? t('Show Ignored Requests') : t('Hide Ignored Requests')) . '</a></div>' . "\r\n";
73
74
75         $r = q("SELECT COUNT(*) AS `total` FROM `intro` 
76                 WHERE `intro`.`uid` = %d $sql_extra AND `intro`.`blocked` = 0 ",
77                         intval($_SESSION['uid'])
78         );
79         if($r && count($r)) {
80                 $a->set_pager_total($r[0]['total']);
81                 $a->set_pager_itemspage(20);
82         }
83
84         $r = q("SELECT `intro`.`id` AS `intro_id`, `intro`.*, `contact`.* 
85                 FROM `intro` LEFT JOIN `contact` ON `intro`.`contact-id` = `contact`.`id`
86                 WHERE `intro`.`uid` = %d $sql_extra AND `intro`.`blocked` = 0 ",
87                         intval($_SESSION['uid']));
88
89         if(($r !== false) && (count($r))) {
90
91
92                 $tpl = load_view_file("view/intros.tpl");
93
94                 foreach($r as $rr) {
95
96                         $friend_selected = (($rr['network'] !== 'stat') ? ' checked="checked" ' : ' disabled ');
97                         $fan_selected = (($rr['network'] === 'stat') ? ' checked="checked" disabled ' : '');
98                         $dfrn_tpl = load_view_file('view/netfriend.tpl');
99
100                         $knowyou   = '';
101                         $dfrn_text = '';
102                                                 
103                         if($rr['network'] !== 'stat') {
104                                 $knowyou = t('Claims to be known to you: ') . (($rr['knowyou']) ? t('yes') : t('no'));
105
106                                 $dfrn_text = replace_macros($dfrn_tpl,array(
107                                         '$intro_id' => $rr['intro_id'],
108                                         '$friend_selected' => $friend_selected,
109                                         '$fan_selected' => $fan_selected,
110                                         '$approve_as' => t('Approve as: '),
111                                         '$as_friend' => t('Friend'),
112                                         '$as_fan' => t('Fan/Admirer')
113                                 ));
114                         }                       
115
116
117
118                         $o .= replace_macros($tpl,array(
119                                 '$str_notifytype' => t('Notification type: '),
120                                 '$notify_type' => (($rr['network'] !== 'stat') ? t('Friend/Connect Request') : t('New Follower')),
121                                 '$dfrn_text' => $dfrn_text,     
122                                 '$dfrn_id' => $rr['issued-id'],
123                                 '$uid' => $_SESSION['uid'],
124                                 '$intro_id' => $rr['intro_id'],
125                                 '$contact_id' => $rr['contact-id'],
126                                 '$photo' => ((x($rr,'photo')) ? $rr['photo'] : "images/default-profile.jpg"),
127                                 '$fullname' => $rr['name'],
128                                 '$url' => $rr['url'],
129                                 '$knowyou' => $knowyou,
130                                 '$approve' => t('Approve'),
131                                 '$note' => $rr['note'],
132                                 '$ignore' => t('Ignore'),
133                                 '$discard' => t('Discard')
134
135                         ));
136                 }
137         }
138         else
139                 notice( t('No notifications.') . EOL);
140
141         if ($a->config['register_policy'] == REGISTER_APPROVE &&        
142                 $a->config['admin_email'] === $a->user['email']){
143                 $o .= '<h1>' . t('User registrations waiting for confirm') . '</h1>' . "\r\n";
144                 
145                 $r = q("SELECT `register`.*, `contact`.`name`, `user`.`email`
146                                  FROM `register`
147                                  LEFT JOIN `contact` ON `register`.`uid` = `contact`.`uid`
148                                  LEFT JOIN `user` ON `register`.`uid` = `user`.`uid`;");
149                 if(($r !== false) && (count($r))) {
150                         $tpl = load_view_file("view/registrations.tpl");
151                         foreach($r as $rr) {
152                                 $o .= "<ul>";
153                                 $o .= replace_macros($tpl, array(
154                                         '$fullname'     => $rr['name'],
155                                         '$email'                => $rr['email'],
156                                         '$approvelink'  => "regmod/allow/".$rr['hash'],
157                                         '$denylink'     => "regmod/deny/".$rr['hash'],
158                                 ));
159                                 $o .= "</ul>";
160                         }
161                 }
162                 else
163                         notice( t('No registrations.') . EOL);
164
165         }
166
167         $o .= paginate($a);
168         return $o;
169 }