friendica/mod/suggest.php

59 lines
1.8 KiB
PHP
Raw Normal View History

2011-11-02 04:29:55 +01:00
<?php
/**
2022-01-02 08:27:47 +01:00
* @copyright Copyright (C) 2010-2022, the Friendica project
*
* @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/>.
*
*/
use Friendica\App;
use Friendica\Content\Widget;
use Friendica\Core\Renderer;
use Friendica\Database\DBA;
use Friendica\DI;
2017-12-07 15:04:24 +01:00
use Friendica\Model\Contact;
use Friendica\Module\Contact as ModuleContact;
2020-07-31 19:58:25 +02:00
use Friendica\Network\HTTPException;
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
}
$_SESSION['return_path'] = DI::args()->getCommand();
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());
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.');
}
$entries = [];
foreach ($contacts as $contact) {
2020-07-31 06:28:26 +02:00
$entries[] = ModuleContact::getContactTemplateVars($contact);
2011-11-02 04:29:55 +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,[
'$title' => DI::l10n()->t('Friend Suggestions'),
'$contacts' => $entries,
]);
2011-11-02 04:29:55 +01:00
}