2018-10-21 02:34:26 +00:00
|
|
|
<?php
|
2020-02-09 14:45:36 +00:00
|
|
|
/**
|
2021-03-29 06:40:20 +00:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 14:45:36 +00:00
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
|
|
|
*/
|
2018-10-21 02:34:26 +00:00
|
|
|
|
|
|
|
namespace Friendica;
|
|
|
|
|
2021-11-19 19:18:48 +00:00
|
|
|
use Friendica\Core\L10n;
|
2021-11-21 19:06:36 +00:00
|
|
|
use Friendica\Module\Response;
|
2021-11-20 14:38:03 +00:00
|
|
|
use Friendica\Util\Profiler;
|
|
|
|
use Psr\Log\LoggerInterface;
|
2021-11-19 19:18:48 +00:00
|
|
|
|
2018-10-21 02:34:26 +00:00
|
|
|
/**
|
|
|
|
* This mock module enable class encapsulation of legacy global function modules.
|
|
|
|
* After having provided the module file name, all the methods will behave like a normal Module class.
|
|
|
|
*
|
|
|
|
* @author Hypolite Petovan <mrpetovan@gmail.com>
|
|
|
|
*/
|
|
|
|
class LegacyModule extends BaseModule
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The module name, which is the name of the file (without the .php suffix)
|
|
|
|
* It's used to check for existence of the module functions.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2021-11-14 22:19:25 +00:00
|
|
|
private $moduleName = '';
|
|
|
|
|
2021-11-21 19:06:36 +00:00
|
|
|
public function __construct(L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, array $server, string $file_path = '', array $parameters = [])
|
2021-11-14 22:19:25 +00:00
|
|
|
{
|
2021-11-21 19:06:36 +00:00
|
|
|
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
|
2021-11-14 22:19:25 +00:00
|
|
|
|
|
|
|
$this->setModuleFile($file_path);
|
2021-11-19 19:18:48 +00:00
|
|
|
|
|
|
|
$this->runModuleFunction('init');
|
2021-11-14 22:19:25 +00:00
|
|
|
}
|
2018-10-21 02:34:26 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The only method that needs to be called, with the module/addon file name.
|
|
|
|
*
|
|
|
|
* @param string $file_path
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2018-10-21 02:34:26 +00:00
|
|
|
*/
|
2021-11-14 22:19:25 +00:00
|
|
|
private function setModuleFile($file_path)
|
2018-10-21 02:34:26 +00:00
|
|
|
{
|
2018-10-21 02:42:04 +00:00
|
|
|
if (!is_readable($file_path)) {
|
2020-01-18 21:38:31 +00:00
|
|
|
throw new \Exception(DI::l10n()->t('Legacy module file not found: %s', $file_path));
|
2018-10-21 02:34:26 +00:00
|
|
|
}
|
|
|
|
|
2021-11-14 22:19:25 +00:00
|
|
|
$this->moduleName = basename($file_path, '.php');
|
2018-10-21 02:34:26 +00:00
|
|
|
|
|
|
|
require_once $file_path;
|
|
|
|
}
|
|
|
|
|
2021-11-27 18:58:24 +00:00
|
|
|
protected function content(array $request = []): string
|
2018-10-21 02:34:26 +00:00
|
|
|
{
|
2021-11-14 22:19:25 +00:00
|
|
|
return $this->runModuleFunction('content');
|
2018-10-21 02:34:26 +00:00
|
|
|
}
|
|
|
|
|
2021-11-27 18:58:24 +00:00
|
|
|
protected function post(array $request = [], array $post = [])
|
2018-10-21 02:34:26 +00:00
|
|
|
{
|
2021-11-20 14:38:03 +00:00
|
|
|
parent::post($post);
|
|
|
|
|
2021-11-14 22:19:25 +00:00
|
|
|
$this->runModuleFunction('post');
|
2018-10-21 02:34:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Runs the module function designated by the provided suffix if it exists, the BaseModule method otherwise
|
|
|
|
*
|
|
|
|
* @param string $function_suffix
|
|
|
|
* @return string
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2018-10-21 02:34:26 +00:00
|
|
|
*/
|
2021-11-14 22:19:25 +00:00
|
|
|
private function runModuleFunction(string $function_suffix)
|
2018-10-21 02:34:26 +00:00
|
|
|
{
|
2021-11-14 22:19:25 +00:00
|
|
|
$function_name = $this->moduleName . '_' . $function_suffix;
|
2018-10-21 02:34:26 +00:00
|
|
|
|
|
|
|
if (\function_exists($function_name)) {
|
2019-12-15 21:34:11 +00:00
|
|
|
$a = DI::app();
|
2021-11-20 19:37:41 +00:00
|
|
|
return $function_name($a) ?? '';
|
2018-10-21 02:34:26 +00:00
|
|
|
}
|
2021-11-19 19:21:37 +00:00
|
|
|
|
|
|
|
return '';
|
2018-10-21 02:34:26 +00:00
|
|
|
}
|
|
|
|
}
|