]> git.mxchange.org Git - friendica.git/blob - mod/follow.php
Merge pull request #1944 from annando/1510-proxy-picture-size
[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_selectors.php');
6
7 function follow_content(&$a) {
8
9         if(! local_user()) {
10                 notice( t('Permission denied.') . EOL);
11                 goaway($_SESSION['return_url']);
12                 // NOTREACHED
13         }
14
15         $uid = local_user();
16         $url = notags(trim($_REQUEST['url']));
17
18         // There is a current issue. It seems as if you can't start following a Friendica that is following you
19         // With Diaspora this works - but Friendica is special, it seems ...
20         $r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND ((`rel` != %d) OR (`network` = '%s')) AND
21                 (`nurl` = '%s' OR `alias` = '%s' OR `alias` = '%s') AND
22                 `network` != '%s' LIMIT 1",
23                 intval(local_user()), dbesc(CONTACT_IS_FOLLOWER), dbesc(NETWORK_DFRN), dbesc(normalise_link($url)),
24                 dbesc(normalise_link($url)), dbesc($url), dbesc(NETWORK_STATUSNET));
25
26         if ($r) {
27                 notice(t('You already added this contact.').EOL);
28                 goaway($_SESSION['return_url']);
29                 // NOTREACHED
30         }
31
32         $ret = probe_url($url);
33
34         if ($ret["network"] == NETWORK_PHANTOM) {
35                 notice( t("The network type couldn't be detected. Contact can't be added.") . EOL);
36                 goaway($_SESSION['return_url']);
37                 // NOTREACHED
38         }
39
40         if ($ret["network"] == NETWORK_MAIL)
41                 $ret["url"] = $ret["addr"];
42
43         if($ret['network'] === NETWORK_DFRN) {
44                 $request = $ret["request"];
45                 $tpl = get_markup_template('dfrn_request.tpl');
46         } else {
47                 $request = $a->get_baseurl()."/follow";
48                 $tpl = get_markup_template('auto_request.tpl');
49         }
50
51         $r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND `self` LIMIT 1", intval($uid));
52
53         if (!$r) {
54                 notice( t('Permission denied.') . EOL);
55                 goaway($_SESSION['return_url']);
56                 // NOTREACHED
57         }
58
59         $myaddr = $r[0]["url"];
60
61         // Makes the connection request for friendica contacts easier
62         $_SESSION["fastlane"] = $ret["url"];
63
64         $r = q("SELECT `location`, `about`, `keywords` FROM `gcontact` WHERE `nurl` = '%s'",
65                 normalise_link($ret["url"]));
66
67         if (!$r)
68                 $r = array(array("location" => "", "about" => "", "keywords" => ""));
69
70         if($ret['network'] === NETWORK_DIASPORA) {
71                 $r[0]["location"] = "";
72                 $r[0]["about"] = "";
73         }
74
75         $header = $ret["name"];
76
77         if ($ret["addr"] != "")
78                 $header .= " <".$ret["addr"].">";
79
80         $header .= " (".network_to_name($ret['network'], $ret['url']).")";
81
82         $o  = replace_macros($tpl,array(
83                         '$header' => htmlentities($header),
84                         '$photo' => proxy_url($ret["photo"], false, PROXY_SIZE_SMALL),
85                         '$desc' => "",
86                         '$pls_answer' => t('Please answer the following:'),
87                         '$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'),t('Yes'))),
88                         '$add_note' => t('Add a personal note:'),
89                         '$page_desc' => "",
90                         '$friendica' => "",
91                         '$statusnet' => "",
92                         '$diaspora' => "",
93                         '$diasnote' => "",
94                         '$your_address' => t('Your Identity Address:'),
95                         '$invite_desc' => "",
96                         '$emailnet' => "",
97                         '$submit' => t('Submit Request'),
98                         '$cancel' => t('Cancel'),
99                         '$nickname' => "",
100                         '$name' => $ret["name"],
101                         '$url' => $ret["url"],
102                         '$zrl' => zrl($ret["url"]),
103                         '$url_label' => t("Profile URL"),
104                         '$myaddr' => $myaddr,
105                         '$request' => $request,
106                         '$location' => bbcode($r[0]["location"]),
107                         '$location_label' => t("Location:"),
108                         '$about' => bbcode($r[0]["about"], false, false),
109                         '$about_label' => t("About:"),
110                         '$keywords' => $r[0]["keywords"],
111                         '$keywords_label' => t("Tags:")
112         ));
113         return $o;
114 }
115
116 function follow_post(&$a) {
117
118         if(! local_user()) {
119                 notice( t('Permission denied.') . EOL);
120                 goaway($_SESSION['return_url']);
121                 // NOTREACHED
122         }
123
124         if ($_REQUEST['cancel'])
125                 goaway($_SESSION['return_url']);
126
127         $uid = local_user();
128         $url = notags(trim($_REQUEST['url']));
129         $return_url = $_SESSION['return_url'];
130
131         // Makes the connection request for friendica contacts easier
132         // This is just a precaution if maybe this page is called somewhere directly via POST
133         $_SESSION["fastlane"] = $url;
134
135         $result = new_contact($uid,$url,true);
136
137         if($result['success'] == false) {
138                 if($result['message'])
139                         notice($result['message']);
140                 goaway($return_url);
141         } elseif ($result['cid'])
142                 goaway($a->get_baseurl().'/contacts/'.$result['cid']);
143
144         info( t('Contact added').EOL);
145
146         if(strstr($return_url,'contacts'))
147                 goaway($a->get_baseurl().'/contacts/'.$contact_id);
148
149         goaway($return_url);
150         // NOTREACHED
151 }