]> git.mxchange.org Git - friendica.git/blob - include/Contact.php
contact menu beginnings
[friendica.git] / include / Contact.php
1 <?php
2
3
4 // Included here for completeness, but this is a very dangerous operation.
5 // It is the caller's responsibility to confirm the requestor's intent and
6 // authorisation to do this.
7
8 function user_remove($uid) {
9         if(! $uid)
10                 return;
11         $a = get_app();
12         logger('Removing user: ' . $uid);
13         q("DELETE FROM `contact` WHERE `uid` = %d", intval($uid));
14         q("DELETE FROM `group` WHERE `uid` = %d", intval($uid));
15         q("DELETE FROM `group_member` WHERE `uid` = %d", intval($uid));
16         q("DELETE FROM `intro` WHERE `uid` = %d", intval($uid));
17         q("DELETE FROM `event` WHERE `uid` = %d", intval($uid));
18         q("DELETE FROM `item` WHERE `uid` = %d", intval($uid));
19         q("DELETE FROM `mail` WHERE `uid` = %d", intval($uid));
20         q("DELETE FROM `photo` WHERE `uid` = %d", intval($uid));
21         q("DELETE FROM `profile` WHERE `uid` = %d", intval($uid));
22         q("DELETE FROM `profile_check` WHERE `uid` = %d", intval($uid));
23         q("DELETE FROM `pconfig` WHERE `uid` = %d", intval($uid));
24         q("DELETE FROM `user` WHERE `uid` = %d", intval($uid));
25         if($uid == local_user()) {
26                 unset($_SESSION['authenticated']);
27                 unset($_SESSION['uid']);
28                 goaway($a->get_baseurl());
29         }
30 }
31
32
33 function contact_remove($id) {
34         q("DELETE FROM `contact` WHERE `id` = %d LIMIT 1",
35                 intval($id)
36         );
37         q("DELETE FROM `item` WHERE `contact-id` = %d ",
38                 intval($id)
39         );
40         q("DELETE FROM `photo` WHERE `contact-id` = %d ",
41                 intval($id)
42         );
43         q("DELETE FROM `mail` WHERE `contact-id` = %d ",
44                 intval($id)
45         );
46         q("DELETE FROM `event` WHERE `cid` = %d ",
47                 intval($id)
48         );
49 }
50
51
52 // Contact has refused to recognise us as a friend. We will start a countdown.
53 // If they still don't recognise us in 32 days, the relationship is over,
54 // and we won't waste any more time trying to communicate with them.
55 // This provides for the possibility that their database is temporarily messed
56 // up or some other transient event and that there's a possibility we could recover from it.
57  
58 if(! function_exists('mark_for_death')) {
59 function mark_for_death($contact) {
60         if($contact['term-date'] == '0000-00-00 00:00:00') {
61                 q("UPDATE `contact` SET `term-date` = '%s' WHERE `id` = %d LIMIT 1",
62                                 dbesc(datetime_convert()),
63                                 intval($contact['id'])
64                 );
65         }
66         else {
67                 $expiry = $contact['term-date'] . ' + 32 days ';
68                 if(datetime_convert() > datetime_convert('UTC','UTC',$expiry)) {
69
70                         // relationship is really truly dead. 
71
72                         contact_remove($contact['id']);
73
74                 }
75         }
76
77 }}
78
79 if(! function_exists('unmark_for_death')) {
80 function unmark_for_death($contact) {
81         // It's a miracle. Our dead contact has inexplicably come back to life.
82         q("UPDATE `contact` SET `term-date` = '%s' WHERE `id` = %d LIMIT 1",
83                 dbesc('0000-00-00 00:00:00'),
84                 intval($contact['id'])
85         );
86 }}
87
88 if(! function_exists('contact_photo_menu')){
89 function contact_photo_menu($contact) {
90
91         $a = get_app();
92         
93         $contact_url="";
94         $pm_url="";
95         $status_link="";
96         $photos_link="";
97         $posts_link="";
98
99         $sparkle = false;
100         if($contact['network'] === NETWORK_DFRN) {
101                 $sparkle = true;
102                 $profile_link = $a->get_baseurl() . '/redir/' . $contact['id'];
103         }
104         else
105                 $profile_link = $contact['url'];
106
107         if($profile_link === 'mailbox')
108                 $profile_link = '';
109
110         if($sparkle) {
111                 $status_link = $profile_link . "?url=status";
112                 $photos_link = $profile_link . "?url=photos";
113                 $profile_link = $profile_link . "?url=profile";
114                 $pm_url = $a->get_baseurl() . '/message/new/' . $contact['id'];
115         }
116
117         $contact_url = $a->get_baseurl() . '/contacts/' . $cid;
118         $posts_link = $a->get_baseurl() . '/network/?cid=' . $cid;
119
120         $menu = Array(
121                 t("View status") => $status_link,
122                 t("View profile") => $profile_link,
123                 t("View photos") => $photos_link,               
124                 t("View recent") => $posts_link, 
125                 t("Edit contact") => $contact_url,
126                 t("Send PM") => $pm_url,
127         );
128         
129         
130         $args = array('contact' => $contact, 'menu' => $menu);
131         
132         call_hooks('contact_photo_menu', $args);
133         
134         $o = "";
135         foreach($menu as $k=>$v){
136                 if ($v!="") $o .= "<li><a href='$v'>$k</a></li>\n";
137         }
138         return $o;
139 }}