2020-10-02 11:59:22 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This Software is the property of Data Development and is protected
|
|
|
|
* by copyright law - it is NOT Freeware.
|
|
|
|
*
|
|
|
|
* Any unauthorized use of this software without a valid license
|
|
|
|
* is a violation of the license agreement and will be prosecuted by
|
|
|
|
* civil and criminal law.
|
|
|
|
*
|
|
|
|
* https://www.d3data.de
|
|
|
|
*
|
|
|
|
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
|
|
|
|
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
|
|
|
|
* @link https://www.oxidmodule.com
|
|
|
|
*/
|
|
|
|
|
2021-03-15 15:17:45 +01:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
|
|
|
namespace D3\Usermanager\publicDir;
|
|
|
|
|
|
|
|
use D3\ModCfg\Application\Model\d3cliutils;
|
|
|
|
use D3\ModCfg\Application\Model\Exception\d3PreventExitException;
|
2020-12-21 10:44:49 +01:00
|
|
|
use D3\Usermanager\Application\Controller\d3usermanager_response as ResponseController;
|
|
|
|
use D3\Usermanager\Application\Model\d3usermanager as Manager;
|
2021-03-15 15:17:45 +01:00
|
|
|
use D3\Usermanager\Application\Model\Output\d3usermanager_debugoutput;
|
2021-10-04 13:52:09 +02:00
|
|
|
use Doctrine\DBAL\Exception as DoctrineException;
|
2021-03-15 15:17:45 +01:00
|
|
|
use Exception;
|
2020-12-21 10:44:49 +01:00
|
|
|
use OxidEsales\ComposerPlugin\Installer\Package\ShopPackageInstaller;
|
2020-10-02 11:59:22 +02:00
|
|
|
use OxidEsales\Eshop\Core\Config;
|
2021-03-15 15:17:45 +01:00
|
|
|
use OxidEsales\Eshop\Core\ConfigFile;
|
2020-12-21 10:44:49 +01:00
|
|
|
use OxidEsales\Eshop\Core\Registry;
|
|
|
|
use OxidEsales\Eshop\Core\Session;
|
2021-03-15 15:17:45 +01:00
|
|
|
use OxidEsales\Eshop\Core\ShopControl;
|
2020-12-21 10:44:49 +01:00
|
|
|
use OxidEsales\EshopCommunity\Internal\Container\ContainerFactory;
|
|
|
|
use OxidEsales\EshopCommunity\Internal\Framework\Module\Configuration\Bridge\ShopConfigurationDaoBridgeInterface;
|
2021-10-04 13:52:09 +02:00
|
|
|
use ReflectionException;
|
2021-03-15 15:17:45 +01:00
|
|
|
use RuntimeException;
|
2020-12-21 10:44:49 +01:00
|
|
|
use splitbrain\phpcli\CLI;
|
|
|
|
use splitbrain\phpcli\Options;
|
2020-10-02 11:59:22 +02:00
|
|
|
|
2020-12-21 10:44:49 +01:00
|
|
|
// @codeCoverageIgnoreStart
|
|
|
|
|
|
|
|
require_once(__DIR__.'/../../../../../vendor/autoload.php');
|
|
|
|
|
|
|
|
$bootstrapFileName = getenv('ESHOP_BOOTSTRAP_PATH');
|
|
|
|
if (!empty($bootstrapFileName)) {
|
|
|
|
$bootstrapFileName = realpath(trim(getenv('ESHOP_BOOTSTRAP_PATH')));
|
|
|
|
} else {
|
|
|
|
$count = 0;
|
|
|
|
$bootstrapFileName = '../../../'. ShopPackageInstaller::SHOP_SOURCE_DIRECTORY .'/bootstrap.php';
|
|
|
|
$currentDirectory = __DIR__ . '/';
|
|
|
|
while ($count < 5) {
|
|
|
|
$count++;
|
|
|
|
if (file_exists($currentDirectory . $bootstrapFileName)) {
|
|
|
|
$bootstrapFileName = $currentDirectory . $bootstrapFileName;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$bootstrapFileName = '../' . $bootstrapFileName;
|
2020-10-02 11:59:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-21 10:44:49 +01:00
|
|
|
if (!(file_exists($bootstrapFileName) && !is_dir($bootstrapFileName))) {
|
|
|
|
$items = [
|
|
|
|
"Unable to find eShop bootstrap.php file.",
|
|
|
|
"You can override the path by using ESHOP_BOOTSTRAP_PATH environment variable.",
|
|
|
|
"\n"
|
|
|
|
];
|
|
|
|
|
|
|
|
$message = implode(" ", $items);
|
|
|
|
|
|
|
|
die($message);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (false === defined('OXID_PHP_UNIT')) {
|
|
|
|
require_once($bootstrapFileName);
|
2020-10-02 11:59:22 +02:00
|
|
|
|
2020-12-21 10:44:49 +01:00
|
|
|
// required for recalculating order and generating pdf
|
|
|
|
define('OX_IS_ADMIN', true);
|
|
|
|
}
|
2020-10-02 11:59:22 +02:00
|
|
|
|
|
|
|
if (false == function_exists('isAdmin')) {
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
2021-03-15 15:17:45 +01:00
|
|
|
function isAdmin(): bool
|
2020-10-02 11:59:22 +02:00
|
|
|
{
|
|
|
|
if (defined('OX_IS_ADMIN')) {
|
|
|
|
return OX_IS_ADMIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-21 10:44:49 +01:00
|
|
|
// set language
|
2021-05-07 11:22:58 +02:00
|
|
|
$language = Registry::getLang();
|
2021-03-15 15:17:45 +01:00
|
|
|
$options = getopt('l:', ["lang:"]);
|
2021-05-07 11:22:58 +02:00
|
|
|
$searchedValue = $options ? getopt('l:', ["lang:"])['lang'] : $language->getLanguageAbbr($language->getBaseLanguage());
|
|
|
|
|
2020-12-21 10:44:49 +01:00
|
|
|
Registry::getLang()->setTplLanguage(
|
|
|
|
current(
|
|
|
|
array_filter(
|
|
|
|
Registry::getLang()->getLanguageArray(),
|
|
|
|
function ($e) use (&$searchedValue) {
|
|
|
|
return $e->abbr == $searchedValue;
|
|
|
|
}
|
|
|
|
)
|
|
|
|
)->id
|
|
|
|
);
|
2021-05-07 11:22:58 +02:00
|
|
|
|
|
|
|
if(!defined('STDIN')) define('STDIN', fopen('php://stdin', 'rb'));
|
|
|
|
if(!defined('STDOUT')) define('STDOUT', fopen('php://stdout', 'wb'));
|
|
|
|
if(!defined('STDERR')) define('STDERR', fopen('php://stderr', 'wb'));
|
|
|
|
|
2020-12-21 10:44:49 +01:00
|
|
|
// @codeCoverageIgnoreEnd
|
|
|
|
|
2021-03-15 15:17:45 +01:00
|
|
|
// ToDo: extract to separate file because of circular reference in d3usermanager_execute class
|
2020-12-21 10:44:49 +01:00
|
|
|
class d3_usermanager_cron extends CLI
|
|
|
|
{
|
|
|
|
const OPTION_VERSION = 'version';
|
|
|
|
const OPTION_QUIET = 'quiet';
|
|
|
|
const OPTION_LANG = 'lang';
|
|
|
|
|
|
|
|
const COMMAND_RUN = 'run';
|
|
|
|
const COMMAND_STATUS = 'status';
|
2020-10-02 11:59:22 +02:00
|
|
|
|
2020-12-21 10:44:49 +01:00
|
|
|
const ARGUMENT_SHOPID = 'shop id';
|
|
|
|
const ARGUMENT_CJID = 'cronjob id';
|
|
|
|
const ARGUMENT_KEY = 'key';
|
2020-10-02 11:59:22 +02:00
|
|
|
|
2020-12-21 10:44:49 +01:00
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
// there are argv setting in CLI mode only
|
|
|
|
if ($this->isCLI()) {
|
|
|
|
parent::__construct();
|
2023-01-02 10:58:57 +01:00
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
parent::__construct();
|
|
|
|
// @codeCoverageIgnoreStart
|
|
|
|
} catch (\splitbrain\phpcli\Exception $e) {
|
|
|
|
if ($e->getCode() !== \splitbrain\phpcli\Exception::E_ARG_READ) {
|
|
|
|
throw new \splitbrain\phpcli\Exception($e->getMessage(), $e->getCode());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// @codeCoverageIgnoreEnd
|
2020-12-21 10:44:49 +01:00
|
|
|
}
|
2020-10-02 11:59:22 +02:00
|
|
|
}
|
|
|
|
|
2020-12-21 10:44:49 +01:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
2021-03-15 15:17:45 +01:00
|
|
|
public function isCLI(): bool
|
2020-12-21 10:44:49 +01:00
|
|
|
{
|
2023-01-02 10:58:57 +01:00
|
|
|
return 'cli' == substr(php_sapi_name(), 0, 3);
|
2020-12-21 10:44:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Options $options
|
|
|
|
*/
|
|
|
|
protected function setup(Options $options)
|
|
|
|
{
|
|
|
|
$lang = Registry::getLang();
|
|
|
|
|
2021-03-15 15:17:45 +01:00
|
|
|
/** @var Config $config */
|
|
|
|
$config = d3GetModCfgDIC()->get( 'd3ox.usermanager.' . Config::class );
|
2020-12-21 10:44:49 +01:00
|
|
|
$sShopIdList = implode(
|
|
|
|
$lang->translateString('D3_USERMANAGER_CLI_ARGUMENT_ENCLOSER'),
|
2021-03-15 15:17:45 +01:00
|
|
|
$config->getShopIds()
|
2020-12-21 10:44:49 +01:00
|
|
|
);
|
|
|
|
$sCJIDList = implode(
|
|
|
|
$lang->translateString('D3_USERMANAGER_CLI_ARGUMENT_ENCLOSER'),
|
|
|
|
array_map(
|
|
|
|
function ($entry) {
|
|
|
|
return $entry['id'];
|
|
|
|
},
|
|
|
|
d3GetModCfgDIC()->get(Manager::class)->getAvailableCronjobIds()
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$sLangList = implode(
|
|
|
|
$lang->translateString('D3_USERMANAGER_CLI_ARGUMENT_ENCLOSER'),
|
|
|
|
array_map(
|
|
|
|
function ($e) {
|
|
|
|
return $e->abbr;
|
|
|
|
},
|
|
|
|
Registry::getLang()->getLanguageArray()
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$options->setHelp($lang->translateString('D3_USERMANAGER_CLI_HELP'));
|
|
|
|
$options->registerOption(self::OPTION_VERSION, $lang->translateString('D3_USERMANAGER_CLI_OPTION_VERSION'), 'v');
|
|
|
|
$options->registerOption(self::OPTION_QUIET, $lang->translateString('D3_USERMANAGER_CLI_OPTION_QUIET'), 'q');
|
|
|
|
$options->registerOption(self::OPTION_LANG, sprintf($lang->translateString('D3_USERMANAGER_CLI_OPTION_LANG'), $sLangList), null, 'language');
|
|
|
|
|
|
|
|
$options->registerCommand(self::COMMAND_RUN, $lang->translateString('D3_USERMANAGER_CLI_COMMAND_RUN'));
|
|
|
|
$options->registerCommand(self::COMMAND_STATUS, $lang->translateString('D3_USERMANAGER_CLI_COMMAND_STATUS'));
|
|
|
|
|
|
|
|
$options->registerArgument(self::ARGUMENT_SHOPID, sprintf($lang->translateString('D3_USERMANAGER_CLI_ARGUMENT_SHOPID'), $sShopIdList), false);
|
|
|
|
$options->registerArgument(self::ARGUMENT_CJID, sprintf($lang->translateString('D3_USERMANAGER_CLI_ARGUMENT_CJID'), $sCJIDList), false);
|
|
|
|
$options->registerArgument(self::ARGUMENT_KEY, $lang->translateString('D3_USERMANAGER_CLI_ARGUMENT_KEY'), false);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* retranslate default messages
|
|
|
|
*/
|
|
|
|
protected function parseOptions()
|
|
|
|
{
|
|
|
|
$lang = Registry::getLang();
|
2020-10-02 11:59:22 +02:00
|
|
|
|
2020-12-21 10:44:49 +01:00
|
|
|
parent::parseOptions();
|
2020-10-02 11:59:22 +02:00
|
|
|
|
2020-12-21 10:44:49 +01:00
|
|
|
$this->options->registerOption('help', $lang->translateString('D3_USERMANAGER_CLI_OPTION_HELP'), 'h');
|
|
|
|
$this->options->registerOption('no-colors', $lang->translateString('D3_USERMANAGER_CLI_OPTION_NOCOLORS'));
|
|
|
|
$this->options->registerOption('loglevel', $lang->translateString('D3_USERMANAGER_CLI_OPTION_LOGLEVELS'), null, 'level');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Options $options
|
|
|
|
*/
|
|
|
|
protected function main(Options $options)
|
|
|
|
{
|
|
|
|
if ( $options->getOpt( self::OPTION_VERSION ) ) {
|
|
|
|
$container = ContainerFactory::getInstance()->getContainer();
|
|
|
|
$shopConfiguration = $container->get(ShopConfigurationDaoBridgeInterface::class)->get();
|
|
|
|
$moduleConfiguration = $shopConfiguration->getModuleConfiguration('d3usermanager');
|
|
|
|
$this->info($moduleConfiguration->getVersion());
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( $options->getOpt( self::OPTION_QUIET ) ) {
|
|
|
|
d3GetModCfgDIC()->get('d3ox.usermanager.'.Session::class)->setVariable( 'd3usermanager_quiet', true );
|
|
|
|
}
|
|
|
|
|
|
|
|
$arguments = $options->getArgs();
|
|
|
|
$aTranslation = [];
|
2021-03-15 15:17:45 +01:00
|
|
|
$aTranslation['shp'] = $arguments[0] ?? '';
|
|
|
|
$aTranslation['cjid'] = $arguments[1] ?? '';
|
2023-01-02 10:58:57 +01:00
|
|
|
$aTranslation['key'] = $arguments[2] ?? '';
|
2020-12-21 10:44:49 +01:00
|
|
|
|
|
|
|
$_GET = array_merge( $_GET, $aTranslation );
|
|
|
|
|
|
|
|
/** @var Config $config */
|
|
|
|
$config = d3GetModCfgDIC()->get( 'd3ox.usermanager.' . Config::class );
|
|
|
|
|
|
|
|
try {
|
|
|
|
if ($aTranslation['shp']) {
|
|
|
|
if (false === in_array($aTranslation['shp'], $config->getShopIds())) {
|
|
|
|
throw new RuntimeException(Registry::getLang()->translateString('D3_USERMANAGER_CLI_COMMON_UNVALIDSHOPID'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$config->setShopId( (int) $aTranslation['shp'] );
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @var $oResponse ResponseController */
|
|
|
|
$oResponse = d3GetModCfgDIC()->get( ResponseController::class );
|
|
|
|
|
|
|
|
switch ( $options->getCmd() ) {
|
|
|
|
case self::COMMAND_RUN:
|
2021-03-15 15:17:45 +01:00
|
|
|
$oResponse->initCli();
|
2020-12-21 10:44:49 +01:00
|
|
|
if ( !$options->getOpt( self::OPTION_QUIET ) ) {
|
|
|
|
$this->success(
|
|
|
|
Registry::getLang()->translateString('D3_USERMANAGER_CLI_FINISHED_SUCCFESSFULLY')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case self::COMMAND_STATUS:
|
|
|
|
$this->info(implode(PHP_EOL, $oResponse->getLastExecDateInfo()));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// old command without 'run' task
|
|
|
|
if (false === in_array($aTranslation['cjid'], ['', false, null], true)) {
|
|
|
|
if (false === in_array($aTranslation['cjid'], array_map(
|
|
|
|
function ($entry) {
|
|
|
|
return $entry['id'];
|
|
|
|
},
|
|
|
|
d3GetModCfgDIC()->get(Manager::class)->getAvailableCronjobIds()
|
|
|
|
))
|
|
|
|
) {
|
|
|
|
throw new RuntimeException(Registry::getLang()->translateString('D3_USERMANAGER_CLI_COMMON_UNVALIDCJID'));
|
|
|
|
}
|
2021-03-15 15:17:45 +01:00
|
|
|
$oResponse->initCli();
|
2020-12-21 10:44:49 +01:00
|
|
|
if ( !$options->getOpt( self::OPTION_QUIET ) ) {
|
|
|
|
$this->success(
|
|
|
|
Registry::getLang()->translateString('D3_USERMANAGER_CLI_FINISHED_SUCCFESSFULLY')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
echo $this->translateFixedStrings( $options->help() );
|
|
|
|
}
|
|
|
|
}
|
2021-03-15 15:17:45 +01:00
|
|
|
} catch ( Exception $oEx ) {
|
2020-12-21 10:44:49 +01:00
|
|
|
if (!Registry::getSession()->getVariable('d3usermanager_quiet')) {
|
|
|
|
$this->error( $oEx->getMessage() );
|
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
/** @var Config $config */
|
|
|
|
$config = d3GetModCfgDIC()->get( 'd3ox.usermanager.' . Config::class );
|
|
|
|
// @codeCoverageIgnoreStart
|
|
|
|
if (false === defined('OXID_PHP_UNIT')) {
|
|
|
|
$config->pageClose();
|
|
|
|
}
|
|
|
|
// @codeCoverageIgnoreEnd
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* prevent code exit while coverage check
|
|
|
|
*
|
2021-10-04 13:52:09 +02:00
|
|
|
* @throws ReflectionException
|
|
|
|
* @throws DoctrineException
|
2020-12-21 10:44:49 +01:00
|
|
|
* @codeCoverageIgnore
|
|
|
|
*/
|
|
|
|
public function run()
|
|
|
|
{
|
2021-03-15 15:17:45 +01:00
|
|
|
$blDebug = (bool) Registry::get(ConfigFile::class)->getVar('iDebug');
|
|
|
|
|
|
|
|
if ($blDebug) {
|
|
|
|
$cliUtils = oxNew(d3cliutils::class);
|
|
|
|
$shopControl = oxNew(ShopControl::class);
|
|
|
|
$cliUtils->startMonitor($shopControl);
|
|
|
|
}
|
|
|
|
|
|
|
|
// run cron script from browser
|
|
|
|
if (false === $this->isCLI()) {
|
|
|
|
// browser call don't handle CLI options and arguments
|
|
|
|
/** @var $oResponse ResponseController */
|
|
|
|
$oResponse = d3GetModCfgDIC()->get( ResponseController::class );
|
|
|
|
$oResponse->init();
|
2020-12-21 10:44:49 +01:00
|
|
|
} else {
|
2021-03-15 15:17:45 +01:00
|
|
|
try {
|
|
|
|
parent::run();
|
|
|
|
} catch (d3PreventExitException $e) {}
|
|
|
|
}
|
2020-12-21 10:44:49 +01:00
|
|
|
|
2021-03-15 15:17:45 +01:00
|
|
|
if ($blDebug) {
|
|
|
|
$log = $cliUtils->profilingFormMonitorMessage($shopControl);
|
|
|
|
oxNew(d3usermanager_debugoutput::class)->output($log);
|
2020-12-21 10:44:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-15 15:17:45 +01:00
|
|
|
/**
|
|
|
|
* @throws d3PreventExitException
|
|
|
|
*/
|
|
|
|
protected function execute()
|
|
|
|
{
|
|
|
|
parent::execute();
|
|
|
|
|
|
|
|
/** @var d3PreventExitException $e */
|
|
|
|
$e = oxNew(d3PreventExitException::class);
|
|
|
|
throw $e;
|
|
|
|
}
|
|
|
|
|
2020-12-21 10:44:49 +01:00
|
|
|
/**
|
|
|
|
* @param $text
|
|
|
|
* @return string
|
|
|
|
*/
|
2021-03-15 15:17:45 +01:00
|
|
|
public function translateFixedStrings($text): string
|
2020-12-21 10:44:49 +01:00
|
|
|
{
|
|
|
|
$search = [
|
|
|
|
'This tool accepts a command as first parameter as outlined below:'
|
|
|
|
];
|
|
|
|
|
|
|
|
$replace = [
|
|
|
|
Registry::getLang()->translateString('D3_USERMANAGER_CLI_COMMAND')
|
|
|
|
];
|
|
|
|
|
|
|
|
return str_replace($search, $replace, $text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// @codeCoverageIgnoreStart
|
2021-03-15 15:17:45 +01:00
|
|
|
/** @var d3_usermanager_cron $cli */
|
|
|
|
$cli = d3GetModCfgDIC()->get(d3_usermanager_cron::class);
|
2023-01-02 10:58:57 +01:00
|
|
|
$trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
|
|
|
|
if (false === defined('OXID_PHP_UNIT') && !count($trace)) {
|
2020-12-21 10:44:49 +01:00
|
|
|
try {
|
|
|
|
$cli->run();
|
2021-03-15 15:17:45 +01:00
|
|
|
} catch ( Exception $e) {
|
2020-12-21 10:44:49 +01:00
|
|
|
$cli->error($e->getMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// @codeCoverageIgnoreEnd
|