Files
webgui/plugins/dynamix.docker.manager/scripts/dockerupdate.php
Eric Schultz 30ca111094 initial commit
2015-10-24 10:17:28 -07:00

53 lines
1.6 KiB
PHP
Executable File

#!/usr/bin/php
<?PHP
/* Copyright 2015, Lime Technology
* Copyright 2015, Guilherme Jardim, Eric Schultz, Jon Panozzo.
*
* 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.
*/
?>
<?
require_once("/usr/local/emhttp/plugins/dynamix.docker.manager/include/DockerClient.php");
$docker = new DockerTemplates();
foreach ($argv as $arg) {
switch ($arg) {
case '-v' : $docker->verbose = true; break;
case 'check': $check = true; break;}
}
if (!isset($check)) {
echo " Updating templates... ";
$docker->downloadTemplates();
echo " Updating info... ";
$docker->getAllInfo(true);
echo " Done.";
} else {
require_once("/usr/local/emhttp/webGui/include/Wrappers.php");
$client = new DockerClient();
$update = new DockerUpdate();
$notify = "/usr/local/emhttp/webGui/scripts/notify";
$unraid = parse_plugin_cfg("dynamix",true);
$server = strtoupper($var['NAME']);
$output = $unraid['notify']['docker_notify'];
$list = $client->getDockerContainers();
$info = $docker->getAllInfo();
foreach ($list as $ct) {
$name = $ct['Name'];
$image = $ct['Image'];
if ($info[$name]['updated'] == "false") {
$new = $update->getRemoteVersion($docker->getTemplateValue($image, "Registry"), $image);
exec("$notify -e 'Docker - $name [$new]' -s 'Notice [$server] - Docker update $new' -d 'A new version of $name is available' -i 'normal $output' -x");
}
}
}
exit(0);
?>