2 require_once("include/Scrape.php");
3 require_once("include/socgraph.php");
4 require_once('include/group.php');
5 require_once('include/salmon.php');
6 require_once('include/ostatus.php');
7 require_once("include/Photo.php");
8 require_once('include/diaspora.php');
10 function update_contact($id) {
12 Warning: Never ever fetch the public key via probe_url and write it into the contacts.
13 This will reliably kill your communication with Friendica contacts.
16 $r = q("SELECT `url`, `nurl`, `addr`, `alias`, `batch`, `notify`, `poll`, `poco`, `network` FROM `contact` WHERE `id` = %d", intval($id));
20 $ret = probe_url($r[0]["url"]);
22 // If probe_url fails the network code will be different
23 if ($ret["network"] != $r[0]["network"])
28 // make sure to not overwrite existing values with blank entries
29 foreach ($ret AS $key => $val) {
30 if (isset($r[0][$key]) AND ($r[0][$key] != "") AND ($val == ""))
31 $ret[$key] = $r[0][$key];
33 if (isset($r[0][$key]) AND ($ret[$key] != $r[0][$key]))
40 q("UPDATE `contact` SET `url` = '%s', `nurl` = '%s', `addr` = '%s', `alias` = '%s', `batch` = '%s', `notify` = '%s', `poll` = '%s', `poco` = '%s' WHERE `id` = %d",
42 dbesc(normalise_link($ret['url'])),
46 dbesc($ret['notify']),
52 // Update the corresponding gcontact entry
53 poco_last_updated($ret["url"]);
59 // Takes a $uid and a url/handle and adds a new contact
60 // Currently if the contact is DFRN, interactive needs to be true, to redirect to the
63 // Otherwise this can be used to bulk add statusnet contacts, twitter contacts, etc.
65 // $return['success'] boolean true if successful
66 // $return['message'] error text if success is false.
70 function new_contact($uid,$url,$interactive = false) {
72 $result = array('cid' => -1, 'success' => false,'message' => '');
76 // remove ajax junk, e.g. Twitter
78 $url = str_replace('/#!/','/',$url);
80 if (! allowed_url($url)) {
81 $result['message'] = t('Disallowed profile URL.');
86 $result['message'] = t('Connect URL missing.');
90 $arr = array('url' => $url, 'contact' => array());
92 call_hooks('follow', $arr);
94 if (x($arr['contact'],'name')) {
95 $ret = $arr['contact'];
98 $ret = probe_url($url);
101 if ($ret['network'] === NETWORK_DFRN) {
103 if (strlen($a->path)) {
104 $myaddr = bin2hex(App::get_baseurl() . '/profile/' . $a->user['nickname']);
106 $myaddr = bin2hex($a->user['nickname'] . '@' . $a->get_hostname());
109 goaway($ret['request'] . "&addr=$myaddr");
113 } elseif (get_config('system','dfrn_only')) {
114 $result['message'] = t('This site is not configured to allow communications with other networks.') . EOL;
115 $result['message'] != t('No compatible communication protocols or feeds were discovered.') . EOL;
119 // This extra param just confuses things, remove it
120 if ($ret['network'] === NETWORK_DIASPORA) {
121 $ret['url'] = str_replace('?absolute=true','',$ret['url']);
124 // do we have enough information?
126 if (! ((x($ret,'name')) && (x($ret,'poll')) && ((x($ret,'url')) || (x($ret,'addr'))))) {
127 $result['message'] .= t('The profile address specified does not provide adequate information.') . EOL;
128 if (! x($ret,'poll')) {
129 $result['message'] .= t('No compatible communication protocols or feeds were discovered.') . EOL;
131 if (! x($ret,'name')) {
132 $result['message'] .= t('An author or name was not found.') . EOL;
134 if (! x($ret,'url')) {
135 $result['message'] .= t('No browser URL could be matched to this address.') . EOL;
137 if (strpos($url,'@') !== false) {
138 $result['message'] .= t('Unable to match @-style Identity Address with a known protocol or email contact.') . EOL;
139 $result['message'] .= t('Use mailto: in front of address to force email check.') . EOL;
144 if ($ret['network'] === NETWORK_OSTATUS && get_config('system','ostatus_disabled')) {
145 $result['message'] .= t('The profile address specified belongs to a network which has been disabled on this site.') . EOL;
149 if (! $ret['notify']) {
150 $result['message'] .= t('Limited profile. This person will be unable to receive direct/personal notifications from you.') . EOL;
153 $writeable = ((($ret['network'] === NETWORK_OSTATUS) && ($ret['notify'])) ? 1 : 0);
155 $subhub = (($ret['network'] === NETWORK_OSTATUS) ? true : false);
157 $hidden = (($ret['network'] === NETWORK_MAIL) ? 1 : 0);
159 if (in_array($ret['network'], array(NETWORK_MAIL, NETWORK_DIASPORA))) {
163 // check if we already have a contact
164 // the poll url is more reliable than the profile url, as we may have
165 // indirect links or webfinger links
167 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `poll` IN ('%s', '%s') AND `network` = '%s' LIMIT 1",
170 dbesc(normalise_link($ret['poll'])),
171 dbesc($ret['network'])
174 if (!dbm::is_result($r))
175 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `network` = '%s' LIMIT 1",
176 intval($uid), dbesc(normalise_link($url)), dbesc($ret['network'])
179 if (dbm::is_result($r)) {
181 if ($r[0]['rel'] == CONTACT_IS_FOLLOWER || ($network === NETWORK_DIASPORA && $r[0]['rel'] == CONTACT_IS_SHARING)) {
182 q("UPDATE `contact` SET `rel` = %d , `subhub` = %d, `readonly` = 0 WHERE `id` = %d AND `uid` = %d",
183 intval(CONTACT_IS_FRIEND),
190 // check service class limits
192 $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `pending` = 0 AND `self` = 0",
195 if (dbm::is_result($r))
196 $total_contacts = $r[0]['total'];
198 if (! service_class_allows($uid,'total_contacts',$total_contacts)) {
199 $result['message'] .= upgrade_message();
203 $r = q("SELECT COUNT(`network`) AS `total` FROM `contact` WHERE `uid` = %d AND `network` = '%s' AND `pending` = 0 AND `self` = 0",
207 if (dbm::is_result($r)) {
208 $total_network = $r[0]['total'];
211 if (! service_class_allows($uid,'total_contacts_' . $network,$total_network)) {
212 $result['message'] .= upgrade_message();
216 $new_relation = ((in_array($ret['network'], array(NETWORK_MAIL, NETWORK_DIASPORA))) ? CONTACT_IS_FRIEND : CONTACT_IS_SHARING);
218 // create contact record
219 $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `addr`, `alias`, `batch`, `notify`, `poll`, `poco`, `name`, `nick`, `network`, `pubkey`, `rel`, `priority`,
220 `writable`, `hidden`, `blocked`, `readonly`, `pending`, `subhub` )
221 VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, %d, 0, 0, 0, %d ) ",
223 dbesc(datetime_convert()),
225 dbesc(normalise_link($ret['url'])),
227 dbesc($ret['alias']),
228 dbesc($ret['batch']),
229 dbesc($ret['notify']),
234 dbesc($ret['network']),
235 dbesc($ret['pubkey']),
236 intval($new_relation),
237 intval($ret['priority']),
244 $r = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `network` = '%s' AND `uid` = %d LIMIT 1",
246 dbesc($ret['network']),
250 if (! dbm::is_result($r)) {
251 $result['message'] .= t('Unable to retrieve contact information.') . EOL;
256 $contact_id = $r[0]['id'];
257 $result['cid'] = $contact_id;
259 $def_gid = get_default_group($uid, $contact["network"]);
260 if (intval($def_gid)) {
261 group_add_member($uid, '', $contact_id, $def_gid);
265 update_contact_avatar($ret['photo'],$uid,$contact_id);
267 // pull feed and consume it, which should subscribe to the hub.
269 proc_run(PRIORITY_HIGH, "include/onepoll.php", $contact_id, "force");
271 $r = q("SELECT `contact`.*, `user`.* FROM `contact` INNER JOIN `user` ON `contact`.`uid` = `user`.`uid`
272 WHERE `user`.`uid` = %d AND `contact`.`self` LIMIT 1",
276 if (dbm::is_result($r)) {
277 if (($contact['network'] == NETWORK_OSTATUS) && (strlen($contact['notify']))) {
278 // create a follow slap
280 $item['verb'] = ACTIVITY_FOLLOW;
281 $item['follow'] = $contact["url"];
282 $slap = ostatus::salmon($item, $r[0]);
283 slapper($r[0], $contact['notify'], $slap);
286 if ($contact['network'] == NETWORK_DIASPORA) {
287 $ret = Diaspora::send_share($a->user,$contact);
288 logger('share returns: '.$ret);
292 $result['success'] = true;