2011-06-27 07:57:08 +02:00
|
|
|
<?php
|
2018-01-09 15:59:52 +01:00
|
|
|
/**
|
|
|
|
* @file mod/fsuggest.php
|
|
|
|
*/
|
2018-01-25 03:08:45 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-03-03 00:41:24 +01:00
|
|
|
use Friendica\Core\ACL;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2017-11-05 13:15:53 +01:00
|
|
|
use Friendica\Core\Worker;
|
2018-07-21 14:40:21 +02:00
|
|
|
use Friendica\Database\DBA;
|
2018-01-27 03:38:34 +01:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2018-01-22 13:29:50 +01:00
|
|
|
function fsuggest_post(App $a)
|
|
|
|
{
|
2016-12-20 11:56:34 +01:00
|
|
|
if (! local_user()) {
|
2011-06-27 07:57:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
if ($a->argc != 2) {
|
2011-06-27 07:57:08 +02:00
|
|
|
return;
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2011-06-27 07:57:08 +02:00
|
|
|
|
|
|
|
$contact_id = intval($a->argv[1]);
|
|
|
|
|
|
|
|
$r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
|
|
|
intval($contact_id),
|
|
|
|
intval(local_user())
|
|
|
|
);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (! DBA::isResult($r)) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Contact not found.') . EOL);
|
2011-06-27 07:57:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
$contact = $r[0];
|
|
|
|
|
|
|
|
$new_contact = intval($_POST['suggest']);
|
|
|
|
|
|
|
|
$hash = random_string();
|
|
|
|
|
|
|
|
$note = escape_tags(trim($_POST['note']));
|
|
|
|
|
2018-01-22 13:29:50 +01:00
|
|
|
if ($new_contact) {
|
2011-06-27 07:57:08 +02:00
|
|
|
$r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
|
|
|
intval($new_contact),
|
|
|
|
intval(local_user())
|
|
|
|
);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($r)) {
|
2011-06-27 07:57:08 +02:00
|
|
|
$x = q("INSERT INTO `fsuggest` ( `uid`,`cid`,`name`,`url`,`request`,`photo`,`note`,`created`)
|
|
|
|
VALUES ( %d, %d, '%s','%s','%s','%s','%s','%s')",
|
|
|
|
intval(local_user()),
|
|
|
|
intval($contact_id),
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape($r[0]['name']),
|
|
|
|
DBA::escape($r[0]['url']),
|
|
|
|
DBA::escape($r[0]['request']),
|
|
|
|
DBA::escape($r[0]['photo']),
|
|
|
|
DBA::escape($hash),
|
|
|
|
DBA::escape(DateTimeFormat::utcNow())
|
2011-06-27 07:57:08 +02:00
|
|
|
);
|
|
|
|
$r = q("SELECT `id` FROM `fsuggest` WHERE `note` = '%s' AND `uid` = %d LIMIT 1",
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape($hash),
|
2011-06-27 07:57:08 +02:00
|
|
|
intval(local_user())
|
|
|
|
);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($r)) {
|
2011-06-27 07:57:08 +02:00
|
|
|
$fsuggest_id = $r[0]['id'];
|
2014-03-11 23:52:32 +01:00
|
|
|
q("UPDATE `fsuggest` SET `note` = '%s' WHERE `id` = %d AND `uid` = %d",
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape($note),
|
2011-06-27 07:57:08 +02:00
|
|
|
intval($fsuggest_id),
|
|
|
|
intval(local_user())
|
|
|
|
);
|
2017-11-19 19:59:55 +01:00
|
|
|
Worker::add(PRIORITY_HIGH, 'Notifier', 'suggest', $fsuggest_id);
|
2011-06-27 07:57:08 +02:00
|
|
|
}
|
|
|
|
|
2018-01-21 19:33:59 +01:00
|
|
|
info(L10n::t('Friend suggestion sent.') . EOL);
|
2011-06-27 07:57:08 +02:00
|
|
|
}
|
|
|
|
}
|
2016-02-05 21:52:39 +01:00
|
|
|
}
|
2011-06-27 07:57:08 +02:00
|
|
|
|
2017-11-15 15:47:28 +01:00
|
|
|
function fsuggest_content(App $a)
|
|
|
|
{
|
2016-12-20 11:56:34 +01:00
|
|
|
if (! local_user()) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2011-06-27 07:57:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-15 15:47:28 +01:00
|
|
|
if ($a->argc != 2) {
|
2011-06-27 07:57:08 +02:00
|
|
|
return;
|
2017-11-15 15:47:28 +01:00
|
|
|
}
|
2011-06-27 07:57:08 +02:00
|
|
|
|
|
|
|
$contact_id = intval($a->argv[1]);
|
|
|
|
|
2017-11-15 15:47:28 +01:00
|
|
|
$r = q(
|
|
|
|
"SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
2011-06-27 07:57:08 +02:00
|
|
|
intval($contact_id),
|
|
|
|
intval(local_user())
|
|
|
|
);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (! DBA::isResult($r)) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Contact not found.') . EOL);
|
2011-06-27 07:57:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
$contact = $r[0];
|
|
|
|
|
2018-01-22 13:29:50 +01:00
|
|
|
$o = '<h3>' . L10n::t('Suggest Friends') . '</h3>';
|
2011-06-27 07:57:08 +02:00
|
|
|
|
2018-01-24 03:59:16 +01:00
|
|
|
$o .= '<div id="fsuggest-desc" >' . L10n::t('Suggest a friend for %s', $contact['name']) . '</div>';
|
2011-06-27 07:57:08 +02:00
|
|
|
|
2011-06-27 12:09:45 +02:00
|
|
|
$o .= '<form id="fsuggest-form" action="fsuggest/' . $contact_id . '" method="post" >';
|
2011-06-27 07:57:08 +02:00
|
|
|
|
2018-03-03 00:41:24 +01:00
|
|
|
$o .= ACL::getSuggestContactSelectHTML(
|
2017-11-15 15:47:28 +01:00
|
|
|
'suggest',
|
|
|
|
'suggest-select',
|
2018-02-26 01:47:10 +01:00
|
|
|
['size' => 4, 'exclude' => $contact_id, 'networks' => 'DFRN_ONLY', 'single' => true]
|
2017-11-15 15:47:28 +01:00
|
|
|
);
|
2011-06-27 07:57:08 +02:00
|
|
|
|
|
|
|
|
2018-01-22 13:29:50 +01:00
|
|
|
$o .= '<div id="fsuggest-submit-wrapper"><input id="fsuggest-submit" type="submit" name="submit" value="' . L10n::t('Submit') . '" /></div>';
|
2011-06-27 07:57:08 +02:00
|
|
|
$o .= '</form>';
|
|
|
|
|
|
|
|
return $o;
|
2014-03-11 23:52:32 +01:00
|
|
|
}
|