Exemplo n.º 1
0
 public function process()
 {
     $this->helper = gtpBuilder::getInstance();
     $params = $this->getProperties();
     // Gather details
     $owner = $this->getProperty('owner', false);
     if (!$owner) {
         $this->addFieldError('owner', $this->modx->lexicon('gtpbuilder.repo_owner_ns'));
         return $this->failure($this->modx->lexicon('gtpbuilder.repo_owner_ns'));
     }
     $repo = $this->getProperty('repo', false);
     if (!$repo) {
         $this->addFieldError('repo', $this->modx->lexicon('gtpbuilder.repo_ns'));
         return $this->failure($this->modx->lexicon('gtpbuilder.repo_ns'));
     }
     $branch = $this->getProperty('branch', false);
     if (!$branch) {
         $this->addFieldError('branch', $this->modx->lexicon('gtpbuilder.repo_branch_ns'));
         return $this->failure($this->modx->lexicon('gtpbuilder.repo_branch_ns'));
     }
     $username = $this->getProperty('auth_user', false);
     if ($username !== false) {
         $password = $this->getProperty('auth_pass', false);
         if (!$password) {
             $this->addFieldError('auth_pass', $this->modx->lexicon('gtpbuilder.auth_pass_ns'));
             return $this->failure($this->modx->lexicon('gtpbuilder.auth_pass_ns'));
         }
     }
     $success = gtpBuilder::buildFromGithub('Github', $owner, $repo, $branch, $username, $password);
     if ($success) {
         $this->helper->warn('Package built successfully');
         $this->helper->log('COMPLETED');
         return $this->success();
     } else {
         $this->helper->warn('Package build failed');
         $this->helper->log('COMPLETED');
         return $this->failure();
     }
 }
Exemplo n.º 2
0
 public function __construct()
 {
     $this->gtp = gtpBuilder::getInstance();
 }