2011-06-27 01:57:08 -04:00
|
|
|
<?php
|
2018-01-09 09:59:52 -05:00
|
|
|
/**
|
|
|
|
* @file mod/fsuggest.php
|
|
|
|
*/
|
2018-01-24 21:08:45 -05:00
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2018-03-02 18:41:24 -05:00
|
|
|
use Friendica\Core\ACL;
|
2018-01-21 13:33:59 -05:00
|
|
|
use Friendica\Core\L10n;
|
2017-11-05 07:15:53 -05:00
|
|
|
use Friendica\Core\Worker;
|
2018-07-21 08:40:21 -04:00
|
|
|
use Friendica\Database\DBA;
|
2018-01-26 21:38:34 -05:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-11-08 08:45:46 -05:00
|
|
|
use Friendica\Util\Strings;
|
2019-06-10 10:19:24 -04:00
|
|
|
use Friendica\Worker\Delivery;
|
2016-02-07 09:11:34 -05:00
|
|
|
|
2018-01-22 07:29:50 -05:00
|
|
|
function fsuggest_post(App $a)
|
|
|
|
{
|
2019-05-19 04:54:26 -04:00
|
|
|
if (!local_user()) {
|
2011-06-27 01:57:08 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-20 05:56:34 -05:00
|
|
|
if ($a->argc != 2) {
|
2011-06-27 01:57:08 -04:00
|
|
|
return;
|
2016-12-20 05:56:34 -05:00
|
|
|
}
|
2011-06-27 01:57:08 -04:00
|
|
|
|
|
|
|
$contact_id = intval($a->argv[1]);
|
2019-05-19 04:54:26 -04:00
|
|
|
if (empty($contact_id)) {
|
|
|
|
return;
|
|
|
|
}
|
2011-06-27 01:57:08 -04:00
|
|
|
|
2019-05-19 13:59:37 -04:00
|
|
|
// We do query the "uid" as well to ensure that it is our contact
|
|
|
|
if (!DBA::exists('contact', ['id' => $contact_id, 'uid' => local_user()])) {
|
2018-01-21 13:33:59 -05:00
|
|
|
notice(L10n::t('Contact not found.') . EOL);
|
2011-06-27 01:57:08 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-05-19 13:59:37 -04:00
|
|
|
$suggest_contact_id = intval($_POST['suggest']);
|
|
|
|
if (empty($suggest_contact_id)) {
|
2019-05-19 04:54:26 -04:00
|
|
|
return;
|
|
|
|
}
|
2011-06-27 01:57:08 -04:00
|
|
|
|
2019-05-19 13:59:37 -04:00
|
|
|
// We do query the "uid" as well to ensure that it is our contact
|
|
|
|
$contact = DBA::selectFirst('contact', ['name', 'url', 'request', 'avatar'], ['id' => $suggest_contact_id, 'uid' => local_user()]);
|
|
|
|
if (!DBA::isResult($contact)) {
|
|
|
|
notice(L10n::t('Suggested contact not found.') . EOL);
|
2019-05-19 04:54:26 -04:00
|
|
|
return;
|
|
|
|
}
|
2011-06-27 01:57:08 -04:00
|
|
|
|
2019-10-15 09:01:17 -04:00
|
|
|
$note = Strings::escapeHtml(trim($_POST['note'] ?? ''));
|
2019-05-19 13:59:37 -04:00
|
|
|
|
2019-05-19 04:54:26 -04:00
|
|
|
$fields = ['uid' => local_user(),'cid' => $contact_id, 'name' => $contact['name'],
|
|
|
|
'url' => $contact['url'], 'request' => $contact['request'],
|
2019-05-19 13:59:37 -04:00
|
|
|
'photo' => $contact['avatar'], 'note' => $note, 'created' => DateTimeFormat::utcNow()];
|
2019-05-19 04:54:26 -04:00
|
|
|
DBA::insert('fsuggest', $fields);
|
2011-06-27 01:57:08 -04:00
|
|
|
|
2019-06-10 10:19:24 -04:00
|
|
|
Worker::add(PRIORITY_HIGH, 'Notifier', Delivery::SUGGESTION, DBA::lastInsertId());
|
2019-05-19 04:54:26 -04:00
|
|
|
|
|
|
|
info(L10n::t('Friend suggestion sent.') . EOL);
|
2016-02-05 15:52:39 -05:00
|
|
|
}
|
2011-06-27 01:57:08 -04:00
|
|
|
|
2017-11-15 09:47:28 -05:00
|
|
|
function fsuggest_content(App $a)
|
|
|
|
{
|
2016-12-20 05:56:34 -05:00
|
|
|
if (! local_user()) {
|
2018-01-21 13:33:59 -05:00
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2011-06-27 01:57:08 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-15 09:47:28 -05:00
|
|
|
if ($a->argc != 2) {
|
2011-06-27 01:57:08 -04:00
|
|
|
return;
|
2017-11-15 09:47:28 -05:00
|
|
|
}
|
2011-06-27 01:57:08 -04:00
|
|
|
|
|
|
|
$contact_id = intval($a->argv[1]);
|
|
|
|
|
2019-01-07 13:23:14 -05:00
|
|
|
$contact = DBA::selectFirst('contact', [], ['id' => $contact_id, 'uid' => local_user()]);
|
|
|
|
if (! DBA::isResult($contact)) {
|
2018-01-21 13:33:59 -05:00
|
|
|
notice(L10n::t('Contact not found.') . EOL);
|
2011-06-27 01:57:08 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-22 07:29:50 -05:00
|
|
|
$o = '<h3>' . L10n::t('Suggest Friends') . '</h3>';
|
2011-06-27 01:57:08 -04:00
|
|
|
|
2018-01-23 21:59:16 -05:00
|
|
|
$o .= '<div id="fsuggest-desc" >' . L10n::t('Suggest a friend for %s', $contact['name']) . '</div>';
|
2011-06-27 01:57:08 -04:00
|
|
|
|
2011-06-27 06:09:45 -04:00
|
|
|
$o .= '<form id="fsuggest-form" action="fsuggest/' . $contact_id . '" method="post" >';
|
2011-06-27 01:57:08 -04:00
|
|
|
|
2018-03-02 18:41:24 -05:00
|
|
|
$o .= ACL::getSuggestContactSelectHTML(
|
2017-11-15 09:47:28 -05:00
|
|
|
'suggest',
|
|
|
|
'suggest-select',
|
2018-02-25 19:47:10 -05:00
|
|
|
['size' => 4, 'exclude' => $contact_id, 'networks' => 'DFRN_ONLY', 'single' => true]
|
2017-11-15 09:47:28 -05:00
|
|
|
);
|
2011-06-27 01:57:08 -04:00
|
|
|
|
|
|
|
|
2018-01-22 07:29:50 -05:00
|
|
|
$o .= '<div id="fsuggest-submit-wrapper"><input id="fsuggest-submit" type="submit" name="submit" value="' . L10n::t('Submit') . '" /></div>';
|
2011-06-27 01:57:08 -04:00
|
|
|
$o .= '</form>';
|
|
|
|
|
|
|
|
return $o;
|
2014-03-11 18:52:32 -04:00
|
|
|
}
|