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
|
|
|
|
*/
|
|
|
|
|
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;
|
|
|
|
use Doctrine\DBAL\DBALException;
|
|
|
|
use Exception as ExceptionAlias;
|
|
|
|
use OxidEsales\ComposerPlugin\Installer\Package\ShopPackageInstaller;
|
2020-10-02 11:59:22 +02:00
|
|
|
use OxidEsales\Eshop\Core\Config;
|
2020-12-21 10:44:49 +01:00
|
|
|
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
|
|
|
|
use OxidEsales\Eshop\Core\Exception\DatabaseErrorException;
|
|
|
|
use OxidEsales\Eshop\Core\Registry;
|
|
|
|
use OxidEsales\Eshop\Core\Session;
|
|
|
|
use OxidEsales\EshopCommunity\Internal\Container\ContainerFactory;
|
|
|
|
use OxidEsales\EshopCommunity\Internal\Framework\Module\Configuration\Bridge\ShopConfigurationDaoBridgeInterface;
|
|
|
|
use splitbrain\phpcli\CLI;
|
|
|
|
use splitbrain\phpcli\Exception;
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
function isAdmin()
|
|
|
|
{
|
|
|
|
if (defined('OX_IS_ADMIN')) {
|
|
|
|
return OX_IS_ADMIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-21 10:44:49 +01:00
|
|
|
// set language
|
|
|
|
$searchedValue = getopt(null, ["lang:"])['lang'];
|
|
|
|
Registry::getLang()->setTplLanguage(
|
|
|
|
current(
|
|
|
|
array_filter(
|
|
|
|
Registry::getLang()->getLanguageArray(),
|
|
|
|
function ($e) use (&$searchedValue) {
|
|
|
|
return $e->abbr == $searchedValue;
|
|
|
|
}
|
|
|
|
)
|
|
|
|
)->id
|
|
|
|
);
|
|
|
|
// @codeCoverageIgnoreEnd
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
2020-10-02 11:59:22 +02:00
|
|
|
}
|
|
|
|
|
2020-12-21 10:44:49 +01:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isCLI()
|
|
|
|
{
|
|
|
|
return 'cli' == php_sapi_name();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Options $options
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
protected function setup(Options $options)
|
|
|
|
{
|
|
|
|
$lang = Registry::getLang();
|
|
|
|
|
|
|
|
$sShopIdList = implode(
|
|
|
|
$lang->translateString('D3_USERMANAGER_CLI_ARGUMENT_ENCLOSER'),
|
|
|
|
Registry::getConfig()->getShopIds()
|
|
|
|
);
|
|
|
|
$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
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
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 = [];
|
|
|
|
$aTranslation['shp'] = isset( $arguments[0] ) ? $arguments[0] : '';
|
|
|
|
$aTranslation['cjid'] = isset( $arguments[1] ) ? $arguments[1] : '';
|
|
|
|
$aTranslation['key'] = isset( $arguments[2] ) ? $arguments[2] : '';
|
|
|
|
|
|
|
|
$_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:
|
|
|
|
$oResponse->init();
|
|
|
|
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'));
|
|
|
|
}
|
|
|
|
$oResponse->init();
|
|
|
|
if ( !$options->getOpt( self::OPTION_QUIET ) ) {
|
|
|
|
$this->success(
|
|
|
|
Registry::getLang()->translateString('D3_USERMANAGER_CLI_FINISHED_SUCCFESSFULLY')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
echo $this->translateFixedStrings( $options->help() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch ( \Exception $oEx ) {
|
|
|
|
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
|
|
|
|
*
|
|
|
|
* @codeCoverageIgnore
|
|
|
|
* @throws DBALException
|
|
|
|
* @throws DatabaseConnectionException
|
|
|
|
* @throws DatabaseErrorException
|
|
|
|
* @throws ExceptionAlias
|
|
|
|
*/
|
|
|
|
public function run()
|
|
|
|
{
|
|
|
|
if (false === defined('OXID_PHP_UNIT')) {
|
|
|
|
// 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();
|
|
|
|
} else {
|
|
|
|
parent::run();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (false === $this->isCLI()) {
|
|
|
|
throw new Exception(Registry::getLang()->translateString('D3_USERMANAGER_CLI_COMMON_RUNFROMCLI'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->setup($this->options);
|
|
|
|
$this->registerDefaultOptions();
|
|
|
|
$this->parseOptions();
|
|
|
|
$this->handleDefaultOptions();
|
|
|
|
$this->setupLogging();
|
|
|
|
$this->checkArgments();
|
|
|
|
$this->execute();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $text
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function translateFixedStrings($text)
|
|
|
|
{
|
|
|
|
$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
|
|
|
|
$cli = new d3_usermanager_cron();
|
|
|
|
if (false === defined('OXID_PHP_UNIT')) {
|
|
|
|
try {
|
|
|
|
$cli->run();
|
|
|
|
} catch ( ExceptionAlias $e) {
|
|
|
|
$cli->error($e->getMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// @codeCoverageIgnoreEnd
|