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