2011-11-02 04:29:55 +01:00
|
|
|
<?php
|
2017-11-15 15:47:28 +01:00
|
|
|
/**
|
|
|
|
* @file mod/suggest.php
|
|
|
|
*/
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-01-10 04:42:04 +01:00
|
|
|
use Friendica\Content\ContactSelector;
|
2018-01-15 15:50:06 +01:00
|
|
|
use Friendica\Content\Widget;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2017-11-08 04:57:46 +01:00
|
|
|
use Friendica\Database\DBM;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2017-12-07 15:09:28 +01:00
|
|
|
use Friendica\Model\GContact;
|
2018-01-15 03:22:39 +01:00
|
|
|
use Friendica\Model\Profile;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2017-01-09 13:14:55 +01:00
|
|
|
function suggest_init(App $a) {
|
2016-12-20 11:56:34 +01:00
|
|
|
if (! local_user()) {
|
2011-11-04 00:00:52 +01:00
|
|
|
return;
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2011-11-04 00:00:52 +01:00
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
if (x($_GET,'ignore') && intval($_GET['ignore'])) {
|
2013-01-26 20:52:21 +01:00
|
|
|
// Check if we should do HTML-based delete confirmation
|
2016-12-20 11:56:34 +01:00
|
|
|
if ($_REQUEST['confirm']) {
|
2013-01-26 20:52:21 +01:00
|
|
|
// <form> can't take arguments in its "action" parameter
|
|
|
|
// so add any arguments as hidden inputs
|
|
|
|
$query = explode_querystring($a->query_string);
|
2018-01-15 14:05:12 +01:00
|
|
|
$inputs = [];
|
2016-12-22 11:37:23 +01:00
|
|
|
foreach ($query['args'] as $arg) {
|
|
|
|
if (strpos($arg, 'confirm=') === false) {
|
2013-01-26 20:52:21 +01:00
|
|
|
$arg_parts = explode('=', $arg);
|
2018-01-15 14:05:12 +01:00
|
|
|
$inputs[] = ['name' => $arg_parts[0], 'value' => $arg_parts[1]];
|
2013-01-26 20:52:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$a->page['content'] = replace_macros(get_markup_template('confirm.tpl'), [
|
2013-01-26 20:52:21 +01:00
|
|
|
'$method' => 'get',
|
2018-01-22 15:16:25 +01:00
|
|
|
'$message' => L10n::t('Do you really want to delete this suggestion?'),
|
2013-01-26 20:52:21 +01:00
|
|
|
'$extra_inputs' => $inputs,
|
2018-01-22 15:16:25 +01:00
|
|
|
'$confirm' => L10n::t('Yes'),
|
2013-01-26 20:52:21 +01:00
|
|
|
'$confirm_url' => $query['base'],
|
|
|
|
'$confirm_name' => 'confirmed',
|
2018-01-22 15:16:25 +01:00
|
|
|
'$cancel' => L10n::t('Cancel'),
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2013-01-26 20:52:21 +01:00
|
|
|
$a->error = 1; // Set $a->error so the other module functions don't execute
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Now check how the user responded to the confirmation query
|
2016-12-20 11:56:34 +01:00
|
|
|
if (!$_REQUEST['canceled']) {
|
2018-01-15 14:05:12 +01:00
|
|
|
dba::insert('gcign', ['uid' => local_user(), 'gcid' => $_GET['ignore']]);
|
2013-01-26 20:52:21 +01:00
|
|
|
}
|
2011-11-04 00:00:52 +01:00
|
|
|
}
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2011-11-04 00:00:52 +01:00
|
|
|
}
|
2015-01-08 07:59:20 +01:00
|
|
|
|
2017-01-09 13:14:55 +01:00
|
|
|
function suggest_content(App $a) {
|
2011-11-02 04:29:55 +01:00
|
|
|
|
2015-01-08 07:59:20 +01:00
|
|
|
require_once("mod/proxy.php");
|
|
|
|
|
2011-11-02 04:29:55 +01:00
|
|
|
$o = '';
|
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-11-02 04:29:55 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-26 09:32:10 +02:00
|
|
|
$_SESSION['return_url'] = System::baseUrl() . '/' . $a->cmd;
|
2011-12-18 10:44:46 +01:00
|
|
|
|
2018-01-15 15:50:06 +01:00
|
|
|
$a->page['aside'] .= Widget::findPeople();
|
|
|
|
$a->page['aside'] .= Widget::follow();
|
2011-11-02 05:27:11 +01:00
|
|
|
|
|
|
|
|
2017-12-07 15:09:28 +01:00
|
|
|
$r = GContact::suggestionQuery(local_user());
|
2011-11-02 04:29:55 +01:00
|
|
|
|
2017-11-08 04:57:46 +01:00
|
|
|
if (! DBM::is_result($r)) {
|
2018-01-22 15:16:25 +01:00
|
|
|
$o .= L10n::t('No suggestions available. If this is a new site, please try again in 24 hours.');
|
2011-11-02 04:29:55 +01:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2016-12-20 21:15:53 +01:00
|
|
|
foreach ($r as $rr) {
|
2011-12-18 10:08:32 +01:00
|
|
|
|
2017-08-26 09:32:10 +02:00
|
|
|
$connlnk = System::baseUrl() . '/follow/?url=' . (($rr['connect']) ? $rr['connect'] : $rr['url']);
|
|
|
|
$ignlnk = System::baseUrl() . '/suggest?ignore=' . $rr['id'];
|
2018-01-15 14:05:12 +01:00
|
|
|
$photo_menu = [
|
2018-01-22 15:16:25 +01:00
|
|
|
'profile' => [L10n::t("View Profile"), Profile::zrl($rr["url"])],
|
|
|
|
'follow' => [L10n::t("Connect/Follow"), $connlnk],
|
|
|
|
'hide' => [L10n::t('Ignore/Hide'), $ignlnk]
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2016-06-06 16:54:29 +02:00
|
|
|
|
2017-11-19 23:03:39 +01:00
|
|
|
$contact_details = Contact::getDetailsByURL($rr["url"], local_user(), $rr);
|
2011-12-18 10:08:32 +01:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$entry = [
|
2018-01-15 03:22:39 +01:00
|
|
|
'url' => Profile::zrl($rr['url']),
|
2015-11-06 00:47:54 +01:00
|
|
|
'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $rr['url']),
|
2015-10-18 17:12:48 +02:00
|
|
|
'img_hover' => $rr['url'],
|
2016-06-05 13:57:11 +02:00
|
|
|
'name' => $contact_details['name'],
|
|
|
|
'thumb' => proxy_url($contact_details['thumb'], false, PROXY_SIZE_THUMB),
|
2015-11-06 00:47:54 +01:00
|
|
|
'details' => $contact_details['location'],
|
2015-11-28 03:50:45 +01:00
|
|
|
'tags' => $contact_details['keywords'],
|
|
|
|
'about' => $contact_details['about'],
|
2017-11-19 23:03:39 +01:00
|
|
|
'account_type' => Contact::getAccountType($contact_details),
|
2015-10-18 17:12:48 +02:00
|
|
|
'ignlnk' => $ignlnk,
|
2015-10-17 21:25:21 +02:00
|
|
|
'ignid' => $rr['id'],
|
2018-01-22 15:16:25 +01:00
|
|
|
'conntxt' => L10n::t('Connect'),
|
2015-10-17 21:25:21 +02:00
|
|
|
'connlnk' => $connlnk,
|
2015-10-18 17:12:48 +02:00
|
|
|
'photo_menu' => $photo_menu,
|
2018-01-22 15:16:25 +01:00
|
|
|
'ignore' => L10n::t('Ignore/Hide'),
|
2018-01-10 04:42:04 +01:00
|
|
|
'network' => ContactSelector::networkToName($rr['network'], $rr['url']),
|
2015-10-18 17:12:48 +02:00
|
|
|
'id' => ++$id,
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2015-10-17 21:25:21 +02:00
|
|
|
$entries[] = $entry;
|
2011-11-02 04:29:55 +01:00
|
|
|
}
|
|
|
|
|
2015-10-18 17:12:48 +02:00
|
|
|
$tpl = get_markup_template('viewcontact_template.tpl');
|
2015-10-17 21:25:21 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$o .= replace_macros($tpl,[
|
2018-01-22 15:16:25 +01:00
|
|
|
'$title' => L10n::t('Friend Suggestions'),
|
2015-10-18 17:12:48 +02:00
|
|
|
'$contacts' => $entries,
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2015-10-17 21:25:21 +02:00
|
|
|
|
2011-11-02 04:29:55 +01:00
|
|
|
return $o;
|
|
|
|
}
|