2011-11-02 04:29:55 +01:00
|
|
|
<?php
|
2017-11-15 15:47:28 +01:00
|
|
|
/**
|
2020-02-09 16:18:46 +01: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/>.
|
|
|
|
*
|
2017-11-15 15:47:28 +01:00
|
|
|
*/
|
2018-07-20 04:15:21 +02:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-01-15 15:50:06 +01:00
|
|
|
use Friendica\Content\Widget;
|
2018-10-31 15:35:50 +01:00
|
|
|
use Friendica\Core\Renderer;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-16 00:28:31 +01:00
|
|
|
use Friendica\DI;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2020-07-31 05:55:01 +02:00
|
|
|
use Friendica\Module\Contact as ModuleContact;
|
2020-07-31 19:58:25 +02:00
|
|
|
use Friendica\Network\HTTPException;
|
2015-01-08 07:59:20 +01:00
|
|
|
|
2018-07-31 04:06:22 +02:00
|
|
|
function suggest_content(App $a)
|
|
|
|
{
|
2020-07-31 19:58:25 +02:00
|
|
|
if (!local_user()) {
|
|
|
|
throw new HTTPException\ForbiddenException(DI::l10n()->t('Permission denied.'));
|
2011-11-02 04:29:55 +01:00
|
|
|
}
|
|
|
|
|
2019-12-16 01:33:13 +01:00
|
|
|
$_SESSION['return_path'] = DI::args()->getCommand();
|
2011-12-18 10:44:46 +01:00
|
|
|
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['aside'] .= Widget::findPeople();
|
|
|
|
DI::page()['aside'] .= Widget::follow();
|
2011-11-02 05:27:11 +01:00
|
|
|
|
2020-08-04 06:47:02 +02:00
|
|
|
$contacts = Contact\Relation::getSuggestions(local_user());
|
2020-07-30 16:08:32 +02:00
|
|
|
if (!DBA::isResult($contacts)) {
|
2020-07-31 19:58:25 +02:00
|
|
|
return DI::l10n()->t('No suggestions available. If this is a new site, please try again in 24 hours.');
|
2019-05-02 03:13:33 +02:00
|
|
|
}
|
|
|
|
|
2019-01-07 18:51:48 +01:00
|
|
|
$entries = [];
|
2020-07-30 16:08:32 +02:00
|
|
|
foreach ($contacts as $contact) {
|
2020-07-31 06:28:26 +02:00
|
|
|
$entries[] = ModuleContact::getContactTemplateVars($contact);
|
2011-11-02 04:29:55 +01:00
|
|
|
}
|
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl');
|
2015-10-17 21:25:21 +02:00
|
|
|
|
2020-07-31 19:58:25 +02:00
|
|
|
return Renderer::replaceMacros($tpl,[
|
2020-01-18 20:52:34 +01:00
|
|
|
'$title' => DI::l10n()->t('Friend Suggestions'),
|
2015-10-18 17:12:48 +02:00
|
|
|
'$contacts' => $entries,
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2011-11-02 04:29:55 +01:00
|
|
|
}
|