]> git.mxchange.org Git - friendica.git/blob - src/Object/Contact.php
Merge pull request #3982 from zeroadam/Photo-#3878
[friendica.git] / src / Object / Contact.php
1 <?php
2
3 /**
4  * @file src/Object/Contact.php
5  */
6
7 namespace Friendica\Object;
8
9 use Friendica\App;
10 use Friendica\BaseObject;
11 use Friendica\Core\PConfig;
12 use Friendica\Core\System;
13 use Friendica\Core\Worker;
14 use Friendica\Database\DBM;
15 use Friendica\Network\Probe;
16 use Friendica\Object\Photo;
17 use Friendica\Protocol\Diaspora;
18 use Friendica\Protocol\DFRN;
19 use Friendica\Protocol\OStatus;
20 use dba;
21
22 require_once 'boot.php';
23 require_once 'include/text.php';
24
25 /**
26  * @brief functions for interacting with a contact
27  */
28 class Contact extends BaseObject
29 {
30         /**
31          * @brief Marks a contact for removal
32          *
33          * @param int $id contact id
34          * @return null
35          */
36         public static function remove($id)
37         {
38                 // We want just to make sure that we don't delete our "self" contact
39                 $r = dba::select('contact', array('uid'), array('id' => $id, 'self' => false), array('limit' => 1));
40
41                 if (!DBM::is_result($r) || !intval($r['uid'])) {
42                         return;
43                 }
44
45                 $archive = PConfig::get($r['uid'], 'system', 'archive_removed_contacts');
46                 if ($archive) {
47                         dba::update('contact', array('archive' => true, 'network' => 'none', 'writable' => false), array('id' => $id));
48                         return;
49                 }
50
51                 dba::delete('contact', array('id' => $id));
52
53                 // Delete the rest in the background
54                 Worker::add(PRIORITY_LOW, 'RemoveContact', $id);
55         }
56
57         /**
58          * @brief Sends an unfriend message. Does not remove the contact
59          *
60          * @param array $user    User unfriending
61          * @param array $contact Contact unfriended
62          * @return void
63          */
64         public static function terminateFriendship(array $user, array $contact)
65         {
66                 if ($contact['network'] === NETWORK_OSTATUS) {
67                         // create an unfollow slap
68                         $item = array();
69                         $item['verb'] = NAMESPACE_OSTATUS . "/unfollow";
70                         $item['follow'] = $contact["url"];
71                         $slap = OStatus::salmon($item, $user);
72
73                         if ((x($contact, 'notify')) && (strlen($contact['notify']))) {
74                                 require_once 'include/salmon.php';
75                                 slapper($user, $contact['notify'], $slap);
76                         }
77                 } elseif ($contact['network'] === NETWORK_DIASPORA) {
78                         Diaspora::sendUnshare($user, $contact);
79                 } elseif ($contact['network'] === NETWORK_DFRN) {
80                         DFRN::deliver($user, $contact, 'placeholder', 1);
81                 }
82         }
83
84         /**
85          * @brief Marks a contact for archival after a communication issue delay
86          *
87          * Contact has refused to recognise us as a friend. We will start a countdown.
88          * If they still don't recognise us in 32 days, the relationship is over,
89          * and we won't waste any more time trying to communicate with them.
90          * This provides for the possibility that their database is temporarily messed
91          * up or some other transient event and that there's a possibility we could recover from it.
92          *
93          * @param array $contact contact to mark for archival
94          * @return type
95          */
96         public static function markForArchival(array $contact)
97         {
98                 // Contact already archived, nothing to do
99                 if ($contact['archive']) {
100                         return;
101                 }
102
103                 if ($contact['term-date'] <= NULL_DATE) {
104                         dba::update('contact', array('term-date' => datetime_convert()), array('id' => $contact['id']));
105
106                         if ($contact['url'] != '') {
107                                 dba::update('contact', array('term-date' => datetime_convert()), array('`nurl` = ? AND `term-date` <= ?', normalise_link($contact['url']), NULL_DATE));
108                         }
109                 } else {
110                         /* @todo
111                          * We really should send a notification to the owner after 2-3 weeks
112                          * so they won't be surprised when the contact vanishes and can take
113                          * remedial action if this was a serious mistake or glitch
114                          */
115
116                         /// @todo Check for contact vitality via probing
117                         $expiry = $contact['term-date'] . ' + 32 days ';
118                         if (datetime_convert() > datetime_convert('UTC', 'UTC', $expiry)) {
119                                 /* Relationship is really truly dead. archive them rather than
120                                  * delete, though if the owner tries to unarchive them we'll start
121                                  * the whole process over again.
122                                  */
123                                 dba::update('contact', array('archive' => 1), array('id' => $contact['id']));
124
125                                 if ($contact['url'] != '') {
126                                         dba::update('contact', array('archive' => 1), array('nurl' => normalise_link($contact['url'])));
127                                 }
128                         }
129                 }
130         }
131
132         /**
133          * @brief Cancels the archival countdown
134          *
135          * @see Contact::markForArchival()
136          *
137          * @param array $contact contact to be unmarked for archival
138          * @return null
139          */
140         public static function unmarkForArchival(array $contact)
141         {
142                 $condition = array('`id` = ? AND (`term-date` > ? OR `archive`)', $contact[`id`], NULL_DATE);
143                 $exists = dba::exists('contact', $condition);
144
145                 // We don't need to update, we never marked this contact for archival
146                 if (!$exists) {
147                         return;
148                 }
149
150                 // It's a miracle. Our dead contact has inexplicably come back to life.
151                 $fields = array('term-date' => NULL_DATE, 'archive' => false);
152                 dba::update('contact', $fields, array('id' => $contact['id']));
153
154                 if ($contact['url'] != '') {
155                         dba::update('contact', $fields, array('nurl' => normalise_link($contact['url'])));
156                 }
157         }
158
159         /**
160          * @brief Get contact data for a given profile link
161          *
162          * The function looks at several places (contact table and gcontact table) for the contact
163          * It caches its result for the same script execution to prevent duplicate calls
164          *
165          * @param string $url     The profile link
166          * @param int    $uid     User id
167          * @param array  $default If not data was found take this data as default value
168          *
169          * @return array Contact data
170          */
171         public static function getDetailsByURL($url, $uid = -1, array $default = [])
172         {
173                 static $cache = array();
174
175                 if ($url == '') {
176                         return $default;
177                 }
178
179                 if ($uid == -1) {
180                         $uid = local_user();
181                 }
182
183                 if (isset($cache[$url][$uid])) {
184                         return $cache[$url][$uid];
185                 }
186
187                 $ssl_url = str_replace('http://', 'https://', $url);
188
189                 // Fetch contact data from the contact table for the given user
190                 $s = dba::p("SELECT `id`, `id` AS `cid`, 0 AS `gid`, 0 AS `zid`, `uid`, `url`, `nurl`, `alias`, `network`, `name`, `nick`, `addr`, `location`, `about`, `xmpp`,
191                         `keywords`, `gender`, `photo`, `thumb`, `micro`, `forum`, `prv`, (`forum` | `prv`) AS `community`, `contact-type`, `bd` AS `birthday`, `self`
192                 FROM `contact` WHERE `nurl` = ? AND `uid` = ?", normalise_link($url), $uid);
193                 $r = dba::inArray($s);
194
195                 // Fetch contact data from the contact table for the given user, checking with the alias
196                 if (!DBM::is_result($r)) {
197                         $s = dba::p("SELECT `id`, `id` AS `cid`, 0 AS `gid`, 0 AS `zid`, `uid`, `url`, `nurl`, `alias`, `network`, `name`, `nick`, `addr`, `location`, `about`, `xmpp`,
198                                 `keywords`, `gender`, `photo`, `thumb`, `micro`, `forum`, `prv`, (`forum` | `prv`) AS `community`, `contact-type`, `bd` AS `birthday`, `self`
199                         FROM `contact` WHERE `alias` IN (?, ?, ?) AND `uid` = ?", normalise_link($url), $url, $ssl_url, $uid);
200                         $r = dba::inArray($s);
201                 }
202
203                 // Fetch the data from the contact table with "uid=0" (which is filled automatically)
204                 if (!DBM::is_result($r)) {
205                         $s = dba::p("SELECT `id`, 0 AS `cid`, `id` AS `zid`, 0 AS `gid`, `uid`, `url`, `nurl`, `alias`, `network`, `name`, `nick`, `addr`, `location`, `about`, `xmpp`,
206                         `keywords`, `gender`, `photo`, `thumb`, `micro`, `forum`, `prv`, (`forum` | `prv`) AS `community`, `contact-type`, `bd` AS `birthday`, 0 AS `self`
207                         FROM `contact` WHERE `nurl` = ? AND `uid` = 0", normalise_link($url));
208                         $r = dba::inArray($s);
209                 }
210
211                 // Fetch the data from the contact table with "uid=0" (which is filled automatically) - checked with the alias
212                 if (!DBM::is_result($r)) {
213                         $s = dba::p("SELECT `id`, 0 AS `cid`, `id` AS `zid`, 0 AS `gid`, `uid`, `url`, `nurl`, `alias`, `network`, `name`, `nick`, `addr`, `location`, `about`, `xmpp`,
214                         `keywords`, `gender`, `photo`, `thumb`, `micro`, `forum`, `prv`, (`forum` | `prv`) AS `community`, `contact-type`, `bd` AS `birthday`, 0 AS `self`
215                         FROM `contact` WHERE `alias` IN (?, ?, ?) AND `uid` = 0", normalise_link($url), $url, $ssl_url);
216                         $r = dba::inArray($s);
217                 }
218
219                 // Fetch the data from the gcontact table
220                 if (!DBM::is_result($r)) {
221                         $s = dba::p("SELECT 0 AS `id`, 0 AS `cid`, `id` AS `gid`, 0 AS `zid`, 0 AS `uid`, `url`, `nurl`, `alias`, `network`, `name`, `nick`, `addr`, `location`, `about`, '' AS `xmpp`,
222                         `keywords`, `gender`, `photo`, `photo` AS `thumb`, `photo` AS `micro`, `community` AS `forum`, 0 AS `prv`, `community`, `contact-type`, `birthday`, 0 AS `self`
223                         FROM `gcontact` WHERE `nurl` = ?", normalise_link($url));
224                         $r = dba::inArray($s);
225                 }
226
227                 if (DBM::is_result($r)) {
228                         // If there is more than one entry we filter out the connector networks
229                         if (count($r) > 1) {
230                                 foreach ($r as $id => $result) {
231                                         if ($result["network"] == NETWORK_STATUSNET) {
232                                                 unset($r[$id]);
233                                         }
234                                 }
235                         }
236
237                         $profile = array_shift($r);
238
239                         // "bd" always contains the upcoming birthday of a contact.
240                         // "birthday" might contain the birthday including the year of birth.
241                         if ($profile["birthday"] > '0001-01-01') {
242                                 $bd_timestamp = strtotime($profile["birthday"]);
243                                 $month = date("m", $bd_timestamp);
244                                 $day = date("d", $bd_timestamp);
245
246                                 $current_timestamp = time();
247                                 $current_year = date("Y", $current_timestamp);
248                                 $current_month = date("m", $current_timestamp);
249                                 $current_day = date("d", $current_timestamp);
250
251                                 $profile["bd"] = $current_year . "-" . $month . "-" . $day;
252                                 $current = $current_year . "-" . $current_month . "-" . $current_day;
253
254                                 if ($profile["bd"] < $current) {
255                                         $profile["bd"] = ( ++$current_year) . "-" . $month . "-" . $day;
256                                 }
257                         } else {
258                                 $profile["bd"] = '0001-01-01';
259                         }
260                 } else {
261                         $profile = $default;
262                 }
263
264                 if (($profile["photo"] == "") && isset($default["photo"])) {
265                         $profile["photo"] = $default["photo"];
266                 }
267
268                 if (($profile["name"] == "") && isset($default["name"])) {
269                         $profile["name"] = $default["name"];
270                 }
271
272                 if (($profile["network"] == "") && isset($default["network"])) {
273                         $profile["network"] = $default["network"];
274                 }
275
276                 if (($profile["thumb"] == "") && isset($profile["photo"])) {
277                         $profile["thumb"] = $profile["photo"];
278                 }
279
280                 if (($profile["micro"] == "") && isset($profile["thumb"])) {
281                         $profile["micro"] = $profile["thumb"];
282                 }
283
284                 if ((($profile["addr"] == "") || ($profile["name"] == "")) && ($profile["gid"] != 0)
285                         && in_array($profile["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))
286                 ) {
287                         Worker::add(PRIORITY_LOW, "UpdateGContact", $profile["gid"]);
288                 }
289
290                 // Show contact details of Diaspora contacts only if connected
291                 if (($profile["cid"] == 0) && ($profile["network"] == NETWORK_DIASPORA)) {
292                         $profile["location"] = "";
293                         $profile["about"] = "";
294                         $profile["gender"] = "";
295                         $profile["birthday"] = '0001-01-01';
296                 }
297
298                 $cache[$url][$uid] = $profile;
299
300                 return $profile;
301         }
302
303         /**
304          * @brief Get contact data for a given address
305          *
306          * The function looks at several places (contact table and gcontact table) for the contact
307          *
308          * @param string $addr The profile link
309          * @param int    $uid  User id
310          *
311          * @return array Contact data
312          */
313         public static function getDetailsByAddr($addr, $uid = -1)
314         {
315                 static $cache = array();
316
317                 if ($addr == '') {
318                         return array();
319                 }
320
321                 if ($uid == -1) {
322                         $uid = local_user();
323                 }
324
325                 // Fetch contact data from the contact table for the given user
326                 $r = q("SELECT `id`, `id` AS `cid`, 0 AS `gid`, 0 AS `zid`, `uid`, `url`, `nurl`, `alias`, `network`, `name`, `nick`, `addr`, `location`, `about`, `xmpp`,
327                         `keywords`, `gender`, `photo`, `thumb`, `micro`, `forum`, `prv`, (`forum` | `prv`) AS `community`, `contact-type`, `bd` AS `birthday`, `self`
328                 FROM `contact` WHERE `addr` = '%s' AND `uid` = %d", dbesc($addr), intval($uid));
329
330                 // Fetch the data from the contact table with "uid=0" (which is filled automatically)
331                 if (!DBM::is_result($r))
332                         $r = q("SELECT `id`, 0 AS `cid`, `id` AS `zid`, 0 AS `gid`, `uid`, `url`, `nurl`, `alias`, `network`, `name`, `nick`, `addr`, `location`, `about`, `xmpp`,
333                         `keywords`, `gender`, `photo`, `thumb`, `micro`, `forum`, `prv`, (`forum` | `prv`) AS `community`, `contact-type`, `bd` AS `birthday`, 0 AS `self`
334                         FROM `contact` WHERE `addr` = '%s' AND `uid` = 0", dbesc($addr));
335
336                 // Fetch the data from the gcontact table
337                 if (!DBM::is_result($r))
338                         $r = q("SELECT 0 AS `id`, 0 AS `cid`, `id` AS `gid`, 0 AS `zid`, 0 AS `uid`, `url`, `nurl`, `alias`, `network`, `name`, `nick`, `addr`, `location`, `about`, '' AS `xmpp`,
339                         `keywords`, `gender`, `photo`, `photo` AS `thumb`, `photo` AS `micro`, `community` AS `forum`, 0 AS `prv`, `community`, `contact-type`, `birthday`, 0 AS `self`
340                         FROM `gcontact` WHERE `addr` = '%s'", dbesc($addr));
341
342                 if (!DBM::is_result($r)) {
343                         $data = Probe::uri($addr);
344
345                         $profile = self::getDetailsByURL($data['url'], $uid);
346                 } else {
347                         $profile = $r[0];
348                 }
349
350                 return $profile;
351         }
352
353         /**
354          * @brief Returns the data array for the photo menu of a given contact
355          *
356          * @param array $contact contact
357          * @param int   $uid     optional, default 0
358          * @return array
359          */
360         public static function photoMenu(array $contact, $uid = 0)
361         {
362                 // @todo Unused, to be removed
363                 $a = get_app();
364
365                 $contact_url = '';
366                 $pm_url = '';
367                 $status_link = '';
368                 $photos_link = '';
369                 $posts_link = '';
370                 $contact_drop_link = '';
371                 $poke_link = '';
372
373                 if ($uid == 0) {
374                         $uid = local_user();
375                 }
376
377                 if ($contact['uid'] != $uid) {
378                         if ($uid == 0) {
379                                 $profile_link = zrl($contact['url']);
380                                 $menu = array('profile' => array(t('View Profile'), $profile_link, true));
381
382                                 return $menu;
383                         }
384
385                         $r = dba::select('contact', array(), array('nurl' => $contact['nurl'], 'network' => $contact['network'], 'uid' => $uid), array('limit' => 1));
386                         if ($r) {
387                                 return self::photoMenu($r, $uid);
388                         } else {
389                                 $profile_link = zrl($contact['url']);
390                                 $connlnk = 'follow/?url=' . $contact['url'];
391                                 $menu = array(
392                                         'profile' => array(t('View Profile'), $profile_link, true),
393                                         'follow' => array(t('Connect/Follow'), $connlnk, true)
394                                 );
395
396                                 return $menu;
397                         }
398                 }
399
400                 $sparkle = false;
401                 if ($contact['network'] === NETWORK_DFRN) {
402                         $sparkle = true;
403                         $profile_link = System::baseUrl() . '/redir/' . $contact['id'];
404                 } else {
405                         $profile_link = $contact['url'];
406                 }
407
408                 if ($profile_link === 'mailbox') {
409                         $profile_link = '';
410                 }
411
412                 if ($sparkle) {
413                         $status_link = $profile_link . '?url=status';
414                         $photos_link = $profile_link . '?url=photos';
415                         $profile_link = $profile_link . '?url=profile';
416                 }
417
418                 if (in_array($contact['network'], array(NETWORK_DFRN, NETWORK_DIASPORA))) {
419                         $pm_url = System::baseUrl() . '/message/new/' . $contact['id'];
420                 }
421
422                 if ($contact['network'] == NETWORK_DFRN) {
423                         $poke_link = System::baseUrl() . '/poke/?f=&c=' . $contact['id'];
424                 }
425
426                 $contact_url = System::baseUrl() . '/contacts/' . $contact['id'];
427
428                 $posts_link = System::baseUrl() . '/contacts/' . $contact['id'] . '/posts';
429                 $contact_drop_link = System::baseUrl() . '/contacts/' . $contact['id'] . '/drop?confirm=1';
430
431                 /**
432                  * Menu array:
433                  * "name" => [ "Label", "link", (bool)Should the link opened in a new tab? ]
434                  */
435                 $menu = array(
436                         'status' => array(t("View Status"), $status_link, true),
437                         'profile' => array(t("View Profile"), $profile_link, true),
438                         'photos' => array(t("View Photos"), $photos_link, true),
439                         'network' => array(t("Network Posts"), $posts_link, false),
440                         'edit' => array(t("View Contact"), $contact_url, false),
441                         'drop' => array(t("Drop Contact"), $contact_drop_link, false),
442                         'pm' => array(t("Send PM"), $pm_url, false),
443                         'poke' => array(t("Poke"), $poke_link, false),
444                 );
445
446
447                 $args = array('contact' => $contact, 'menu' => &$menu);
448
449                 call_hooks('contact_photo_menu', $args);
450
451                 $menucondensed = array();
452
453                 foreach ($menu as $menuname => $menuitem) {
454                         if ($menuitem[1] != '') {
455                                 $menucondensed[$menuname] = $menuitem;
456                         }
457                 }
458
459                 return $menucondensed;
460         }
461
462         /**
463          * @brief Returns ungrouped contact count or list for user
464          *
465          * Returns either the total number of ungrouped contacts for the given user
466          * id or a paginated list of ungrouped contacts.
467          *
468          * @param int $uid   uid
469          * @param int $start optional, default 0
470          * @param int $count optional, default 0
471          *
472          * @return array
473          */
474         public static function getUngroupedList($uid, $start = 0, $count = 0)
475         {
476                 if (!$count) {
477                         $r = q(
478                                 "SELECT COUNT(*) AS `total`
479                                  FROM `contact`
480                                  WHERE `uid` = %d
481                                  AND NOT `self`
482                                  AND NOT `blocked`
483                                  AND NOT `pending`
484                                  AND `id` NOT IN (
485                                         SELECT DISTINCT(`contact-id`)
486                                         FROM `group_member`
487                                         WHERE `uid` = %d
488                                 )", intval($uid), intval($uid)
489                         );
490
491                         return $r;
492                 }
493
494                 $r = q(
495                         "SELECT *
496                         FROM `contact`
497                         WHERE `uid` = %d
498                         AND NOT `self`
499                         AND NOT `blocked`
500                         AND NOT `pending`
501                         AND `id` NOT IN (
502                                 SELECT DISTINCT(`contact-id`)
503                                 FROM `group_member` WHERE `uid` = %d
504                         )
505                         LIMIT %d, %d", intval($uid), intval($uid), intval($start), intval($count)
506                 );
507                 return $r;
508         }
509
510         /**
511          * @brief Fetch the contact id for a given url and user
512          *
513          * First lookup in the contact table to find a record matching either `url`, `nurl`,
514          * `addr` or `alias`.
515          *
516          * If there's no record and we aren't looking for a public contact, we quit.
517          * If there's one, we check that it isn't time to update the picture else we
518          * directly return the found contact id.
519          *
520          * Second, we probe the provided $url wether it's http://server.tld/profile or
521          * nick@server.tld. We quit if we can't get any info back.
522          *
523          * Third, we create the contact record if it doesn't exist
524          *
525          * Fourth, we update the existing record with the new data (avatar, alias, nick)
526          * if there's any updates
527          *
528          * @param string  $url       Contact URL
529          * @param integer $uid       The user id for the contact (0 = public contact)
530          * @param boolean $no_update Don't update the contact
531          *
532          * @return integer Contact ID
533          */
534         public static function getIdForURL($url, $uid = 0, $no_update = false)
535         {
536                 logger("Get contact data for url " . $url . " and user " . $uid . " - " . System::callstack(), LOGGER_DEBUG);
537
538                 $contact_id = 0;
539
540                 if ($url == '') {
541                         return 0;
542                 }
543
544                 /// @todo Verify if we can't use Contact::getDetailsByUrl instead of the following
545                 // We first try the nurl (http://server.tld/nick), most common case
546                 $contact = dba::select('contact', array('id', 'avatar-date'), array('nurl' => normalise_link($url), 'uid' => $uid), array('limit' => 1));
547
548                 // Then the addr (nick@server.tld)
549                 if (!DBM::is_result($contact)) {
550                         $contact = dba::select('contact', array('id', 'avatar-date'), array('addr' => $url, 'uid' => $uid), array('limit' => 1));
551                 }
552
553                 // Then the alias (which could be anything)
554                 if (!DBM::is_result($contact)) {
555                         // The link could be provided as http although we stored it as https
556                         $ssl_url = str_replace('http://', 'https://', $url);
557                         $r = dba::select('contact', array('id', 'avatar-date'), array('`alias` IN (?, ?, ?) AND `uid` = ?', $url, normalise_link($url), $ssl_url, $uid), array('limit' => 1));
558                         $contact = dba::fetch($r);
559                         dba::close($r);
560                 }
561
562                 if (DBM::is_result($contact)) {
563                         $contact_id = $contact["id"];
564
565                         // Update the contact every 7 days
566                         $update_contact = ($contact['avatar-date'] < datetime_convert('', '', 'now -7 days'));
567
568                         // We force the update if the avatar is empty
569                         if ($contact['avatar'] == '') {
570                                 $update_contact = true;
571                         }
572
573                         if (!$update_contact || $no_update) {
574                                 return $contact_id;
575                         }
576                 } elseif ($uid != 0) {
577                         // Non-existing user-specific contact, exiting
578                         return 0;
579                 }
580
581                 $data = Probe::uri($url, "", $uid);
582
583                 // Last try in gcontact for unsupported networks
584                 if (!in_array($data["network"], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA, NETWORK_PUMPIO, NETWORK_MAIL))) {
585                         if ($uid != 0) {
586                                 return 0;
587                         }
588
589                         // Get data from the gcontact table
590                         $gcontacts = dba::select('gcontact', array('name', 'nick', 'url', 'photo', 'addr', 'alias', 'network'), array('nurl' => normalise_link($url)), array('limit' => 1));
591                         if (!DBM::is_result($gcontacts)) {
592                                 return 0;
593                         }
594
595                         $data = array_merge($data, $gcontacts);
596                 }
597
598                 if (!$contact_id && ($data["alias"] != '') && ($data["alias"] != $url)) {
599                         $contact_id = self::getIdForURL($data["alias"], $uid, true);
600                 }
601
602                 $url = $data["url"];
603                 if (!$contact_id) {
604                         dba::insert(
605                                 'contact', array('uid' => $uid, 'created' => datetime_convert(), 'url' => $data["url"],
606                                 'nurl' => normalise_link($data["url"]), 'addr' => $data["addr"],
607                                 'alias' => $data["alias"], 'notify' => $data["notify"], 'poll' => $data["poll"],
608                                 'name' => $data["name"], 'nick' => $data["nick"], 'photo' => $data["photo"],
609                                 'keywords' => $data["keywords"], 'location' => $data["location"], 'about' => $data["about"],
610                                 'network' => $data["network"], 'pubkey' => $data["pubkey"],
611                                 'rel' => CONTACT_IS_SHARING, 'priority' => $data["priority"],
612                                 'batch' => $data["batch"], 'request' => $data["request"],
613                                 'confirm' => $data["confirm"], 'poco' => $data["poco"],
614                                 'name-date' => datetime_convert(), 'uri-date' => datetime_convert(),
615                                 'avatar-date' => datetime_convert(), 'writable' => 1, 'blocked' => 0,
616                                 'readonly' => 0, 'pending' => 0)
617                         );
618
619                         $s = dba::select('contact', array('id'), array('nurl' => normalise_link($data["url"]), 'uid' => $uid), array('order' => array('id'), 'limit' => 2));
620                         $contacts = dba::inArray($s);
621                         if (!DBM::is_result($contacts)) {
622                                 return 0;
623                         }
624
625                         $contact_id = $contacts[0]["id"];
626
627                         // Update the newly created contact from data in the gcontact table
628                         $gcontact = dba::select('gcontact', array('location', 'about', 'keywords', 'gender'), array('nurl' => normalise_link($data["url"])), array('limit' => 1));
629                         if (DBM::is_result($gcontact)) {
630                                 // Only use the information when the probing hadn't fetched these values
631                                 if ($data['keywords'] != '') {
632                                         unset($gcontact['keywords']);
633                                 }
634                                 if ($data['location'] != '') {
635                                         unset($gcontact['location']);
636                                 }
637                                 if ($data['about'] != '') {
638                                         unset($gcontact['about']);
639                                 }
640                                 dba::update('contact', $gcontact, array('id' => $contact_id));
641                         }
642
643                         if (count($contacts) > 1 && $uid == 0 && $contact_id != 0 && $data["url"] != "") {
644                                 dba::delete('contact', array("`nurl` = ? AND `uid` = 0 AND `id` != ? AND NOT `self`",
645                                         normalise_link($data["url"]), $contact_id));
646                         }
647                 }
648
649                 self::updateAvatar($data["photo"], $uid, $contact_id);
650
651                 $contact = dba::select('contact', array('url', 'nurl', 'addr', 'alias', 'name', 'nick', 'keywords', 'location', 'about', 'avatar-date'), array('id' => $contact_id), array('limit' => 1));
652
653                 // This condition should always be true
654                 if (!DBM::is_result($contact)) {
655                         return $contact_id;
656                 }
657
658                 $updated = array('addr' => $data['addr'],
659                         'alias' => $data['alias'],
660                         'url' => $data['url'],
661                         'nurl' => normalise_link($data['url']),
662                         'name' => $data['name'],
663                         'nick' => $data['nick']);
664
665                 if ($data['keywords'] != '') {
666                         $updated['keywords'] = $data['keywords'];
667                 }
668                 if ($data['location'] != '') {
669                         $updated['location'] = $data['location'];
670                 }
671                 if ($data['about'] != '') {
672                         $updated['about'] = $data['about'];
673                 }
674
675                 if (($data["addr"] != $contact["addr"]) || ($data["alias"] != $contact["alias"])) {
676                         $updated['uri-date'] = datetime_convert();
677                 }
678                 if (($data["name"] != $contact["name"]) || ($data["nick"] != $contact["nick"])) {
679                         $updated['name-date'] = datetime_convert();
680                 }
681
682                 $updated['avatar-date'] = datetime_convert();
683
684                 dba::update('contact', $updated, array('id' => $contact_id), $contact);
685
686                 return $contact_id;
687         }
688
689         /**
690          * @brief Checks if the contact is blocked
691          *
692          * @param int $cid contact id
693          *
694          * @return boolean Is the contact blocked?
695          */
696         public static function isBlocked($cid)
697         {
698                 if ($cid == 0) {
699                         return false;
700                 }
701
702                 $blocked = dba::select('contact', array('blocked'), array('id' => $cid), array('limit' => 1));
703                 if (!DBM::is_result($blocked)) {
704                         return false;
705                 }
706                 return (bool) $blocked['blocked'];
707         }
708
709         /**
710          * @brief Checks if the contact is hidden
711          *
712          * @param int $cid contact id
713          *
714          * @return boolean Is the contact hidden?
715          */
716         public static function isHidden($cid)
717         {
718                 if ($cid == 0) {
719                         return false;
720                 }
721
722                 $hidden = dba::select('contact', array('hidden'), array('id' => $cid), array('limit' => 1));
723                 if (!DBM::is_result($hidden)) {
724                         return false;
725                 }
726                 return (bool) $hidden['hidden'];
727         }
728
729         /**
730          * @brief Returns posts from a given contact url
731          *
732          * @param string $contact_url Contact URL
733          *
734          * @return string posts in HTML
735          */
736         public static function getPostsFromUrl($contact_url)
737         {
738                 $a = self::getApp();
739
740                 require_once 'include/conversation.php';
741
742                 // There are no posts with "uid = 0" with connector networks
743                 // This speeds up the query a lot
744                 $r = q("SELECT `network`, `id` AS `author-id`, `contact-type` FROM `contact`
745                         WHERE `contact`.`nurl` = '%s' AND `contact`.`uid` = 0", dbesc(normalise_link($contact_url)));
746
747                 if (!DBM::is_result($r)) {
748                         return '';
749                 }
750
751                 if (in_array($r[0]["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, ""))) {
752                         $sql = "(`item`.`uid` = 0 OR (`item`.`uid` = %d AND NOT `item`.`global`))";
753                 } else {
754                         $sql = "`item`.`uid` = %d";
755                 }
756
757                 $author_id = intval($r[0]["author-id"]);
758
759                 $contact = ($r[0]["contact-type"] == ACCOUNT_TYPE_COMMUNITY ? 'owner-id' : 'author-id');
760
761                 $r = q(item_query() . " AND `item`.`" . $contact . "` = %d AND " . $sql .
762                         " ORDER BY `item`.`created` DESC LIMIT %d, %d", intval($author_id), intval(local_user()), intval($a->pager['start']), intval($a->pager['itemspage'])
763                 );
764
765
766                 $o = conversation($a, $r, 'community', false);
767
768                 $o .= alt_pager($a, count($r));
769
770                 return $o;
771         }
772
773         /**
774          * @brief Returns the account type name
775          *
776          * The function can be called with either the user or the contact array
777          *
778          * @param array $contact contact or user array
779          * @return string
780          */
781         public static function getAccountType(array $contact)
782         {
783                 // There are several fields that indicate that the contact or user is a forum
784                 // "page-flags" is a field in the user table,
785                 // "forum" and "prv" are used in the contact table. They stand for PAGE_COMMUNITY and PAGE_PRVGROUP.
786                 // "community" is used in the gcontact table and is true if the contact is PAGE_COMMUNITY or PAGE_PRVGROUP.
787                 if ((isset($contact['page-flags']) && (intval($contact['page-flags']) == PAGE_COMMUNITY))
788                         || (isset($contact['page-flags']) && (intval($contact['page-flags']) == PAGE_PRVGROUP))
789                         || (isset($contact['forum']) && intval($contact['forum']))
790                         || (isset($contact['prv']) && intval($contact['prv']))
791                         || (isset($contact['community']) && intval($contact['community']))
792                 ) {
793                         $type = ACCOUNT_TYPE_COMMUNITY;
794                 } else {
795                         $type = ACCOUNT_TYPE_PERSON;
796                 }
797
798                 // The "contact-type" (contact table) and "account-type" (user table) are more general then the chaos from above.
799                 if (isset($contact["contact-type"])) {
800                         $type = $contact["contact-type"];
801                 }
802                 if (isset($contact["account-type"])) {
803                         $type = $contact["account-type"];
804                 }
805
806                 switch ($type) {
807                         case ACCOUNT_TYPE_ORGANISATION:
808                                 $account_type = t("Organisation");
809                                 break;
810                         case ACCOUNT_TYPE_NEWS:
811                                 $account_type = t('News');
812                                 break;
813                         case ACCOUNT_TYPE_COMMUNITY:
814                                 $account_type = t("Forum");
815                                 break;
816                         default:
817                                 $account_type = "";
818                                 break;
819                 }
820
821                 return $account_type;
822         }
823
824         /**
825          * @brief Updates the avatar links in a contact only if needed
826          *
827          * @param string $avatar Link to avatar picture
828          * @param int    $uid    User id of contact owner
829          * @param int    $cid    Contact id
830          * @param bool   $force  force picture update
831          *
832          * @return array Returns array of the different avatar sizes
833          */
834         public static function updateAvatar($avatar, $uid, $cid, $force = false)
835         {
836                 // Limit = 1 returns the row so no need for dba:inArray()
837                 $r = dba::select('contact', array('avatar', 'photo', 'thumb', 'micro', 'nurl'), array('id' => $cid), array('limit' => 1));
838                 if (!DBM::is_result($r)) {
839                         return false;
840                 } else {
841                         $data = array($r["photo"], $r["thumb"], $r["micro"]);
842                 }
843
844                 if (($r["avatar"] != $avatar) || $force) {
845                         $photos = Photo::importProfilePhoto($avatar, $uid, $cid, true);
846
847                         if ($photos) {
848                                 dba::update(
849                                         'contact',
850                                         array('avatar' => $avatar, 'photo' => $photos[0], 'thumb' => $photos[1], 'micro' => $photos[2], 'avatar-date' => datetime_convert()),
851                                         array('id' => $cid)
852                                 );
853
854                                 // Update the public contact (contact id = 0)
855                                 if ($uid != 0) {
856                                         $pcontact = dba::select('contact', array('id'), array('nurl' => $r[0]['nurl']), array('limit' => 1));
857                                         if (DBM::is_result($pcontact)) {
858                                                 self::updateAvatar($avatar, 0, $pcontact['id'], $force);
859                                         }
860                                 }
861
862                                 return $photos;
863                         }
864                 }
865
866                 return $data;
867         }
868 }