Browse Source

Update apt package class

feature/refactor-php
Prabuddha Chakraborty 9 years ago
parent
commit
9fa9d8a99c
  1. 32
      php/Stack_PKG/apt.php
  2. 2
      php/pkgm/package_manager.php

32
php/Stack_PKG/apt.php

@ -1,10 +1,12 @@
<?php <?php
//EasyEngine package installation using apt module. //EasyEngine package installation using apt module.
use EE_CLI\Process;
class APT extends PKG_MANAGER { class APT extends PKG_MANAGER {
protected $stack_os_scope = array('UBUNTU','DEBIAN');
private $pkg = array(); private $pkg = array();
public function __construct($data=array()) public function __construct($data=array())
{ {
@ -14,15 +16,37 @@ class APT extends PKG_MANAGER {
} }
function validate_stack_type($stacktype){
$os_type = EE_CLI\Utils\get_OS();
$flag = false;
foreach ($this->stack_os_scope as $value) {
if ($value == $os_type['DISTRIB_ID']) {
$flag = true;
return $flag;
}
}
if (!$flag) die("Configuration doesnot match with system status");
}
function install() { function install() {
$this->cmd = 'apt-get install '.$this->pkg['package_name'] ;
$this->execute_local(); $process = EE_CLI\Process::create( "apt-get install {$this->pkg['package_name']}" );
$result = $process->run();
if ( 0 !== $result->return_code ) {
//logging part here if installation fail
}
} }
private function update(){ private function update(){
$this->cmd = 'apt-get update '; $process = EE_CLI\Process::create( "apt-get update" );
$this->execute_local(); $result = $process->run();
} }

2
php/pkgm/package_manager.php

@ -7,6 +7,8 @@
abstract class PKG_MANAGER { abstract class PKG_MANAGER {
protected $stack_os_scope ;
public function __construct() {} public function __construct() {}

Loading…
Cancel
Save