Files
webgui/plugins/dynamix.plugin.manager/scripts/multiplugin
2022-06-23 08:17:34 +02:00

44 lines
1.1 KiB
PHP
Executable File

#!/usr/bin/php -q
<?PHP
/* Copyright 2005-2022, Lime Technology
* Copyright 2012-2022, Bergware International.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*/
?>
<?
$method = $argv[1];
$plugins = explode('*',$argv[2]);
$console = empty($argv[3]) && $argv[3]!='nchan';
function write($message){
global $console;
if ($console) {
echo $message;
} else {
$nchan = curl_init();
curl_setopt_array($nchan,[
CURLOPT_URL => 'http://localhost/pub/plugins?buffer_length=0',
CURLOPT_UNIX_SOCKET_PATH => '/var/run/nginx.socket',
CURLOPT_POST => 1,
CURLOPT_POSTFIELDS => $message,
CURLOPT_RETURNTRANSFER => true
]);
curl_exec($nchan);
curl_close($nchan);
}
}
foreach ($plugins as $plugin) {
if (!$plugin) continue;
$run = popen("plugin $method $plugin",'r');
while (!feof($run)) write(fgets($run));
pclose($run);
}
?>