cli_dispatch.phpsh:带有Extbase存储库注入的Cli-Script

时间:2016-07-21 12:23:38

标签: typo3 extbase typo3-6.2.x

所以,我有一个像这样调用的脚本:

./cli_dispatch.phpsh varnish_instance_update update 123.4.5.6,45.29.102.3

基本上,它会获取应在数据库中更新的IP列表。

<?php

namespace Bene\VarnishInstanceUpdate\Cli;

if (!defined('TYPO3_cliMode')) {
    die('You cannot run this script directly!');
}

class Updater {

    /**
     * console arguments
     *
     * @var array
     */
    protected $args;

    /**
     * @var \Mittwald\Varnishcache\Domain\Repository\ServerRepository
     * @inject
     */
    protected $serverRepository;

    function __construct() {

        $this->args = $_SERVER['argv'];
        $this->clearServers();

    }

    function clearServers() {
        $this->serverRepository->removeAll();
    }

}

$instance = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('\\Bene\\VarnishInstanceUpdate\\Cli\\Updater');

不幸的是,这将以“致命错误:在null上调用成员函数removeAll()”错误结束。它与findAll(),count(),add()等相同。

我如何获得对extbase方法的访问权限?我错过了什么?

编辑:(某种)解决方案

感谢Jost,我得到了它的工作,有点。

<?php

namespace Bene\VarnishInstanceUpdate\Command;
use \TYPO3\CMS\Extbase\Mvc\Controller\CommandController;

if (!defined('TYPO3_cliMode')) {
    die('You cannot run this script directly!');
}

class UpdateCommandController extends CommandController {

    /**
     * @var \Mittwald\Varnishcache\Domain\Repository\ServerRepository
     * @inject
     */
    protected $serverRepository;

    /**
     * Clears the server table
     */
    function clearServersCommand() {
        $this->serverRepository->removeAll();
    }

}

在ext_localconf.php中

if (TYPO3_MODE === 'BE') {
    $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['extbase']['commandControllers'][$_EXTKEY] =
        \Bene\VarnishInstanceUpdate\Command\UpdateCommandController::class;
}

你这样称呼它:

./cli_dispatch.phpsh extbase update:clearservers

但是:removeAll()使用findAll(),它需要一个需要TypoScript配置才能工作的storagePid。我想这是一个跟进问题。

1 个答案:

答案 0 :(得分:3)

您可能无法通过ObjectManager获取Updater实例,因此不会进行依赖注入。

要解决此问题,您应该将脚本实现为CommandController。它与ActionControllers类似,here是如何做到的。然后,您可以使用脚本作为调度程序任务以及cli脚本,并使用自动参数解析。对于CLI执行,请检查

的输出
./cli_dispatch.phpsh extbase help

获取可用任务及其参数的列表。

为了更方便地使用CLI,您还可以使用扩展名typo3_console