2017-11-07 19:37:53 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Core/NotificationsManager.php
|
|
|
|
* @brief Methods for read and write notifications from/to database
|
|
|
|
* or for formatting notifications
|
|
|
|
*/
|
2017-11-08 17:02:50 -05:00
|
|
|
namespace Friendica\Core;
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2018-01-11 03:37:11 -05:00
|
|
|
use Friendica\BaseObject;
|
2018-02-14 21:33:55 -05:00
|
|
|
use Friendica\Content\Text\BBCode;
|
2018-03-08 14:58:35 -05:00
|
|
|
use Friendica\Content\Text\HTML;
|
2018-07-21 08:40:21 -04:00
|
|
|
use Friendica\Database\DBA;
|
2017-12-07 09:04:24 -05:00
|
|
|
use Friendica\Model\Contact;
|
2018-06-15 01:50:28 -04:00
|
|
|
use Friendica\Model\Item;
|
2018-01-26 21:38:34 -05:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-07-30 22:06:22 -04:00
|
|
|
use Friendica\Util\Proxy as ProxyUtils;
|
2018-02-03 12:25:58 -05:00
|
|
|
use Friendica\Util\Temporal;
|
2018-01-27 11:13:41 -05:00
|
|
|
use Friendica\Util\XML;
|
2017-11-07 19:37:53 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Methods for read and write notifications from/to database
|
|
|
|
* or for formatting notifications
|
|
|
|
*/
|
2018-01-11 03:37:11 -05:00
|
|
|
class NotificationsManager extends BaseObject
|
2017-11-08 17:02:50 -05:00
|
|
|
{
|
2017-11-07 19:37:53 -05:00
|
|
|
/**
|
|
|
|
* @brief set some extra note properties
|
|
|
|
*
|
|
|
|
* @param array $notes array of note arrays from db
|
|
|
|
* @return array Copy of input array with added properties
|
|
|
|
*
|
|
|
|
* Set some extra properties to note array from db:
|
|
|
|
* - timestamp as int in default TZ
|
|
|
|
* - date_rel : relative date string
|
|
|
|
* - msg_html: message as html string
|
|
|
|
* - msg_plain: message as plain text string
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-11-07 19:37:53 -05:00
|
|
|
*/
|
2017-11-08 17:02:50 -05:00
|
|
|
private function _set_extra($notes)
|
|
|
|
{
|
2018-01-15 08:05:12 -05:00
|
|
|
$rets = [];
|
2017-11-08 17:02:50 -05:00
|
|
|
foreach ($notes as $n) {
|
2018-01-26 21:38:34 -05:00
|
|
|
$local_time = DateTimeFormat::local($n['date']);
|
2017-11-07 19:37:53 -05:00
|
|
|
$n['timestamp'] = strtotime($local_time);
|
2018-02-03 12:25:58 -05:00
|
|
|
$n['date_rel'] = Temporal::getRelativeDate($n['date']);
|
2018-02-14 21:33:55 -05:00
|
|
|
$n['msg_html'] = BBCode::convert($n['msg'], false);
|
2018-03-08 14:58:35 -05:00
|
|
|
$n['msg_plain'] = explode("\n", trim(HTML::toPlaintext($n['msg_html'], 0)))[0];
|
2017-11-07 19:37:53 -05:00
|
|
|
|
|
|
|
$rets[] = $n;
|
|
|
|
}
|
|
|
|
return $rets;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get all notifications for local_user()
|
|
|
|
*
|
2017-11-08 17:02:50 -05:00
|
|
|
* @param array $filter optional Array "column name"=>value: filter query by columns values
|
2019-03-01 06:35:59 -05:00
|
|
|
* @param array $order optional Array to order by
|
2017-11-08 17:02:50 -05:00
|
|
|
* @param string $limit optional Query limits
|
2017-11-07 19:37:53 -05:00
|
|
|
*
|
2019-03-01 06:35:59 -05:00
|
|
|
* @return array|bool of results or false on errors
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-11-07 19:37:53 -05:00
|
|
|
*/
|
2019-03-01 06:35:59 -05:00
|
|
|
public function getAll($filter = [], $order = ['date' => 'DESC'], $limit = "")
|
2017-11-08 17:02:50 -05:00
|
|
|
{
|
2019-03-01 06:35:59 -05:00
|
|
|
$params = [];
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2019-03-01 06:35:59 -05:00
|
|
|
$params['order'] = $order;
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2019-03-01 06:35:59 -05:00
|
|
|
if (!empty($limit)) {
|
|
|
|
$params['limit'] = $limit;
|
2017-11-08 17:02:50 -05:00
|
|
|
}
|
2019-03-01 06:35:59 -05:00
|
|
|
|
|
|
|
$dbFilter = array_merge($filter, ['uid' => local_user()]);
|
|
|
|
|
|
|
|
$r = DBA::select('notify', [], $dbFilter, $order, $params);
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($r)) {
|
2017-11-07 19:37:53 -05:00
|
|
|
return $this->_set_extra($r);
|
2017-11-08 17:02:50 -05:00
|
|
|
}
|
2017-11-07 19:37:53 -05:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get one note for local_user() by $id value
|
|
|
|
*
|
2017-11-08 17:02:50 -05:00
|
|
|
* @param int $id identity
|
2017-11-07 19:37:53 -05:00
|
|
|
* @return array note values or null if not found
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-11-07 19:37:53 -05:00
|
|
|
*/
|
2017-11-08 17:02:50 -05:00
|
|
|
public function getByID($id)
|
|
|
|
{
|
2019-03-01 06:35:59 -05:00
|
|
|
$r = DBA::selectFirst('notify', ['id' => $id, 'uid' => local_user()]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($r)) {
|
2017-11-07 19:37:53 -05:00
|
|
|
return $this->_set_extra($r)[0];
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief set seen state of $note of local_user()
|
|
|
|
*
|
2017-11-08 17:02:50 -05:00
|
|
|
* @param array $note note array
|
|
|
|
* @param bool $seen optional true or false, default true
|
2017-11-07 19:37:53 -05:00
|
|
|
* @return bool true on success, false on errors
|
2019-01-07 10:24:06 -05:00
|
|
|
* @throws \Exception
|
2017-11-07 19:37:53 -05:00
|
|
|
*/
|
2017-11-08 17:02:50 -05:00
|
|
|
public function setSeen($note, $seen = true)
|
|
|
|
{
|
2019-03-01 06:35:59 -05:00
|
|
|
return DBA::update('notify', ['seen' => $seen], ['link' => $note['link'], 'parent' => $note['parent'], 'otype' => $note['otype'], 'uid' => local_user()]);
|
2017-11-07 19:37:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief set seen state of all notifications of local_user()
|
|
|
|
*
|
|
|
|
* @param bool $seen optional true or false. default true
|
|
|
|
* @return bool true on success, false on error
|
2019-01-07 10:24:06 -05:00
|
|
|
* @throws \Exception
|
2017-11-07 19:37:53 -05:00
|
|
|
*/
|
2017-11-08 17:02:50 -05:00
|
|
|
public function setAllSeen($seen = true)
|
|
|
|
{
|
2019-03-01 06:35:59 -05:00
|
|
|
return DBA::update('notify', ['seen' => $seen], ['uid' => local_user()]);
|
2017-11-07 19:37:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief List of pages for the Notifications TabBar
|
|
|
|
*
|
|
|
|
* @return array with with notifications TabBar data
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2017-11-07 19:37:53 -05:00
|
|
|
*/
|
2017-11-08 17:02:50 -05:00
|
|
|
public function getTabs()
|
|
|
|
{
|
2018-08-14 15:37:44 -04:00
|
|
|
$selected = defaults(self::getApp()->argv, 1, '');
|
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$tabs = [
|
|
|
|
[
|
2018-01-22 09:54:13 -05:00
|
|
|
'label' => L10n::t('System'),
|
2018-01-11 03:37:11 -05:00
|
|
|
'url' => 'notifications/system',
|
2018-08-14 15:37:44 -04:00
|
|
|
'sel' => (($selected == 'system') ? 'active' : ''),
|
2018-01-11 03:37:11 -05:00
|
|
|
'id' => 'system-tab',
|
2017-11-07 19:37:53 -05:00
|
|
|
'accesskey' => 'y',
|
2018-01-15 08:05:12 -05:00
|
|
|
],
|
|
|
|
[
|
2018-01-22 09:54:13 -05:00
|
|
|
'label' => L10n::t('Network'),
|
2018-01-11 03:37:11 -05:00
|
|
|
'url' => 'notifications/network',
|
2018-08-14 15:37:44 -04:00
|
|
|
'sel' => (($selected == 'network') ? 'active' : ''),
|
2018-01-11 03:37:11 -05:00
|
|
|
'id' => 'network-tab',
|
2017-11-07 19:37:53 -05:00
|
|
|
'accesskey' => 'w',
|
2018-01-15 08:05:12 -05:00
|
|
|
],
|
|
|
|
[
|
2018-01-22 09:54:13 -05:00
|
|
|
'label' => L10n::t('Personal'),
|
2018-01-11 03:37:11 -05:00
|
|
|
'url' => 'notifications/personal',
|
2018-08-14 15:37:44 -04:00
|
|
|
'sel' => (($selected == 'personal') ? 'active' : ''),
|
2018-01-11 03:37:11 -05:00
|
|
|
'id' => 'personal-tab',
|
2017-11-07 19:37:53 -05:00
|
|
|
'accesskey' => 'r',
|
2018-01-15 08:05:12 -05:00
|
|
|
],
|
|
|
|
[
|
2018-01-22 09:54:13 -05:00
|
|
|
'label' => L10n::t('Home'),
|
2018-01-11 03:37:11 -05:00
|
|
|
'url' => 'notifications/home',
|
2018-08-14 15:37:44 -04:00
|
|
|
'sel' => (($selected == 'home') ? 'active' : ''),
|
2018-01-11 03:37:11 -05:00
|
|
|
'id' => 'home-tab',
|
2017-11-07 19:37:53 -05:00
|
|
|
'accesskey' => 'h',
|
2018-01-15 08:05:12 -05:00
|
|
|
],
|
|
|
|
[
|
2018-01-22 09:54:13 -05:00
|
|
|
'label' => L10n::t('Introductions'),
|
2018-01-11 03:37:11 -05:00
|
|
|
'url' => 'notifications/intros',
|
2018-08-14 15:37:44 -04:00
|
|
|
'sel' => (($selected == 'intros') ? 'active' : ''),
|
2018-01-11 03:37:11 -05:00
|
|
|
'id' => 'intro-tab',
|
2017-11-07 19:37:53 -05:00
|
|
|
'accesskey' => 'i',
|
2018-01-15 08:05:12 -05:00
|
|
|
],
|
|
|
|
];
|
2017-11-07 19:37:53 -05:00
|
|
|
|
|
|
|
return $tabs;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Format the notification query in an usable array
|
|
|
|
*
|
2017-11-08 17:02:50 -05:00
|
|
|
* @param array $notifs The array from the db query
|
|
|
|
* @param string $ident The notifications identifier (e.g. network)
|
2017-11-07 19:37:53 -05:00
|
|
|
* @return array
|
2019-01-06 16:06:53 -05:00
|
|
|
* string 'label' => The type of the notification
|
|
|
|
* string 'link' => URL to the source
|
|
|
|
* string 'image' => The avatar image
|
|
|
|
* string 'url' => The profile url of the contact
|
|
|
|
* string 'text' => The notification text
|
|
|
|
* string 'when' => The date of the notification
|
|
|
|
* string 'ago' => T relative date of the notification
|
|
|
|
* bool 'seen' => Is the notification marked as "seen"
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-11-07 19:37:53 -05:00
|
|
|
*/
|
2018-07-19 20:52:18 -04:00
|
|
|
private function formatNotifs(array $notifs, $ident = "")
|
2017-11-08 17:02:50 -05:00
|
|
|
{
|
2018-01-15 08:05:12 -05:00
|
|
|
$arr = [];
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($notifs)) {
|
2017-11-07 19:37:53 -05:00
|
|
|
foreach ($notifs as $it) {
|
|
|
|
// Because we use different db tables for the notification query
|
|
|
|
// we have sometimes $it['unseen'] and sometimes $it['seen].
|
|
|
|
// So we will have to transform $it['unseen']
|
|
|
|
if (array_key_exists('unseen', $it)) {
|
|
|
|
$it['seen'] = ($it['unseen'] > 0 ? false : true);
|
|
|
|
}
|
|
|
|
|
2018-06-15 18:30:49 -04:00
|
|
|
// For feed items we use the user's contact, since the avatar is mostly self choosen.
|
2018-08-11 16:40:44 -04:00
|
|
|
if (!empty($it['network']) && $it['network'] == Protocol::FEED) {
|
2018-06-15 18:30:49 -04:00
|
|
|
$it['author-avatar'] = $it['contact-avatar'];
|
|
|
|
}
|
|
|
|
|
2017-11-07 19:37:53 -05:00
|
|
|
// Depending on the identifier of the notification we need to use different defaults
|
|
|
|
switch ($ident) {
|
|
|
|
case 'system':
|
|
|
|
$default_item_label = 'notify';
|
2018-01-11 03:37:11 -05:00
|
|
|
$default_item_link = System::baseUrl(true) . '/notify/view/' . $it['id'];
|
2018-07-30 22:06:22 -04:00
|
|
|
$default_item_image = ProxyUtils::proxifyUrl($it['photo'], false, ProxyUtils::SIZE_MICRO);
|
2017-11-07 19:37:53 -05:00
|
|
|
$default_item_url = $it['url'];
|
2018-02-14 21:33:55 -05:00
|
|
|
$default_item_text = strip_tags(BBCode::convert($it['msg']));
|
2018-01-26 21:38:34 -05:00
|
|
|
$default_item_when = DateTimeFormat::local($it['date'], 'r');
|
2018-02-03 12:25:58 -05:00
|
|
|
$default_item_ago = Temporal::getRelativeDate($it['date']);
|
2017-11-07 19:37:53 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'home':
|
|
|
|
$default_item_label = 'comment';
|
2018-06-15 01:50:28 -04:00
|
|
|
$default_item_link = System::baseUrl(true) . '/display/' . $it['parent-guid'];
|
2018-07-30 22:06:22 -04:00
|
|
|
$default_item_image = ProxyUtils::proxifyUrl($it['author-avatar'], false, ProxyUtils::SIZE_MICRO);
|
2017-11-07 19:37:53 -05:00
|
|
|
$default_item_url = $it['author-link'];
|
2018-06-15 01:50:28 -04:00
|
|
|
$default_item_text = L10n::t("%s commented on %s's post", $it['author-name'], $it['parent-author-name']);
|
2018-01-26 21:38:34 -05:00
|
|
|
$default_item_when = DateTimeFormat::local($it['created'], 'r');
|
2018-02-03 12:25:58 -05:00
|
|
|
$default_item_ago = Temporal::getRelativeDate($it['created']);
|
2017-11-07 19:37:53 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
$default_item_label = (($it['id'] == $it['parent']) ? 'post' : 'comment');
|
2018-06-15 01:50:28 -04:00
|
|
|
$default_item_link = System::baseUrl(true) . '/display/' . $it['parent-guid'];
|
2018-07-30 22:06:22 -04:00
|
|
|
$default_item_image = ProxyUtils::proxifyUrl($it['author-avatar'], false, ProxyUtils::SIZE_MICRO);
|
2017-11-07 19:37:53 -05:00
|
|
|
$default_item_url = $it['author-link'];
|
|
|
|
$default_item_text = (($it['id'] == $it['parent'])
|
2018-01-23 21:59:16 -05:00
|
|
|
? L10n::t("%s created a new post", $it['author-name'])
|
2018-06-15 01:50:28 -04:00
|
|
|
: L10n::t("%s commented on %s's post", $it['author-name'], $it['parent-author-name']));
|
2018-01-26 21:38:34 -05:00
|
|
|
$default_item_when = DateTimeFormat::local($it['created'], 'r');
|
2018-02-03 12:25:58 -05:00
|
|
|
$default_item_ago = Temporal::getRelativeDate($it['created']);
|
2017-11-07 19:37:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Transform the different types of notification in an usable array
|
2017-11-08 17:02:50 -05:00
|
|
|
switch ($it['verb']) {
|
2017-11-07 19:37:53 -05:00
|
|
|
case ACTIVITY_LIKE:
|
2018-01-15 08:05:12 -05:00
|
|
|
$notif = [
|
2017-11-07 19:37:53 -05:00
|
|
|
'label' => 'like',
|
2018-06-15 01:50:28 -04:00
|
|
|
'link' => System::baseUrl(true) . '/display/' . $it['parent-guid'],
|
2018-07-30 22:06:22 -04:00
|
|
|
'image' => ProxyUtils::proxifyUrl($it['author-avatar'], false, ProxyUtils::SIZE_MICRO),
|
2017-11-07 19:37:53 -05:00
|
|
|
'url' => $it['author-link'],
|
2018-06-15 01:50:28 -04:00
|
|
|
'text' => L10n::t("%s liked %s's post", $it['author-name'], $it['parent-author-name']),
|
2017-11-07 19:37:53 -05:00
|
|
|
'when' => $default_item_when,
|
|
|
|
'ago' => $default_item_ago,
|
|
|
|
'seen' => $it['seen']
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2017-11-07 19:37:53 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACTIVITY_DISLIKE:
|
2018-01-15 08:05:12 -05:00
|
|
|
$notif = [
|
2017-11-07 19:37:53 -05:00
|
|
|
'label' => 'dislike',
|
2018-06-15 01:50:28 -04:00
|
|
|
'link' => System::baseUrl(true) . '/display/' . $it['parent-guid'],
|
2018-07-30 22:06:22 -04:00
|
|
|
'image' => ProxyUtils::proxifyUrl($it['author-avatar'], false, ProxyUtils::SIZE_MICRO),
|
2017-11-07 19:37:53 -05:00
|
|
|
'url' => $it['author-link'],
|
2018-06-15 01:50:28 -04:00
|
|
|
'text' => L10n::t("%s disliked %s's post", $it['author-name'], $it['parent-author-name']),
|
2017-11-07 19:37:53 -05:00
|
|
|
'when' => $default_item_when,
|
|
|
|
'ago' => $default_item_ago,
|
|
|
|
'seen' => $it['seen']
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2017-11-07 19:37:53 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACTIVITY_ATTEND:
|
2018-01-15 08:05:12 -05:00
|
|
|
$notif = [
|
2017-11-07 19:37:53 -05:00
|
|
|
'label' => 'attend',
|
2018-06-15 01:50:28 -04:00
|
|
|
'link' => System::baseUrl(true) . '/display/' . $it['parent-guid'],
|
2018-07-30 22:06:22 -04:00
|
|
|
'image' => ProxyUtils::proxifyUrl($it['author-avatar'], false, ProxyUtils::SIZE_MICRO),
|
2017-11-07 19:37:53 -05:00
|
|
|
'url' => $it['author-link'],
|
2018-06-15 01:50:28 -04:00
|
|
|
'text' => L10n::t("%s is attending %s's event", $it['author-name'], $it['parent-author-name']),
|
2017-11-07 19:37:53 -05:00
|
|
|
'when' => $default_item_when,
|
|
|
|
'ago' => $default_item_ago,
|
|
|
|
'seen' => $it['seen']
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2017-11-07 19:37:53 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACTIVITY_ATTENDNO:
|
2018-01-15 08:05:12 -05:00
|
|
|
$notif = [
|
2017-11-07 19:37:53 -05:00
|
|
|
'label' => 'attendno',
|
2018-06-15 01:50:28 -04:00
|
|
|
'link' => System::baseUrl(true) . '/display/' . $it['parent-guid'],
|
2018-07-30 22:06:22 -04:00
|
|
|
'image' => ProxyUtils::proxifyUrl($it['author-avatar'], false, ProxyUtils::SIZE_MICRO),
|
2017-11-07 19:37:53 -05:00
|
|
|
'url' => $it['author-link'],
|
2018-06-15 01:50:28 -04:00
|
|
|
'text' => L10n::t("%s is not attending %s's event", $it['author-name'], $it['parent-author-name']),
|
2017-11-07 19:37:53 -05:00
|
|
|
'when' => $default_item_when,
|
|
|
|
'ago' => $default_item_ago,
|
|
|
|
'seen' => $it['seen']
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2017-11-07 19:37:53 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACTIVITY_ATTENDMAYBE:
|
2018-01-15 08:05:12 -05:00
|
|
|
$notif = [
|
2017-11-07 19:37:53 -05:00
|
|
|
'label' => 'attendmaybe',
|
2018-06-15 01:50:28 -04:00
|
|
|
'link' => System::baseUrl(true) . '/display/' . $it['parent-guid'],
|
2018-07-30 22:06:22 -04:00
|
|
|
'image' => ProxyUtils::proxifyUrl($it['author-avatar'], false, ProxyUtils::SIZE_MICRO),
|
2017-11-07 19:37:53 -05:00
|
|
|
'url' => $it['author-link'],
|
2018-06-15 01:50:28 -04:00
|
|
|
'text' => L10n::t("%s may attend %s's event", $it['author-name'], $it['parent-author-name']),
|
2017-11-07 19:37:53 -05:00
|
|
|
'when' => $default_item_when,
|
|
|
|
'ago' => $default_item_ago,
|
|
|
|
'seen' => $it['seen']
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2017-11-07 19:37:53 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACTIVITY_FRIEND:
|
2018-08-21 11:35:09 -04:00
|
|
|
if (!isset($it['object'])) {
|
2018-08-26 01:27:50 -04:00
|
|
|
$notif = [
|
|
|
|
'label' => 'friend',
|
|
|
|
'link' => $default_item_link,
|
|
|
|
'image' => $default_item_image,
|
|
|
|
'url' => $default_item_url,
|
|
|
|
'text' => $default_item_text,
|
|
|
|
'when' => $default_item_when,
|
|
|
|
'ago' => $default_item_ago,
|
|
|
|
'seen' => $it['seen']
|
|
|
|
];
|
|
|
|
break;
|
2018-08-21 11:35:09 -04:00
|
|
|
}
|
2018-08-26 01:27:50 -04:00
|
|
|
/// @todo Check if this part here is used at all
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('Complete data: ' . json_encode($it) . ' - ' . System::callstack(20), Logger::DEBUG);
|
2018-08-21 11:35:09 -04:00
|
|
|
|
2018-01-11 03:37:11 -05:00
|
|
|
$xmlhead = "<" . "?xml version='1.0' encoding='UTF-8' ?" . ">";
|
2018-01-27 11:13:41 -05:00
|
|
|
$obj = XML::parseString($xmlhead . $it['object']);
|
2017-11-07 19:37:53 -05:00
|
|
|
$it['fname'] = $obj->title;
|
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$notif = [
|
2017-11-07 19:37:53 -05:00
|
|
|
'label' => 'friend',
|
2018-06-15 01:50:28 -04:00
|
|
|
'link' => System::baseUrl(true) . '/display/' . $it['parent-guid'],
|
2018-07-30 22:06:22 -04:00
|
|
|
'image' => ProxyUtils::proxifyUrl($it['author-avatar'], false, ProxyUtils::SIZE_MICRO),
|
2017-11-07 19:37:53 -05:00
|
|
|
'url' => $it['author-link'],
|
2018-01-23 21:59:16 -05:00
|
|
|
'text' => L10n::t("%s is now friends with %s", $it['author-name'], $it['fname']),
|
2017-11-07 19:37:53 -05:00
|
|
|
'when' => $default_item_when,
|
|
|
|
'ago' => $default_item_ago,
|
|
|
|
'seen' => $it['seen']
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2017-11-07 19:37:53 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-01-15 08:05:12 -05:00
|
|
|
$notif = [
|
2017-11-07 19:37:53 -05:00
|
|
|
'label' => $default_item_label,
|
|
|
|
'link' => $default_item_link,
|
|
|
|
'image' => $default_item_image,
|
|
|
|
'url' => $default_item_url,
|
|
|
|
'text' => $default_item_text,
|
|
|
|
'when' => $default_item_when,
|
|
|
|
'ago' => $default_item_ago,
|
|
|
|
'seen' => $it['seen']
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2017-11-07 19:37:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
$arr[] = $notif;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $arr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get network notifications
|
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param int|string $seen If 0 only include notifications into the query
|
|
|
|
* which aren't marked as "seen"
|
|
|
|
* @param int $start Start the query at this point
|
|
|
|
* @param int $limit Maximum number of query results
|
2017-11-07 19:37:53 -05:00
|
|
|
*
|
|
|
|
* @return array with
|
2019-01-06 16:06:53 -05:00
|
|
|
* string 'ident' => Notification identifier
|
|
|
|
* array 'notifications' => Network notifications
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-11-07 19:37:53 -05:00
|
|
|
*/
|
2017-11-08 17:02:50 -05:00
|
|
|
public function networkNotifs($seen = 0, $start = 0, $limit = 80)
|
|
|
|
{
|
2017-11-07 19:37:53 -05:00
|
|
|
$ident = 'network';
|
2018-01-15 08:05:12 -05:00
|
|
|
$notifs = [];
|
2018-06-15 01:50:28 -04:00
|
|
|
|
|
|
|
$condition = ['wall' => false, 'uid' => local_user()];
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2017-11-08 17:02:50 -05:00
|
|
|
if ($seen === 0) {
|
2018-06-15 01:50:28 -04:00
|
|
|
$condition['unseen'] = true;
|
2017-11-08 17:02:50 -05:00
|
|
|
}
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2018-06-15 18:30:49 -04:00
|
|
|
$fields = ['id', 'parent', 'verb', 'author-name', 'unseen', 'author-link', 'author-avatar', 'contact-avatar',
|
|
|
|
'network', 'created', 'object', 'parent-author-name', 'parent-author-link', 'parent-guid'];
|
2018-06-15 01:50:28 -04:00
|
|
|
$params = ['order' => ['created' => true], 'limit' => [$start, $limit]];
|
2018-07-22 19:25:07 -04:00
|
|
|
|
2018-06-17 13:05:17 -04:00
|
|
|
$items = Item::selectForUser(local_user(), $fields, $condition, $params);
|
2018-06-15 01:50:28 -04:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($items)) {
|
2018-06-24 06:48:29 -04:00
|
|
|
$notifs = $this->formatNotifs(Item::inArray($items), $ident);
|
2017-11-08 17:02:50 -05:00
|
|
|
}
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2018-01-11 03:37:11 -05:00
|
|
|
$arr = [
|
2017-11-07 19:37:53 -05:00
|
|
|
'notifications' => $notifs,
|
|
|
|
'ident' => $ident,
|
2018-01-11 03:37:11 -05:00
|
|
|
];
|
2017-11-07 19:37:53 -05:00
|
|
|
|
|
|
|
return $arr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get system notifications
|
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param int|string $seen If 0 only include notifications into the query
|
|
|
|
* which aren't marked as "seen"
|
|
|
|
* @param int $start Start the query at this point
|
|
|
|
* @param int $limit Maximum number of query results
|
2017-11-07 19:37:53 -05:00
|
|
|
*
|
|
|
|
* @return array with
|
2019-01-06 16:06:53 -05:00
|
|
|
* string 'ident' => Notification identifier
|
|
|
|
* array 'notifications' => System notifications
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-11-07 19:37:53 -05:00
|
|
|
*/
|
2017-11-08 17:02:50 -05:00
|
|
|
public function systemNotifs($seen = 0, $start = 0, $limit = 80)
|
|
|
|
{
|
2017-11-07 19:37:53 -05:00
|
|
|
$ident = 'system';
|
2018-01-15 08:05:12 -05:00
|
|
|
$notifs = [];
|
2017-11-07 19:37:53 -05:00
|
|
|
$sql_seen = "";
|
|
|
|
|
2017-11-08 17:02:50 -05:00
|
|
|
if ($seen === 0) {
|
2019-03-01 06:35:59 -05:00
|
|
|
$filter = ['`uid` = ? AND NOT `seen`', local_user()];
|
|
|
|
} else {
|
|
|
|
$filter = ['uid' => local_user()];
|
2017-11-08 17:02:50 -05:00
|
|
|
}
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2019-03-01 06:35:59 -05:00
|
|
|
$params = [];
|
|
|
|
$params['limit'] = [$start, $limit];
|
|
|
|
|
|
|
|
$r = DBA::select('notify',
|
|
|
|
['id', 'url', 'photo', 'msg', 'date', 'seen', 'verb'],
|
|
|
|
$filter,
|
|
|
|
$params);
|
2018-07-22 19:25:07 -04:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($r)) {
|
2019-03-01 06:35:59 -05:00
|
|
|
$notifs = $this->formatNotifs(DBA::toArray($r), $ident);
|
2017-11-08 17:02:50 -05:00
|
|
|
}
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2018-01-11 03:37:11 -05:00
|
|
|
$arr = [
|
2017-11-07 19:37:53 -05:00
|
|
|
'notifications' => $notifs,
|
|
|
|
'ident' => $ident,
|
2018-01-11 03:37:11 -05:00
|
|
|
];
|
2017-11-07 19:37:53 -05:00
|
|
|
|
|
|
|
return $arr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get personal notifications
|
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param int|string $seen If 0 only include notifications into the query
|
|
|
|
* which aren't marked as "seen"
|
|
|
|
* @param int $start Start the query at this point
|
|
|
|
* @param int $limit Maximum number of query results
|
2017-11-07 19:37:53 -05:00
|
|
|
*
|
|
|
|
* @return array with
|
2019-01-06 16:06:53 -05:00
|
|
|
* string 'ident' => Notification identifier
|
|
|
|
* array 'notifications' => Personal notifications
|
|
|
|
* @throws \Exception
|
2017-11-07 19:37:53 -05:00
|
|
|
*/
|
2017-11-08 17:02:50 -05:00
|
|
|
public function personalNotifs($seen = 0, $start = 0, $limit = 80)
|
|
|
|
{
|
2017-11-07 19:37:53 -05:00
|
|
|
$ident = 'personal';
|
2018-01-15 08:05:12 -05:00
|
|
|
$notifs = [];
|
2018-06-15 01:50:28 -04:00
|
|
|
|
|
|
|
$myurl = str_replace('http://', '', self::getApp()->contact['nurl']);
|
|
|
|
$diasp_url = str_replace('/profile/', '/u/', $myurl);
|
|
|
|
|
|
|
|
$condition = ["NOT `wall` AND `uid` = ? AND (`item`.`author-id` = ? OR `item`.`tag` REGEXP ? OR `item`.`tag` REGEXP ?)",
|
|
|
|
local_user(), public_contact(), $myurl . '\\]', $diasp_url . '\\]'];
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2017-11-08 17:02:50 -05:00
|
|
|
if ($seen === 0) {
|
2018-06-15 01:50:28 -04:00
|
|
|
$condition[0] .= " AND `unseen`";
|
2017-11-08 17:02:50 -05:00
|
|
|
}
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2018-06-15 18:30:49 -04:00
|
|
|
$fields = ['id', 'parent', 'verb', 'author-name', 'unseen', 'author-link', 'author-avatar', 'contact-avatar',
|
|
|
|
'network', 'created', 'object', 'parent-author-name', 'parent-author-link', 'parent-guid'];
|
2018-06-15 01:50:28 -04:00
|
|
|
$params = ['order' => ['created' => true], 'limit' => [$start, $limit]];
|
2018-07-22 19:25:07 -04:00
|
|
|
|
2018-06-17 13:05:17 -04:00
|
|
|
$items = Item::selectForUser(local_user(), $fields, $condition, $params);
|
2018-06-15 01:50:28 -04:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($items)) {
|
2018-06-24 06:48:29 -04:00
|
|
|
$notifs = $this->formatNotifs(Item::inArray($items), $ident);
|
2017-11-08 17:02:50 -05:00
|
|
|
}
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$arr = [
|
2017-11-07 19:37:53 -05:00
|
|
|
'notifications' => $notifs,
|
|
|
|
'ident' => $ident,
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2017-11-07 19:37:53 -05:00
|
|
|
|
|
|
|
return $arr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get home notifications
|
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param int|string $seen If 0 only include notifications into the query
|
|
|
|
* which aren't marked as "seen"
|
|
|
|
* @param int $start Start the query at this point
|
|
|
|
* @param int $limit Maximum number of query results
|
2017-11-07 19:37:53 -05:00
|
|
|
*
|
|
|
|
* @return array with
|
2019-01-06 16:06:53 -05:00
|
|
|
* string 'ident' => Notification identifier
|
|
|
|
* array 'notifications' => Home notifications
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-11-07 19:37:53 -05:00
|
|
|
*/
|
2017-11-08 17:02:50 -05:00
|
|
|
public function homeNotifs($seen = 0, $start = 0, $limit = 80)
|
|
|
|
{
|
2017-11-07 19:37:53 -05:00
|
|
|
$ident = 'home';
|
2018-01-15 08:05:12 -05:00
|
|
|
$notifs = [];
|
2018-06-15 01:50:28 -04:00
|
|
|
|
|
|
|
$condition = ['wall' => true, 'uid' => local_user()];
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2017-11-08 17:02:50 -05:00
|
|
|
if ($seen === 0) {
|
2018-06-15 01:50:28 -04:00
|
|
|
$condition['unseen'] = true;
|
2017-11-08 17:02:50 -05:00
|
|
|
}
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2018-06-15 18:30:49 -04:00
|
|
|
$fields = ['id', 'parent', 'verb', 'author-name', 'unseen', 'author-link', 'author-avatar', 'contact-avatar',
|
|
|
|
'network', 'created', 'object', 'parent-author-name', 'parent-author-link', 'parent-guid'];
|
2018-06-15 01:50:28 -04:00
|
|
|
$params = ['order' => ['created' => true], 'limit' => [$start, $limit]];
|
2018-06-17 13:05:17 -04:00
|
|
|
$items = Item::selectForUser(local_user(), $fields, $condition, $params);
|
2018-06-15 01:50:28 -04:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($items)) {
|
2018-06-24 06:48:29 -04:00
|
|
|
$notifs = $this->formatNotifs(Item::inArray($items), $ident);
|
2017-11-08 17:02:50 -05:00
|
|
|
}
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2018-01-11 03:37:11 -05:00
|
|
|
$arr = [
|
2017-11-07 19:37:53 -05:00
|
|
|
'notifications' => $notifs,
|
|
|
|
'ident' => $ident,
|
2018-01-11 03:37:11 -05:00
|
|
|
];
|
2017-11-07 19:37:53 -05:00
|
|
|
|
|
|
|
return $arr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get introductions
|
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param bool $all If false only include introductions into the query
|
|
|
|
* which aren't marked as ignored
|
|
|
|
* @param int $start Start the query at this point
|
|
|
|
* @param int $limit Maximum number of query results
|
2017-11-07 19:37:53 -05:00
|
|
|
*
|
|
|
|
* @return array with
|
2019-01-06 16:06:53 -05:00
|
|
|
* string 'ident' => Notification identifier
|
|
|
|
* array 'notifications' => Introductions
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2017-11-07 19:37:53 -05:00
|
|
|
*/
|
2017-11-19 14:15:25 -05:00
|
|
|
public function introNotifs($all = false, $start = 0, $limit = 80)
|
|
|
|
{
|
2017-11-07 19:37:53 -05:00
|
|
|
$ident = 'introductions';
|
2018-01-15 08:05:12 -05:00
|
|
|
$notifs = [];
|
2017-11-07 19:37:53 -05:00
|
|
|
$sql_extra = "";
|
|
|
|
|
2017-11-08 17:02:50 -05:00
|
|
|
if (!$all) {
|
2017-11-07 19:37:53 -05:00
|
|
|
$sql_extra = " AND `ignore` = 0 ";
|
2017-11-08 17:02:50 -05:00
|
|
|
}
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2017-11-19 17:03:39 -05:00
|
|
|
/// @todo Fetch contact details by "Contact::getDetailsByUrl" instead of queries to contact, fcontact and gcontact
|
2017-11-08 17:02:50 -05:00
|
|
|
$r = q(
|
|
|
|
"SELECT `intro`.`id` AS `intro_id`, `intro`.*, `contact`.*,
|
2018-06-14 11:05:23 -04:00
|
|
|
`fcontact`.`name` AS `fname`, `fcontact`.`url` AS `furl`, `fcontact`.`addr` AS `faddr`,
|
2017-11-07 19:37:53 -05:00
|
|
|
`fcontact`.`photo` AS `fphoto`, `fcontact`.`request` AS `frequest`,
|
|
|
|
`gcontact`.`location` AS `glocation`, `gcontact`.`about` AS `gabout`,
|
|
|
|
`gcontact`.`keywords` AS `gkeywords`, `gcontact`.`gender` AS `ggender`,
|
|
|
|
`gcontact`.`network` AS `gnetwork`, `gcontact`.`addr` AS `gaddr`
|
|
|
|
FROM `intro`
|
|
|
|
LEFT JOIN `contact` ON `contact`.`id` = `intro`.`contact-id`
|
|
|
|
LEFT JOIN `gcontact` ON `gcontact`.`nurl` = `contact`.`nurl`
|
|
|
|
LEFT JOIN `fcontact` ON `intro`.`fid` = `fcontact`.`id`
|
|
|
|
WHERE `intro`.`uid` = %d $sql_extra AND `intro`.`blocked` = 0
|
|
|
|
LIMIT %d, %d",
|
2017-11-08 17:02:50 -05:00
|
|
|
intval($_SESSION['uid']),
|
|
|
|
intval($start),
|
|
|
|
intval($limit)
|
2017-11-07 19:37:53 -05:00
|
|
|
);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($r)) {
|
2017-11-07 19:37:53 -05:00
|
|
|
$notifs = $this->formatIntros($r);
|
2017-11-08 17:02:50 -05:00
|
|
|
}
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2018-01-11 03:37:11 -05:00
|
|
|
$arr = [
|
2017-11-07 19:37:53 -05:00
|
|
|
'ident' => $ident,
|
|
|
|
'notifications' => $notifs,
|
2018-01-11 03:37:11 -05:00
|
|
|
];
|
2017-11-07 19:37:53 -05:00
|
|
|
|
|
|
|
return $arr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Format the notification query in an usable array
|
|
|
|
*
|
|
|
|
* @param array $intros The array from the db query
|
|
|
|
* @return array with the introductions
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2017-11-07 19:37:53 -05:00
|
|
|
*/
|
2017-11-08 17:02:50 -05:00
|
|
|
private function formatIntros($intros)
|
|
|
|
{
|
2017-11-07 19:37:53 -05:00
|
|
|
$knowyou = '';
|
|
|
|
|
2019-01-07 12:51:48 -05:00
|
|
|
$arr = [];
|
|
|
|
|
2017-11-08 17:02:50 -05:00
|
|
|
foreach ($intros as $it) {
|
2017-11-07 19:37:53 -05:00
|
|
|
// There are two kind of introduction. Contacts suggested by other contacts and normal connection requests.
|
|
|
|
// We have to distinguish between these two because they use different data.
|
|
|
|
// Contact suggestions
|
2017-11-08 17:02:50 -05:00
|
|
|
if ($it['fid']) {
|
2018-10-09 19:18:47 -04:00
|
|
|
$return_addr = bin2hex(self::getApp()->user['nickname'] . '@' . self::getApp()->getHostName() . ((self::getApp()->getURLPath()) ? '/' . self::getApp()->getURLPath() : ''));
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$intro = [
|
2017-11-07 19:37:53 -05:00
|
|
|
'label' => 'friend_suggestion',
|
2018-01-22 09:54:13 -05:00
|
|
|
'notify_type' => L10n::t('Friend Suggestion'),
|
2017-11-07 19:37:53 -05:00
|
|
|
'intro_id' => $it['intro_id'],
|
|
|
|
'madeby' => $it['name'],
|
2018-06-14 11:05:23 -04:00
|
|
|
'madeby_url' => $it['url'],
|
|
|
|
'madeby_zrl' => Contact::magicLink($it['url']),
|
|
|
|
'madeby_addr' => $it['addr'],
|
2017-11-07 19:37:53 -05:00
|
|
|
'contact_id' => $it['contact-id'],
|
2018-11-30 09:06:22 -05:00
|
|
|
'photo' => (!empty($it['fphoto']) ? ProxyUtils::proxifyUrl($it['fphoto'], false, ProxyUtils::SIZE_SMALL) : "images/person-300.jpg"),
|
2017-11-07 19:37:53 -05:00
|
|
|
'name' => $it['fname'],
|
2018-06-14 11:05:23 -04:00
|
|
|
'url' => $it['furl'],
|
|
|
|
'zrl' => Contact::magicLink($it['furl']),
|
2017-11-07 19:37:53 -05:00
|
|
|
'hidden' => $it['hidden'] == 1,
|
2017-11-08 17:02:50 -05:00
|
|
|
'post_newfriend' => (intval(PConfig::get(local_user(), 'system', 'post_newfriend')) ? '1' : 0),
|
2017-11-07 19:37:53 -05:00
|
|
|
'knowyou' => $knowyou,
|
|
|
|
'note' => $it['note'],
|
|
|
|
'request' => $it['frequest'] . '?addr=' . $return_addr,
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2017-11-08 17:02:50 -05:00
|
|
|
// Normal connection requests
|
2017-11-07 19:37:53 -05:00
|
|
|
} else {
|
|
|
|
$it = $this->getMissingIntroData($it);
|
|
|
|
|
2018-08-26 01:27:50 -04:00
|
|
|
if (empty($it['url'])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-11-07 19:37:53 -05:00
|
|
|
// Don't show these data until you are connected. Diaspora is doing the same.
|
2018-08-11 16:40:44 -04:00
|
|
|
if ($it['gnetwork'] === Protocol::DIASPORA) {
|
2017-11-07 19:37:53 -05:00
|
|
|
$it['glocation'] = "";
|
|
|
|
$it['gabout'] = "";
|
|
|
|
$it['ggender'] = "";
|
|
|
|
}
|
2018-01-15 08:05:12 -05:00
|
|
|
$intro = [
|
2018-08-11 16:40:44 -04:00
|
|
|
'label' => (($it['network'] !== Protocol::OSTATUS) ? 'friend_request' : 'follower'),
|
|
|
|
'notify_type' => (($it['network'] !== Protocol::OSTATUS) ? L10n::t('Friend/Connect Request') : L10n::t('New Follower')),
|
2017-11-07 19:37:53 -05:00
|
|
|
'dfrn_id' => $it['issued-id'],
|
|
|
|
'uid' => $_SESSION['uid'],
|
|
|
|
'intro_id' => $it['intro_id'],
|
|
|
|
'contact_id' => $it['contact-id'],
|
2018-11-30 09:06:22 -05:00
|
|
|
'photo' => (!empty($it['photo']) ? ProxyUtils::proxifyUrl($it['photo'], false, ProxyUtils::SIZE_SMALL) : "images/person-300.jpg"),
|
2017-11-07 19:37:53 -05:00
|
|
|
'name' => $it['name'],
|
2018-02-14 21:33:55 -05:00
|
|
|
'location' => BBCode::convert($it['glocation'], false),
|
|
|
|
'about' => BBCode::convert($it['gabout'], false),
|
2017-11-07 19:37:53 -05:00
|
|
|
'keywords' => $it['gkeywords'],
|
|
|
|
'gender' => $it['ggender'],
|
|
|
|
'hidden' => $it['hidden'] == 1,
|
2017-11-08 17:02:50 -05:00
|
|
|
'post_newfriend' => (intval(PConfig::get(local_user(), 'system', 'post_newfriend')) ? '1' : 0),
|
2017-11-07 19:37:53 -05:00
|
|
|
'url' => $it['url'],
|
2018-06-02 04:05:06 -04:00
|
|
|
'zrl' => Contact::magicLink($it['url']),
|
2017-11-07 19:37:53 -05:00
|
|
|
'addr' => $it['gaddr'],
|
|
|
|
'network' => $it['gnetwork'],
|
|
|
|
'knowyou' => $it['knowyou'],
|
|
|
|
'note' => $it['note'],
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2017-11-07 19:37:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
$arr[] = $intro;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $arr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Check for missing contact data and try to fetch the data from
|
|
|
|
* from other sources
|
|
|
|
*
|
|
|
|
* @param array $arr The input array with the intro data
|
|
|
|
*
|
|
|
|
* @return array The array with the intro data
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-11-07 19:37:53 -05:00
|
|
|
*/
|
2017-11-08 17:02:50 -05:00
|
|
|
private function getMissingIntroData($arr)
|
|
|
|
{
|
2017-11-07 19:37:53 -05:00
|
|
|
// If the network and the addr isn't available from the gcontact
|
|
|
|
// table entry, take the one of the contact table entry
|
2018-08-26 01:27:50 -04:00
|
|
|
if (empty($arr['gnetwork']) && !empty($arr['network'])) {
|
2017-11-07 19:37:53 -05:00
|
|
|
$arr['gnetwork'] = $arr['network'];
|
|
|
|
}
|
2018-08-26 01:27:50 -04:00
|
|
|
if (empty($arr['gaddr']) && !empty($arr['addr'])) {
|
2017-11-07 19:37:53 -05:00
|
|
|
$arr['gaddr'] = $arr['addr'];
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the network and addr is still not available
|
|
|
|
// get the missing data data from other sources
|
2018-08-26 01:27:50 -04:00
|
|
|
if (empty($arr['gnetwork']) || empty($arr['gaddr'])) {
|
2017-11-19 17:03:39 -05:00
|
|
|
$ret = Contact::getDetailsByURL($arr['url']);
|
2017-11-07 19:37:53 -05:00
|
|
|
|
2018-08-26 01:27:50 -04:00
|
|
|
if (empty($arr['gnetwork']) && !empty($ret['network'])) {
|
2017-11-07 19:37:53 -05:00
|
|
|
$arr['gnetwork'] = $ret['network'];
|
|
|
|
}
|
2018-08-26 01:27:50 -04:00
|
|
|
if (empty($arr['gaddr']) && !empty($ret['addr'])) {
|
2017-11-07 19:37:53 -05:00
|
|
|
$arr['gaddr'] = $ret['addr'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $arr;
|
|
|
|
}
|
|
|
|
}
|