Last active
December 13, 2015 19:09
-
-
Save raphaeldealmeida/4960621 to your computer and use it in GitHub Desktop.
A improvement for ZFTool works with proxy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace ZFTool\Model; | |
use Zend\Code\Generator\ValueGenerator; | |
class Skeleton | |
{ | |
const SKELETON_URL = 'https://github.com/zendframework/ZendSkeletonApplication/archive/master.zip'; | |
const API_LAST_COMMIT = 'https://api.github.com/repos/zendframework/ZendSkeletonApplication/commits?per_page=1'; | |
const SKELETON_FILE = 'ZF2SA'; | |
protected static $valueGenerator; | |
/** | |
* Get the last commit data of the ZendSkeletonApplication github repository | |
* | |
* @return array|boolean | |
*/ | |
public static function getLastCommit() | |
{ | |
$content = json_decode(@file_get_contents(self::API_LAST_COMMIT, false, self::getContextProxy()), true); | |
if (is_array($content)) { | |
return $content[0]; | |
} | |
return false; | |
} | |
/** | |
* Download the ZF2 Skeleton Application as .zip in a file | |
* | |
* @param string $file | |
* @return boolean | |
*/ | |
public static function getSkeletonApp($file) | |
{ | |
$content = @file_get_contents(self::SKELETON_URL, false, self::getContextProxy()); | |
if (empty($content)) { | |
return false; | |
} | |
return (file_put_contents($file, $content) !== false); | |
} | |
/** | |
* Get the most updated .zip skeleton file in $dir | |
* | |
* @param string $dir | |
* @return string | |
*/ | |
public static function getLastZip($dir) | |
{ | |
$files = glob("$dir/" . self::SKELETON_FILE . "_*.zip"); | |
$last = 0; | |
$file = ''; | |
foreach ($files as $f) { | |
if (filemtime($f) > $last) { | |
$file = $f; | |
} | |
} | |
return $file; | |
} | |
/** | |
* Get the .zip file name based on the last commit | |
* | |
* @param string $dir | |
* @param array $commit | |
* @return string | |
*/ | |
public static function getTmpFileName($dir, $commit) | |
{ | |
$filename = ''; | |
if (is_array($commit) && isset($commit['sha'])) { | |
$filename = $dir . '/' . self::SKELETON_FILE . '_' . $commit['sha'] . '.zip'; | |
} | |
return $filename; | |
} | |
/** | |
* Export the $config array in a human readable format | |
* | |
* @param array $config | |
* @param integer $space the initial indentation value | |
* @return string | |
*/ | |
public static function exportConfig($config, $indent = 0) | |
{ | |
if (empty(static::$valueGenerator)) { | |
static::$valueGenerator = new ValueGenerator(); | |
} | |
static::$valueGenerator->setValue($config); | |
static::$valueGenerator->setArrayDepth($indent); | |
return static::$valueGenerator; | |
} | |
/** | |
* Return the Module.php content | |
* | |
* @param string $name | |
* @return string | |
*/ | |
public static function getModule($name) | |
{ | |
return <<<EOD | |
<?php | |
namespace $name; | |
class Module | |
{ | |
public function getConfig() | |
{ | |
return include __DIR__ . '/config/module.config.php'; | |
} | |
public function getAutoloaderConfig() | |
{ | |
return array( | |
'Zend\Loader\StandardAutoloader' => array( | |
'namespaces' => array( | |
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__, | |
), | |
), | |
); | |
} | |
} | |
EOD; | |
} | |
/** | |
* | |
* @param type $name | |
* @return type | |
*/ | |
public static function getModuleConfig($name) | |
{ | |
return <<<EOD | |
<?php | |
return array( | |
); | |
EOD; | |
} | |
public static function getContextProxy() | |
{ | |
$proxyURL = getenv('HTTP_PROXY'); | |
if($proxyURL) { | |
$config_env = explode('@', $proxyURL); | |
$auth = base64_encode(str_replace('http://', '', $config_env[0])); | |
$aContext = array( | |
'http' => array( | |
'proxy' => 'tcp://' . $config_env[1], | |
'request_fulluri' => true, | |
'header' => "Proxy-Authorization: Basic $auth", | |
), | |
); | |
return stream_context_create($aContext); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment