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.
8 function user_remove($uid) {
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());
33 function contact_remove($id) {
34 q("DELETE FROM `contact` WHERE `id` = %d LIMIT 1",
37 q("DELETE FROM `item` WHERE `contact-id` = %d ",
40 q("DELETE FROM `photo` WHERE `contact-id` = %d ",
43 q("DELETE FROM `mail` WHERE `contact-id` = %d ",
46 q("DELETE FROM `event` WHERE `cid` = %d ",
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.
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'])
67 $expiry = $contact['term-date'] . ' + 32 days ';
68 if(datetime_convert() > datetime_convert('UTC','UTC',$expiry)) {
70 // relationship is really truly dead.
72 contact_remove($contact['id']);
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'])
88 if(! function_exists('contact_photo_menu')){
89 function contact_photo_menu($contact) {
100 if($contact['network'] === NETWORK_DFRN) {
102 $profile_link = $a->get_baseurl() . '/redir/' . $contact['id'];
105 $profile_link = $contact['url'];
107 if($profile_link === 'mailbox')
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'];
117 $contact_url = $a->get_baseurl() . '/contacts/' . $contact['id'];
118 $posts_link = $a->get_baseurl() . '/network/?cid=' . $contact['id'];
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,
130 $args = array('contact' => $contact, 'menu' => $menu);
132 call_hooks('contact_photo_menu', $args);
135 foreach($menu as $k=>$v){
137 if(($k !== t("View recent")) && ($k !== t("Send PM")))
138 $o .= "<li><a target=\"redir\" href=\"$v\">$k</a></li>\n";
140 $o .= "<li><a href=\"$v\">$k</a></li>\n";