2020-01-31 22:50:46 +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/>.
|
|
|
|
*
|
|
|
|
*/
|
2020-01-31 22:50:46 +00:00
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\Protocol;
|
|
|
|
use Friendica\Core\Renderer;
|
|
|
|
use Friendica\Core\Worker;
|
|
|
|
use Friendica\DI;
|
|
|
|
use Friendica\Model\Contact as ContactModel;
|
|
|
|
use Friendica\Network\HTTPException\ForbiddenException;
|
|
|
|
use Friendica\Network\HTTPException\NotFoundException;
|
|
|
|
use Friendica\Util\DateTimeFormat;
|
|
|
|
use Friendica\Util\Strings;
|
|
|
|
use Friendica\Worker\Delivery;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Suggest friends to a known contact
|
|
|
|
*/
|
|
|
|
class FriendSuggest extends BaseModule
|
|
|
|
{
|
|
|
|
public static function init(array $parameters = [])
|
|
|
|
{
|
2020-01-31 22:51:11 +00:00
|
|
|
if (!local_user()) {
|
2020-01-31 22:50:46 +00:00
|
|
|
throw new ForbiddenException(DI::l10n()->t('Permission denied.'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function post(array $parameters = [])
|
|
|
|
{
|
|
|
|
$cid = intval($parameters['contact']);
|
|
|
|
|
|
|
|
// We do query the "uid" as well to ensure that it is our contact
|
|
|
|
if (!DI::dba()->exists('contact', ['id' => $cid, 'uid' => local_user()])) {
|
|
|
|
throw new NotFoundException(DI::l10n()->t('Contact not found.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$suggest_contact_id = intval($_POST['suggest']);
|
|
|
|
if (empty($suggest_contact_id)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We do query the "uid" as well to ensure that it is our contact
|
|
|
|
$contact = DI::dba()->selectFirst('contact', ['name', 'url', 'request', 'avatar'], ['id' => $suggest_contact_id, 'uid' => local_user()]);
|
|
|
|
if (empty($contact)) {
|
|
|
|
notice(DI::l10n()->t('Suggested contact not found.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$note = Strings::escapeHtml(trim($_POST['note'] ?? ''));
|
|
|
|
|
|
|
|
$suggest = DI::fsuggest()->insert([
|
2020-01-31 22:51:11 +00:00
|
|
|
'uid' => local_user(),
|
|
|
|
'cid' => $cid,
|
|
|
|
'name' => $contact['name'],
|
|
|
|
'url' => $contact['url'],
|
2020-01-31 22:50:46 +00:00
|
|
|
'request' => $contact['request'],
|
2020-01-31 22:51:11 +00:00
|
|
|
'photo' => $contact['avatar'],
|
|
|
|
'note' => $note,
|
2020-01-31 22:50:46 +00:00
|
|
|
'created' => DateTimeFormat::utcNow()
|
|
|
|
]);
|
|
|
|
|
|
|
|
Worker::add(PRIORITY_HIGH, 'Notifier', Delivery::SUGGESTION, $suggest->id);
|
|
|
|
|
|
|
|
info(DI::l10n()->t('Friend suggestion sent.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function content(array $parameters = [])
|
|
|
|
{
|
|
|
|
$cid = intval($parameters['contact']);
|
|
|
|
|
|
|
|
$contact = DI::dba()->selectFirst('contact', [], ['id' => $cid, 'uid' => local_user()]);
|
|
|
|
if (empty($contact)) {
|
|
|
|
notice(DI::l10n()->t('Contact not found.'));
|
|
|
|
DI::baseUrl()->redirect();
|
|
|
|
}
|
|
|
|
|
2020-01-31 22:51:11 +00:00
|
|
|
$contacts = ContactModel::selectToArray(['id', 'name'], [
|
2020-01-31 23:27:46 +00:00
|
|
|
'`uid` = ?
|
|
|
|
AND `id` != ?
|
|
|
|
AND `network` = ?
|
|
|
|
AND NOT `self`
|
|
|
|
AND NOT `blocked`
|
|
|
|
AND NOT `pending`
|
|
|
|
AND NOT `archive`
|
|
|
|
AND NOT `deleted`
|
|
|
|
AND `notify` != ""',
|
2020-01-31 22:50:46 +00:00
|
|
|
local_user(),
|
|
|
|
$cid,
|
|
|
|
Protocol::DFRN,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$formattedContacts = [];
|
|
|
|
|
2020-01-31 22:51:11 +00:00
|
|
|
foreach ($contacts as $contact) {
|
2020-01-31 22:50:46 +00:00
|
|
|
$formattedContacts[$contact['id']] = $contact['name'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('fsuggest.tpl');
|
|
|
|
return Renderer::replaceMacros($tpl, [
|
2020-01-31 22:51:11 +00:00
|
|
|
'$contact_id' => $cid,
|
|
|
|
'$fsuggest_title' => DI::l10n()->t('Suggest Friends'),
|
2020-01-31 22:50:46 +00:00
|
|
|
'$fsuggest_select' => [
|
|
|
|
'suggest',
|
|
|
|
DI::l10n()->t('Suggest a friend for %s', $contact['name']),
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
$formattedContacts,
|
|
|
|
],
|
2020-01-31 22:51:11 +00:00
|
|
|
'$submit' => DI::l10n()->t('Submit'),
|
2020-01-31 22:50:46 +00:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|