summaryrefslogtreecommitdiff
path: root/src/Module/AptModule.php
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2021-04-18 15:09:51 +0200
committerDaniel Weipert <code@drogueronin.de>2021-04-18 15:09:51 +0200
commitc0ebe78089121c0ad23efb0af32c435bee543a3c (patch)
treedb5e9205bcd7181cfa41543ee8962e9d84cdb481 /src/Module/AptModule.php
Initial commit
Diffstat (limited to 'src/Module/AptModule.php')
-rw-r--r--src/Module/AptModule.php48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/Module/AptModule.php b/src/Module/AptModule.php
new file mode 100644
index 0000000..ff4cb95
--- /dev/null
+++ b/src/Module/AptModule.php
@@ -0,0 +1,48 @@
+<?php
+
+namespace PHPIAC\Module;
+
+use phpseclib3\Net\SSH2;
+
+class AptModule implements ModuleInterface
+{
+ public function __construct(
+ private string $package,
+ private string $state = State::PRESENT
+ ) {}
+
+ public function checkState(): bool
+ {
+ global $ssh;
+ /**@var SSH2 $ssh*/
+ $ssh->enablePTY();
+ $ssh->exec("which $this->package");
+
+ if ($this->state === State::PRESENT) {
+ $state = ! empty($ssh->read());
+ }
+ else if ($this->state === State::ABSENT) {
+ $state = empty($ssh->read());
+ }
+
+ $ssh->disablePTY();
+
+ return $state;
+ }
+
+ public function getCommands(): array
+ {
+ if ($this->state === State::PRESENT) {
+ return [
+ "sudo apt install -y $this->package",
+ ];
+ }
+ else if ($this->state === State::ABSENT) {
+ return [
+ "sudo apt remove -y $this->package",
+ ];
+ }
+
+ return [];
+ }
+}