2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
2008-02-25 03:10:37 +01:00
|
|
|
/**
|
2008-12-01 02:15:27 +01:00
|
|
|
* Base class invoked from CLI rather than the webserver (Cron jobs, handling email bounces).
|
|
|
|
* You can call subclasses of CliController directly, which will trigger a
|
|
|
|
* call to {@link process()} on every sub-subclass. For instance, calling
|
|
|
|
* "sake DailyTask" from the commandline will call {@link process()} on every subclass
|
|
|
|
* of DailyTask.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2008-02-25 03:10:37 +01:00
|
|
|
* @subpackage cron
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
abstract class CliController extends Controller {
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-03-21 19:48:54 +01:00
|
|
|
private static $allowed_actions = array(
|
2011-02-13 23:14:51 +01:00
|
|
|
'index'
|
|
|
|
);
|
2010-05-25 04:58:59 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function init() {
|
2009-02-02 00:49:53 +01:00
|
|
|
parent::init();
|
|
|
|
// Unless called from the command line, all CliControllers need ADMIN privileges
|
2010-05-25 04:58:59 +02:00
|
|
|
if(!Director::is_cli() && !Permission::check("ADMIN")) {
|
|
|
|
return Security::permissionFailure();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function index() {
|
2010-05-25 04:58:59 +02:00
|
|
|
foreach(ClassInfo::subclassesFor($this->class) as $subclass) {
|
|
|
|
echo $subclass . "\n";
|
|
|
|
$task = new $subclass();
|
2008-12-01 02:15:27 +01:00
|
|
|
$task->init();
|
2010-05-25 04:58:59 +02:00
|
|
|
$task->process();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-01 02:15:27 +01:00
|
|
|
/**
|
|
|
|
* Overload this method to contain the task logic.
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function process() {}
|
2009-02-02 00:49:53 +01:00
|
|
|
|
2012-03-24 04:04:52 +01:00
|
|
|
}
|