]> git.mxchange.org Git - friendica.git/blob - mod/follow.php
Merge branch 'hotfix_diaspora' into develop
[friendica.git] / mod / follow.php
1 <?php
2
3 require_once('include/Scrape.php');
4 require_once('include/follow.php');
5 require_once('include/Contact.php');
6 require_once('include/contact_selectors.php');
7
8 function follow_content(&$a) {
9
10         if(! local_user()) {
11                 notice( t('Permission denied.') . EOL);
12                 goaway($_SESSION['return_url']);
13                 // NOTREACHED
14         }
15
16         $uid = local_user();
17         $url = notags(trim($_REQUEST['url']));
18
19         $submit = t('Submit Request');
20
21         // There is a current issue. It seems as if you can't start following a Friendica that is following you
22         // With Diaspora this works - but Friendica is special, it seems ...
23         $r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND ((`rel` != %d) OR (`network` = '%s')) AND
24                 (`nurl` = '%s' OR `alias` = '%s' OR `alias` = '%s') AND
25                 `network` != '%s' LIMIT 1",
26                 intval(local_user()), dbesc(CONTACT_IS_FOLLOWER), dbesc(NETWORK_DFRN), dbesc(normalise_link($url)),
27                 dbesc(normalise_link($url)), dbesc($url), dbesc(NETWORK_STATUSNET));
28
29         if ($r) {
30                 notice(t('You already added this contact.').EOL);
31                 $submit = "";
32                 //goaway($_SESSION['return_url']);
33                 // NOTREACHED
34         }
35
36         $ret = probe_url($url);
37
38         if (($ret["network"] == NETWORK_DIASPORA) AND !get_config('system','diaspora_enabled')) {
39                 notice( t("Diaspora support isn't enabled. Contact can't be added.") . EOL);
40                 $submit = "";
41                 //goaway($_SESSION['return_url']);
42                 // NOTREACHED
43         }
44
45         if (($ret["network"] == NETWORK_OSTATUS) AND get_config('system','ostatus_disabled')) {
46                 notice( t("OStatus support is disabled. Contact can't be added.") . EOL);
47                 $submit = "";
48                 //goaway($_SESSION['return_url']);
49                 // NOTREACHED
50         }
51
52         if ($ret["network"] == NETWORK_PHANTOM) {
53                 notice( t("The network type couldn't be detected. Contact can't be added.") . EOL);
54                 $submit = "";
55                 //goaway($_SESSION['return_url']);
56                 // NOTREACHED
57         }
58
59         if ($ret["network"] == NETWORK_MAIL)
60                 $ret["url"] = $ret["addr"];
61
62         if($ret['network'] === NETWORK_DFRN) {
63                 $request = $ret["request"];
64                 $tpl = get_markup_template('dfrn_request.tpl');
65         } else {
66                 $request = $a->get_baseurl()."/follow";
67                 $tpl = get_markup_template('auto_request.tpl');
68         }
69
70         $r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND `self` LIMIT 1", intval($uid));
71
72         if (!$r) {
73                 notice( t('Permission denied.') . EOL);
74                 goaway($_SESSION['return_url']);
75                 // NOTREACHED
76         }
77
78         $myaddr = $r[0]["url"];
79         $gcontact_id = 0;
80
81         // Makes the connection request for friendica contacts easier
82         $_SESSION["fastlane"] = $ret["url"];
83
84         $r = q("SELECT `id`, `location`, `about`, `keywords` FROM `gcontact` WHERE `nurl` = '%s'",
85                 normalise_link($ret["url"]));
86
87         if (!$r)
88                 $r = array(array("location" => "", "about" => "", "keywords" => ""));
89         else
90                 $gcontact_id = $r[0]["id"];
91
92         if($ret['network'] === NETWORK_DIASPORA) {
93                 $r[0]["location"] = "";
94                 $r[0]["about"] = "";
95         }
96
97         $header = $ret["name"];
98
99         if ($ret["addr"] != "")
100                 $header .= " <".$ret["addr"].">";
101
102         //$header .= " (".network_to_name($ret['network'], $ret['url']).")";
103         $header = t("Connect/Follow");
104
105         $o  = replace_macros($tpl,array(
106                         '$header' => htmlentities($header),
107                         //'$photo' => proxy_url($ret["photo"], false, PROXY_SIZE_SMALL),
108                         '$desc' => "",
109                         '$pls_answer' => t('Please answer the following:'),
110                         '$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'),t('Yes'))),
111                         '$add_note' => t('Add a personal note:'),
112                         '$page_desc' => "",
113                         '$friendica' => "",
114                         '$statusnet' => "",
115                         '$diaspora' => "",
116                         '$diasnote' => "",
117                         '$your_address' => t('Your Identity Address:'),
118                         '$invite_desc' => "",
119                         '$emailnet' => "",
120                         '$submit' => $submit,
121                         '$cancel' => t('Cancel'),
122                         '$nickname' => "",
123                         '$name' => $ret["name"],
124                         '$url' => $ret["url"],
125                         '$zrl' => zrl($ret["url"]),
126                         '$url_label' => t("Profile URL"),
127                         '$myaddr' => $myaddr,
128                         '$request' => $request,
129                         /*'$location' => bbcode($r[0]["location"]),
130                         '$location_label' => t("Location:"),
131                         '$about' => bbcode($r[0]["about"], false, false),
132                         '$about_label' => t("About:"), */
133                         '$keywords' => $r[0]["keywords"],
134                         '$keywords_label' => t("Tags:")
135         ));
136
137         $a->page['aside'] = "";
138         profile_load($a, "", 0, get_contact_details_by_url($ret["url"]));
139
140         // Show last public posts
141         if ($gcontact_id <> 0) {
142                 $o .= replace_macros(get_markup_template('section_title.tpl'),
143                                                 array('$title' => t('Status Messages and Posts')
144                 ));
145
146                 $o .= posts_from_gcontact($a, $gcontact_id);
147         }
148
149         return $o;
150 }
151
152 function follow_post(&$a) {
153
154         if(! local_user()) {
155                 notice( t('Permission denied.') . EOL);
156                 goaway($_SESSION['return_url']);
157                 // NOTREACHED
158         }
159
160         if ($_REQUEST['cancel'])
161                 goaway($_SESSION['return_url']);
162
163         $uid = local_user();
164         $url = notags(trim($_REQUEST['url']));
165         $return_url = $_SESSION['return_url'];
166
167         // Makes the connection request for friendica contacts easier
168         // This is just a precaution if maybe this page is called somewhere directly via POST
169         $_SESSION["fastlane"] = $url;
170
171         $result = new_contact($uid,$url,true);
172
173         if($result['success'] == false) {
174                 if($result['message'])
175                         notice($result['message']);
176                 goaway($return_url);
177         } elseif ($result['cid'])
178                 goaway($a->get_baseurl().'/contacts/'.$result['cid']);
179
180         info( t('Contact added').EOL);
181
182         if(strstr($return_url,'contacts'))
183                 goaway($a->get_baseurl().'/contacts/'.$contact_id);
184
185         goaway($return_url);
186         // NOTREACHED
187 }