forked from friendica/friendica-addons
add procrunner - 1/2 of poormancron
This commit is contained in:
parent
f77cb8f890
commit
03fc4eb116
BIN
extcron.tgz
BIN
extcron.tgz
Binary file not shown.
|
@ -5,7 +5,7 @@
|
||||||
* Name: external cron
|
* Name: external cron
|
||||||
* Description: Use external server or service to run poller regularly
|
* Description: Use external server or service to run poller regularly
|
||||||
* Version: 1.0
|
* Version: 1.0
|
||||||
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
|
* Author: Mike Macgirvin <https://macgirvin.com/profile/mike>
|
||||||
*
|
*
|
||||||
* Notes: External service needs to make a web request to http(s)://yoursite/extcron
|
* Notes: External service needs to make a web request to http(s)://yoursite/extcron
|
||||||
*/
|
*/
|
||||||
|
|
BIN
fbpost.tgz
BIN
fbpost.tgz
Binary file not shown.
BIN
procrunner.tgz
Normal file
BIN
procrunner.tgz
Normal file
Binary file not shown.
53
procrunner/procrunner.php
Executable file
53
procrunner/procrunner.php
Executable file
|
@ -0,0 +1,53 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Name: Proc Runner
|
||||||
|
* Description: Derivative of poormancron when proc_open() and exec() are disabled
|
||||||
|
* Version: 1.0
|
||||||
|
* Author: Fabio Comuni <http://kirgroup.com/profile/fabrix>
|
||||||
|
* Author: Mike Macgirvin
|
||||||
|
*/
|
||||||
|
|
||||||
|
function procrunner_install() {
|
||||||
|
|
||||||
|
$addons = get_config('system','addon');
|
||||||
|
if(strstr('poormancron',$addons)) {
|
||||||
|
logger('procrunner incompatible with poormancron. Not installing procrunner.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// check for command line php
|
||||||
|
$a = get_app();
|
||||||
|
$ex = Array();
|
||||||
|
$ex[0] = ((x($a->config,'php_path')) && (strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
|
||||||
|
$ex[1] = dirname(dirname(dirname(__file__)))."/testargs.php";
|
||||||
|
$ex[2] = "test";
|
||||||
|
$out = exec(implode(" ", $ex));
|
||||||
|
if ($out==="test") {
|
||||||
|
logger('procrunner not required on this system. Not installing.');
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
register_hook('proc_run', 'addon/procrunner/procrunner.php','procrunner_procrun');
|
||||||
|
logger("installed procrunner");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function procrunner_uninstall() {
|
||||||
|
unregister_hook('proc_run', 'addon/procrunner/procrunner.php','procrunner_procrun');
|
||||||
|
logger("removed procrunner");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
function procrunner_procrun(&$a, &$arr) {
|
||||||
|
|
||||||
|
$argv = $arr['args'];
|
||||||
|
$arr['run_cmd'] = false;
|
||||||
|
logger("procrunner procrun ".implode(", ",$argv));
|
||||||
|
array_shift($argv);
|
||||||
|
$argc = count($argv);
|
||||||
|
logger("procrunner procrun require_once ".basename($argv[0]));
|
||||||
|
require_once(basename($argv[0]));
|
||||||
|
$funcname=str_replace(".php", "", basename($argv[0]))."_run";
|
||||||
|
$funcname($argv, $argc);
|
||||||
|
}
|
Loading…
Reference in a new issue