2017-11-19 21:55:28 +00:00
< ? php
/**
2020-02-09 14:45:36 +00:00
* @ copyright Copyright ( C ) 2020 , Friendica
*
* @ license GNU AGPL version 3 or any later version
*
* This program is free software : you can redistribute it and / or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation , either version 3 of the
* License , or ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU Affero General Public License for more details .
*
* You should have received a copy of the GNU Affero General Public License
* along with this program . If not , see < https :// www . gnu . org / licenses />.
*
2017-11-19 21:55:28 +00:00
*/
2020-02-09 14:45:36 +00:00
2017-12-07 14:04:24 +00:00
namespace Friendica\Model ;
2017-11-19 21:55:28 +00:00
2019-08-15 15:23:00 +00:00
use Friendica\App\BaseURL ;
2018-10-24 06:15:24 +00:00
use Friendica\Content\Pager ;
2020-09-29 20:47:19 +00:00
use Friendica\Content\Text\HTML ;
2018-11-10 13:18:16 +00:00
use Friendica\Core\Hook ;
2018-10-29 21:20:46 +00:00
use Friendica\Core\Logger ;
2018-08-11 20:40:44 +00:00
use Friendica\Core\Protocol ;
2020-09-29 20:47:19 +00:00
use Friendica\Core\Renderer ;
2019-09-28 18:09:11 +00:00
use Friendica\Core\Session ;
2019-10-24 07:06:22 +00:00
use Friendica\Core\System ;
2017-11-19 21:55:28 +00:00
use Friendica\Core\Worker ;
2020-11-19 19:34:48 +00:00
use Friendica\Database\Database ;
2018-07-20 12:19:26 +00:00
use Friendica\Database\DBA ;
2019-12-15 21:34:11 +00:00
use Friendica\DI ;
2020-03-09 15:11:06 +00:00
use Friendica\Network\HTTPException ;
2018-01-25 01:47:33 +00:00
use Friendica\Network\Probe ;
2019-10-23 22:25:43 +00:00
use Friendica\Protocol\Activity ;
2018-09-15 18:54:45 +00:00
use Friendica\Protocol\ActivityPub ;
2018-09-05 05:02:06 +00:00
use Friendica\Protocol\DFRN ;
2018-10-21 05:53:47 +00:00
use Friendica\Protocol\Diaspora ;
2017-11-19 21:55:28 +00:00
use Friendica\Protocol\OStatus ;
2017-12-02 14:32:45 +00:00
use Friendica\Protocol\Salmon ;
2018-01-27 02:38:34 +00:00
use Friendica\Util\DateTimeFormat ;
2019-10-18 01:26:15 +00:00
use Friendica\Util\Images ;
2018-01-27 04:51:41 +00:00
use Friendica\Util\Network ;
2020-07-28 12:58:19 +00:00
use Friendica\Util\Proxy ;
2018-11-08 13:45:46 +00:00
use Friendica\Util\Strings ;
2017-11-19 21:55:28 +00:00
2017-11-22 14:02:55 +00:00
/**
2020-01-19 06:05:23 +00:00
* functions for interacting with a contact
2017-11-22 14:02:55 +00:00
*/
2019-12-15 22:28:01 +00:00
class Contact
2017-11-19 21:55:28 +00:00
{
2020-08-18 20:30:24 +00:00
const DEFAULT_AVATAR_PHOTO = '/images/person-300.jpg' ;
const DEFAULT_AVATAR_THUMB = '/images/person-80.jpg' ;
const DEFAULT_AVATAR_MICRO = '/images/person-48.jpg' ;
2018-07-27 23:25:57 +00:00
/**
2019-01-06 17:37:48 +00:00
* @ deprecated since version 2019.03
* @ see User :: PAGE_FLAGS_NORMAL
2018-07-27 23:25:57 +00:00
*/
2019-01-06 17:37:48 +00:00
const PAGE_NORMAL = User :: PAGE_FLAGS_NORMAL ;
/**
* @ deprecated since version 2019.03
* @ see User :: PAGE_FLAGS_SOAPBOX
*/
const PAGE_SOAPBOX = User :: PAGE_FLAGS_SOAPBOX ;
/**
* @ deprecated since version 2019.03
* @ see User :: PAGE_FLAGS_COMMUNITY
*/
const PAGE_COMMUNITY = User :: PAGE_FLAGS_COMMUNITY ;
/**
* @ deprecated since version 2019.03
* @ see User :: PAGE_FLAGS_FREELOVE
*/
const PAGE_FREELOVE = User :: PAGE_FLAGS_FREELOVE ;
/**
* @ deprecated since version 2019.03
* @ see User :: PAGE_FLAGS_BLOG
*/
const PAGE_BLOG = User :: PAGE_FLAGS_BLOG ;
/**
* @ deprecated since version 2019.03
* @ see User :: PAGE_FLAGS_PRVGROUP
*/
const PAGE_PRVGROUP = User :: PAGE_FLAGS_PRVGROUP ;
2018-07-27 23:25:57 +00:00
/**
* @ }
*/
2020-10-30 17:26:12 +00:00
const LOCK_INSERT = 'contact-insert' ;
2018-07-27 23:25:57 +00:00
/**
2019-01-12 19:52:36 +00:00
* Account types
2018-07-27 23:25:57 +00:00
*
2020-08-01 16:15:18 +00:00
* TYPE_UNKNOWN - unknown type
2019-01-06 22:08:35 +00:00
*
* TYPE_PERSON - the account belongs to a person
2018-07-27 23:25:57 +00:00
* Associated page types : PAGE_NORMAL , PAGE_SOAPBOX , PAGE_FREELOVE
*
2019-01-06 22:08:35 +00:00
* TYPE_ORGANISATION - the account belongs to an organisation
2018-07-27 23:25:57 +00:00
* Associated page type : PAGE_SOAPBOX
*
2019-01-06 22:08:35 +00:00
* TYPE_NEWS - the account is a news reflector
2018-07-27 23:25:57 +00:00
* Associated page type : PAGE_SOAPBOX
*
2019-01-06 22:08:35 +00:00
* TYPE_COMMUNITY - the account is community forum
2018-07-27 23:25:57 +00:00
* Associated page types : PAGE_COMMUNITY , PAGE_PRVGROUP
*
2019-01-06 22:08:35 +00:00
* TYPE_RELAY - the account is a relay
2018-07-27 23:25:57 +00:00
* This will only be assigned to contacts , not to user accounts
* @ {
*/
2019-01-06 22:08:35 +00:00
const TYPE_UNKNOWN = - 1 ;
const TYPE_PERSON = User :: ACCOUNT_TYPE_PERSON ;
const TYPE_ORGANISATION = User :: ACCOUNT_TYPE_ORGANISATION ;
const TYPE_NEWS = User :: ACCOUNT_TYPE_NEWS ;
const TYPE_COMMUNITY = User :: ACCOUNT_TYPE_COMMUNITY ;
const TYPE_RELAY = User :: ACCOUNT_TYPE_RELAY ;
2018-07-27 23:25:57 +00:00
/**
* @ }
*/
2018-07-25 02:53:46 +00:00
/**
2019-01-06 21:06:53 +00:00
* Contact_is
2018-07-25 02:53:46 +00:00
*
* Relationship types
* @ {
*/
2020-09-29 05:06:37 +00:00
const NOTHING = 0 ;
2018-07-25 02:53:46 +00:00
const FOLLOWER = 1 ;
const SHARING = 2 ;
const FRIEND = 3 ;
/**
* @ }
*/
2020-11-28 22:53:58 +00:00
const MIRROR_DEACTIVATED = 0 ;
const MIRROR_FORWARDED = 1 ;
const MIRROR_OWN_POST = 2 ;
const MIRROR_NATIVE_RESHARE = 3 ;
/**
2019-04-28 02:21:02 +00:00
* @ param array $fields Array of selected fields , empty for all
* @ param array $condition Array of fields for condition
* @ param array $params Array of several parameters
* @ return array
* @ throws \Exception
*/
2019-07-27 15:57:23 +00:00
public static function selectToArray ( array $fields = [], array $condition = [], array $params = [])
2019-04-28 02:21:02 +00:00
{
2019-07-27 15:57:23 +00:00
return DBA :: selectToArray ( 'contact' , $fields , $condition , $params );
2019-04-28 02:21:02 +00:00
}
2019-06-11 01:33:25 +00:00
/**
* @ param array $fields Array of selected fields , empty for all
* @ param array $condition Array of fields for condition
* @ param array $params Array of several parameters
* @ return array
* @ throws \Exception
*/
public static function selectFirst ( array $fields = [], array $condition = [], array $params = [])
{
$contact = DBA :: selectFirst ( 'contact' , $fields , $condition , $params );
return $contact ;
}
2019-08-28 20:27:48 +00:00
/**
2019-08-29 04:07:07 +00:00
* Insert a row into the contact table
* Important : You can ' t use DBA :: lastInsertId () after this call since it will be set to 0.
2019-08-28 20:27:48 +00:00
*
2020-11-19 19:34:48 +00:00
* @ param array $fields field array
* @ param int $duplicate_mode Do an update on a duplicate entry
2019-08-28 20:27:48 +00:00
*
* @ return boolean was the insert successful ?
* @ throws \Exception
*/
2020-11-19 19:34:48 +00:00
public static function insert ( array $fields , int $duplicate_mode = Database :: INSERT_DEFAULT )
2019-08-28 20:27:48 +00:00
{
2020-11-15 23:28:05 +00:00
if ( ! empty ( $fields [ 'baseurl' ]) && empty ( $fields [ 'gsid' ])) {
$fields [ 'gsid' ] = GServer :: getID ( $fields [ 'baseurl' ], true );
}
if ( empty ( $fields [ 'created' ])) {
$fields [ 'created' ] = DateTimeFormat :: utcNow ();
}
2020-11-19 19:34:48 +00:00
$ret = DBA :: insert ( 'contact' , $fields , $duplicate_mode );
2019-08-29 05:22:29 +00:00
$contact = DBA :: selectFirst ( 'contact' , [ 'nurl' , 'uid' ], [ 'id' => DBA :: lastInsertId ()]);
2019-08-28 20:27:48 +00:00
if ( ! DBA :: isResult ( $contact )) {
// Shouldn't happen
return $ret ;
}
// Search for duplicated contacts and get rid of them
2019-08-30 05:52:21 +00:00
self :: removeDuplicates ( $contact [ 'nurl' ], $contact [ 'uid' ]);
2019-08-28 20:27:48 +00:00
return $ret ;
}
2019-03-01 09:50:31 +00:00
/**
2019-05-06 18:46:30 +00:00
* @ param integer $id Contact ID
* @ param array $fields Array of selected fields , empty for all
2019-03-01 09:50:31 +00:00
* @ return array | boolean Contact record if it exists , false otherwise
* @ throws \Exception
*/
2019-05-06 18:46:30 +00:00
public static function getById ( $id , $fields = [])
2019-03-01 09:50:31 +00:00
{
2019-05-06 18:46:30 +00:00
return DBA :: selectFirst ( 'contact' , $fields , [ 'id' => $id ]);
2019-03-01 09:50:31 +00:00
}
2020-06-26 05:28:25 +00:00
/**
* Fetches a contact by a given url
*
* @ param string $url profile url
* @ param boolean $update true = always update , false = never update , null = update when not found or outdated
2020-07-15 21:08:42 +00:00
* @ param array $fields Field list
* @ param integer $uid User ID of the contact
2020-06-26 05:28:25 +00:00
* @ return array contact array
*/
2020-07-15 17:06:48 +00:00
public static function getByURL ( string $url , $update = null , array $fields = [], int $uid = 0 )
2020-06-26 05:28:25 +00:00
{
if ( $update || is_null ( $update )) {
2020-07-15 21:08:42 +00:00
$cid = self :: getIdForURL ( $url , $uid , $update );
2020-06-26 05:28:25 +00:00
if ( empty ( $cid )) {
return [];
}
2020-07-29 19:48:26 +00:00
$contact = self :: getById ( $cid , $fields );
if ( empty ( $contact )) {
return [];
}
return $contact ;
2020-06-26 05:28:25 +00:00
}
2020-07-15 21:08:42 +00:00
// Add internal fields
$removal = [];
2020-07-16 03:52:18 +00:00
if ( ! empty ( $fields )) {
2020-10-03 10:52:34 +00:00
foreach ([ 'id' , 'avatar' , 'created' , 'updated' , 'last-update' , 'success_update' , 'failure_update' , 'network' ] as $internal ) {
2020-07-16 03:52:18 +00:00
if ( ! in_array ( $internal , $fields )) {
$fields [] = $internal ;
$removal [] = $internal ;
}
}
2020-07-15 21:08:42 +00:00
}
2020-06-26 05:28:25 +00:00
// We first try the nurl (http://server.tld/nick), most common case
$options = [ 'order' => [ 'id' ]];
$contact = DBA :: selectFirst ( 'contact' , $fields , [ 'nurl' => Strings :: normaliseLink ( $url ), 'uid' => $uid , 'deleted' => false ], $options );
// Then the addr (nick@server.tld)
if ( ! DBA :: isResult ( $contact )) {
$contact = DBA :: selectFirst ( 'contact' , $fields , [ 'addr' => str_replace ( 'acct:' , '' , $url ), 'uid' => $uid , 'deleted' => false ], $options );
}
// Then the alias (which could be anything)
if ( ! DBA :: isResult ( $contact )) {
// The link could be provided as http although we stored it as https
$ssl_url = str_replace ( 'http://' , 'https://' , $url );
$condition = [ '`alias` IN (?, ?, ?) AND `uid` = ? AND NOT `deleted`' , $url , Strings :: normaliseLink ( $url ), $ssl_url , $uid ];
$contact = DBA :: selectFirst ( 'contact' , $fields , $condition , $options );
}
2020-07-15 21:08:42 +00:00
2020-07-29 19:48:26 +00:00
if ( ! DBA :: isResult ( $contact )) {
return [];
}
2020-07-15 21:08:42 +00:00
// Update the contact in the background if needed
2020-10-03 10:52:34 +00:00
$updated = max ( $contact [ 'success_update' ], $contact [ 'created' ], $contact [ 'updated' ], $contact [ 'last-update' ], $contact [ 'failure_update' ]);
if (( $updated < DateTimeFormat :: utc ( 'now -7 days' )) && in_array ( $contact [ 'network' ], Protocol :: FEDERATED )) {
2020-08-06 18:53:45 +00:00
Worker :: add ( PRIORITY_LOW , " UpdateContact " , $contact [ 'id' ]);
2020-07-15 21:08:42 +00:00
}
// Remove the internal fields
foreach ( $removal as $internal ) {
unset ( $contact [ $internal ]);
}
2020-06-26 05:28:25 +00:00
return $contact ;
}
2020-07-15 04:42:04 +00:00
/**
* Fetches a contact for a given user by a given url .
* In difference to " getByURL " the function will fetch a public contact when no user contact had been found .
*
* @ param string $url profile url
* @ param integer $uid User ID of the contact
* @ param boolean $update true = always update , false = never update , null = update when not found or outdated
2020-07-15 21:08:42 +00:00
* @ param array $fields Field list
2020-07-15 04:42:04 +00:00
* @ return array contact array
*/
2020-07-15 17:29:52 +00:00
public static function getByURLForUser ( string $url , int $uid = 0 , $update = false , array $fields = [])
2020-07-15 04:42:04 +00:00
{
if ( $uid != 0 ) {
2020-07-15 17:06:48 +00:00
$contact = self :: getByURL ( $url , $update , $fields , $uid );
2020-07-15 04:42:04 +00:00
if ( ! empty ( $contact )) {
if ( ! empty ( $contact [ 'id' ])) {
$contact [ 'cid' ] = $contact [ 'id' ];
$contact [ 'zid' ] = 0 ;
}
return $contact ;
}
}
2020-07-15 17:06:48 +00:00
$contact = self :: getByURL ( $url , $update , $fields );
2020-07-15 04:42:04 +00:00
if ( ! empty ( $contact [ 'id' ])) {
$contact [ 'cid' ] = 0 ;
$contact [ 'zid' ] = $contact [ 'id' ];
}
return $contact ;
}
2018-12-08 20:28:01 +00:00
/**
2020-01-19 06:05:23 +00:00
* Tests if the given contact is a follower
2018-12-08 20:28:01 +00:00
*
* @ param int $cid Either public contact id or user ' s contact id
* @ param int $uid User ID
*
* @ return boolean is the contact id a follower ?
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2019-01-06 21:06:53 +00:00
* @ throws \ImagickException
2018-12-08 20:28:01 +00:00
*/
public static function isFollower ( $cid , $uid )
{
2020-08-04 04:47:02 +00:00
if ( Contact\User :: isBlocked ( $cid , $uid )) {
2018-12-08 20:28:01 +00:00
return false ;
}
$cdata = self :: getPublicAndUserContacID ( $cid , $uid );
if ( empty ( $cdata [ 'user' ])) {
return false ;
}
$condition = [ 'id' => $cdata [ 'user' ], 'rel' => [ self :: FOLLOWER , self :: FRIEND ]];
return DBA :: exists ( 'contact' , $condition );
}
2019-07-17 21:37:13 +00:00
/**
2020-01-19 06:05:23 +00:00
* Tests if the given contact url is a follower
2019-07-17 21:37:13 +00:00
*
* @ param string $url Contact URL
* @ param int $uid User ID
*
* @ return boolean is the contact id a follower ?
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2019-07-17 21:37:13 +00:00
* @ throws \ImagickException
*/
public static function isFollowerByURL ( $url , $uid )
{
2020-08-07 13:49:59 +00:00
$cid = self :: getIdForURL ( $url , $uid );
2019-07-17 21:37:13 +00:00
if ( empty ( $cid )) {
return false ;
}
return self :: isFollower ( $cid , $uid );
}
/**
2020-01-19 06:05:23 +00:00
* Tests if the given user follow the given contact
2019-07-17 21:37:13 +00:00
*
* @ param int $cid Either public contact id or user ' s contact id
* @ param int $uid User ID
*
* @ return boolean is the contact url being followed ?
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2019-07-17 21:37:13 +00:00
* @ throws \ImagickException
*/
public static function isSharing ( $cid , $uid )
{
2020-08-04 04:47:02 +00:00
if ( Contact\User :: isBlocked ( $cid , $uid )) {
2019-07-17 21:37:13 +00:00
return false ;
}
$cdata = self :: getPublicAndUserContacID ( $cid , $uid );
if ( empty ( $cdata [ 'user' ])) {
return false ;
}
$condition = [ 'id' => $cdata [ 'user' ], 'rel' => [ self :: SHARING , self :: FRIEND ]];
return DBA :: exists ( 'contact' , $condition );
}
/**
2020-01-19 06:05:23 +00:00
* Tests if the given user follow the given contact url
2019-07-17 21:37:13 +00:00
*
* @ param string $url Contact URL
* @ param int $uid User ID
*
* @ return boolean is the contact url being followed ?
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2019-07-17 21:37:13 +00:00
* @ throws \ImagickException
*/
public static function isSharingByURL ( $url , $uid )
{
2020-08-07 13:49:59 +00:00
$cid = self :: getIdForURL ( $url , $uid );
2019-07-17 21:37:13 +00:00
if ( empty ( $cid )) {
return false ;
}
return self :: isSharing ( $cid , $uid );
}
2018-12-04 07:12:55 +00:00
/**
2020-01-19 06:05:23 +00:00
* Get the basepath for a given contact link
2018-12-04 07:12:55 +00:00
*
* @ param string $url The contact link
2020-01-01 18:57:55 +00:00
* @ param boolean $dont_update Don ' t update the contact
2018-12-04 07:12:55 +00:00
*
* @ return string basepath
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2019-01-06 21:06:53 +00:00
* @ throws \ImagickException
2018-12-04 07:12:55 +00:00
*/
2019-09-21 13:17:33 +00:00
public static function getBasepath ( $url , $dont_update = false )
2018-12-04 07:12:55 +00:00
{
2020-01-01 17:54:36 +00:00
$contact = DBA :: selectFirst ( 'contact' , [ 'id' , 'baseurl' ], [ 'uid' => 0 , 'nurl' => Strings :: normaliseLink ( $url )]);
if ( ! DBA :: isResult ( $contact )) {
return '' ;
}
2019-07-05 06:41:48 +00:00
if ( ! empty ( $contact [ 'baseurl' ])) {
return $contact [ 'baseurl' ];
2019-09-21 13:17:33 +00:00
} elseif ( $dont_update ) {
return '' ;
2018-12-04 07:12:55 +00:00
}
2020-01-01 17:54:36 +00:00
// Update the existing contact
2020-08-06 18:53:45 +00:00
self :: updateFromProbe ( $contact [ 'id' ]);
2019-07-05 06:41:48 +00:00
2020-01-01 17:54:36 +00:00
// And fetch the result
$contact = DBA :: selectFirst ( 'contact' , [ 'baseurl' ], [ 'id' => $contact [ 'id' ]]);
if ( empty ( $contact [ 'baseurl' ])) {
Logger :: info ( 'No baseurl for contact' , [ 'url' => $url ]);
return '' ;
2019-07-05 06:41:48 +00:00
}
2020-01-01 17:54:36 +00:00
Logger :: info ( 'Found baseurl for contact' , [ 'url' => $url , 'baseurl' => $contact [ 'baseurl' ]]);
return $contact [ 'baseurl' ];
2018-12-04 07:12:55 +00:00
}
2019-09-21 12:39:07 +00:00
/**
2019-09-21 13:19:00 +00:00
* Check if the given contact url is on the same server
2019-09-21 12:39:07 +00:00
*
* @ param string $url The contact link
*
2019-09-21 13:19:00 +00:00
* @ return boolean Is it the same server ?
2019-09-21 12:39:07 +00:00
*/
public static function isLocal ( $url )
{
2019-12-30 22:00:08 +00:00
return Strings :: compareLink ( self :: getBasepath ( $url , true ), DI :: baseUrl ());
2019-09-21 12:39:07 +00:00
}
2020-01-16 06:43:21 +00:00
/**
* Check if the given contact ID is on the same server
*
* @ param string $url The contact link
*
* @ return boolean Is it the same server ?
*/
public static function isLocalById ( int $cid )
{
$contact = DBA :: selectFirst ( 'contact' , [ 'url' , 'baseurl' ], [ 'id' => $cid ]);
if ( ! DBA :: isResult ( $contact )) {
return false ;
}
if ( empty ( $contact [ 'baseurl' ])) {
$baseurl = self :: getBasepath ( $contact [ 'url' ], true );
} else {
$baseurl = $contact [ 'baseurl' ];
}
return Strings :: compareLink ( $baseurl , DI :: baseUrl ());
}
2019-02-10 17:19:10 +00:00
/**
* Returns the public contact id of the given user id
*
* @ param integer $uid User ID
*
* @ return integer | boolean Public contact id for given user id
2020-01-19 15:29:55 +00:00
* @ throws \Exception
2019-02-10 17:19:10 +00:00
*/
public static function getPublicIdByUserId ( $uid )
{
$self = DBA :: selectFirst ( 'contact' , [ 'url' ], [ 'self' => true , 'uid' => $uid ]);
if ( ! DBA :: isResult ( $self )) {
return false ;
}
2020-08-07 13:49:59 +00:00
return self :: getIdForURL ( $self [ 'url' ]);
2019-02-10 17:19:10 +00:00
}
2018-08-25 13:48:00 +00:00
/**
2020-01-19 06:05:23 +00:00
* Returns the contact id for the user and the public contact id for a given contact id
2018-08-25 13:48:00 +00:00
*
* @ param int $cid Either public contact id or user ' s contact id
* @ param int $uid User ID
*
* @ return array with public and user ' s contact id
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2019-01-06 21:06:53 +00:00
* @ throws \ImagickException
2018-08-25 13:48:00 +00:00
*/
2018-12-08 20:28:01 +00:00
public static function getPublicAndUserContacID ( $cid , $uid )
2018-08-25 13:48:00 +00:00
{
if ( empty ( $uid ) || empty ( $cid )) {
return [];
}
$contact = DBA :: selectFirst ( 'contact' , [ 'id' , 'uid' , 'url' ], [ 'id' => $cid ]);
if ( ! DBA :: isResult ( $contact )) {
return [];
}
// We quit when the user id don't match the user id of the provided contact
if (( $contact [ 'uid' ] != $uid ) && ( $contact [ 'uid' ] != 0 )) {
return [];
}
if ( $contact [ 'uid' ] != 0 ) {
2020-12-07 06:43:43 +00:00
$pcid = self :: getIdForURL ( $contact [ 'url' ], 0 , false , [ 'url' => $contact [ 'url' ]]);
2018-08-25 13:48:00 +00:00
if ( empty ( $pcid )) {
return [];
}
$ucid = $contact [ 'id' ];
} else {
$pcid = $contact [ 'id' ];
2020-12-07 06:43:43 +00:00
$ucid = self :: getIdForURL ( $contact [ 'url' ], $uid );
2018-08-25 13:48:00 +00:00
}
return [ 'public' => $pcid , 'user' => $ucid ];
}
2019-05-02 20:03:27 +00:00
/**
* Returns contact details for a given contact id in combination with a user id
*
* @ param int $cid A contact ID
* @ param int $uid The User ID
* @ param array $fields The selected fields for the contact
*
* @ return array The contact details
*
* @ throws \Exception
*/
public static function getContactForUser ( $cid , $uid , array $fields = [])
{
$contact = DBA :: selectFirst ( 'contact' , $fields , [ 'id' => $cid , 'uid' => $uid ]);
if ( ! DBA :: isResult ( $contact )) {
return [];
} else {
return $contact ;
}
}
2017-12-04 03:27:49 +00:00
/**
* Creates the self - contact for the provided user id
*
* @ param int $uid
* @ return bool Operation success
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2017-12-04 03:27:49 +00:00
*/
public static function createSelfFromUserId ( $uid )
{
// Only create the entry if it doesn't exist yet
2018-07-20 12:19:26 +00:00
if ( DBA :: exists ( 'contact' , [ 'uid' => $uid , 'self' => true ])) {
2017-12-04 03:27:49 +00:00
return true ;
}
2020-09-26 20:59:28 +00:00
$user = DBA :: selectFirst ( 'user' , [ 'uid' , 'username' , 'nickname' , 'pubkey' , 'prvkey' ], [ 'uid' => $uid ]);
2018-07-21 12:46:04 +00:00
if ( ! DBA :: isResult ( $user )) {
2017-12-04 03:27:49 +00:00
return false ;
}
2018-07-20 12:19:26 +00:00
$return = DBA :: insert ( 'contact' , [
2017-12-04 03:27:49 +00:00
'uid' => $user [ 'uid' ],
2018-01-27 02:38:34 +00:00
'created' => DateTimeFormat :: utcNow (),
2017-12-04 03:27:49 +00:00
'self' => 1 ,
'name' => $user [ 'username' ],
'nick' => $user [ 'nickname' ],
2020-09-26 20:59:28 +00:00
'pubkey' => $user [ 'pubkey' ],
'prvkey' => $user [ 'prvkey' ],
2019-12-30 22:00:08 +00:00
'photo' => DI :: baseUrl () . '/photo/profile/' . $user [ 'uid' ] . '.jpg' ,
'thumb' => DI :: baseUrl () . '/photo/avatar/' . $user [ 'uid' ] . '.jpg' ,
'micro' => DI :: baseUrl () . '/photo/micro/' . $user [ 'uid' ] . '.jpg' ,
2017-12-04 03:27:49 +00:00
'blocked' => 0 ,
'pending' => 0 ,
2019-12-30 22:00:08 +00:00
'url' => DI :: baseUrl () . '/profile/' . $user [ 'nickname' ],
'nurl' => Strings :: normaliseLink ( DI :: baseUrl () . '/profile/' . $user [ 'nickname' ]),
'addr' => $user [ 'nickname' ] . '@' . substr ( DI :: baseUrl (), strpos ( DI :: baseUrl (), '://' ) + 3 ),
'request' => DI :: baseUrl () . '/dfrn_request/' . $user [ 'nickname' ],
'notify' => DI :: baseUrl () . '/dfrn_notify/' . $user [ 'nickname' ],
'poll' => DI :: baseUrl () . '/dfrn_poll/' . $user [ 'nickname' ],
'confirm' => DI :: baseUrl () . '/dfrn_confirm/' . $user [ 'nickname' ],
'poco' => DI :: baseUrl () . '/poco/' . $user [ 'nickname' ],
2018-01-27 02:38:34 +00:00
'name-date' => DateTimeFormat :: utcNow (),
'uri-date' => DateTimeFormat :: utcNow (),
'avatar-date' => DateTimeFormat :: utcNow (),
2017-12-04 03:27:49 +00:00
'closeness' => 0
]);
return $return ;
}
2018-03-24 06:15:18 +00:00
/**
* Updates the self - contact for the provided user id
*
2019-01-06 21:06:53 +00:00
* @ param int $uid
2018-03-24 06:15:18 +00:00
* @ param boolean $update_avatar Force the avatar update
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2018-03-24 06:15:18 +00:00
*/
public static function updateSelfFromUserID ( $uid , $update_avatar = false )
{
2020-09-26 20:59:28 +00:00
$fields = [ 'id' , 'name' , 'nick' , 'location' , 'about' , 'keywords' , 'avatar' , 'prvkey' , 'pubkey' ,
2019-09-18 05:20:33 +00:00
'xmpp' , 'contact-type' , 'forum' , 'prv' , 'avatar-date' , 'url' , 'nurl' , 'unsearchable' ,
2018-12-22 20:12:32 +00:00
'photo' , 'thumb' , 'micro' , 'addr' , 'request' , 'notify' , 'poll' , 'confirm' , 'poco' ];
2018-07-20 12:19:26 +00:00
$self = DBA :: selectFirst ( 'contact' , $fields , [ 'uid' => $uid , 'self' => true ]);
2018-07-21 12:46:04 +00:00
if ( ! DBA :: isResult ( $self )) {
2018-03-24 06:15:18 +00:00
return ;
}
2020-09-26 20:59:28 +00:00
$fields = [ 'nickname' , 'page-flags' , 'account-type' , 'prvkey' , 'pubkey' ];
2018-07-20 12:19:26 +00:00
$user = DBA :: selectFirst ( 'user' , $fields , [ 'uid' => $uid ]);
2018-07-21 12:46:04 +00:00
if ( ! DBA :: isResult ( $user )) {
2018-03-24 06:15:18 +00:00
return ;
}
2020-02-09 07:36:19 +00:00
$fields = [ 'name' , 'photo' , 'thumb' , 'about' , 'address' , 'locality' , 'region' ,
2020-01-28 04:00:18 +00:00
'country-name' , 'pub_keywords' , 'xmpp' , 'net-publish' ];
2020-01-23 00:34:15 +00:00
$profile = DBA :: selectFirst ( 'profile' , $fields , [ 'uid' => $uid ]);
2018-07-21 12:46:04 +00:00
if ( ! DBA :: isResult ( $profile )) {
2018-03-24 06:15:18 +00:00
return ;
}
2019-06-19 17:05:29 +00:00
$file_suffix = 'jpg' ;
2018-03-24 06:15:18 +00:00
$fields = [ 'name' => $profile [ 'name' ], 'nick' => $user [ 'nickname' ],
2018-03-25 08:15:22 +00:00
'avatar-date' => $self [ 'avatar-date' ], 'location' => Profile :: formatLocation ( $profile ),
2018-03-24 06:15:18 +00:00
'about' => $profile [ 'about' ], 'keywords' => $profile [ 'pub_keywords' ],
2020-09-26 20:59:28 +00:00
'contact-type' => $user [ 'account-type' ], 'prvkey' => $user [ 'prvkey' ],
'pubkey' => $user [ 'pubkey' ], 'xmpp' => $profile [ 'xmpp' ]];
2018-03-24 06:15:18 +00:00
2020-12-07 06:43:43 +00:00
// it seems as if ported accounts can have wrong values, so we make sure that now everything is fine.
$fields [ 'url' ] = DI :: baseUrl () . '/profile/' . $user [ 'nickname' ];
$fields [ 'nurl' ] = Strings :: normaliseLink ( $fields [ 'url' ]);
$fields [ 'addr' ] = $user [ 'nickname' ] . '@' . substr ( DI :: baseUrl (), strpos ( DI :: baseUrl (), '://' ) + 3 );
$fields [ 'request' ] = DI :: baseUrl () . '/dfrn_request/' . $user [ 'nickname' ];
$fields [ 'notify' ] = DI :: baseUrl () . '/dfrn_notify/' . $user [ 'nickname' ];
$fields [ 'poll' ] = DI :: baseUrl () . '/dfrn_poll/' . $user [ 'nickname' ];
$fields [ 'confirm' ] = DI :: baseUrl () . '/dfrn_confirm/' . $user [ 'nickname' ];
$fields [ 'poco' ] = DI :: baseUrl () . '/poco/' . $user [ 'nickname' ];
2018-12-11 19:03:29 +00:00
$avatar = Photo :: selectFirst ([ 'resource-id' , 'type' ], [ 'uid' => $uid , 'profile' => true ]);
2018-07-21 12:46:04 +00:00
if ( DBA :: isResult ( $avatar )) {
2018-03-25 17:26:40 +00:00
if ( $update_avatar ) {
$fields [ 'avatar-date' ] = DateTimeFormat :: utcNow ();
}
2018-03-25 08:15:22 +00:00
2018-03-25 17:26:40 +00:00
// Creating the path to the avatar, beginning with the file suffix
2019-10-18 01:26:15 +00:00
$types = Images :: supportedTypes ();
2018-03-25 17:26:40 +00:00
if ( isset ( $types [ $avatar [ 'type' ]])) {
$file_suffix = $types [ $avatar [ 'type' ]];
}
2018-03-25 08:15:22 +00:00
2018-03-25 17:26:40 +00:00
// We are adding a timestamp value so that other systems won't use cached content
$timestamp = strtotime ( $fields [ 'avatar-date' ]);
2018-03-25 08:15:22 +00:00
2019-12-30 22:00:08 +00:00
$prefix = DI :: baseUrl () . '/photo/' . $avatar [ 'resource-id' ] . '-' ;
2018-03-25 17:26:40 +00:00
$suffix = '.' . $file_suffix . '?ts=' . $timestamp ;
2018-03-25 08:15:22 +00:00
2018-03-25 17:26:40 +00:00
$fields [ 'photo' ] = $prefix . '4' . $suffix ;
$fields [ 'thumb' ] = $prefix . '5' . $suffix ;
$fields [ 'micro' ] = $prefix . '6' . $suffix ;
} else {
// We hadn't found a photo entry, so we use the default avatar
2020-12-07 06:43:43 +00:00
$fields [ 'photo' ] = self :: getDefaultAvatar ( $fields , Proxy :: SIZE_SMALL );
$fields [ 'thumb' ] = self :: getDefaultAvatar ( $fields , Proxy :: SIZE_THUMB );
$fields [ 'micro' ] = self :: getDefaultAvatar ( $fields , Proxy :: SIZE_MICRO );
2018-03-25 17:26:40 +00:00
}
2018-03-24 06:15:18 +00:00
2019-12-30 22:00:08 +00:00
$fields [ 'avatar' ] = DI :: baseUrl () . '/photo/profile/' . $uid . '.' . $file_suffix ;
2019-01-06 17:37:48 +00:00
$fields [ 'forum' ] = $user [ 'page-flags' ] == User :: PAGE_FLAGS_COMMUNITY ;
$fields [ 'prv' ] = $user [ 'page-flags' ] == User :: PAGE_FLAGS_PRVGROUP ;
2020-02-16 15:39:44 +00:00
$fields [ 'unsearchable' ] = ! $profile [ 'net-publish' ];
2018-03-24 06:15:18 +00:00
$update = false ;
foreach ( $fields as $field => $content ) {
2018-12-22 20:12:32 +00:00
if ( $self [ $field ] != $content ) {
2018-03-24 06:15:18 +00:00
$update = true ;
}
}
if ( $update ) {
2019-04-09 05:15:23 +00:00
if ( $fields [ 'name' ] != $self [ 'name' ]) {
$fields [ 'name-date' ] = DateTimeFormat :: utcNow ();
}
$fields [ 'updated' ] = DateTimeFormat :: utcNow ();
2018-07-20 12:19:26 +00:00
DBA :: update ( 'contact' , $fields , [ 'id' => $self [ 'id' ]]);
2018-03-25 08:20:13 +00:00
// Update the public contact as well
2018-07-20 12:19:26 +00:00
DBA :: update ( 'contact' , $fields , [ 'uid' => 0 , 'nurl' => $self [ 'nurl' ]]);
2018-04-14 08:03:15 +00:00
// Update the profile
2019-12-30 22:00:08 +00:00
$fields = [ 'photo' => DI :: baseUrl () . '/photo/profile/' . $uid . '.' . $file_suffix ,
'thumb' => DI :: baseUrl () . '/photo/avatar/' . $uid . '.' . $file_suffix ];
2020-01-23 00:34:15 +00:00
DBA :: update ( 'profile' , $fields , [ 'uid' => $uid ]);
2018-03-24 06:15:18 +00:00
}
}
2017-11-19 21:55:28 +00:00
/**
2020-01-19 06:05:23 +00:00
* Marks a contact for removal
2017-11-19 21:55:28 +00:00
*
2017-11-22 14:02:55 +00:00
* @ param int $id contact id
2017-11-19 21:55:28 +00:00
* @ return null
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2017-11-19 21:55:28 +00:00
*/
public static function remove ( $id )
{
// We want just to make sure that we don't delete our "self" contact
2018-07-20 12:19:26 +00:00
$contact = DBA :: selectFirst ( 'contact' , [ 'uid' ], [ 'id' => $id , 'self' => false ]);
2020-12-15 22:56:46 +00:00
if ( ! DBA :: isResult ( $contact )) {
2017-11-19 21:55:28 +00:00
return ;
}
2018-08-12 17:15:47 +00:00
// Archive the contact
2018-10-13 18:13:01 +00:00
DBA :: update ( 'contact' , [ 'archive' => true , 'network' => Protocol :: PHANTOM , 'deleted' => true ], [ 'id' => $id ]);
2017-11-19 21:55:28 +00:00
2018-08-12 17:15:47 +00:00
// Delete it in the background
2019-02-21 19:32:31 +00:00
Worker :: add ( PRIORITY_MEDIUM , 'RemoveContact' , $id );
2017-11-19 21:55:28 +00:00
}
/**
2020-01-19 06:05:23 +00:00
* Sends an unfriend message . Does not remove the contact
2017-11-19 21:55:28 +00:00
*
2018-09-05 05:02:06 +00:00
* @ param array $user User unfriending
* @ param array $contact Contact unfriended
* @ param boolean $dissolve Remove the contact on the remote side
2017-11-23 04:13:12 +00:00
* @ return void
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2019-01-06 21:06:53 +00:00
* @ throws \ImagickException
2017-11-19 21:55:28 +00:00
*/
2018-09-05 05:02:06 +00:00
public static function terminateFriendship ( array $user , array $contact , $dissolve = false )
2017-11-19 21:55:28 +00:00
{
2019-01-13 18:03:13 +00:00
if ( empty ( $contact [ 'network' ])) {
return ;
}
2019-05-02 13:05:31 +00:00
$protocol = $contact [ 'network' ];
if (( $protocol == Protocol :: DFRN ) && ! self :: isLegacyDFRNContact ( $contact )) {
$protocol = Protocol :: ACTIVITYPUB ;
}
if (( $protocol == Protocol :: DFRN ) && $dissolve ) {
2018-09-05 05:02:06 +00:00
DFRN :: deliver ( $user , $contact , 'placeholder' , true );
2019-05-02 13:05:31 +00:00
} elseif ( in_array ( $protocol , [ Protocol :: OSTATUS , Protocol :: DFRN ])) {
2017-11-19 21:55:28 +00:00
// create an unfollow slap
2018-01-15 13:05:12 +00:00
$item = [];
2019-10-24 22:10:20 +00:00
$item [ 'verb' ] = Activity :: O_UNFOLLOW ;
2020-06-16 20:30:25 +00:00
$item [ 'gravity' ] = GRAVITY_ACTIVITY ;
2017-11-19 21:55:28 +00:00
$item [ 'follow' ] = $contact [ " url " ];
2018-08-01 05:29:58 +00:00
$item [ 'body' ] = '' ;
$item [ 'title' ] = '' ;
$item [ 'guid' ] = '' ;
2020-05-05 05:11:59 +00:00
$item [ 'uri-id' ] = 0 ;
2017-11-19 21:55:28 +00:00
$slap = OStatus :: salmon ( $item , $user );
2018-03-16 06:43:10 +00:00
if ( ! empty ( $contact [ 'notify' ])) {
2017-12-02 14:32:45 +00:00
Salmon :: slapper ( $user , $contact [ 'notify' ], $slap );
2017-11-19 21:55:28 +00:00
}
2019-05-02 13:05:31 +00:00
} elseif ( $protocol == Protocol :: DIASPORA ) {
2017-11-19 21:55:28 +00:00
Diaspora :: sendUnshare ( $user , $contact );
2019-05-02 13:05:31 +00:00
} elseif ( $protocol == Protocol :: ACTIVITYPUB ) {
2019-01-10 07:24:12 +00:00
ActivityPub\Transmitter :: sendContactUndo ( $contact [ 'url' ], $contact [ 'id' ], $user [ 'uid' ]);
2018-09-15 22:25:58 +00:00
if ( $dissolve ) {
2018-10-03 15:41:51 +00:00
ActivityPub\Transmitter :: sendContactReject ( $contact [ 'url' ], $contact [ 'hub-verify' ], $user [ 'uid' ]);
2018-09-15 22:25:58 +00:00
}
2017-11-19 21:55:28 +00:00
}
}
/**
2020-01-19 06:05:23 +00:00
* Marks a contact for archival after a communication issue delay
2017-11-19 21:55:28 +00:00
*
* Contact has refused to recognise us as a friend . We will start a countdown .
* If they still don ' t recognise us in 32 days , the relationship is over ,
* and we won ' t waste any more time trying to communicate with them .
* This provides for the possibility that their database is temporarily messed
* up or some other transient event and that there ' s a possibility we could recover from it .
*
2017-11-22 14:02:55 +00:00
* @ param array $contact contact to mark for archival
2017-12-17 20:27:50 +00:00
* @ return null
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2017-11-19 21:55:28 +00:00
*/
public static function markForArchival ( array $contact )
{
2018-08-21 15:35:09 +00:00
if ( ! isset ( $contact [ 'url' ]) && ! empty ( $contact [ 'id' ])) {
$fields = [ 'id' , 'url' , 'archive' , 'self' , 'term-date' ];
2019-01-07 18:26:54 +00:00
$contact = DBA :: selectFirst ( 'contact' , $fields , [ 'id' => $contact [ 'id' ]]);
2018-08-21 15:35:09 +00:00
if ( ! DBA :: isResult ( $contact )) {
return ;
}
} elseif ( ! isset ( $contact [ 'url' ])) {
2020-06-28 17:35:56 +00:00
Logger :: info ( 'Empty contact' , [ 'contact' => $contact , 'callstack' => System :: callstack ( 20 )]);
2018-08-17 03:19:42 +00:00
}
2020-12-12 16:45:23 +00:00
Logger :: info ( 'Contact is marked for archival' , [ 'id' => $contact [ 'id' ], 'term-date' => $contact [ 'term-date' ]]);
2019-01-16 21:39:56 +00:00
2017-12-05 21:29:33 +00:00
// Contact already archived or "self" contact? => nothing to do
if ( $contact [ 'archive' ] || $contact [ 'self' ]) {
2017-11-19 21:55:28 +00:00
return ;
}
2017-12-04 19:37:36 +00:00
2018-10-21 05:53:47 +00:00
if ( $contact [ 'term-date' ] <= DBA :: NULL_DATETIME ) {
2018-07-20 12:19:26 +00:00
DBA :: update ( 'contact' , [ 'term-date' => DateTimeFormat :: utcNow ()], [ 'id' => $contact [ 'id' ]]);
2018-11-08 16:28:29 +00:00
DBA :: update ( 'contact' , [ 'term-date' => DateTimeFormat :: utcNow ()], [ '`nurl` = ? AND `term-date` <= ? AND NOT `self`' , Strings :: normaliseLink ( $contact [ 'url' ]), DBA :: NULL_DATETIME ]);
2017-11-19 21:55:28 +00:00
} else {
/* @ todo
* We really should send a notification to the owner after 2 - 3 weeks
* so they won ' t be surprised when the contact vanishes and can take
* remedial action if this was a serious mistake or glitch
*/
/// @todo Check for contact vitality via probing
2020-01-19 20:21:13 +00:00
$archival_days = DI :: config () -> get ( 'system' , 'archival_days' , 32 );
2018-04-10 11:10:02 +00:00
$expiry = $contact [ 'term-date' ] . ' + ' . $archival_days . ' days ' ;
2018-01-27 02:38:34 +00:00
if ( DateTimeFormat :: utcNow () > DateTimeFormat :: utc ( $expiry )) {
2017-11-19 21:55:28 +00:00
/* Relationship is really truly dead . archive them rather than
* delete , though if the owner tries to unarchive them we ' ll start
* the whole process over again .
*/
2019-08-27 19:01:11 +00:00
DBA :: update ( 'contact' , [ 'archive' => true ], [ 'id' => $contact [ 'id' ]]);
DBA :: update ( 'contact' , [ 'archive' => true ], [ 'nurl' => Strings :: normaliseLink ( $contact [ 'url' ]), 'self' => false ]);
2017-11-19 21:55:28 +00:00
}
}
}
/**
2020-01-19 06:05:23 +00:00
* Cancels the archival countdown
2017-11-19 21:55:28 +00:00
*
2019-01-06 21:06:53 +00:00
* @ see Contact :: markForArchival ()
2017-11-19 21:55:28 +00:00
*
2017-11-22 14:02:55 +00:00
* @ param array $contact contact to be unmarked for archival
2017-11-19 21:55:28 +00:00
* @ return null
2019-01-06 21:06:53 +00:00
* @ throws \Exception
2017-11-19 21:55:28 +00:00
*/
public static function unmarkForArchival ( array $contact )
{
2019-08-29 06:41:55 +00:00
// Always unarchive the relay contact entry
2019-08-31 09:27:19 +00:00
if ( ! empty ( $contact [ 'batch' ]) && ! empty ( $contact [ 'term-date' ]) && ( $contact [ 'term-date' ] > DBA :: NULL_DATETIME )) {
2020-07-19 01:15:57 +00:00
$fields = [ 'failed' => false , 'term-date' => DBA :: NULL_DATETIME , 'archive' => false ];
2019-09-02 13:11:07 +00:00
$condition = [ 'uid' => 0 , 'network' => Protocol :: FEDERATED , 'batch' => $contact [ 'batch' ], 'contact-type' => self :: TYPE_RELAY ];
2019-08-29 06:41:55 +00:00
DBA :: update ( 'contact' , $fields , $condition );
}
2018-10-21 05:53:47 +00:00
$condition = [ '`id` = ? AND (`term-date` > ? OR `archive`)' , $contact [ 'id' ], DBA :: NULL_DATETIME ];
2018-07-20 12:19:26 +00:00
$exists = DBA :: exists ( 'contact' , $condition );
2017-11-19 21:55:28 +00:00
// We don't need to update, we never marked this contact for archival
2017-11-23 13:15:38 +00:00
if ( ! $exists ) {
2017-11-19 21:55:28 +00:00
return ;
}
2020-12-12 16:45:23 +00:00
Logger :: info ( 'Contact is marked as vital again' , [ 'id' => $contact [ 'id' ], 'term-date' => $contact [ 'term-date' ]]);
2019-01-16 21:39:56 +00:00
2018-08-21 15:35:09 +00:00
if ( ! isset ( $contact [ 'url' ]) && ! empty ( $contact [ 'id' ])) {
$fields = [ 'id' , 'url' , 'batch' ];
2019-01-07 18:26:54 +00:00
$contact = DBA :: selectFirst ( 'contact' , $fields , [ 'id' => $contact [ 'id' ]]);
2018-08-21 15:35:09 +00:00
if ( ! DBA :: isResult ( $contact )) {
return ;
}
}
2017-11-19 21:55:28 +00:00
// It's a miracle. Our dead contact has inexplicably come back to life.
2020-07-19 01:15:57 +00:00
$fields = [ 'failed' => false , 'term-date' => DBA :: NULL_DATETIME , 'archive' => false ];
2018-07-20 12:19:26 +00:00
DBA :: update ( 'contact' , $fields , [ 'id' => $contact [ 'id' ]]);
2019-08-27 19:01:11 +00:00
DBA :: update ( 'contact' , $fields , [ 'nurl' => Strings :: normaliseLink ( $contact [ 'url' ]), 'self' => false ]);
2017-11-19 21:55:28 +00:00
}
/**
2020-01-19 06:05:23 +00:00
* Returns the data array for the photo menu of a given contact
2017-11-19 21:55:28 +00:00
*
2017-11-22 14:02:55 +00:00
* @ param array $contact contact
* @ param int $uid optional , default 0
2017-11-19 21:55:28 +00:00
* @ return array
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2019-01-06 21:06:53 +00:00
* @ throws \ImagickException
2017-11-19 21:55:28 +00:00
*/
public static function photoMenu ( array $contact , $uid = 0 )
{
$pm_url = '' ;
$status_link = '' ;
$photos_link = '' ;
$contact_drop_link = '' ;
$poke_link = '' ;
if ( $uid == 0 ) {
$uid = local_user ();
}
2018-07-10 12:27:56 +00:00
if ( empty ( $contact [ 'uid' ]) || ( $contact [ 'uid' ] != $uid )) {
2017-11-19 21:55:28 +00:00
if ( $uid == 0 ) {
2018-06-02 08:05:06 +00:00
$profile_link = self :: magicLink ( $contact [ 'url' ]);
2020-01-18 19:52:34 +00:00
$menu = [ 'profile' => [ DI :: l10n () -> t ( 'View Profile' ), $profile_link , true ]];
2017-11-19 21:55:28 +00:00
return $menu ;
}
2018-01-11 08:26:30 +00:00
// Look for our own contact if the uid doesn't match and isn't public
2018-07-20 12:19:26 +00:00
$contact_own = DBA :: selectFirst ( 'contact' , [], [ 'nurl' => $contact [ 'nurl' ], 'network' => $contact [ 'network' ], 'uid' => $uid ]);
2018-07-21 12:46:04 +00:00
if ( DBA :: isResult ( $contact_own )) {
2018-01-11 08:26:30 +00:00
return self :: photoMenu ( $contact_own , $uid );
2017-11-19 21:55:28 +00:00
}
}
$sparkle = false ;
2019-09-11 20:03:29 +00:00
if (( $contact [ 'network' ] === Protocol :: DFRN ) && ! $contact [ 'self' ] && empty ( $contact [ 'pending' ])) {
2017-11-19 21:55:28 +00:00
$sparkle = true ;
2019-12-30 22:00:08 +00:00
$profile_link = DI :: baseUrl () . '/redir/' . $contact [ 'id' ];
2017-11-19 21:55:28 +00:00
} else {
$profile_link = $contact [ 'url' ];
}
if ( $profile_link === 'mailbox' ) {
$profile_link = '' ;
}
if ( $sparkle ) {
2020-01-28 00:21:18 +00:00
$status_link = $profile_link . '/status' ;
2019-02-26 09:19:08 +00:00
$photos_link = str_replace ( '/profile/' , '/photos/' , $profile_link );
2020-01-28 00:21:18 +00:00
$profile_link = $profile_link . '/profile' ;
2017-11-19 21:55:28 +00:00
}
2019-09-11 20:03:29 +00:00
if ( self :: canReceivePrivateMessages ( $contact ) && empty ( $contact [ 'pending' ])) {
2019-12-30 22:00:08 +00:00
$pm_url = DI :: baseUrl () . '/message/new/' . $contact [ 'id' ];
2017-11-19 21:55:28 +00:00
}
2019-09-11 20:03:29 +00:00
if (( $contact [ 'network' ] == Protocol :: DFRN ) && ! $contact [ 'self' ] && empty ( $contact [ 'pending' ])) {
2020-04-20 15:42:27 +00:00
$poke_link = 'contact/' . $contact [ 'id' ] . '/poke' ;
2017-11-19 21:55:28 +00:00
}
2019-12-30 22:00:08 +00:00
$contact_url = DI :: baseUrl () . '/contact/' . $contact [ 'id' ];
2017-11-19 21:55:28 +00:00
2019-12-30 22:00:08 +00:00
$posts_link = DI :: baseUrl () . '/contact/' . $contact [ 'id' ] . '/conversations' ;
2018-03-17 06:17:32 +00:00
if ( ! $contact [ 'self' ]) {
2019-12-30 22:00:08 +00:00
$contact_drop_link = DI :: baseUrl () . '/contact/' . $contact [ 'id' ] . '/drop?confirm=1' ;
2018-03-17 06:17:32 +00:00
}
2017-11-19 21:55:28 +00:00
2019-10-17 01:16:23 +00:00
$follow_link = '' ;
$unfollow_link = '' ;
2019-12-16 06:35:29 +00:00
if ( ! $contact [ 'self' ] && in_array ( $contact [ 'network' ], Protocol :: NATIVE_SUPPORT )) {
2019-10-17 01:16:23 +00:00
if ( $contact [ 'uid' ] && in_array ( $contact [ 'rel' ], [ self :: SHARING , self :: FRIEND ])) {
2020-10-20 03:49:58 +00:00
$unfollow_link = 'unfollow?url=' . urlencode ( $contact [ 'url' ]) . '&auto=1' ;
2019-10-17 01:16:23 +00:00
} elseif ( ! $contact [ 'pending' ]) {
2020-10-20 03:49:58 +00:00
$follow_link = 'follow?url=' . urlencode ( $contact [ 'url' ]) . '&auto=1' ;
2019-10-17 01:16:23 +00:00
}
}
2020-02-17 22:25:12 +00:00
if ( ! empty ( $follow_link ) || ! empty ( $unfollow_link )) {
$contact_drop_link = '' ;
}
2017-11-19 21:55:28 +00:00
/**
2017-11-22 14:02:55 +00:00
* Menu array :
2017-11-19 21:55:28 +00:00
* " name " => [ " Label " , " link " , ( bool ) Should the link opened in a new tab ? ]
*/
2018-08-25 13:48:00 +00:00
if ( empty ( $contact [ 'uid' ])) {
$menu = [
2020-01-18 19:52:34 +00:00
'profile' => [ DI :: l10n () -> t ( 'View Profile' ) , $profile_link , true ],
'network' => [ DI :: l10n () -> t ( 'Network Posts' ) , $posts_link , false ],
'edit' => [ DI :: l10n () -> t ( 'View Contact' ) , $contact_url , false ],
'follow' => [ DI :: l10n () -> t ( 'Connect/Follow' ), $follow_link , true ],
'unfollow' => [ DI :: l10n () -> t ( 'UnFollow' ) , $unfollow_link , true ],
2018-08-25 13:48:00 +00:00
];
} else {
$menu = [
2020-01-18 19:52:34 +00:00
'status' => [ DI :: l10n () -> t ( 'View Status' ) , $status_link , true ],
'profile' => [ DI :: l10n () -> t ( 'View Profile' ) , $profile_link , true ],
'photos' => [ DI :: l10n () -> t ( 'View Photos' ) , $photos_link , true ],
'network' => [ DI :: l10n () -> t ( 'Network Posts' ) , $posts_link , false ],
'edit' => [ DI :: l10n () -> t ( 'View Contact' ) , $contact_url , false ],
'drop' => [ DI :: l10n () -> t ( 'Drop Contact' ) , $contact_drop_link , false ],
'pm' => [ DI :: l10n () -> t ( 'Send PM' ) , $pm_url , false ],
'poke' => [ DI :: l10n () -> t ( 'Poke' ) , $poke_link , false ],
'follow' => [ DI :: l10n () -> t ( 'Connect/Follow' ), $follow_link , true ],
'unfollow' => [ DI :: l10n () -> t ( 'UnFollow' ) , $unfollow_link , true ],
2018-08-25 13:48:00 +00:00
];
2019-09-09 05:29:33 +00:00
2019-09-11 20:03:29 +00:00
if ( ! empty ( $contact [ 'pending' ])) {
2019-09-09 05:29:33 +00:00
$intro = DBA :: selectFirst ( 'intro' , [ 'id' ], [ 'contact-id' => $contact [ 'id' ]]);
if ( DBA :: isResult ( $intro )) {
2020-01-18 19:52:34 +00:00
$menu [ 'follow' ] = [ DI :: l10n () -> t ( 'Approve' ), 'notifications/intros/' . $intro [ 'id' ], true ];
2019-09-09 05:29:33 +00:00
}
}
2018-08-25 13:48:00 +00:00
}
2018-01-11 08:37:11 +00:00
$args = [ 'contact' => $contact , 'menu' => & $menu ];
2017-11-19 21:55:28 +00:00
2018-12-26 06:06:24 +00:00
Hook :: callAll ( 'contact_photo_menu' , $args );
2017-11-19 21:55:28 +00:00
2018-01-15 13:05:12 +00:00
$menucondensed = [];
2017-11-19 21:55:28 +00:00
2017-11-22 14:02:55 +00:00
foreach ( $menu as $menuname => $menuitem ) {
2017-11-19 21:55:28 +00:00
if ( $menuitem [ 1 ] != '' ) {
$menucondensed [ $menuname ] = $menuitem ;
}
}
return $menucondensed ;
}
/**
2020-01-19 06:05:23 +00:00
* Fetch the contact id for a given URL and user
2017-11-19 21:55:28 +00:00
*
* First lookup in the contact table to find a record matching either `url` , `nurl` ,
* `addr` or `alias` .
*
* If there 's no record and we aren' t looking for a public contact , we quit .
* If there 's one, we check that it isn' t time to update the picture else we
* directly return the found contact id .
*
2018-01-11 08:37:11 +00:00
* Second , we probe the provided $url whether it ' s http :// server . tld / profile or
2017-11-19 21:55:28 +00:00
* nick @ server . tld . We quit if we can ' t get any info back .
*
* Third , we create the contact record if it doesn ' t exist
*
* Fourth , we update the existing record with the new data ( avatar , alias , nick )
* if there ' s any updates
*
2017-11-22 14:02:55 +00:00
* @ param string $url Contact URL
* @ param integer $uid The user id for the contact ( 0 = public contact )
2020-08-07 13:49:59 +00:00
* @ param boolean $update true = always update , false = never update , null = update when not found
* @ param array $default Default value for creating the contact when everything else fails
2017-11-19 21:55:28 +00:00
*
* @ return integer Contact ID
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2019-01-06 21:06:53 +00:00
* @ throws \ImagickException
2017-11-19 21:55:28 +00:00
*/
2020-08-05 12:36:04 +00:00
public static function getIdForURL ( $url , $uid = 0 , $update = null , $default = [])
2017-11-19 21:55:28 +00:00
{
$contact_id = 0 ;
if ( $url == '' ) {
2020-08-07 13:49:59 +00:00
Logger :: notice ( 'Empty url, quitting' , [ 'url' => $url , 'user' => $uid , 'default' => $default ]);
2017-11-19 21:55:28 +00:00
return 0 ;
}
2020-08-07 13:49:59 +00:00
$contact = self :: getByURL ( $url , false , [ 'id' , 'network' ], $uid );
2017-11-19 21:55:28 +00:00
2020-06-26 05:28:25 +00:00
if ( ! empty ( $contact )) {
2017-11-19 21:55:28 +00:00
$contact_id = $contact [ " id " ];
2020-07-15 21:08:42 +00:00
if ( empty ( $update )) {
2020-08-07 13:49:59 +00:00
Logger :: debug ( 'Contact found' , [ 'url' => $url , 'uid' => $uid , 'update' => $update , 'cid' => $contact_id ]);
2017-11-19 21:55:28 +00:00
return $contact_id ;
}
} elseif ( $uid != 0 ) {
2020-08-07 13:49:59 +00:00
Logger :: debug ( 'Contact does not exist for the user' , [ 'url' => $url , 'uid' => $uid , 'update' => $update ]);
return 0 ;
} elseif ( empty ( $default ) && ! is_null ( $update ) && ! $update ) {
Logger :: info ( 'Contact not found, update not desired' , [ 'url' => $url , 'uid' => $uid , 'update' => $update ]);
2017-11-19 21:55:28 +00:00
return 0 ;
}
2020-08-07 13:49:59 +00:00
$data = [];
2018-08-09 06:19:23 +00:00
2020-08-07 13:49:59 +00:00
if ( empty ( $default [ 'network' ]) || $update ) {
2018-08-09 06:19:23 +00:00
$data = Probe :: uri ( $url , " " , $uid );
2017-11-19 21:55:28 +00:00
2020-08-07 13:49:59 +00:00
// Take the default values when probing failed
if ( ! empty ( $default ) && ! in_array ( $data [ " network " ], array_merge ( Protocol :: NATIVE_SUPPORT , [ Protocol :: PUMPIO ]))) {
$data = array_merge ( $data , $default );
}
} elseif ( ! empty ( $default [ 'network' ])) {
$data = $default ;
2019-04-09 05:15:23 +00:00
}
2020-08-07 13:49:59 +00:00
if (( $uid == 0 ) && ( empty ( $data [ 'network' ]) || ( $data [ 'network' ] == Protocol :: PHANTOM ))) {
// Fetch data for the public contact via the first found personal contact
/// @todo Check if this case can happen at all (possibly with mail accounts?)
$fields = [ 'name' , 'nick' , 'url' , 'addr' , 'alias' , 'avatar' , 'contact-type' ,
'keywords' , 'location' , 'about' , 'unsearchable' , 'batch' , 'notify' , 'poll' ,
'request' , 'confirm' , 'poco' , 'subscribe' , 'network' , 'baseurl' , 'gsid' ];
$personal_contact = DBA :: selectFirst ( 'contact' , $fields , [ " `addr` = ? AND `uid` != 0 " , $url ]);
if ( ! DBA :: isResult ( $personal_contact )) {
$personal_contact = DBA :: selectFirst ( 'contact' , $fields , [ " `nurl` = ? AND `uid` != 0 " , Strings :: normaliseLink ( $url )]);
}
2017-11-19 21:55:28 +00:00
2020-08-07 13:49:59 +00:00
if ( DBA :: isResult ( $personal_contact )) {
Logger :: info ( 'Take contact data from personal contact' , [ 'url' => $url , 'update' => $update , 'contact' => $personal_contact , 'callstack' => System :: callstack ( 20 )]);
$data = $personal_contact ;
$data [ 'photo' ] = $personal_contact [ 'avatar' ];
$data [ 'account-type' ] = $personal_contact [ 'contact-type' ];
$data [ 'hide' ] = $personal_contact [ 'unsearchable' ];
unset ( $data [ 'avatar' ]);
unset ( $data [ 'contact-type' ]);
unset ( $data [ 'unsearchable' ]);
}
2020-05-24 20:40:00 +00:00
}
2020-08-07 13:49:59 +00:00
if ( empty ( $data [ 'network' ]) || ( $data [ 'network' ] == Protocol :: PHANTOM )) {
Logger :: notice ( 'No valid network found' , [ 'url' => $url , 'uid' => $uid , 'default' => $default , 'update' => $update , 'callstack' => System :: callstack ( 20 )]);
return 0 ;
2020-05-24 20:40:00 +00:00
}
2020-08-05 14:57:49 +00:00
if ( ! $contact_id ) {
$urls = [ Strings :: normaliseLink ( $url ), Strings :: normaliseLink ( $data [ 'url' ])];
if ( ! empty ( $data [ 'alias' ])) {
$urls [] = Strings :: normaliseLink ( $data [ 'alias' ]);
2020-08-05 12:53:02 +00:00
}
2020-08-05 14:57:49 +00:00
$contact = self :: selectFirst ([ 'id' ], [ 'nurl' => $urls , 'uid' => $uid ]);
2020-08-05 12:53:02 +00:00
if ( ! empty ( $contact [ 'id' ])) {
$contact_id = $contact [ 'id' ];
2020-11-17 22:57:37 +00:00
Logger :: info ( 'Fetched id by url' , [ 'cid' => $contact_id , 'uid' => $uid , 'url' => $url , 'data' => $data ]);
2020-08-05 12:36:04 +00:00
}
2020-08-05 08:24:01 +00:00
}
2020-08-05 06:50:51 +00:00
2017-11-19 21:55:28 +00:00
if ( ! $contact_id ) {
2020-08-07 13:49:59 +00:00
// We only insert the basic data. The rest will be done in "updateFromProbeArray"
2018-12-02 16:25:25 +00:00
$fields = [
2018-01-11 08:37:11 +00:00
'uid' => $uid ,
2019-04-09 11:28:45 +00:00
'url' => $data [ 'url' ],
'nurl' => Strings :: normaliseLink ( $data [ 'url' ]),
'network' => $data [ 'network' ],
2020-08-07 13:49:59 +00:00
'created' => DateTimeFormat :: utcNow (),
2018-07-25 02:53:46 +00:00
'rel' => self :: SHARING ,
2018-01-11 08:37:11 +00:00
'writable' => 1 ,
'blocked' => 0 ,
'readonly' => 0 ,
2018-12-02 16:25:25 +00:00
'pending' => 0 ];
$condition = [ 'nurl' => Strings :: normaliseLink ( $data [ " url " ]), 'uid' => $uid , 'deleted' => false ];
2019-07-14 10:22:19 +00:00
// Before inserting we do check if the entry does exist now.
2020-10-30 17:26:12 +00:00
if ( DI :: lock () -> acquire ( self :: LOCK_INSERT , 0 )) {
$contact = DBA :: selectFirst ( 'contact' , [ 'id' ], $condition , [ 'order' => [ 'id' ]]);
if ( DBA :: isResult ( $contact )) {
$contact_id = $contact [ 'id' ];
Logger :: notice ( 'Contact had been created (shortly) before' , [ 'id' => $contact_id , 'url' => $url , 'uid' => $uid ]);
} else {
DBA :: insert ( 'contact' , $fields );
$contact_id = DBA :: lastInsertId ();
if ( $contact_id ) {
Logger :: info ( 'Contact inserted' , [ 'id' => $contact_id , 'url' => $url , 'uid' => $uid ]);
}
2020-08-07 13:49:59 +00:00
}
2020-10-30 17:26:12 +00:00
DI :: lock () -> release ( self :: LOCK_INSERT );
} else {
Logger :: warning ( 'Contact lock had not been acquired' );
2020-08-07 13:49:59 +00:00
}
2020-10-30 17:26:12 +00:00
2020-08-07 13:49:59 +00:00
if ( ! $contact_id ) {
Logger :: info ( 'Contact was not inserted' , [ 'url' => $url , 'uid' => $uid ]);
return 0 ;
2017-11-19 21:55:28 +00:00
}
2019-07-12 21:07:47 +00:00
} else {
2020-08-07 13:49:59 +00:00
Logger :: info ( 'Contact will be updated' , [ 'url' => $url , 'uid' => $uid , 'update' => $update , 'cid' => $contact_id ]);
2019-07-02 09:06:48 +00:00
}
2020-08-07 13:49:59 +00:00
self :: updateFromProbeArray ( $contact_id , $data );
2017-11-19 21:55:28 +00:00
return $contact_id ;
}
2019-08-27 19:01:11 +00:00
/**
2020-01-19 06:05:23 +00:00
* Checks if the contact is archived
2019-08-27 19:01:11 +00:00
*
* @ param int $cid contact id
*
* @ return boolean Is the contact archived ?
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2019-08-27 19:01:11 +00:00
*/
2019-08-28 14:02:19 +00:00
public static function isArchived ( int $cid )
2019-08-27 19:01:11 +00:00
{
if ( $cid == 0 ) {
return false ;
}
2019-08-28 14:54:49 +00:00
$contact = DBA :: selectFirst ( 'contact' , [ 'archive' , 'url' , 'batch' ], [ 'id' => $cid ]);
if ( ! DBA :: isResult ( $contact )) {
2019-08-27 19:01:11 +00:00
return false ;
}
2019-08-28 14:54:49 +00:00
if ( $contact [ 'archive' ]) {
2019-08-27 19:01:11 +00:00
return true ;
}
2019-08-28 14:54:49 +00:00
// Check status of ActivityPub endpoints
$apcontact = APContact :: getByURL ( $contact [ 'url' ], false );
if ( ! empty ( $apcontact )) {
if ( ! empty ( $apcontact [ 'inbox' ]) && DBA :: exists ( 'inbox-status' , [ 'archive' => true , 'url' => $apcontact [ 'inbox' ]])) {
return true ;
}
2019-08-27 19:01:11 +00:00
2019-08-28 14:54:49 +00:00
if ( ! empty ( $apcontact [ 'sharedinbox' ]) && DBA :: exists ( 'inbox-status' , [ 'archive' => true , 'url' => $apcontact [ 'sharedinbox' ]])) {
return true ;
}
2019-08-27 19:01:11 +00:00
}
2019-08-28 14:54:49 +00:00
// Check status of Diaspora endpoints
if ( ! empty ( $contact [ 'batch' ])) {
2019-09-02 13:11:07 +00:00
$condition = [ 'archive' => true , 'uid' => 0 , 'network' => Protocol :: FEDERATED , 'batch' => $contact [ 'batch' ], 'contact-type' => self :: TYPE_RELAY ];
return DBA :: exists ( 'contact' , $condition );
2019-08-28 14:02:19 +00:00
}
2019-08-27 19:01:11 +00:00
return false ;
}
2017-11-19 21:55:28 +00:00
/**
2020-01-19 06:05:23 +00:00
* Checks if the contact is blocked
2017-11-19 21:55:28 +00:00
*
* @ param int $cid contact id
*
* @ return boolean Is the contact blocked ?
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2017-11-19 21:55:28 +00:00
*/
public static function isBlocked ( $cid )
{
if ( $cid == 0 ) {
return false ;
}
2018-11-22 21:43:16 +00:00
$blocked = DBA :: selectFirst ( 'contact' , [ 'blocked' , 'url' ], [ 'id' => $cid ]);
2018-07-21 12:46:04 +00:00
if ( ! DBA :: isResult ( $blocked )) {
2017-11-19 21:55:28 +00:00
return false ;
}
2018-11-22 21:43:16 +00:00
if ( Network :: isUrlBlocked ( $blocked [ 'url' ])) {
return true ;
}
2017-11-19 21:55:28 +00:00
return ( bool ) $blocked [ 'blocked' ];
}
/**
2020-01-19 06:05:23 +00:00
* Checks if the contact is hidden
2017-11-19 21:55:28 +00:00
*
* @ param int $cid contact id
*
* @ return boolean Is the contact hidden ?
2019-01-06 21:06:53 +00:00
* @ throws \Exception
2017-11-19 21:55:28 +00:00
*/
public static function isHidden ( $cid )
{
if ( $cid == 0 ) {
return false ;
}
2018-07-20 12:19:26 +00:00
$hidden = DBA :: selectFirst ( 'contact' , [ 'hidden' ], [ 'id' => $cid ]);
2018-07-21 12:46:04 +00:00
if ( ! DBA :: isResult ( $hidden )) {
2017-11-19 21:55:28 +00:00
return false ;
}
return ( bool ) $hidden [ 'hidden' ];
}
/**
2020-01-19 06:05:23 +00:00
* Returns posts from a given contact url
2017-11-19 21:55:28 +00:00
*
2020-10-06 20:36:57 +00:00
* @ param string $contact_url Contact URL
* @ param bool $thread_mode
* @ param int $update Update mode
* @ param int $parent Item parent ID for the update mode
2017-11-19 21:55:28 +00:00
* @ return string posts in HTML
2019-01-06 21:06:53 +00:00
* @ throws \Exception
2017-11-19 21:55:28 +00:00
*/
2020-10-06 18:47:23 +00:00
public static function getPostsFromUrl ( $contact_url , $thread_mode = false , $update = 0 , $parent = 0 )
2017-11-19 21:55:28 +00:00
{
2020-10-06 18:47:23 +00:00
return self :: getPostsFromId ( self :: getIdForURL ( $contact_url ), $thread_mode , $update , $parent );
2020-06-09 22:38:06 +00:00
}
2017-11-24 22:15:35 +00:00
2020-06-09 22:38:06 +00:00
/**
* Returns posts from a given contact id
*
2020-10-06 20:36:57 +00:00
* @ param int $cid Contact ID
* @ param bool $thread_mode
* @ param int $update Update mode
* @ param int $parent Item parent ID for the update mode
2020-06-09 22:38:06 +00:00
* @ return string posts in HTML
* @ throws \Exception
*/
2020-10-06 18:47:23 +00:00
public static function getPostsFromId ( $cid , $thread_mode = false , $update = 0 , $parent = 0 )
2020-06-09 22:38:06 +00:00
{
$a = DI :: app ();
2017-11-19 21:55:28 +00:00
2018-09-16 09:06:09 +00:00
$contact = DBA :: selectFirst ( 'contact' , [ 'contact-type' , 'network' ], [ 'id' => $cid ]);
if ( ! DBA :: isResult ( $contact )) {
2017-11-19 21:55:28 +00:00
return '' ;
}
2019-07-01 22:14:34 +00:00
if ( empty ( $contact [ " network " ]) || in_array ( $contact [ " network " ], Protocol :: FEDERATED )) {
2021-01-16 22:37:27 +00:00
$sql = " (`uid` = 0 OR (`uid` = ? AND NOT `global`)) " ;
2017-11-19 21:55:28 +00:00
} else {
2021-01-16 22:37:27 +00:00
$sql = " `uid` = ? " ;
2017-11-19 21:55:28 +00:00
}
2019-12-08 05:19:15 +00:00
$contact_field = ((( $contact [ " contact-type " ] == self :: TYPE_COMMUNITY ) || ( $contact [ 'network' ] == Protocol :: MAIL )) ? 'owner-id' : 'author-id' );
2017-11-19 21:55:28 +00:00
2018-08-25 13:48:00 +00:00
if ( $thread_mode ) {
2020-11-29 20:42:03 +00:00
$condition = [ " ((` $contact_field ` = ? AND `gravity` = ?) OR (`author-id` = ? AND `gravity` = ? AND `vid` = ?)) AND " . $sql ,
$cid , GRAVITY_PARENT , $cid , GRAVITY_ACTIVITY , Verb :: getID ( Activity :: ANNOUNCE ), local_user ()];
2018-08-25 13:48:00 +00:00
} else {
2018-09-16 09:06:09 +00:00
$condition = [ " ` $contact_field ` = ? AND `gravity` IN (?, ?) AND " . $sql ,
$cid , GRAVITY_PARENT , GRAVITY_COMMENT , local_user ()];
2018-08-25 13:48:00 +00:00
}
2020-10-06 18:47:23 +00:00
if ( ! empty ( $parent )) {
$condition = DBA :: mergeConditions ( $condition , [ 'parent' => $parent ]);
} else {
$last_received = isset ( $_GET [ 'last_received' ]) ? DateTimeFormat :: utc ( $_GET [ 'last_received' ]) : '' ;
if ( ! empty ( $last_received )) {
$condition = DBA :: mergeConditions ( $condition , [ " `received` < ? " , $last_received ]);
}
2020-09-30 19:14:13 +00:00
}
2020-02-16 18:04:26 +00:00
if ( DI :: mode () -> isMobile ()) {
$itemsPerPage = DI :: pConfig () -> get ( local_user (), 'system' , 'itemspage_mobile_network' ,
DI :: config () -> get ( 'system' , 'itemspage_network_mobile' ));
} else {
$itemsPerPage = DI :: pConfig () -> get ( local_user (), 'system' , 'itemspage_network' ,
DI :: config () -> get ( 'system' , 'itemspage_network' ));
}
$pager = new Pager ( DI :: l10n (), DI :: args () -> getQueryString (), $itemsPerPage );
2018-10-24 06:15:24 +00:00
2020-11-30 20:44:21 +00:00
$params = [ 'order' => [ 'received' => true ], 'limit' => [ $pager -> getStart (), $pager -> getItemsPerPage ()]];
2017-11-19 21:55:28 +00:00
2020-09-30 19:14:13 +00:00
if ( DI :: pConfig () -> get ( local_user (), 'system' , 'infinite_scroll' )) {
$tpl = Renderer :: getMarkupTemplate ( 'infinite_scroll_head.tpl' );
$o = Renderer :: replaceMacros ( $tpl , [ '$reload_uri' => DI :: args () -> getQueryString ()]);
} else {
$o = '' ;
}
if ( $thread_mode ) {
2021-01-27 10:01:42 +00:00
$items = Post :: toArray ( Post :: selectForUser ( local_user (), [ 'uri-id' , 'gravity' , 'parent-uri-id' , 'thr-parent-id' , 'author-id' ], $condition , $params ));
2018-08-25 13:48:00 +00:00
2020-09-29 20:47:19 +00:00
$o .= conversation ( $a , $items , 'contacts' , $update , false , 'commented' , local_user ());
2018-08-25 13:48:00 +00:00
} else {
2021-02-13 19:56:03 +00:00
$items = Post :: toArray ( Post :: selectForUser ( local_user (), Item :: DISPLAY_FIELDLIST , $condition , $params ));
2017-11-19 21:55:28 +00:00
2020-10-06 18:47:23 +00:00
$o .= conversation ( $a , $items , 'contact-posts' , $update );
2018-08-25 13:48:00 +00:00
}
if ( ! $update ) {
2020-09-30 19:14:13 +00:00
if ( DI :: pConfig () -> get ( local_user (), 'system' , 'infinite_scroll' )) {
2020-09-29 20:47:19 +00:00
$o .= HTML :: scrollLoader ();
} else {
$o .= $pager -> renderMinimal ( count ( $items ));
}
2018-08-25 13:48:00 +00:00
}
2017-11-19 21:55:28 +00:00
return $o ;
}
/**
2020-01-19 06:05:23 +00:00
* Returns the account type name
2017-11-19 21:55:28 +00:00
*
* The function can be called with either the user or the contact array
*
* @ param array $contact contact or user array
* @ return string
*/
public static function getAccountType ( array $contact )
{
// There are several fields that indicate that the contact or user is a forum
// "page-flags" is a field in the user table,
2019-01-06 17:37:48 +00:00
// "forum" and "prv" are used in the contact table. They stand for User::PAGE_FLAGS_COMMUNITY and User::PAGE_FLAGS_PRVGROUP.
if (( isset ( $contact [ 'page-flags' ]) && ( intval ( $contact [ 'page-flags' ]) == User :: PAGE_FLAGS_COMMUNITY ))
|| ( isset ( $contact [ 'page-flags' ]) && ( intval ( $contact [ 'page-flags' ]) == User :: PAGE_FLAGS_PRVGROUP ))
2017-11-19 21:55:28 +00:00
|| ( isset ( $contact [ 'forum' ]) && intval ( $contact [ 'forum' ]))
|| ( isset ( $contact [ 'prv' ]) && intval ( $contact [ 'prv' ]))
|| ( isset ( $contact [ 'community' ]) && intval ( $contact [ 'community' ]))
) {
2019-01-06 22:08:35 +00:00
$type = self :: TYPE_COMMUNITY ;
2017-11-19 21:55:28 +00:00
} else {
2019-01-06 22:08:35 +00:00
$type = self :: TYPE_PERSON ;
2017-11-19 21:55:28 +00:00
}
// The "contact-type" (contact table) and "account-type" (user table) are more general then the chaos from above.
if ( isset ( $contact [ " contact-type " ])) {
$type = $contact [ " contact-type " ];
}
2018-01-11 08:37:11 +00:00
2017-11-19 21:55:28 +00:00
if ( isset ( $contact [ " account-type " ])) {
$type = $contact [ " account-type " ];
}
switch ( $type ) {
2019-01-06 22:08:35 +00:00
case self :: TYPE_ORGANISATION :
2020-01-18 19:52:34 +00:00
$account_type = DI :: l10n () -> t ( " Organisation " );
2017-11-19 21:55:28 +00:00
break ;
2018-07-27 23:25:57 +00:00
2019-01-06 22:08:35 +00:00
case self :: TYPE_NEWS :
2020-01-18 19:52:34 +00:00
$account_type = DI :: l10n () -> t ( 'News' );
2017-11-19 21:55:28 +00:00
break ;
2018-07-27 23:25:57 +00:00
2019-01-06 22:08:35 +00:00
case self :: TYPE_COMMUNITY :
2020-01-18 19:52:34 +00:00
$account_type = DI :: l10n () -> t ( " Forum " );
2017-11-19 21:55:28 +00:00
break ;
2018-07-27 23:25:57 +00:00
2017-11-19 21:55:28 +00:00
default :
$account_type = " " ;
break ;
}
return $account_type ;
}
2017-11-29 22:29:11 +00:00
/**
2020-01-19 06:05:23 +00:00
* Blocks a contact
2017-12-01 05:41:26 +00:00
*
2019-05-15 23:28:00 +00:00
* @ param int $cid
2017-12-01 05:41:26 +00:00
* @ return bool
2019-01-06 21:06:53 +00:00
* @ throws \Exception
2017-12-01 05:41:26 +00:00
*/
2019-05-15 23:28:00 +00:00
public static function block ( $cid , $reason = null )
2017-12-01 05:41:26 +00:00
{
2019-05-15 23:28:00 +00:00
$return = DBA :: update ( 'contact' , [ 'blocked' => true , 'block_reason' => $reason ], [ 'id' => $cid ]);
2017-12-01 05:41:26 +00:00
return $return ;
}
/**
2020-01-19 06:05:23 +00:00
* Unblocks a contact
2017-12-01 05:41:26 +00:00
*
2019-05-15 23:28:00 +00:00
* @ param int $cid
2017-12-01 05:41:26 +00:00
* @ return bool
2019-01-06 21:06:53 +00:00
* @ throws \Exception
2017-12-01 05:41:26 +00:00
*/
2019-05-15 23:28:00 +00:00
public static function unblock ( $cid )
2017-12-01 05:41:26 +00:00
{
2019-05-15 23:28:00 +00:00
$return = DBA :: update ( 'contact' , [ 'blocked' => false , 'block_reason' => null ], [ 'id' => $cid ]);
2017-12-01 05:41:26 +00:00
return $return ;
2018-01-11 08:37:11 +00:00
}
2017-12-01 05:48:13 +00:00
2020-07-25 11:48:52 +00:00
/**
* Ensure that cached avatar exist
*
* @ param integer $cid
*/
public static function checkAvatarCache ( int $cid )
{
$contact = DBA :: selectFirst ( 'contact' , [ 'url' , 'avatar' , 'photo' , 'thumb' , 'micro' ], [ 'id' => $cid , 'uid' => 0 , 'self' => false ]);
if ( ! DBA :: isResult ( $contact )) {
return ;
}
if ( empty ( $contact [ 'avatar' ]) || ( ! empty ( $contact [ 'photo' ]) && ! empty ( $contact [ 'thumb' ]) && ! empty ( $contact [ 'micro' ]))) {
return ;
}
Logger :: info ( 'Adding avatar cache' , [ 'id' => $cid , 'contact' => $contact ]);
self :: updateAvatar ( $cid , $contact [ 'avatar' ], true );
}
2020-07-28 12:58:19 +00:00
/**
* Return the photo path for a given contact array in the given size
*
* @ param array $contact contact array
* @ param string $field Fieldname of the photo in the contact array
* @ param string $size Size of the avatar picture
* @ param string $avatar Avatar path that is displayed when no photo had been found
* @ return string photo path
*/
2020-12-07 06:43:43 +00:00
private static function getAvatarPath ( array $contact , string $field , string $size , string $avatar )
2020-07-28 12:58:19 +00:00
{
if ( ! empty ( $contact )) {
$contact = self :: checkAvatarCacheByArray ( $contact );
if ( ! empty ( $contact [ $field ])) {
$avatar = $contact [ $field ];
}
}
if ( empty ( $avatar )) {
2020-12-07 06:43:43 +00:00
$avatar = self :: getDefaultAvatar ([], $size );
2020-07-28 12:58:19 +00:00
}
if ( Proxy :: isLocalImage ( $avatar )) {
return $avatar ;
} else {
return Proxy :: proxifyUrl ( $avatar , false , $size );
}
}
/**
* Return the photo path for a given contact array
*
* @ param array $contact Contact array
* @ param string $avatar Avatar path that is displayed when no photo had been found
* @ return string photo path
*/
public static function getPhoto ( array $contact , string $avatar = '' )
{
2020-12-07 06:43:43 +00:00
return self :: getAvatarPath ( $contact , 'photo' , Proxy :: SIZE_SMALL , $avatar );
2020-07-28 12:58:19 +00:00
}
/**
* Return the photo path ( thumb size ) for a given contact array
*
* @ param array $contact Contact array
* @ param string $avatar Avatar path that is displayed when no photo had been found
* @ return string photo path
*/
public static function getThumb ( array $contact , string $avatar = '' )
{
2020-12-07 06:43:43 +00:00
return self :: getAvatarPath ( $contact , 'thumb' , Proxy :: SIZE_THUMB , $avatar );
2020-07-28 12:58:19 +00:00
}
/**
* Return the photo path ( micro size ) for a given contact array
*
* @ param array $contact Contact array
* @ param string $avatar Avatar path that is displayed when no photo had been found
* @ return string photo path
*/
public static function getMicro ( array $contact , string $avatar = '' )
{
2020-12-07 06:43:43 +00:00
return self :: getAvatarPath ( $contact , 'micro' , Proxy :: SIZE_MICRO , $avatar );
2020-07-28 12:58:19 +00:00
}
2020-07-27 10:11:12 +00:00
/**
* Check the given contact array for avatar cache fields
*
* @ param array $contact
* @ return array contact array with avatar cache fields
*/
2020-07-28 12:58:19 +00:00
private static function checkAvatarCacheByArray ( array $contact )
2020-07-27 10:11:12 +00:00
{
$update = false ;
$contact_fields = [];
$fields = [ 'photo' , 'thumb' , 'micro' ];
foreach ( $fields as $field ) {
if ( isset ( $contact [ $field ])) {
$contact_fields [] = $field ;
}
if ( isset ( $contact [ $field ]) && empty ( $contact [ $field ])) {
$update = true ;
}
}
if ( ! $update ) {
return $contact ;
}
if ( ! empty ( $contact [ 'id' ]) && ! empty ( $contact [ 'avatar' ])) {
self :: updateAvatar ( $contact [ 'id' ], $contact [ 'avatar' ], true );
$new_contact = self :: getById ( $contact [ 'id' ], $contact_fields );
if ( DBA :: isResult ( $new_contact )) {
// We only update the cache fields
$contact = array_merge ( $contact , $new_contact );
}
}
/// add the default avatars if the fields aren't filled
if ( isset ( $contact [ 'photo' ]) && empty ( $contact [ 'photo' ])) {
2020-12-07 06:43:43 +00:00
$contact [ 'photo' ] = self :: getDefaultAvatar ( $contact , Proxy :: SIZE_SMALL );
2020-07-27 10:11:12 +00:00
}
if ( isset ( $contact [ 'thumb' ]) && empty ( $contact [ 'thumb' ])) {
2020-12-07 06:43:43 +00:00
$contact [ 'thumb' ] = self :: getDefaultAvatar ( $contact , Proxy :: SIZE_THUMB );
2020-07-27 10:11:12 +00:00
}
if ( isset ( $contact [ 'micro' ]) && empty ( $contact [ 'micro' ])) {
2020-12-07 06:43:43 +00:00
$contact [ 'micro' ] = self :: getDefaultAvatar ( $contact , Proxy :: SIZE_MICRO );
2020-07-27 10:11:12 +00:00
}
return $contact ;
}
2020-12-07 06:43:43 +00:00
/**
* Fetch the default avatar for the given contact and size
*
* @ param array $contact contact array
* @ param string $size Size of the avatar picture
* @ return void
*/
public static function getDefaultAvatar ( array $contact , string $size )
{
switch ( $size ) {
case Proxy :: SIZE_MICRO :
$avatar [ 'size' ] = 48 ;
$default = self :: DEFAULT_AVATAR_MICRO ;
break ;
case Proxy :: SIZE_THUMB :
$avatar [ 'size' ] = 80 ;
$default = self :: DEFAULT_AVATAR_THUMB ;
break ;
case Proxy :: SIZE_SMALL :
default :
$avatar [ 'size' ] = 300 ;
$default = self :: DEFAULT_AVATAR_PHOTO ;
break ;
}
if ( ! DI :: config () -> get ( 'system' , 'remote_avatar_lookup' )) {
return DI :: baseUrl () . $default ;
}
if ( ! empty ( $contact [ 'xmpp' ])) {
$avatar [ 'email' ] = $contact [ 'xmpp' ];
} elseif ( ! empty ( $contact [ 'addr' ])) {
$avatar [ 'email' ] = $contact [ 'addr' ];
} elseif ( ! empty ( $contact [ 'url' ])) {
$avatar [ 'email' ] = $contact [ 'url' ];
} else {
return DI :: baseUrl () . $default ;
}
$avatar [ 'url' ] = '' ;
$avatar [ 'success' ] = false ;
Hook :: callAll ( 'avatar_lookup' , $avatar );
if ( $avatar [ 'success' ] && ! empty ( $avatar [ 'url' ])) {
return $avatar [ 'url' ];
}
return DI :: baseUrl () . $default ;
}
2018-01-11 08:37:11 +00:00
/**
2020-01-19 06:05:23 +00:00
* Updates the avatar links in a contact only if needed
2017-11-29 22:29:11 +00:00
*
2020-08-21 18:41:48 +00:00
* @ param int $cid Contact id
* @ param string $avatar Link to avatar picture
* @ param bool $force force picture update
* @ param bool $create_cache Enforces the creation of cached avatar fields
2017-11-29 22:29:11 +00:00
*
2020-03-09 15:39:48 +00:00
* @ return void
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2020-03-09 15:12:33 +00:00
* @ throws HTTPException\NotFoundException
2019-01-06 21:06:53 +00:00
* @ throws \ImagickException
2017-11-29 22:29:11 +00:00
*/
2020-08-21 18:41:48 +00:00
public static function updateAvatar ( int $cid , string $avatar , bool $force = false , bool $create_cache = false )
2017-11-29 22:29:11 +00:00
{
2020-12-07 06:43:43 +00:00
$contact = DBA :: selectFirst ( 'contact' , [ 'uid' , 'avatar' , 'photo' , 'thumb' , 'micro' , 'xmpp' , 'addr' , 'nurl' , 'url' , 'network' ],
[ 'id' => $cid , 'self' => false ]);
2018-07-21 12:46:04 +00:00
if ( ! DBA :: isResult ( $contact )) {
2020-03-09 15:39:48 +00:00
return ;
2017-11-29 22:29:11 +00:00
}
2020-07-25 11:48:52 +00:00
$uid = $contact [ 'uid' ];
// Only update the cached photo links of public contacts when they already are cached
2020-08-21 18:41:48 +00:00
if (( $uid == 0 ) && ! $force && empty ( $contact [ 'thumb' ]) && empty ( $contact [ 'micro' ]) && ! $create_cache ) {
2020-07-26 07:34:33 +00:00
if ( $contact [ 'avatar' ] != $avatar ) {
DBA :: update ( 'contact' , [ 'avatar' => $avatar ], [ 'id' => $cid ]);
Logger :: info ( 'Only update the avatar' , [ 'id' => $cid , 'avatar' => $avatar , 'contact' => $contact ]);
}
2020-07-25 11:48:52 +00:00
return ;
}
2020-08-21 18:41:48 +00:00
// User contacts use are updated through the public contacts
if (( $uid != 0 ) && ! in_array ( $contact [ 'network' ], [ Protocol :: FEED , Protocol :: MAIL ])) {
$pcid = self :: getIdForURL ( $contact [ 'url' ], false );
if ( ! empty ( $pcid )) {
Logger :: debug ( 'Update the private contact via the public contact' , [ 'id' => $cid , 'uid' => $uid , 'public' => $pcid ]);
self :: updateAvatar ( $pcid , $avatar , $force , true );
return ;
}
2020-08-19 05:18:19 +00:00
}
2020-12-07 06:43:43 +00:00
2020-12-07 07:14:09 +00:00
$default_avatar = empty ( $avatar ) || strpos ( $avatar , self :: DEFAULT_AVATAR_PHOTO );
2020-12-07 06:43:43 +00:00
if ( $default_avatar ) {
$avatar = self :: getDefaultAvatar ( $contact , Proxy :: SIZE_SMALL );
}
if ( $default_avatar && Proxy :: isLocalImage ( $avatar )) {
2020-08-18 22:18:48 +00:00
$fields = [ 'avatar' => $avatar , 'avatar-date' => DateTimeFormat :: utcNow (),
2020-12-07 06:43:43 +00:00
'photo' => $avatar ,
'thumb' => self :: getDefaultAvatar ( $contact , Proxy :: SIZE_THUMB ),
'micro' => self :: getDefaultAvatar ( $contact , Proxy :: SIZE_MICRO )];
2020-08-21 18:41:48 +00:00
Logger :: debug ( 'Use default avatar' , [ 'id' => $cid , 'uid' => $uid ]);
2020-08-19 05:18:19 +00:00
}
2020-08-21 18:41:48 +00:00
// Use the data from the self account
if ( empty ( $fields )) {
$local_uid = User :: getIdForURL ( $contact [ 'url' ]);
if ( ! empty ( $local_uid )) {
$fields = self :: selectFirst ([ 'avatar' , 'avatar-date' , 'photo' , 'thumb' , 'micro' ], [ 'self' => true , 'uid' => $local_uid ]);
Logger :: debug ( 'Use owner data' , [ 'id' => $cid , 'uid' => $uid , 'owner-uid' => $local_uid ]);
2020-08-19 04:11:20 +00:00
}
2020-08-18 22:18:48 +00:00
}
2020-08-21 18:41:48 +00:00
if ( empty ( $fields )) {
$update = ( $contact [ 'avatar' ] != $avatar ) || $force ;
2020-08-19 04:11:20 +00:00
2020-08-21 18:41:48 +00:00
if ( ! $update ) {
$data = [
$contact [ 'photo' ] ? ? '' ,
$contact [ 'thumb' ] ? ? '' ,
$contact [ 'micro' ] ? ? '' ,
];
foreach ( $data as $image_uri ) {
$image_rid = Photo :: ridFromURI ( $image_uri );
if ( $image_rid && ! Photo :: exists ([ 'resource-id' => $image_rid , 'uid' => $uid ])) {
Logger :: debug ( 'Regenerating avatar' , [ 'contact uid' => $uid , 'cid' => $cid , 'missing photo' => $image_rid , 'avatar' => $contact [ 'avatar' ]]);
$update = true ;
}
}
}
2020-08-19 04:11:20 +00:00
2020-08-21 18:41:48 +00:00
if ( $update ) {
$photos = Photo :: importProfilePhoto ( $avatar , $uid , $cid , true );
if ( $photos ) {
$fields = [ 'avatar' => $avatar , 'photo' => $photos [ 0 ], 'thumb' => $photos [ 1 ], 'micro' => $photos [ 2 ], 'avatar-date' => DateTimeFormat :: utcNow ()];
$update = ! empty ( $fields );
Logger :: debug ( 'Created new cached avatars' , [ 'id' => $cid , 'uid' => $uid , 'owner-uid' => $local_uid ]);
} else {
$update = false ;
2020-07-26 07:34:33 +00:00
}
2020-01-09 20:41:52 +00:00
}
2020-08-21 18:41:48 +00:00
} else {
$update = ( $fields [ 'photo' ] . $fields [ 'thumb' ] . $fields [ 'micro' ] != $contact [ 'photo' ] . $contact [ 'thumb' ] . $contact [ 'micro' ]) || $force ;
2020-01-09 20:41:52 +00:00
}
2020-08-21 18:41:48 +00:00
if ( ! $update ) {
return ;
}
$cids = [];
$uids = [];
if (( $uid == 0 ) && ! in_array ( $contact [ 'network' ], [ Protocol :: FEED , Protocol :: MAIL ])) {
// Collect all user contacts of the given public contact
$personal_contacts = DBA :: select ( 'contact' , [ 'id' , 'uid' ],
[ " `nurl` = ? AND `id` != ? AND NOT `self` " , $contact [ 'nurl' ], $cid ]);
while ( $personal_contact = DBA :: fetch ( $personal_contacts )) {
$cids [] = $personal_contact [ 'id' ];
$uids [] = $personal_contact [ 'uid' ];
}
DBA :: close ( $personal_contacts );
if ( ! empty ( $cids )) {
// Delete possibly existing cached user contact avatars
Photo :: delete ([ 'uid' => $uids , 'contact-id' => $cids , 'album' => Photo :: CONTACT_PHOTOS ]);
2017-11-29 22:29:11 +00:00
}
}
2020-08-21 18:41:48 +00:00
$cids [] = $cid ;
$uids [] = $uid ;
Logger :: info ( 'Updating cached contact avatars' , [ 'cid' => $cids , 'uid' => $uids , 'fields' => $fields ]);
DBA :: update ( 'contact' , $fields , [ 'id' => $cids ]);
2017-11-29 22:29:11 +00:00
}
2018-01-09 14:40:45 +00:00
2020-12-15 22:56:46 +00:00
public static function deleteContactByUrl ( string $url )
{
// Update contact data for all users
$condition = [ 'self' => false , 'nurl' => Strings :: normaliseLink ( $url )];
$contacts = DBA :: select ( 'contact' , [ 'id' , 'uid' ], $condition );
while ( $contact = DBA :: fetch ( $contacts )) {
Logger :: info ( 'Deleting contact' , [ 'id' => $contact [ 'id' ], 'uid' => $contact [ 'uid' ], 'url' => $url ]);
self :: remove ( $contact [ 'id' ]);
}
}
2020-01-19 09:46:31 +00:00
/**
2020-01-19 06:05:23 +00:00
* Helper function for " updateFromProbe " . Updates personal and public contact
2019-06-24 03:25:01 +00:00
*
2019-08-27 23:22:09 +00:00
* @ param integer $id contact id
* @ param integer $uid user id
* @ param string $url The profile URL of the contact
* @ param array $fields The fields that are updated
*
2019-06-24 03:25:01 +00:00
* @ throws \Exception
*/
private static function updateContact ( $id , $uid , $url , array $fields )
{
2019-08-27 23:22:09 +00:00
if ( ! DBA :: update ( 'contact' , $fields , [ 'id' => $id ])) {
Logger :: info ( 'Couldn\'t update contact.' , [ 'id' => $id , 'fields' => $fields ]);
return ;
}
2019-06-24 03:25:01 +00:00
2019-07-12 14:55:23 +00:00
// Search for duplicated contacts and get rid of them
2020-12-04 05:53:11 +00:00
if ( self :: removeDuplicates ( Strings :: normaliseLink ( $url ), $uid )) {
2019-06-24 03:25:01 +00:00
return ;
}
2020-12-04 05:53:11 +00:00
// Archive or unarchive the contact.
2019-06-27 05:03:58 +00:00
$contact = DBA :: selectFirst ( 'contact' , [], [ 'id' => $id ]);
2019-08-27 23:22:09 +00:00
if ( ! DBA :: isResult ( $contact )) {
Logger :: info ( 'Couldn\'t select contact for archival.' , [ 'id' => $id ]);
return ;
}
2020-12-04 05:53:11 +00:00
if ( isset ( $fields [ 'failed' ])) {
if ( $fields [ 'failed' ]) {
self :: markForArchival ( $contact );
} else {
self :: unmarkForArchival ( $contact );
}
}
if ( $contact [ 'uid' ] != 0 ) {
return ;
2019-06-27 05:03:58 +00:00
}
2020-12-04 05:53:11 +00:00
// Update contact data for all users
$condition = [ 'self' => false , 'nurl' => Strings :: normaliseLink ( $url )];
2019-06-24 03:25:01 +00:00
2020-12-04 05:53:11 +00:00
$condition [ 'network' ] = [ Protocol :: DFRN , Protocol :: DIASPORA , Protocol :: ACTIVITYPUB ];
2019-06-24 03:25:01 +00:00
DBA :: update ( 'contact' , $fields , $condition );
2020-12-04 05:53:11 +00:00
// We mustn't set the update fields for OStatus contacts since they are updated in OnePoll
$condition [ 'network' ] = Protocol :: OSTATUS ;
2020-11-22 14:42:24 +00:00
// If the contact failed, propagate the update fields to all contacts
if ( empty ( $fields [ 'failed' ])) {
unset ( $fields [ 'last-update' ]);
unset ( $fields [ 'success_update' ]);
unset ( $fields [ 'failure_update' ]);
}
2019-06-24 03:25:01 +00:00
if ( empty ( $fields )) {
return ;
}
DBA :: update ( 'contact' , $fields , $condition );
}
2020-01-19 09:46:31 +00:00
/**
2020-01-19 06:05:23 +00:00
* Remove duplicated contacts
2019-07-12 14:55:23 +00:00
*
* @ param string $nurl Normalised contact url
* @ param integer $uid User id
2019-07-13 07:25:01 +00:00
* @ return boolean
2019-07-12 14:55:23 +00:00
* @ throws \Exception
*/
2019-08-30 05:52:21 +00:00
public static function removeDuplicates ( string $nurl , int $uid )
2019-07-12 14:55:23 +00:00
{
2019-08-26 15:51:56 +00:00
$condition = [ 'nurl' => $nurl , 'uid' => $uid , 'deleted' => false , 'network' => Protocol :: FEDERATED ];
2019-07-12 14:55:23 +00:00
$count = DBA :: count ( 'contact' , $condition );
if ( $count <= 1 ) {
return false ;
}
2019-08-26 15:51:56 +00:00
$first_contact = DBA :: selectFirst ( 'contact' , [ 'id' , 'network' ], $condition , [ 'order' => [ 'id' ]]);
2019-07-12 14:55:23 +00:00
if ( ! DBA :: isResult ( $first_contact )) {
// Shouldn't happen - so we handle it
return false ;
}
$first = $first_contact [ 'id' ];
2019-08-29 05:22:29 +00:00
Logger :: info ( 'Found duplicates' , [ 'count' => $count , 'first' => $first , 'uid' => $uid , 'nurl' => $nurl ]);
2019-08-26 15:51:56 +00:00
if (( $uid != 0 && ( $first_contact [ 'network' ] == Protocol :: DFRN ))) {
// Don't handle non public DFRN duplicates by now (legacy DFRN is very special because of the key handling)
Logger :: info ( 'Not handling non public DFRN duplicate' , [ 'uid' => $uid , 'nurl' => $nurl ]);
2019-07-12 14:55:23 +00:00
return false ;
}
// Find all duplicates
$condition = [ " `nurl` = ? AND `uid` = ? AND `id` != ? AND NOT `self` AND NOT `deleted` " , $nurl , $uid , $first ];
2019-08-26 15:51:56 +00:00
$duplicates = DBA :: select ( 'contact' , [ 'id' , 'network' ], $condition );
2019-07-12 14:55:23 +00:00
while ( $duplicate = DBA :: fetch ( $duplicates )) {
2019-08-26 15:51:56 +00:00
if ( ! in_array ( $duplicate [ 'network' ], Protocol :: FEDERATED )) {
continue ;
}
2019-07-12 14:55:23 +00:00
2019-08-26 15:51:56 +00:00
Worker :: add ( PRIORITY_HIGH , 'MergeContact' , $first , $duplicate [ 'id' ], $uid );
2019-07-12 14:55:23 +00:00
}
2020-04-28 07:10:18 +00:00
DBA :: close ( $duplicates );
2019-07-12 14:55:23 +00:00
Logger :: info ( 'Duplicates handled' , [ 'uid' => $uid , 'nurl' => $nurl ]);
return true ;
}
2018-01-09 14:40:45 +00:00
/**
2018-09-15 18:54:45 +00:00
* @ param integer $id contact id
* @ param string $network Optional network we are probing for
2018-01-09 14:40:45 +00:00
* @ return boolean
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2019-01-06 21:06:53 +00:00
* @ throws \ImagickException
2018-01-09 14:40:45 +00:00
*/
2020-08-06 18:53:45 +00:00
public static function updateFromProbe ( int $id , string $network = '' )
2020-08-06 04:51:20 +00:00
{
$contact = DBA :: selectFirst ( 'contact' , [ 'uid' , 'url' ], [ 'id' => $id ]);
if ( ! DBA :: isResult ( $contact )) {
return false ;
}
2020-08-06 18:53:45 +00:00
$ret = Probe :: uri ( $contact [ 'url' ], $network , $contact [ 'uid' ]);
return self :: updateFromProbeArray ( $id , $ret );
2020-08-06 04:51:20 +00:00
}
/**
* @ param integer $id contact id
* @ param array $ret Probed data
* @ return boolean
* @ throws HTTPException\InternalServerErrorException
* @ throws \ImagickException
*/
2020-08-06 18:53:45 +00:00
private static function updateFromProbeArray ( int $id , array $ret )
2018-01-09 14:40:45 +00:00
{
/*
2018-01-11 08:37:11 +00:00
Warning : Never ever fetch the public key via Probe :: uri and write it into the contacts .
2019-06-24 03:25:01 +00:00
This will reliably kill your communication with old Friendica contacts .
2018-01-11 08:37:11 +00:00
*/
2018-01-09 14:40:45 +00:00
2019-07-04 19:31:42 +00:00
// These fields aren't updated by this routine:
2019-07-12 14:55:23 +00:00
// 'xmpp', 'sensitive'
2019-07-04 19:31:42 +00:00
2020-09-02 03:02:50 +00:00
$fields = [ 'uid' , 'avatar' , 'name' , 'nick' , 'location' , 'keywords' , 'about' , 'subscribe' , 'manually-approve' ,
2019-07-12 14:55:23 +00:00
'unsearchable' , 'url' , 'addr' , 'batch' , 'notify' , 'poll' , 'request' , 'confirm' , 'poco' ,
2020-08-06 04:51:20 +00:00
'network' , 'alias' , 'baseurl' , 'gsid' , 'forum' , 'prv' , 'contact-type' , 'pubkey' , 'last-item' ];
2018-07-20 12:19:26 +00:00
$contact = DBA :: selectFirst ( 'contact' , $fields , [ 'id' => $id ]);
2018-07-21 12:46:04 +00:00
if ( ! DBA :: isResult ( $contact )) {
2018-01-09 14:40:45 +00:00
return false ;
}
2020-12-15 22:56:46 +00:00
if ( ! empty ( $ret [ 'account-type' ]) && $ret [ 'account-type' ] == User :: ACCOUNT_TYPE_DELETED ) {
Logger :: info ( 'Deleted account' , [ 'id' => $id , 'url' => $ret [ 'url' ], 'ret' => $ret ]);
self :: remove ( $id );
// Delete all contacts with the same URL
self :: deleteContactByUrl ( $ret [ 'url' ]);
return true ;
}
2019-03-07 00:13:39 +00:00
$uid = $contact [ 'uid' ];
unset ( $contact [ 'uid' ]);
2019-07-12 21:07:47 +00:00
$pubkey = $contact [ 'pubkey' ];
unset ( $contact [ 'pubkey' ]);
2019-03-07 00:13:39 +00:00
$contact [ 'photo' ] = $contact [ 'avatar' ];
unset ( $contact [ 'avatar' ]);
2019-06-24 03:25:01 +00:00
$updated = DateTimeFormat :: utcNow ();
2019-04-09 11:28:45 +00:00
2019-07-13 07:25:01 +00:00
// We must not try to update relay contacts via probe. They are no real contacts.
// We check after the probing to be able to correct falsely detected contact types.
if (( $contact [ 'contact-type' ] == self :: TYPE_RELAY ) &&
( ! Strings :: compareLink ( $ret [ 'url' ], $contact [ 'url' ]) || in_array ( $ret [ 'network' ], [ Protocol :: FEED , Protocol :: PHANTOM ]))) {
2020-07-19 01:15:57 +00:00
self :: updateContact ( $id , $uid , $contact [ 'url' ], [ 'failed' => false , 'last-update' => $updated , 'success_update' => $updated ]);
2019-07-13 07:25:01 +00:00
Logger :: info ( 'Not updating relais' , [ 'id' => $id , 'url' => $contact [ 'url' ]]);
return true ;
}
2019-09-20 21:01:52 +00:00
// If Probe::uri fails the network code will be different ("feed" or "unkn")
if ( in_array ( $ret [ 'network' ], [ Protocol :: FEED , Protocol :: PHANTOM ]) && ( $ret [ 'network' ] != $contact [ 'network' ])) {
2020-11-22 14:42:24 +00:00
self :: updateContact ( $id , $uid , $ret [ 'url' ], [ 'failed' => true , 'last-update' => $updated , 'failure_update' => $updated ]);
2018-01-09 14:40:45 +00:00
return false ;
}
2019-07-12 14:55:23 +00:00
if ( isset ( $ret [ 'hide' ]) && is_bool ( $ret [ 'hide' ])) {
$ret [ 'unsearchable' ] = $ret [ 'hide' ];
}
if ( isset ( $ret [ 'account-type' ]) && is_int ( $ret [ 'account-type' ])) {
2019-07-04 19:31:42 +00:00
$ret [ 'forum' ] = false ;
$ret [ 'prv' ] = false ;
$ret [ 'contact-type' ] = $ret [ 'account-type' ];
2020-09-02 07:14:01 +00:00
if (( $ret [ 'contact-type' ] == User :: ACCOUNT_TYPE_COMMUNITY ) && isset ( $ret [ 'manually-approve' ])) {
$ret [ 'forum' ] = ( bool ) ! $ret [ 'manually-approve' ];
$ret [ 'prv' ] = ( bool ) ! $ret [ 'forum' ];
2019-07-04 19:31:42 +00:00
}
}
2020-08-06 04:51:20 +00:00
$new_pubkey = $ret [ 'pubkey' ] ? ? '' ;
if ( $uid == 0 ) {
$ret [ 'last-item' ] = Probe :: getLastUpdate ( $ret );
Logger :: info ( 'Fetched last item' , [ 'id' => $id , 'probed_url' => $ret [ 'url' ], 'last-item' => $ret [ 'last-item' ], 'callstack' => System :: callstack ( 20 )]);
}
2019-07-12 21:07:47 +00:00
2018-01-09 14:40:45 +00:00
$update = false ;
2019-07-12 14:55:23 +00:00
// make sure to not overwrite existing values with blank entries except some technical fields
$keep = [ 'batch' , 'notify' , 'poll' , 'request' , 'confirm' , 'poco' , 'baseurl' ];
2018-01-09 14:44:22 +00:00
foreach ( $ret as $key => $val ) {
2019-07-04 04:08:55 +00:00
if ( ! array_key_exists ( $key , $contact )) {
2019-03-07 00:13:39 +00:00
unset ( $ret [ $key ]);
2019-07-13 07:25:01 +00:00
} elseif (( $contact [ $key ] != '' ) && ( $val === '' ) && ! is_bool ( $ret [ $key ]) && ! in_array ( $key , $keep )) {
2018-01-11 08:26:30 +00:00
$ret [ $key ] = $contact [ $key ];
2019-03-07 00:13:39 +00:00
} elseif ( $ret [ $key ] != $contact [ $key ]) {
2018-01-09 14:40:45 +00:00
$update = true ;
2018-01-11 08:26:30 +00:00
}
2018-01-09 14:40:45 +00:00
}
2020-08-06 04:51:20 +00:00
if ( ! empty ( $ret [ 'last-item' ]) && ( $contact [ 'last-item' ] < $ret [ 'last-item' ])) {
$update = true ;
} else {
unset ( $ret [ 'last-item' ]);
}
2019-09-20 21:01:52 +00:00
if ( ! empty ( $ret [ 'photo' ]) && ( $ret [ 'network' ] != Protocol :: FEED )) {
2020-08-06 18:53:45 +00:00
self :: updateAvatar ( $id , $ret [ 'photo' ], $update );
2019-06-28 04:26:49 +00:00
}
2019-06-23 09:27:40 +00:00
2018-01-09 14:40:45 +00:00
if ( ! $update ) {
2020-08-06 04:51:20 +00:00
self :: updateContact ( $id , $uid , $ret [ 'url' ], [ 'failed' => false , 'last-update' => $updated , 'success_update' => $updated ]);
2020-01-16 06:43:21 +00:00
2020-10-03 10:52:34 +00:00
if ( Contact\Relation :: isDiscoverable ( $ret [ 'url' ])) {
Worker :: add ( PRIORITY_LOW , 'ContactDiscovery' , $ret [ 'url' ]);
}
2020-01-16 06:43:21 +00:00
// Update the public contact
if ( $uid != 0 ) {
2020-08-06 18:53:45 +00:00
$contact = self :: getByURL ( $ret [ 'url' ], false , [ 'id' ]);
if ( ! empty ( $contact [ 'id' ])) {
self :: updateFromProbeArray ( $contact [ 'id' ], $ret );
}
2020-01-16 06:43:21 +00:00
}
2018-01-09 14:40:45 +00:00
return true ;
}
2019-03-07 00:13:39 +00:00
$ret [ 'nurl' ] = Strings :: normaliseLink ( $ret [ 'url' ]);
2019-06-24 03:25:01 +00:00
$ret [ 'updated' ] = $updated ;
2020-11-22 14:42:24 +00:00
$ret [ 'failed' ] = false ;
2019-06-24 03:25:01 +00:00
2019-07-12 21:07:47 +00:00
// Only fill the pubkey if it had been empty before. We have to prevent identity theft.
if ( empty ( $pubkey ) && ! empty ( $new_pubkey )) {
$ret [ 'pubkey' ] = $new_pubkey ;
}
2020-09-19 03:16:26 +00:00
if (( ! empty ( $ret [ 'addr' ]) && ( $ret [ 'addr' ] != $contact [ 'addr' ])) || ( ! empty ( $ret [ 'alias' ]) && ( $ret [ 'alias' ] != $contact [ 'alias' ]))) {
2019-07-12 21:07:47 +00:00
$ret [ 'uri-date' ] = DateTimeFormat :: utcNow ();
}
if (( $ret [ 'name' ] != $contact [ 'name' ]) || ( $ret [ 'nick' ] != $contact [ 'nick' ])) {
$ret [ 'name-date' ] = $updated ;
}
2020-12-04 05:53:11 +00:00
if (( $uid == 0 ) || in_array ( $ret [ 'network' ], [ Protocol :: DFRN , Protocol :: DIASPORA , Protocol :: ACTIVITYPUB ])) {
2019-06-24 03:25:01 +00:00
$ret [ 'last-update' ] = $updated ;
$ret [ 'success_update' ] = $updated ;
}
2019-03-07 00:13:39 +00:00
unset ( $ret [ 'photo' ]);
2018-01-09 14:40:45 +00:00
2019-06-24 03:25:01 +00:00
self :: updateContact ( $id , $uid , $ret [ 'url' ], $ret );
2019-06-23 09:27:40 +00:00
2020-10-03 10:52:34 +00:00
if ( Contact\Relation :: isDiscoverable ( $ret [ 'url' ])) {
Worker :: add ( PRIORITY_LOW , 'ContactDiscovery' , $ret [ 'url' ]);
}
2018-01-09 14:40:45 +00:00
return true ;
}
2020-08-06 18:53:45 +00:00
/**
* @ param integer $url contact url
* @ return integer Contact id
* @ throws HTTPException\InternalServerErrorException
* @ throws \ImagickException
*/
public static function updateFromProbeByURL ( $url )
2019-07-04 19:31:42 +00:00
{
$id = self :: getIdForURL ( $url );
if ( empty ( $id )) {
2019-07-12 14:55:23 +00:00
return $id ;
2019-07-04 19:31:42 +00:00
}
2020-08-06 18:53:45 +00:00
self :: updateFromProbe ( $id );
2019-07-12 14:55:23 +00:00
return $id ;
2019-07-04 19:31:42 +00:00
}
2019-05-02 13:05:31 +00:00
/**
* Detects if a given contact array belongs to a legacy DFRN connection
*
* @ param array $contact
* @ return boolean
*/
2019-05-02 19:22:43 +00:00
public static function isLegacyDFRNContact ( $contact )
2019-05-02 13:05:31 +00:00
{
// Newer Friendica contacts are connected via AP, then these fields aren't set
return ! empty ( $contact [ 'dfrn-id' ]) || ! empty ( $contact [ 'issued-id' ]);
}
/**
* Detects the communication protocol for a given contact url .
* This is used to detect Friendica contacts that we can communicate via AP .
*
* @ param string $url contact url
* @ param string $network Network of that contact
* @ return string with protocol
*/
public static function getProtocol ( $url , $network )
{
if ( $network != Protocol :: DFRN ) {
return $network ;
}
$apcontact = APContact :: getByURL ( $url );
if ( ! empty ( $apcontact ) && ! empty ( $apcontact [ 'generator' ])) {
return Protocol :: ACTIVITYPUB ;
} else {
return $network ;
}
}
2018-01-09 14:40:45 +00:00
/**
* Takes a $uid and a url / handle and adds a new contact
2020-01-19 09:55:28 +00:00
*
2018-01-09 14:40:45 +00:00
* Currently if the contact is DFRN , interactive needs to be true , to redirect to the
* dfrn_request page .
*
2018-01-11 08:37:11 +00:00
* Otherwise this can be used to bulk add StatusNet contacts , Twitter contacts , etc .
2018-01-09 14:40:45 +00:00
*
* Returns an array
* $return [ 'success' ] boolean true if successful
* $return [ 'message' ] error text if success is false .
*
2020-01-19 06:05:23 +00:00
* Takes a $uid and a url / handle and adds a new contact
2020-06-10 14:36:42 +00:00
*
* @ param array $user The user the contact should be created for
* @ param string $url The profile URL of the contact
2018-01-09 14:40:45 +00:00
* @ param bool $interactive
* @ param string $network
2019-01-06 21:06:53 +00:00
* @ return array
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2020-06-10 14:36:42 +00:00
* @ throws HTTPException\NotFoundException
2019-01-06 21:06:53 +00:00
* @ throws \ImagickException
2018-01-09 14:40:45 +00:00
*/
2020-06-10 14:36:42 +00:00
public static function createFromProbe ( array $user , $url , $interactive = false , $network = '' )
2018-01-09 14:40:45 +00:00
{
2018-01-15 13:05:12 +00:00
$result = [ 'cid' => - 1 , 'success' => false , 'message' => '' ];
2018-01-09 14:40:45 +00:00
// remove ajax junk, e.g. Twitter
$url = str_replace ( '/#!/' , '/' , $url );
2018-01-27 16:13:41 +00:00
if ( ! Network :: isUrlAllowed ( $url )) {
2020-01-18 19:52:34 +00:00
$result [ 'message' ] = DI :: l10n () -> t ( 'Disallowed profile URL.' );
2018-01-09 14:40:45 +00:00
return $result ;
}
2018-01-27 16:13:41 +00:00
if ( Network :: isUrlBlocked ( $url )) {
2020-01-18 19:52:34 +00:00
$result [ 'message' ] = DI :: l10n () -> t ( 'Blocked domain' );
2018-01-09 14:40:45 +00:00
return $result ;
}
if ( ! $url ) {
2020-01-18 19:52:34 +00:00
$result [ 'message' ] = DI :: l10n () -> t ( 'Connect URL missing.' );
2018-01-09 14:40:45 +00:00
return $result ;
}
2018-01-15 13:05:12 +00:00
$arr = [ 'url' => $url , 'contact' => []];
2018-01-09 14:40:45 +00:00
2018-11-10 13:18:16 +00:00
Hook :: callAll ( 'follow' , $arr );
2018-01-09 14:40:45 +00:00
2018-01-30 18:51:09 +00:00
if ( empty ( $arr )) {
2020-01-18 19:52:34 +00:00
$result [ 'message' ] = DI :: l10n () -> t ( 'The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.' );
2018-01-30 18:51:09 +00:00
return $result ;
}
2018-11-30 14:06:22 +00:00
if ( ! empty ( $arr [ 'contact' ][ 'name' ])) {
2018-01-09 14:40:45 +00:00
$ret = $arr [ 'contact' ];
} else {
2020-08-06 18:53:45 +00:00
$ret = Probe :: uri ( $url , $network , $user [ 'uid' ]);
2018-01-09 14:40:45 +00:00
}
if (( $network != '' ) && ( $ret [ 'network' ] != $network )) {
2018-10-29 21:20:46 +00:00
Logger :: log ( 'Expected network ' . $network . ' does not match actual network ' . $ret [ 'network' ]);
2018-05-15 01:23:24 +00:00
return $result ;
2018-01-09 14:40:45 +00:00
}
2018-03-16 06:43:10 +00:00
// check if we already have a contact
// the poll url is more reliable than the profile url, as we may have
// indirect links or webfinger links
2020-06-10 14:36:42 +00:00
$condition = [ 'uid' => $user [ 'uid' ], 'poll' => [ $ret [ 'poll' ], Strings :: normaliseLink ( $ret [ 'poll' ])], 'network' => $ret [ 'network' ], 'pending' => false ];
2018-08-19 12:46:11 +00:00
$contact = DBA :: selectFirst ( 'contact' , [ 'id' , 'rel' ], $condition );
if ( ! DBA :: isResult ( $contact )) {
2020-06-25 00:57:47 +00:00
$condition = [ 'uid' => $user [ 'uid' ], 'nurl' => Strings :: normaliseLink ( $ret [ 'url' ]), 'network' => $ret [ 'network' ], 'pending' => false ];
2018-08-19 12:46:11 +00:00
$contact = DBA :: selectFirst ( 'contact' , [ 'id' , 'rel' ], $condition );
2018-03-16 06:43:10 +00:00
}
2020-06-25 00:57:47 +00:00
$protocol = self :: getProtocol ( $ret [ 'url' ], $ret [ 'network' ]);
2019-05-02 13:05:31 +00:00
if (( $protocol === Protocol :: DFRN ) && ! DBA :: isResult ( $contact )) {
2018-01-09 14:40:45 +00:00
if ( $interactive ) {
2019-12-15 23:39:54 +00:00
if ( strlen ( DI :: baseUrl () -> getUrlPath ())) {
2020-06-10 14:36:42 +00:00
$myaddr = bin2hex ( DI :: baseUrl () . '/profile/' . $user [ 'nickname' ]);
2018-01-09 14:40:45 +00:00
} else {
2020-06-10 14:36:42 +00:00
$myaddr = bin2hex ( $user [ 'nickname' ] . '@' . DI :: baseUrl () -> getHostname ());
2018-01-09 14:40:45 +00:00
}
2019-12-15 23:28:31 +00:00
DI :: baseUrl () -> redirect ( $ret [ 'request' ] . " &addr= $myaddr " );
2018-01-09 14:40:45 +00:00
// NOTREACHED
}
2020-01-19 20:21:13 +00:00
} elseif ( DI :: config () -> get ( 'system' , 'dfrn_only' ) && ( $ret [ 'network' ] != Protocol :: DFRN )) {
2020-01-18 19:52:34 +00:00
$result [ 'message' ] = DI :: l10n () -> t ( 'This site is not configured to allow communications with other networks.' ) . EOL ;
$result [ 'message' ] .= DI :: l10n () -> t ( 'No compatible communication protocols or feeds were discovered.' ) . EOL ;
2018-01-09 14:40:45 +00:00
return $result ;
}
// This extra param just confuses things, remove it
2019-05-02 13:05:31 +00:00
if ( $protocol === Protocol :: DIASPORA ) {
2018-01-09 14:40:45 +00:00
$ret [ 'url' ] = str_replace ( '?absolute=true' , '' , $ret [ 'url' ]);
}
// do we have enough information?
2020-08-23 07:37:14 +00:00
if ( empty ( $protocol ) || ( $protocol == Protocol :: PHANTOM ) || ( empty ( $ret [ 'url' ]) && empty ( $ret [ 'addr' ]))) {
2020-01-18 19:52:34 +00:00
$result [ 'message' ] .= DI :: l10n () -> t ( 'The profile address specified does not provide adequate information.' ) . EOL ;
2018-11-30 14:06:22 +00:00
if ( empty ( $ret [ 'poll' ])) {
2020-01-18 19:52:34 +00:00
$result [ 'message' ] .= DI :: l10n () -> t ( 'No compatible communication protocols or feeds were discovered.' ) . EOL ;
2018-01-09 14:40:45 +00:00
}
2018-11-30 14:06:22 +00:00
if ( empty ( $ret [ 'name' ])) {
2020-01-18 19:52:34 +00:00
$result [ 'message' ] .= DI :: l10n () -> t ( 'An author or name was not found.' ) . EOL ;
2018-01-09 14:40:45 +00:00
}
2018-11-30 14:06:22 +00:00
if ( empty ( $ret [ 'url' ])) {
2020-01-18 19:52:34 +00:00
$result [ 'message' ] .= DI :: l10n () -> t ( 'No browser URL could be matched to this address.' ) . EOL ;
2018-01-09 14:40:45 +00:00
}
2020-06-25 00:57:47 +00:00
if ( strpos ( $ret [ 'url' ], '@' ) !== false ) {
2020-01-18 19:52:34 +00:00
$result [ 'message' ] .= DI :: l10n () -> t ( 'Unable to match @-style Identity Address with a known protocol or email contact.' ) . EOL ;
$result [ 'message' ] .= DI :: l10n () -> t ( 'Use mailto: in front of address to force email check.' ) . EOL ;
2018-01-09 14:40:45 +00:00
}
return $result ;
}
2020-01-19 20:21:13 +00:00
if ( $protocol === Protocol :: OSTATUS && DI :: config () -> get ( 'system' , 'ostatus_disabled' )) {
2020-01-18 19:52:34 +00:00
$result [ 'message' ] .= DI :: l10n () -> t ( 'The profile address specified belongs to a network which has been disabled on this site.' ) . EOL ;
2018-01-09 14:40:45 +00:00
$ret [ 'notify' ] = '' ;
}
if ( ! $ret [ 'notify' ]) {
2020-01-18 19:52:34 +00:00
$result [ 'message' ] .= DI :: l10n () -> t ( 'Limited profile. This person will be unable to receive direct/personal notifications from you.' ) . EOL ;
2018-01-09 14:40:45 +00:00
}
2019-05-02 13:05:31 +00:00
$writeable = ((( $protocol === Protocol :: OSTATUS ) && ( $ret [ 'notify' ])) ? 1 : 0 );
2018-01-09 14:40:45 +00:00
2019-05-02 13:05:31 +00:00
$subhub = (( $protocol === Protocol :: OSTATUS ) ? true : false );
2018-01-09 14:40:45 +00:00
2019-05-02 13:05:31 +00:00
$hidden = (( $protocol === Protocol :: MAIL ) ? 1 : 0 );
2018-01-09 14:40:45 +00:00
2019-11-02 16:24:54 +00:00
$pending = false ;
2020-09-02 07:14:01 +00:00
if (( $protocol == Protocol :: ACTIVITYPUB ) && isset ( $ret [ 'manually-approve' ])) {
$pending = ( bool ) $ret [ 'manually-approve' ];
2019-11-02 16:20:17 +00:00
}
2019-01-09 13:23:11 +00:00
2019-05-02 13:05:31 +00:00
if ( in_array ( $protocol , [ Protocol :: MAIL , Protocol :: DIASPORA , Protocol :: ACTIVITYPUB ])) {
2018-01-09 14:40:45 +00:00
$writeable = 1 ;
}
2018-08-19 12:46:11 +00:00
if ( DBA :: isResult ( $contact )) {
2018-01-09 14:40:45 +00:00
// update contact
2018-08-19 12:46:11 +00:00
$new_relation = (( $contact [ 'rel' ] == self :: FOLLOWER ) ? self :: FRIEND : self :: SHARING );
2018-01-09 14:40:45 +00:00
2018-01-15 13:05:12 +00:00
$fields = [ 'rel' => $new_relation , 'subhub' => $subhub , 'readonly' => false ];
2018-08-19 12:46:11 +00:00
DBA :: update ( 'contact' , $fields , [ 'id' => $contact [ 'id' ]]);
2018-01-09 14:40:45 +00:00
} else {
2019-05-02 13:05:31 +00:00
$new_relation = ( in_array ( $protocol , [ Protocol :: MAIL ]) ? self :: FRIEND : self :: SHARING );
2018-01-09 14:40:45 +00:00
// create contact record
2019-08-29 04:07:07 +00:00
self :: insert ([
2020-06-10 14:36:42 +00:00
'uid' => $user [ 'uid' ],
2018-01-27 02:38:34 +00:00
'created' => DateTimeFormat :: utcNow (),
2018-01-11 08:37:11 +00:00
'url' => $ret [ 'url' ],
2018-11-08 16:28:29 +00:00
'nurl' => Strings :: normaliseLink ( $ret [ 'url' ]),
2018-01-11 08:37:11 +00:00
'addr' => $ret [ 'addr' ],
'alias' => $ret [ 'alias' ],
'batch' => $ret [ 'batch' ],
'notify' => $ret [ 'notify' ],
'poll' => $ret [ 'poll' ],
'poco' => $ret [ 'poco' ],
'name' => $ret [ 'name' ],
'nick' => $ret [ 'nick' ],
'network' => $ret [ 'network' ],
2019-07-04 04:08:55 +00:00
'baseurl' => $ret [ 'baseurl' ],
2020-05-22 04:19:32 +00:00
'gsid' => $ret [ 'gsid' ] ? ? null ,
2019-05-02 13:05:31 +00:00
'protocol' => $protocol ,
2018-01-11 08:37:11 +00:00
'pubkey' => $ret [ 'pubkey' ],
'rel' => $new_relation ,
'priority' => $ret [ 'priority' ],
'writable' => $writeable ,
'hidden' => $hidden ,
'blocked' => 0 ,
'readonly' => 0 ,
2019-01-09 13:23:11 +00:00
'pending' => $pending ,
2018-01-11 08:37:11 +00:00
'subhub' => $subhub
]);
2018-01-09 14:40:45 +00:00
}
2020-06-10 14:36:42 +00:00
$contact = DBA :: selectFirst ( 'contact' , [], [ 'url' => $ret [ 'url' ], 'network' => $ret [ 'network' ], 'uid' => $user [ 'uid' ]]);
2018-07-21 12:46:04 +00:00
if ( ! DBA :: isResult ( $contact )) {
2020-01-18 19:52:34 +00:00
$result [ 'message' ] .= DI :: l10n () -> t ( 'Unable to retrieve contact information.' ) . EOL ;
2018-01-09 14:40:45 +00:00
return $result ;
}
2018-01-11 01:13:51 +00:00
$contact_id = $contact [ 'id' ];
2018-01-09 14:40:45 +00:00
$result [ 'cid' ] = $contact_id ;
2020-06-10 14:36:42 +00:00
Group :: addMember ( User :: getDefaultGroup ( $user [ 'uid' ], $contact [ " network " ]), $contact_id );
2018-01-09 14:40:45 +00:00
// Update the avatar
2020-07-25 11:48:52 +00:00
self :: updateAvatar ( $contact_id , $ret [ 'photo' ]);
2018-01-09 14:40:45 +00:00
// pull feed and consume it, which should subscribe to the hub.
2020-12-04 05:53:11 +00:00
if ( $contact [ 'network' ] == Protocol :: OSTATUS ) {
Worker :: add ( PRIORITY_HIGH , 'OnePoll' , $contact_id , 'force' );
} else {
Worker :: add ( PRIORITY_HIGH , 'UpdateContact' , $contact_id );
}
2018-01-09 14:40:45 +00:00
2020-06-10 14:36:42 +00:00
$owner = User :: getOwnerDataById ( $user [ 'uid' ]);
2018-01-09 14:40:45 +00:00
2018-08-19 12:46:11 +00:00
if ( DBA :: isResult ( $owner )) {
2019-05-02 13:05:31 +00:00
if ( in_array ( $protocol , [ Protocol :: OSTATUS , Protocol :: DFRN ])) {
2018-01-09 14:40:45 +00:00
// create a follow slap
2018-01-15 13:05:12 +00:00
$item = [];
2019-10-23 22:25:43 +00:00
$item [ 'verb' ] = Activity :: FOLLOW ;
2020-06-16 20:30:25 +00:00
$item [ 'gravity' ] = GRAVITY_ACTIVITY ;
2018-01-09 14:40:45 +00:00
$item [ 'follow' ] = $contact [ " url " ];
2018-08-01 05:29:58 +00:00
$item [ 'body' ] = '' ;
$item [ 'title' ] = '' ;
$item [ 'guid' ] = '' ;
2020-05-05 05:11:59 +00:00
$item [ 'uri-id' ] = 0 ;
Cleanups: isResult() more used, readability improved (#5608)
* [diaspora]: Maybe SimpleXMLElement is the right type-hint?
* Changes proposed + pre-renaming:
- pre-renamed $db -> $connection
- added TODOs for not allowing bad method invocations (there is a
BadMethodCallException in SPL)
* If no record is found, below $r[0] will fail with a E_NOTICE and the code
doesn't behave as expected.
* Ops, one more left ...
* Continued:
- added documentation for Contact::updateSslPolicy() method
- added type-hint for $contact of same method
- empty lines added + TODO where the bug origins that $item has no element 'body'
* Added empty lines for better readability
* Cleaned up:
- no more x() (deprecated) usage but empty() instead
- fixed mixing of space/tab indending
- merged else/if block goether in elseif() (lesser nested code blocks)
* Re-fixed DBM -> DBA switch
* Fixes/rewrites:
- use empty()/isset() instead of deprecated x()
- merged 2 nested if() blocks into one
- avoided nested if() block inside else block by rewriting it to elseif()
- $contact_id is an integer, let's test on > 0 here
- added a lot spaces and some empty lines for better readability
* Rewrite:
- moved all CONTACT_* constants from boot.php to Contact class
* CR request:
- renamed Contact::CONTACT_IS_* -> Contact::* ;-)
* Rewrites:
- moved PAGE_* to Friendica\Model\Profile class
- fixed mixure with "Contact::* rewrite"
* Ops, one still there (return is no function)
* Rewrite to Proxy class:
- introduced new Friendica\Network\Proxy class for in exchange of proxy_*()
functions
- moved also all PROXY_* constants there as Proxy::*
- removed now no longer needed mod/proxy.php loading as composer's auto-load
will do this for us
- renamed those proxy_*() functions to better names:
+ proxy_init() -> Proxy::init() (public)
+ proxy_url() -> Proxy::proxifyUrl() (public)
+ proxy_parse_html() -> Proxy::proxifyHtml() (public)
+ proxy_is_local_image() -> Proxy::isLocalImage() (private)
+ proxy_parse_query() -> Proxy::parseQuery() (private)
+ proxy_img_cb() -> Proxy::replaceUrl() (private)
* CR request:
- moved all PAGE_* constants to Friendica\Model\Contact class
- fixed all references of both classes
* Ops, need to set $a here ...
* CR request:
- moved Proxy class to Friendica\Module
- extended BaseModule
* Ops, no need for own instance of $a when self::getApp() is around.
* Proxy-rewrite:
- proxy_url() and proxy_parse_html() are both non-module functions (now
methods)
- so they must be splitted into a seperate class
- also the SIZE_* and DEFAULT_TIME constants are both not relevant to module
* No instances from utility classes
* Fixed error:
- proxify*() is now located in `Friendica\Util\ProxyUtils`
* Moved back to original place, ops? How did they move here? Well, it was not
intended by me.
* Removed duplicate (left-over from split) constants and static array. Thank to
MrPetovan finding it.
* Renamed ProxyUtils -> Proxy and aliased it back to ProxyUtils.
* Rewrite:
- stopped using deprecated NETWORK_* constants, now Protocol::* should be used
- still left them intact for slow/lazy developers ...
* Ops, was added accidentally ...
* Ops, why these wrong moves?
* Ops, one to much (thanks to MrPetovan)
* Ops, wrong moving ...
* moved back to original place ...
* spaces added
* empty lines add for better readability.
* convertered spaces -> tab for code indenting.
* CR request: Add space between if and brace.
* CR requests fixed + move reverted
- ops, src/Module/*.php has been moved to src/Network/ accidentally
- reverted some parts in src/Database/DBA.php as pointed out by Annando
- removed internal TODO items
- added some spaces for better readability
2018-08-24 05:05:49 +00:00
2018-08-19 12:46:11 +00:00
$slap = OStatus :: salmon ( $item , $owner );
Cleanups: isResult() more used, readability improved (#5608)
* [diaspora]: Maybe SimpleXMLElement is the right type-hint?
* Changes proposed + pre-renaming:
- pre-renamed $db -> $connection
- added TODOs for not allowing bad method invocations (there is a
BadMethodCallException in SPL)
* If no record is found, below $r[0] will fail with a E_NOTICE and the code
doesn't behave as expected.
* Ops, one more left ...
* Continued:
- added documentation for Contact::updateSslPolicy() method
- added type-hint for $contact of same method
- empty lines added + TODO where the bug origins that $item has no element 'body'
* Added empty lines for better readability
* Cleaned up:
- no more x() (deprecated) usage but empty() instead
- fixed mixing of space/tab indending
- merged else/if block goether in elseif() (lesser nested code blocks)
* Re-fixed DBM -> DBA switch
* Fixes/rewrites:
- use empty()/isset() instead of deprecated x()
- merged 2 nested if() blocks into one
- avoided nested if() block inside else block by rewriting it to elseif()
- $contact_id is an integer, let's test on > 0 here
- added a lot spaces and some empty lines for better readability
* Rewrite:
- moved all CONTACT_* constants from boot.php to Contact class
* CR request:
- renamed Contact::CONTACT_IS_* -> Contact::* ;-)
* Rewrites:
- moved PAGE_* to Friendica\Model\Profile class
- fixed mixure with "Contact::* rewrite"
* Ops, one still there (return is no function)
* Rewrite to Proxy class:
- introduced new Friendica\Network\Proxy class for in exchange of proxy_*()
functions
- moved also all PROXY_* constants there as Proxy::*
- removed now no longer needed mod/proxy.php loading as composer's auto-load
will do this for us
- renamed those proxy_*() functions to better names:
+ proxy_init() -> Proxy::init() (public)
+ proxy_url() -> Proxy::proxifyUrl() (public)
+ proxy_parse_html() -> Proxy::proxifyHtml() (public)
+ proxy_is_local_image() -> Proxy::isLocalImage() (private)
+ proxy_parse_query() -> Proxy::parseQuery() (private)
+ proxy_img_cb() -> Proxy::replaceUrl() (private)
* CR request:
- moved all PAGE_* constants to Friendica\Model\Contact class
- fixed all references of both classes
* Ops, need to set $a here ...
* CR request:
- moved Proxy class to Friendica\Module
- extended BaseModule
* Ops, no need for own instance of $a when self::getApp() is around.
* Proxy-rewrite:
- proxy_url() and proxy_parse_html() are both non-module functions (now
methods)
- so they must be splitted into a seperate class
- also the SIZE_* and DEFAULT_TIME constants are both not relevant to module
* No instances from utility classes
* Fixed error:
- proxify*() is now located in `Friendica\Util\ProxyUtils`
* Moved back to original place, ops? How did they move here? Well, it was not
intended by me.
* Removed duplicate (left-over from split) constants and static array. Thank to
MrPetovan finding it.
* Renamed ProxyUtils -> Proxy and aliased it back to ProxyUtils.
* Rewrite:
- stopped using deprecated NETWORK_* constants, now Protocol::* should be used
- still left them intact for slow/lazy developers ...
* Ops, was added accidentally ...
* Ops, why these wrong moves?
* Ops, one to much (thanks to MrPetovan)
* Ops, wrong moving ...
* moved back to original place ...
* spaces added
* empty lines add for better readability.
* convertered spaces -> tab for code indenting.
* CR request: Add space between if and brace.
* CR requests fixed + move reverted
- ops, src/Module/*.php has been moved to src/Network/ accidentally
- reverted some parts in src/Database/DBA.php as pointed out by Annando
- removed internal TODO items
- added some spaces for better readability
2018-08-24 05:05:49 +00:00
2018-03-16 06:43:10 +00:00
if ( ! empty ( $contact [ 'notify' ])) {
2018-08-19 12:46:11 +00:00
Salmon :: slapper ( $owner , $contact [ 'notify' ], $slap );
2018-03-16 06:43:10 +00:00
}
2019-05-02 13:05:31 +00:00
} elseif ( $protocol == Protocol :: DIASPORA ) {
2020-06-10 14:36:42 +00:00
$ret = Diaspora :: sendShare ( $owner , $contact );
2018-10-29 21:20:46 +00:00
Logger :: log ( 'share returns: ' . $ret );
2019-05-02 13:05:31 +00:00
} elseif ( $protocol == Protocol :: ACTIVITYPUB ) {
2019-01-10 07:24:12 +00:00
$activity_id = ActivityPub\Transmitter :: activityIDFromContact ( $contact_id );
if ( empty ( $activity_id )) {
// This really should never happen
return false ;
}
2020-06-10 14:36:42 +00:00
$ret = ActivityPub\Transmitter :: sendActivity ( 'Follow' , $contact [ 'url' ], $user [ 'uid' ], $activity_id );
2018-10-29 21:20:46 +00:00
Logger :: log ( 'Follow returns: ' . $ret );
2018-01-09 14:40:45 +00:00
}
}
$result [ 'success' ] = true ;
return $result ;
}
2018-01-27 16:13:41 +00:00
Cleanups: isResult() more used, readability improved (#5608)
* [diaspora]: Maybe SimpleXMLElement is the right type-hint?
* Changes proposed + pre-renaming:
- pre-renamed $db -> $connection
- added TODOs for not allowing bad method invocations (there is a
BadMethodCallException in SPL)
* If no record is found, below $r[0] will fail with a E_NOTICE and the code
doesn't behave as expected.
* Ops, one more left ...
* Continued:
- added documentation for Contact::updateSslPolicy() method
- added type-hint for $contact of same method
- empty lines added + TODO where the bug origins that $item has no element 'body'
* Added empty lines for better readability
* Cleaned up:
- no more x() (deprecated) usage but empty() instead
- fixed mixing of space/tab indending
- merged else/if block goether in elseif() (lesser nested code blocks)
* Re-fixed DBM -> DBA switch
* Fixes/rewrites:
- use empty()/isset() instead of deprecated x()
- merged 2 nested if() blocks into one
- avoided nested if() block inside else block by rewriting it to elseif()
- $contact_id is an integer, let's test on > 0 here
- added a lot spaces and some empty lines for better readability
* Rewrite:
- moved all CONTACT_* constants from boot.php to Contact class
* CR request:
- renamed Contact::CONTACT_IS_* -> Contact::* ;-)
* Rewrites:
- moved PAGE_* to Friendica\Model\Profile class
- fixed mixure with "Contact::* rewrite"
* Ops, one still there (return is no function)
* Rewrite to Proxy class:
- introduced new Friendica\Network\Proxy class for in exchange of proxy_*()
functions
- moved also all PROXY_* constants there as Proxy::*
- removed now no longer needed mod/proxy.php loading as composer's auto-load
will do this for us
- renamed those proxy_*() functions to better names:
+ proxy_init() -> Proxy::init() (public)
+ proxy_url() -> Proxy::proxifyUrl() (public)
+ proxy_parse_html() -> Proxy::proxifyHtml() (public)
+ proxy_is_local_image() -> Proxy::isLocalImage() (private)
+ proxy_parse_query() -> Proxy::parseQuery() (private)
+ proxy_img_cb() -> Proxy::replaceUrl() (private)
* CR request:
- moved all PAGE_* constants to Friendica\Model\Contact class
- fixed all references of both classes
* Ops, need to set $a here ...
* CR request:
- moved Proxy class to Friendica\Module
- extended BaseModule
* Ops, no need for own instance of $a when self::getApp() is around.
* Proxy-rewrite:
- proxy_url() and proxy_parse_html() are both non-module functions (now
methods)
- so they must be splitted into a seperate class
- also the SIZE_* and DEFAULT_TIME constants are both not relevant to module
* No instances from utility classes
* Fixed error:
- proxify*() is now located in `Friendica\Util\ProxyUtils`
* Moved back to original place, ops? How did they move here? Well, it was not
intended by me.
* Removed duplicate (left-over from split) constants and static array. Thank to
MrPetovan finding it.
* Renamed ProxyUtils -> Proxy and aliased it back to ProxyUtils.
* Rewrite:
- stopped using deprecated NETWORK_* constants, now Protocol::* should be used
- still left them intact for slow/lazy developers ...
* Ops, was added accidentally ...
* Ops, why these wrong moves?
* Ops, one to much (thanks to MrPetovan)
* Ops, wrong moving ...
* moved back to original place ...
* spaces added
* empty lines add for better readability.
* convertered spaces -> tab for code indenting.
* CR request: Add space between if and brace.
* CR requests fixed + move reverted
- ops, src/Module/*.php has been moved to src/Network/ accidentally
- reverted some parts in src/Database/DBA.php as pointed out by Annando
- removed internal TODO items
- added some spaces for better readability
2018-08-24 05:05:49 +00:00
/**
2020-01-19 06:05:23 +00:00
* Updated contact ' s SSL policy
Cleanups: isResult() more used, readability improved (#5608)
* [diaspora]: Maybe SimpleXMLElement is the right type-hint?
* Changes proposed + pre-renaming:
- pre-renamed $db -> $connection
- added TODOs for not allowing bad method invocations (there is a
BadMethodCallException in SPL)
* If no record is found, below $r[0] will fail with a E_NOTICE and the code
doesn't behave as expected.
* Ops, one more left ...
* Continued:
- added documentation for Contact::updateSslPolicy() method
- added type-hint for $contact of same method
- empty lines added + TODO where the bug origins that $item has no element 'body'
* Added empty lines for better readability
* Cleaned up:
- no more x() (deprecated) usage but empty() instead
- fixed mixing of space/tab indending
- merged else/if block goether in elseif() (lesser nested code blocks)
* Re-fixed DBM -> DBA switch
* Fixes/rewrites:
- use empty()/isset() instead of deprecated x()
- merged 2 nested if() blocks into one
- avoided nested if() block inside else block by rewriting it to elseif()
- $contact_id is an integer, let's test on > 0 here
- added a lot spaces and some empty lines for better readability
* Rewrite:
- moved all CONTACT_* constants from boot.php to Contact class
* CR request:
- renamed Contact::CONTACT_IS_* -> Contact::* ;-)
* Rewrites:
- moved PAGE_* to Friendica\Model\Profile class
- fixed mixure with "Contact::* rewrite"
* Ops, one still there (return is no function)
* Rewrite to Proxy class:
- introduced new Friendica\Network\Proxy class for in exchange of proxy_*()
functions
- moved also all PROXY_* constants there as Proxy::*
- removed now no longer needed mod/proxy.php loading as composer's auto-load
will do this for us
- renamed those proxy_*() functions to better names:
+ proxy_init() -> Proxy::init() (public)
+ proxy_url() -> Proxy::proxifyUrl() (public)
+ proxy_parse_html() -> Proxy::proxifyHtml() (public)
+ proxy_is_local_image() -> Proxy::isLocalImage() (private)
+ proxy_parse_query() -> Proxy::parseQuery() (private)
+ proxy_img_cb() -> Proxy::replaceUrl() (private)
* CR request:
- moved all PAGE_* constants to Friendica\Model\Contact class
- fixed all references of both classes
* Ops, need to set $a here ...
* CR request:
- moved Proxy class to Friendica\Module
- extended BaseModule
* Ops, no need for own instance of $a when self::getApp() is around.
* Proxy-rewrite:
- proxy_url() and proxy_parse_html() are both non-module functions (now
methods)
- so they must be splitted into a seperate class
- also the SIZE_* and DEFAULT_TIME constants are both not relevant to module
* No instances from utility classes
* Fixed error:
- proxify*() is now located in `Friendica\Util\ProxyUtils`
* Moved back to original place, ops? How did they move here? Well, it was not
intended by me.
* Removed duplicate (left-over from split) constants and static array. Thank to
MrPetovan finding it.
* Renamed ProxyUtils -> Proxy and aliased it back to ProxyUtils.
* Rewrite:
- stopped using deprecated NETWORK_* constants, now Protocol::* should be used
- still left them intact for slow/lazy developers ...
* Ops, was added accidentally ...
* Ops, why these wrong moves?
* Ops, one to much (thanks to MrPetovan)
* Ops, wrong moving ...
* moved back to original place ...
* spaces added
* empty lines add for better readability.
* convertered spaces -> tab for code indenting.
* CR request: Add space between if and brace.
* CR requests fixed + move reverted
- ops, src/Module/*.php has been moved to src/Network/ accidentally
- reverted some parts in src/Database/DBA.php as pointed out by Annando
- removed internal TODO items
- added some spaces for better readability
2018-08-24 05:05:49 +00:00
*
2019-01-06 21:06:53 +00:00
* @ param array $contact Contact array
Cleanups: isResult() more used, readability improved (#5608)
* [diaspora]: Maybe SimpleXMLElement is the right type-hint?
* Changes proposed + pre-renaming:
- pre-renamed $db -> $connection
- added TODOs for not allowing bad method invocations (there is a
BadMethodCallException in SPL)
* If no record is found, below $r[0] will fail with a E_NOTICE and the code
doesn't behave as expected.
* Ops, one more left ...
* Continued:
- added documentation for Contact::updateSslPolicy() method
- added type-hint for $contact of same method
- empty lines added + TODO where the bug origins that $item has no element 'body'
* Added empty lines for better readability
* Cleaned up:
- no more x() (deprecated) usage but empty() instead
- fixed mixing of space/tab indending
- merged else/if block goether in elseif() (lesser nested code blocks)
* Re-fixed DBM -> DBA switch
* Fixes/rewrites:
- use empty()/isset() instead of deprecated x()
- merged 2 nested if() blocks into one
- avoided nested if() block inside else block by rewriting it to elseif()
- $contact_id is an integer, let's test on > 0 here
- added a lot spaces and some empty lines for better readability
* Rewrite:
- moved all CONTACT_* constants from boot.php to Contact class
* CR request:
- renamed Contact::CONTACT_IS_* -> Contact::* ;-)
* Rewrites:
- moved PAGE_* to Friendica\Model\Profile class
- fixed mixure with "Contact::* rewrite"
* Ops, one still there (return is no function)
* Rewrite to Proxy class:
- introduced new Friendica\Network\Proxy class for in exchange of proxy_*()
functions
- moved also all PROXY_* constants there as Proxy::*
- removed now no longer needed mod/proxy.php loading as composer's auto-load
will do this for us
- renamed those proxy_*() functions to better names:
+ proxy_init() -> Proxy::init() (public)
+ proxy_url() -> Proxy::proxifyUrl() (public)
+ proxy_parse_html() -> Proxy::proxifyHtml() (public)
+ proxy_is_local_image() -> Proxy::isLocalImage() (private)
+ proxy_parse_query() -> Proxy::parseQuery() (private)
+ proxy_img_cb() -> Proxy::replaceUrl() (private)
* CR request:
- moved all PAGE_* constants to Friendica\Model\Contact class
- fixed all references of both classes
* Ops, need to set $a here ...
* CR request:
- moved Proxy class to Friendica\Module
- extended BaseModule
* Ops, no need for own instance of $a when self::getApp() is around.
* Proxy-rewrite:
- proxy_url() and proxy_parse_html() are both non-module functions (now
methods)
- so they must be splitted into a seperate class
- also the SIZE_* and DEFAULT_TIME constants are both not relevant to module
* No instances from utility classes
* Fixed error:
- proxify*() is now located in `Friendica\Util\ProxyUtils`
* Moved back to original place, ops? How did they move here? Well, it was not
intended by me.
* Removed duplicate (left-over from split) constants and static array. Thank to
MrPetovan finding it.
* Renamed ProxyUtils -> Proxy and aliased it back to ProxyUtils.
* Rewrite:
- stopped using deprecated NETWORK_* constants, now Protocol::* should be used
- still left them intact for slow/lazy developers ...
* Ops, was added accidentally ...
* Ops, why these wrong moves?
* Ops, one to much (thanks to MrPetovan)
* Ops, wrong moving ...
* moved back to original place ...
* spaces added
* empty lines add for better readability.
* convertered spaces -> tab for code indenting.
* CR request: Add space between if and brace.
* CR requests fixed + move reverted
- ops, src/Module/*.php has been moved to src/Network/ accidentally
- reverted some parts in src/Database/DBA.php as pointed out by Annando
- removed internal TODO items
- added some spaces for better readability
2018-08-24 05:05:49 +00:00
* @ param string $new_policy New policy , valid : self , full
*
* @ return array Contact array with updated values
2019-01-06 21:06:53 +00:00
* @ throws \Exception
Cleanups: isResult() more used, readability improved (#5608)
* [diaspora]: Maybe SimpleXMLElement is the right type-hint?
* Changes proposed + pre-renaming:
- pre-renamed $db -> $connection
- added TODOs for not allowing bad method invocations (there is a
BadMethodCallException in SPL)
* If no record is found, below $r[0] will fail with a E_NOTICE and the code
doesn't behave as expected.
* Ops, one more left ...
* Continued:
- added documentation for Contact::updateSslPolicy() method
- added type-hint for $contact of same method
- empty lines added + TODO where the bug origins that $item has no element 'body'
* Added empty lines for better readability
* Cleaned up:
- no more x() (deprecated) usage but empty() instead
- fixed mixing of space/tab indending
- merged else/if block goether in elseif() (lesser nested code blocks)
* Re-fixed DBM -> DBA switch
* Fixes/rewrites:
- use empty()/isset() instead of deprecated x()
- merged 2 nested if() blocks into one
- avoided nested if() block inside else block by rewriting it to elseif()
- $contact_id is an integer, let's test on > 0 here
- added a lot spaces and some empty lines for better readability
* Rewrite:
- moved all CONTACT_* constants from boot.php to Contact class
* CR request:
- renamed Contact::CONTACT_IS_* -> Contact::* ;-)
* Rewrites:
- moved PAGE_* to Friendica\Model\Profile class
- fixed mixure with "Contact::* rewrite"
* Ops, one still there (return is no function)
* Rewrite to Proxy class:
- introduced new Friendica\Network\Proxy class for in exchange of proxy_*()
functions
- moved also all PROXY_* constants there as Proxy::*
- removed now no longer needed mod/proxy.php loading as composer's auto-load
will do this for us
- renamed those proxy_*() functions to better names:
+ proxy_init() -> Proxy::init() (public)
+ proxy_url() -> Proxy::proxifyUrl() (public)
+ proxy_parse_html() -> Proxy::proxifyHtml() (public)
+ proxy_is_local_image() -> Proxy::isLocalImage() (private)
+ proxy_parse_query() -> Proxy::parseQuery() (private)
+ proxy_img_cb() -> Proxy::replaceUrl() (private)
* CR request:
- moved all PAGE_* constants to Friendica\Model\Contact class
- fixed all references of both classes
* Ops, need to set $a here ...
* CR request:
- moved Proxy class to Friendica\Module
- extended BaseModule
* Ops, no need for own instance of $a when self::getApp() is around.
* Proxy-rewrite:
- proxy_url() and proxy_parse_html() are both non-module functions (now
methods)
- so they must be splitted into a seperate class
- also the SIZE_* and DEFAULT_TIME constants are both not relevant to module
* No instances from utility classes
* Fixed error:
- proxify*() is now located in `Friendica\Util\ProxyUtils`
* Moved back to original place, ops? How did they move here? Well, it was not
intended by me.
* Removed duplicate (left-over from split) constants and static array. Thank to
MrPetovan finding it.
* Renamed ProxyUtils -> Proxy and aliased it back to ProxyUtils.
* Rewrite:
- stopped using deprecated NETWORK_* constants, now Protocol::* should be used
- still left them intact for slow/lazy developers ...
* Ops, was added accidentally ...
* Ops, why these wrong moves?
* Ops, one to much (thanks to MrPetovan)
* Ops, wrong moving ...
* moved back to original place ...
* spaces added
* empty lines add for better readability.
* convertered spaces -> tab for code indenting.
* CR request: Add space between if and brace.
* CR requests fixed + move reverted
- ops, src/Module/*.php has been moved to src/Network/ accidentally
- reverted some parts in src/Database/DBA.php as pointed out by Annando
- removed internal TODO items
- added some spaces for better readability
2018-08-24 05:05:49 +00:00
*/
public static function updateSslPolicy ( array $contact , $new_policy )
2018-01-27 16:13:41 +00:00
{
$ssl_changed = false ;
2019-04-08 19:12:10 +00:00
if (( intval ( $new_policy ) == BaseURL :: SSL_POLICY_SELFSIGN || $new_policy === 'self' ) && strstr ( $contact [ 'url' ], 'https:' )) {
2018-01-27 16:13:41 +00:00
$ssl_changed = true ;
$contact [ 'url' ] = str_replace ( 'https:' , 'http:' , $contact [ 'url' ]);
$contact [ 'request' ] = str_replace ( 'https:' , 'http:' , $contact [ 'request' ]);
$contact [ 'notify' ] = str_replace ( 'https:' , 'http:' , $contact [ 'notify' ]);
$contact [ 'poll' ] = str_replace ( 'https:' , 'http:' , $contact [ 'poll' ]);
$contact [ 'confirm' ] = str_replace ( 'https:' , 'http:' , $contact [ 'confirm' ]);
$contact [ 'poco' ] = str_replace ( 'https:' , 'http:' , $contact [ 'poco' ]);
}
2019-04-08 19:12:10 +00:00
if (( intval ( $new_policy ) == BaseURL :: SSL_POLICY_FULL || $new_policy === 'full' ) && strstr ( $contact [ 'url' ], 'http:' )) {
2018-01-27 16:13:41 +00:00
$ssl_changed = true ;
$contact [ 'url' ] = str_replace ( 'http:' , 'https:' , $contact [ 'url' ]);
$contact [ 'request' ] = str_replace ( 'http:' , 'https:' , $contact [ 'request' ]);
$contact [ 'notify' ] = str_replace ( 'http:' , 'https:' , $contact [ 'notify' ]);
$contact [ 'poll' ] = str_replace ( 'http:' , 'https:' , $contact [ 'poll' ]);
$contact [ 'confirm' ] = str_replace ( 'http:' , 'https:' , $contact [ 'confirm' ]);
$contact [ 'poco' ] = str_replace ( 'http:' , 'https:' , $contact [ 'poco' ]);
}
if ( $ssl_changed ) {
$fields = [ 'url' => $contact [ 'url' ], 'request' => $contact [ 'request' ],
'notify' => $contact [ 'notify' ], 'poll' => $contact [ 'poll' ],
'confirm' => $contact [ 'confirm' ], 'poco' => $contact [ 'poco' ]];
2018-07-20 12:19:26 +00:00
DBA :: update ( 'contact' , $fields , [ 'id' => $contact [ 'id' ]]);
2018-01-27 16:13:41 +00:00
}
return $contact ;
}
2018-01-28 11:18:08 +00:00
2019-05-19 22:43:19 +00:00
/**
* @ param array $importer Owner ( local user ) data
* @ param array $contact Existing owner - specific contact data we want to expand the relationship with . Optional .
* @ param array $datarray An item - like array with at least the 'author-id' and 'author-url' keys for the contact . Mandatory .
* @ param bool $sharing True : Contact is now sharing with Owner ; False : Contact is now following Owner ( default )
* @ param string $note Introduction additional message
2019-05-19 22:46:29 +00:00
* @ return bool | null True : follow request is accepted ; False : relationship is rejected ; Null : relationship is pending
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2019-05-19 22:43:19 +00:00
* @ throws \ImagickException
*/
public static function addRelationship ( array $importer , array $contact , array $datarray , $sharing = false , $note = '' )
{
2018-08-02 05:21:01 +00:00
// Should always be set
if ( empty ( $datarray [ 'author-id' ])) {
2019-05-19 22:46:29 +00:00
return false ;
2018-01-28 11:18:08 +00:00
}
2019-06-19 17:05:29 +00:00
$fields = [ 'url' , 'name' , 'nick' , 'avatar' , 'photo' , 'network' , 'blocked' ];
2018-08-02 05:21:01 +00:00
$pub_contact = DBA :: selectFirst ( 'contact' , $fields , [ 'id' => $datarray [ 'author-id' ]]);
if ( ! DBA :: isResult ( $pub_contact )) {
// Should never happen
2019-05-19 22:46:29 +00:00
return false ;
2018-08-02 05:21:01 +00:00
}
2019-05-20 20:34:17 +00:00
// Contact is blocked at node-level
if ( self :: isBlocked ( $datarray [ 'author-id' ])) {
2019-05-19 22:46:58 +00:00
return false ;
}
2019-10-16 12:35:14 +00:00
$url = ( $datarray [ 'author-link' ] ? ? '' ) ? : $pub_contact [ 'url' ];
2018-08-02 05:21:01 +00:00
$name = $pub_contact [ 'name' ];
2019-10-16 12:35:14 +00:00
$photo = ( $pub_contact [ 'avatar' ] ? ? '' ) ? : $pub_contact [ " photo " ];
2018-08-02 05:21:01 +00:00
$nick = $pub_contact [ 'nick' ];
$network = $pub_contact [ 'network' ];
2019-08-26 15:51:56 +00:00
// Ensure that we don't create a new contact when there already is one
$cid = self :: getIdForURL ( $url , $importer [ 'uid' ]);
if ( ! empty ( $cid )) {
$contact = DBA :: selectFirst ( 'contact' , [], [ 'id' => $cid ]);
}
2019-05-19 22:43:19 +00:00
if ( ! empty ( $contact )) {
2019-08-26 15:51:56 +00:00
if ( ! empty ( $contact [ 'pending' ])) {
Logger :: info ( 'Pending contact request already exists.' , [ 'url' => $url , 'uid' => $importer [ 'uid' ]]);
return null ;
}
2019-06-19 17:05:29 +00:00
// Contact is blocked at user-level
if ( ! empty ( $contact [ 'id' ]) && ! empty ( $importer [ 'id' ]) &&
2020-08-04 04:47:02 +00:00
Contact\User :: isBlocked ( $contact [ 'id' ], $importer [ 'id' ])) {
2019-06-19 17:05:29 +00:00
return false ;
}
2019-05-20 20:34:17 +00:00
2019-05-03 05:54:40 +00:00
// Make sure that the existing contact isn't archived
self :: unmarkForArchival ( $contact );
2018-07-25 02:53:46 +00:00
if (( $contact [ 'rel' ] == self :: SHARING )
|| ( $sharing && $contact [ 'rel' ] == self :: FOLLOWER )) {
2019-05-03 05:54:40 +00:00
DBA :: update ( 'contact' , [ 'rel' => self :: FRIEND , 'writable' => true , 'pending' => false ],
2018-01-28 11:18:08 +00:00
[ 'id' => $contact [ 'id' ], 'uid' => $importer [ 'uid' ]]);
}
2018-09-15 18:54:45 +00:00
2019-09-21 12:39:07 +00:00
// Ensure to always have the correct network type, independent from the connection request method
2020-08-06 18:53:45 +00:00
self :: updateFromProbe ( $contact [ 'id' ]);
2019-09-21 12:39:07 +00:00
2019-05-19 22:46:29 +00:00
return true ;
2018-01-28 11:18:08 +00:00
} else {
2019-05-19 22:43:19 +00:00
// send email notification to owner?
2018-11-08 16:28:29 +00:00
if ( DBA :: exists ( 'contact' , [ 'nurl' => Strings :: normaliseLink ( $url ), 'uid' => $importer [ 'uid' ], 'pending' => true ])) {
2018-10-29 21:20:46 +00:00
Logger :: log ( 'ignoring duplicated connection request from pending contact ' . $url );
2019-05-19 22:46:29 +00:00
return null ;
2018-04-18 05:02:59 +00:00
}
2019-05-19 22:46:29 +00:00
2018-01-28 11:18:08 +00:00
// create contact record
2019-05-19 22:43:19 +00:00
DBA :: insert ( 'contact' , [
'uid' => $importer [ 'uid' ],
'created' => DateTimeFormat :: utcNow (),
'url' => $url ,
'nurl' => Strings :: normaliseLink ( $url ),
'name' => $name ,
'nick' => $nick ,
'network' => $network ,
'rel' => self :: FOLLOWER ,
'blocked' => 0 ,
'readonly' => 0 ,
'pending' => 1 ,
'writable' => 1 ,
]);
2018-01-28 11:18:08 +00:00
2019-09-21 12:39:07 +00:00
$contact_id = DBA :: lastInsertId ();
// Ensure to always have the correct network type, independent from the connection request method
2020-08-06 18:53:45 +00:00
self :: updateFromProbe ( $contact_id );
2019-09-21 12:39:07 +00:00
2020-07-25 11:48:52 +00:00
self :: updateAvatar ( $contact_id , $photo , true );
2018-07-10 12:27:56 +00:00
2019-09-21 12:39:07 +00:00
$contact_record = DBA :: selectFirst ( 'contact' , [ 'id' , 'network' , 'name' , 'url' , 'photo' ], [ 'id' => $contact_id ]);
2018-01-28 11:18:08 +00:00
/// @TODO Encapsulate this into a function/method
2018-02-14 05:05:00 +00:00
$fields = [ 'uid' , 'username' , 'email' , 'page-flags' , 'notify-flags' , 'language' ];
2018-07-20 12:19:26 +00:00
$user = DBA :: selectFirst ( 'user' , $fields , [ 'uid' => $importer [ 'uid' ]]);
2019-01-06 17:37:48 +00:00
if ( DBA :: isResult ( $user ) && ! in_array ( $user [ 'page-flags' ], [ User :: PAGE_FLAGS_SOAPBOX , User :: PAGE_FLAGS_FREELOVE , User :: PAGE_FLAGS_COMMUNITY ])) {
2018-01-28 11:18:08 +00:00
// create notification
2018-11-08 13:45:46 +00:00
$hash = Strings :: getRandomHex ();
2018-01-28 11:18:08 +00:00
if ( is_array ( $contact_record )) {
2018-07-20 12:19:26 +00:00
DBA :: insert ( 'intro' , [ 'uid' => $importer [ 'uid' ], 'contact-id' => $contact_record [ 'id' ],
2019-05-05 09:17:45 +00:00
'blocked' => false , 'knowyou' => false , 'note' => $note ,
2018-02-04 01:44:19 +00:00
'hash' => $hash , 'datetime' => DateTimeFormat :: utcNow ()]);
2018-01-28 11:18:08 +00:00
}
Group :: addMember ( User :: getDefaultGroup ( $importer [ 'uid' ], $contact_record [ " network " ]), $contact_record [ 'id' ]);
2021-01-23 09:53:44 +00:00
if (( $user [ 'notify-flags' ] & Notification\Type :: INTRO ) &&
2019-01-06 17:37:48 +00:00
in_array ( $user [ 'page-flags' ], [ User :: PAGE_FLAGS_NORMAL ])) {
2018-01-28 11:18:08 +00:00
notification ([
2021-01-23 09:53:44 +00:00
'type' => Notification\Type :: INTRO ,
'otype' => Notification\ObjectType :: INTRO ,
2020-11-25 19:56:39 +00:00
'verb' => ( $sharing ? Activity :: FRIEND : Activity :: FOLLOW ),
'uid' => $user [ 'uid' ],
'cid' => $contact_record [ 'id' ],
'link' => DI :: baseUrl () . '/notifications/intros' ,
2018-01-28 11:18:08 +00:00
]);
}
2019-01-06 17:37:48 +00:00
} elseif ( DBA :: isResult ( $user ) && in_array ( $user [ 'page-flags' ], [ User :: PAGE_FLAGS_SOAPBOX , User :: PAGE_FLAGS_FREELOVE , User :: PAGE_FLAGS_COMMUNITY ])) {
2020-03-07 23:19:19 +00:00
if (( $user [ 'page-flags' ] == User :: PAGE_FLAGS_FREELOVE ) && ( $network != Protocol :: DIASPORA )) {
2020-06-10 14:36:42 +00:00
self :: createFromProbe ( $importer , $url , false , $network );
2020-03-07 23:19:19 +00:00
}
2018-08-19 12:46:11 +00:00
$condition = [ 'uid' => $importer [ 'uid' ], 'url' => $url , 'pending' => true ];
2020-03-07 23:19:19 +00:00
$fields = [ 'pending' => false ];
if ( $user [ 'page-flags' ] == User :: PAGE_FLAGS_FREELOVE ) {
2020-12-07 06:43:43 +00:00
$fields [ 'rel' ] = self :: FRIEND ;
2020-03-07 23:19:19 +00:00
}
DBA :: update ( 'contact' , $fields , $condition );
2018-10-05 06:35:50 +00:00
2019-05-19 22:46:29 +00:00
return true ;
2018-01-28 11:18:08 +00:00
}
}
2019-05-19 22:46:29 +00:00
return null ;
2018-01-28 11:18:08 +00:00
}
2018-07-25 02:53:46 +00:00
public static function removeFollower ( $importer , $contact , array $datarray = [], $item = " " )
{
if (( $contact [ 'rel' ] == self :: FRIEND ) || ( $contact [ 'rel' ] == self :: SHARING )) {
DBA :: update ( 'contact' , [ 'rel' => self :: SHARING ], [ 'id' => $contact [ 'id' ]]);
2018-01-28 11:18:08 +00:00
} else {
2020-12-07 06:43:43 +00:00
self :: remove ( $contact [ 'id' ]);
2018-01-28 11:18:08 +00:00
}
}
2018-07-25 02:53:46 +00:00
public static function removeSharer ( $importer , $contact , array $datarray = [], $item = " " )
{
if (( $contact [ 'rel' ] == self :: FRIEND ) || ( $contact [ 'rel' ] == self :: FOLLOWER )) {
DBA :: update ( 'contact' , [ 'rel' => self :: FOLLOWER ], [ 'id' => $contact [ 'id' ]]);
2018-01-28 11:18:08 +00:00
} else {
2020-12-07 06:43:43 +00:00
self :: remove ( $contact [ 'id' ]);
2018-01-28 11:18:08 +00:00
}
}
2018-01-25 01:47:33 +00:00
/**
2020-01-19 06:05:23 +00:00
* Create a birthday event .
2018-01-25 01:47:33 +00:00
*
* Update the year and the birthday .
*/
public static function updateBirthdays ()
{
2018-11-22 05:15:44 +00:00
$condition = [
' `bd` != " "
AND `bd` > " 0001-01-01 "
AND SUBSTRING ( `bd` , 1 , 4 ) != `bdyear`
AND ( `contact` . `rel` = ? OR `contact` . `rel` = ? )
AND NOT `contact` . `pending`
AND NOT `contact` . `hidden`
AND NOT `contact` . `blocked`
AND NOT `contact` . `archive`
AND NOT `contact` . `deleted` ' ,
2020-12-07 06:43:43 +00:00
self :: SHARING ,
self :: FRIEND
2018-11-22 05:15:44 +00:00
];
$contacts = DBA :: select ( 'contact' , [ 'id' , 'uid' , 'name' , 'url' , 'bd' ], $condition );
while ( $contact = DBA :: fetch ( $contacts )) {
Logger :: log ( 'update_contact_birthday: ' . $contact [ 'bd' ]);
$nextbd = DateTimeFormat :: utcNow ( 'Y' ) . substr ( $contact [ 'bd' ], 4 );
if ( Event :: createBirthday ( $contact , $nextbd )) {
2018-01-25 01:47:33 +00:00
// update bdyear
2018-11-22 05:15:44 +00:00
DBA :: update (
'contact' ,
[ 'bdyear' => substr ( $nextbd , 0 , 4 ), 'bd' => $nextbd ],
[ 'id' => $contact [ 'id' ]]
2018-01-25 01:47:33 +00:00
);
}
}
2020-04-28 07:10:18 +00:00
DBA :: close ( $contacts );
2018-01-25 01:47:33 +00:00
}
2018-02-26 00:45:04 +00:00
/**
* Remove the unavailable contact ids from the provided list
*
* @ param array $contact_ids Contact id list
2020-01-05 22:07:33 +00:00
* @ return array
2019-01-06 21:06:53 +00:00
* @ throws \Exception
2018-02-26 00:45:04 +00:00
*/
2020-01-05 22:07:33 +00:00
public static function pruneUnavailable ( array $contact_ids )
2018-02-26 00:45:04 +00:00
{
if ( empty ( $contact_ids )) {
2020-01-05 22:07:33 +00:00
return [];
2018-02-26 00:45:04 +00:00
}
2020-12-07 06:43:43 +00:00
$contacts = self :: selectToArray ([ 'id' ], [
2020-01-05 22:07:33 +00:00
'id' => $contact_ids ,
'blocked' => false ,
'pending' => false ,
'archive' => false ,
]);
2018-03-03 12:41:49 +00:00
2020-01-05 22:07:33 +00:00
return array_column ( $contacts , 'id' );
2018-02-26 00:45:04 +00:00
}
2018-06-01 06:46:34 +00:00
/**
2020-01-19 06:05:23 +00:00
* Returns a magic link to authenticate remote visitors
2018-06-01 06:46:34 +00:00
*
2019-01-06 21:06:53 +00:00
* @ todo check if the return is either a fully qualified URL or a relative path to Friendica basedir
2018-10-19 23:00:01 +00:00
*
2018-06-01 06:46:34 +00:00
* @ param string $contact_url The address of the target contact profile
2019-01-06 21:06:53 +00:00
* @ param string $url An url that we will be redirected to after the authentication
2018-06-01 06:46:34 +00:00
*
* @ return string with " redir " link
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2019-01-06 21:06:53 +00:00
* @ throws \ImagickException
2018-06-01 06:46:34 +00:00
*/
public static function magicLink ( $contact_url , $url = '' )
{
2019-09-28 18:09:11 +00:00
if ( ! Session :: isAuthenticated ()) {
2018-12-08 20:28:01 +00:00
return $url ? : $contact_url ; // Equivalent to: ($url != '') ? $url : $contact_url;
}
2020-08-07 13:49:59 +00:00
$contact = self :: getByURL ( $contact_url , false );
if ( empty ( $contact )) {
2018-06-02 13:00:47 +00:00
return $url ? : $contact_url ; // Equivalent to: ($url != '') ? $url : $contact_url;
2018-06-01 06:46:34 +00:00
}
2019-06-10 23:10:39 +00:00
// Prevents endless loop in case only a non-public contact exists for the contact URL
2020-08-07 13:49:59 +00:00
unset ( $contact [ 'uid' ]);
2019-06-10 23:10:39 +00:00
2020-08-07 13:49:59 +00:00
return self :: magicLinkByContact ( $contact , $url ? : $contact_url );
2018-06-01 06:46:34 +00:00
}
/**
2020-01-19 06:05:23 +00:00
* Returns a magic link to authenticate remote visitors
2018-06-01 06:46:34 +00:00
*
* @ param integer $cid The contact id of the target contact profile
2019-01-06 21:06:53 +00:00
* @ param string $url An url that we will be redirected to after the authentication
2018-06-01 06:46:34 +00:00
*
* @ return string with " redir " link
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2019-01-06 21:06:53 +00:00
* @ throws \ImagickException
2018-06-01 06:46:34 +00:00
*/
2020-12-22 06:01:43 +00:00
public static function magicLinkById ( $cid , $url = '' )
2018-06-01 06:46:34 +00:00
{
2018-07-20 12:19:26 +00:00
$contact = DBA :: selectFirst ( 'contact' , [ 'id' , 'network' , 'url' , 'uid' ], [ 'id' => $cid ]);
2018-06-01 06:46:34 +00:00
2019-02-22 02:29:22 +00:00
return self :: magicLinkByContact ( $contact , $url );
2019-01-02 16:47:53 +00:00
}
2018-07-02 05:41:55 +00:00
/**
2020-01-19 06:05:23 +00:00
* Returns a magic link to authenticate remote visitors
2018-07-02 05:41:55 +00:00
*
2019-01-06 21:06:53 +00:00
* @ param array $contact The contact array with " uid " , " network " and " url "
* @ param string $url An url that we will be redirected to after the authentication
2018-07-02 05:41:55 +00:00
*
* @ return string with " redir " link
2020-03-09 15:11:06 +00:00
* @ throws HTTPException\InternalServerErrorException
2019-01-06 21:06:53 +00:00
* @ throws \ImagickException
2018-07-02 05:41:55 +00:00
*/
2019-02-22 02:29:22 +00:00
public static function magicLinkByContact ( $contact , $url = '' )
2018-07-02 05:41:55 +00:00
{
2019-09-10 04:04:07 +00:00
$destination = $url ? : $contact [ 'url' ]; // Equivalent to ($url != '') ? $url : $contact['url'];
2020-09-30 17:30:26 +00:00
if ( ! Session :: isAuthenticated ()) {
2019-09-10 04:04:07 +00:00
return $destination ;
2018-06-01 06:46:34 +00:00
}
2018-06-02 08:42:46 +00:00
// Only redirections to the same host do make sense
if (( $url != '' ) && ( parse_url ( $url , PHP_URL_HOST ) != parse_url ( $contact [ 'url' ], PHP_URL_HOST ))) {
return $url ;
}
2020-09-30 17:30:26 +00:00
if ( DI :: pConfig () -> get ( local_user (), 'system' , 'stay_local' ) && ( $url == '' )) {
return 'contact/' . $contact [ 'id' ] . '/conversations' ;
}
if ( $contact [ 'network' ] != Protocol :: DFRN ) {
return $destination ;
}
2019-05-10 07:38:10 +00:00
if ( ! empty ( $contact [ 'uid' ])) {
2018-06-02 08:05:06 +00:00
return self :: magicLink ( $contact [ 'url' ], $url );
}
2019-05-10 07:38:10 +00:00
if ( empty ( $contact [ 'id' ])) {
2019-09-10 04:04:07 +00:00
return $destination ;
2019-05-10 07:38:10 +00:00
}
2018-07-02 05:41:55 +00:00
$redirect = 'redir/' . $contact [ 'id' ];
2018-06-01 06:46:34 +00:00
2019-09-24 21:44:37 +00:00
if (( $url != '' ) && ! Strings :: compareLink ( $contact [ 'url' ], $url )) {
2018-06-01 06:46:34 +00:00
$redirect .= '?url=' . $url ;
}
return $redirect ;
2018-07-27 23:25:57 +00:00
}
2019-02-23 20:26:06 +00:00
2019-03-14 18:44:41 +00:00
/**
* Is the contact a forum ?
*
* @ param integer $contactid ID of the contact
*
* @ return boolean " true " if it is a forum
*/
public static function isForum ( $contactid )
{
$fields = [ 'forum' , 'prv' ];
$condition = [ 'id' => $contactid ];
$contact = DBA :: selectFirst ( 'contact' , $fields , $condition );
if ( ! DBA :: isResult ( $contact )) {
return false ;
}
// Is it a forum?
return ( $contact [ 'forum' ] || $contact [ 'prv' ]);
}
2019-06-11 01:29:11 +00:00
/**
* Can the remote contact receive private messages ?
*
* @ param array $contact
* @ return bool
*/
public static function canReceivePrivateMessages ( array $contact )
{
$protocol = $contact [ 'network' ] ? ? $contact [ 'protocol' ] ? ? Protocol :: PHANTOM ;
$self = $contact [ 'self' ] ? ? false ;
return in_array ( $protocol , [ Protocol :: DFRN , Protocol :: DIASPORA , Protocol :: ACTIVITYPUB ]) && ! $self ;
}
2020-07-30 14:08:32 +00:00
/**
* Search contact table by nick or name
*
* @ param string $search Name or nick
* @ param string $mode Search mode ( e . g . " community " )
*
* @ return array with search results
* @ throws \Friendica\Network\HTTPException\InternalServerErrorException
*/
public static function searchByName ( $search , $mode = '' )
{
if ( empty ( $search )) {
return [];
}
// check supported networks
if ( DI :: config () -> get ( 'system' , 'diaspora_enabled' )) {
$diaspora = Protocol :: DIASPORA ;
} else {
$diaspora = Protocol :: DFRN ;
}
if ( ! DI :: config () -> get ( 'system' , 'ostatus_disabled' )) {
$ostatus = Protocol :: OSTATUS ;
} else {
$ostatus = Protocol :: DFRN ;
}
// check if we search only communities or every contact
if ( $mode === 'community' ) {
2020-12-07 06:43:43 +00:00
$extra_sql = sprintf ( ' AND `contact-type` = %d' , self :: TYPE_COMMUNITY );
2020-07-30 14:08:32 +00:00
} else {
$extra_sql = '' ;
}
$search .= '%' ;
$results = DBA :: p ( " SELECT * FROM `contact`
WHERE NOT `unsearchable` AND `network` IN ( ? , ? , ? , ? ) AND
NOT `failed` AND `uid` = ? AND
( `addr` LIKE ? OR `name` LIKE ? OR `nick` LIKE ? ) $extra_sql
ORDER BY `nurl` DESC LIMIT 1000 " ,
Protocol :: DFRN , Protocol :: ACTIVITYPUB , $ostatus , $diaspora , 0 , $search , $search , $search
);
$contacts = DBA :: toArray ( $results );
return $contacts ;
}
2020-08-01 16:15:18 +00:00
/**
* Add public contacts from an array
*
* @ param array $urls
* @ return array result " count " , " added " and " updated "
*/
2020-08-02 13:37:43 +00:00
public static function addByUrls ( array $urls )
2020-08-01 16:15:18 +00:00
{
$added = 0 ;
$updated = 0 ;
2020-10-03 10:52:34 +00:00
$unchanged = 0 ;
2020-08-01 16:15:18 +00:00
$count = 0 ;
foreach ( $urls as $url ) {
2020-12-07 06:43:43 +00:00
$contact = self :: getByURL ( $url , false , [ 'id' , 'updated' ]);
2020-08-01 16:15:18 +00:00
if ( empty ( $contact [ 'id' ])) {
Worker :: add ( PRIORITY_LOW , 'AddContact' , 0 , $url );
++ $added ;
2020-10-03 10:52:34 +00:00
} elseif ( $contact [ 'updated' ] < DateTimeFormat :: utc ( 'now -7 days' )) {
2020-08-01 16:15:18 +00:00
Worker :: add ( PRIORITY_LOW , 'UpdateContact' , $contact [ 'id' ]);
++ $updated ;
2020-10-03 10:52:34 +00:00
} else {
++ $unchanged ;
2020-08-01 16:15:18 +00:00
}
++ $count ;
}
2020-10-03 10:52:34 +00:00
return [ 'count' => $count , 'added' => $added , 'updated' => $updated , 'unchanged' => $unchanged ];
2020-08-01 16:15:18 +00:00
}
2020-08-02 08:07:31 +00:00
/**
* Returns a random , global contact of the current node
*
* @ return string The profile URL
* @ throws Exception
*/
public static function getRandomUrl ()
{
$r = DBA :: selectFirst ( 'contact' , [ 'url' ], [
" `uid` = ? AND `network` = ? AND NOT `failed` AND `last-item` > ? " ,
0 , Protocol :: DFRN , DateTimeFormat :: utc ( 'now - 1 month' ),
], [ 'order' => [ 'RAND()' ]]);
if ( DBA :: isResult ( $r )) {
return $r [ 'url' ];
}
return '' ;
}
2017-11-19 21:55:28 +00:00
}