CC-2166: Packaging Improvements. Moved the Zend app into airtime_mvc. It is now installed to /var/www/airtime. Storage is now set to /srv/airtime/stor. Utils are now installed to /usr/lib/airtime/utils/. Added install/airtime-dircheck.php as a simple test to see if everything is install/uninstalled correctly.

This commit is contained in:
Paul Baranowski 2011-04-14 18:55:04 -04:00
parent 514777e8d2
commit b11cbd8159
4546 changed files with 138 additions and 51 deletions

View file

@ -0,0 +1,311 @@
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Tool
* @subpackage Framework
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
/**
* @see Zend_Tool_Framework_Provider_Abstract
*/
require_once "Zend/Tool/Framework/Provider/Abstract.php";
/**
* @see Zend_Config
*/
require_once "Zend/Config.php";
/**
* @see Zend_Config_Writer_Ini
*/
require_once "Zend/Config/Writer/Ini.php";
/**
* @see Zend_Loader
*/
require_once "Zend/Loader.php";
/**
* Configuration Provider
*
* @category Zend
* @package Zend_Tool
* @package Framework
* @uses Zend_Tool_Framework_Provider_Abstract
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Config.php 20096 2010-01-06 02:05:09Z bkarwin $
*/
class Zend_Tool_Framework_System_Provider_Config extends Zend_Tool_Framework_Provider_Abstract
{
/**
* @var array
*/
protected $_levelCompleted = array();
/**
* array of specialties handled by this provider
*
* @var array
*/
protected $_specialties = array('Manifest', 'Provider');
/**
* @param string $type
*/
public function create()
{
/* @var $userConfig Zend_Tool_Framework_Client_Config */
$userConfig = $this->_registry->getConfig();
$resp = $this->_registry->getResponse();
if ($userConfig->exists()) {
require_once "Zend/Tool/Framework/Exception.php";
throw new Zend_Tool_Framework_Exception(
"A configuration already exists, cannot create a new one.");
}
$homeDirectory = $this->_detectHomeDirectory();
$writer = new Zend_Config_Writer_Ini();
$writer->setRenderWithoutSections();
$filename = $homeDirectory."/.zf.ini";
$config = array(
'php' => array(
'includepath' => get_include_path(),
),
);
$writer->write($filename, new Zend_Config($config));
$resp = $this->_registry->getResponse();
$resp->appendContent("Successfully written Zend Tool config.");
$resp->appendContent("It is located at: ".$filename);
}
/**
* @return string
*/
protected function _detectHomeDirectory()
{
$envVars = array("ZF_HOME", "HOME", "HOMEPATH");
foreach($envVars AS $env) {
$homeDirectory = getenv($env);
if ($homeDirectory != false && file_exists($homeDirectory)) {
return $homeDirectory;
}
}
require_once "Zend/Tool/Framework/Exception.php";
throw new Zend_Tool_Framework_Exception("Cannot detect user home directory, set ZF_HOME enviroment variable.");
}
/**
* Show Zend Tool User Configuration
*
* @return void
*/
public function show()
{
$userConfig = $this->_loadUserConfigIfExists();
$configArray = $userConfig->getConfigInstance()->toArray();
$resp = $this->_registry->getResponse();
$i = 0;
$tree = "";
foreach($configArray AS $k => $v) {
$i++;
$tree .= $this->_printTree($k, $v, 1, count($configArray)==$i);
}
$resp->appendContent("User Configuration: ".$userConfig->getConfigFilepath(), array("color" => "green"));
$resp->appendContent($tree, array("indention" => 2));
}
/**
*
* @param string $key
* @param string $value
* @param int $level
* @return string
*/
protected function _printTree($key, $value, $level=1, $isLast=false)
{
$this->_levelCompleted[$level] = false;
$prefix = "";
for ($i = 1; $i < $level; $i++) {
if ($this->_levelCompleted[$i] == true) {
$prefix .= " ";
} else {
$prefix .= "| ";
}
}
if ($isLast) {
$pointer = "`-- ";
} else {
$pointer = "|-- ";
}
$tree = "";
if (is_array($value)) {
$tree .= $prefix.$pointer.$key.PHP_EOL;
if ($isLast == true) {
$this->_levelCompleted[$level] = true;
}
$i = 0;
foreach ($value as $k => $v) {
$i++;
$tree .= $this->_printTree($k, $v, $level+1, (count($value)==$i));
}
} else {
$tree .= $prefix.$pointer.$key.": ".trim($value).PHP_EOL;
}
return $tree;
}
/**
* @param string $className
*/
public function enableProvider($className)
{
Zend_Loader::loadClass($className);
$reflClass = new ReflectionClass($className);
if (!in_array("Zend_Tool_Framework_Provider_Interface", $reflClass->getInterfaceNames())) {
require_once "Zend/Tool/Framework/Exception.php";
throw new Zend_Tool_Framework_Exception("Given class is not a provider");
}
$this->_doEnable($className);
}
protected function _doEnable($className)
{
$userConfig = $this->_loadUserConfigIfExists();
if (!isset($userConfig->basicloader)) {
$userConfig->basicloader = array();
}
if (!isset($userConfig->basicloader->classes)) {
$userConfig->basicloader->classes = array();
}
$providerClasses = $userConfig->basicloader->classes->toArray();
if (!in_array($className, $providerClasses)) {
if (count($providerClasses)) {
$pos = max(array_keys($providerClasses))+1;
} else {
$pos = 0;
}
$userConfig->basicloader->classes->$pos = $className;
if ($userConfig->save()) {
$this->_registry->getResponse()->appendContent(
"Provider/Manifest '".$className."' was enabled for usage with Zend Tool.",
array("color" => "green", "aligncenter" => true)
);
} else {
require_once "Zend/Tool/Framework/Exception.php";
throw new Zend_Tool_Framework_Exception(
"Could not write user configuration to persistence."
);
}
} else {
require_once "Zend/Tool/Framework/Exception.php";
throw new Zend_Tool_Framework_Exception(
"Provider/Manifest '".$className."' is already enabled."
);
}
}
/**
* @param string $className
*/
public function enableManifest($className)
{
Zend_Loader::loadClass($className);
$reflClass = new ReflectionClass($className);
if (!in_array("Zend_Tool_Framework_Manifest_Interface", $reflClass->getInterfaceNames())) {
require_once "Zend/Tool/Framework/Exception.php";
throw new Zend_Tool_Framework_Exception("Given class is not a manifest.");
}
$this->_doEnable($className);
}
/**
* @param string $className
*/
public function disableManifest($className)
{
$this->disableProvider($className);
}
/**
* @param string $className
*/
public function disableProvider($className)
{
$userConfig = $this->_loadUserConfigIfExists();
if (!isset($userConfig->basicloader)) {
$userConfig->basicloader = array();
}
if (!isset($userConfig->basicloader->classes)) {
$userConfig->basicloader->classes = array();
}
$providerClasses = $userConfig->basicloader->classes->toArray();
if (($key = array_search($className, $providerClasses)) !== false) {
unset($userConfig->basicloader->classes->$key);
if ($userConfig->save()) {
$this->_registry->getResponse()->appendContent(
"Provider/Manifest '".$className."' was disabled.",
array("color" => "green", "aligncenter" => true)
);
} else {
require_once "Zend/Tool/Framework/Exception.php";
throw new Zend_Tool_Framework_Exception(
"Could not write user configuration to persistence."
);
}
} else {
require_once "Zend/Tool/Framework/Exception.php";
throw new Zend_Tool_Framework_Exception(
"Provider/Manifest '".$className."' is not enabled."
);
}
}
/**
* @return Zend_Tool_Framework_Client_Config
*/
protected function _loadUserConfigIfExists()
{
/* @var $userConfig Zend_Tool_Framework_Client_Config */
$userConfig = $this->_registry->getConfig();
$resp = $this->_registry->getResponse();
if (!$userConfig->exists()) {
$resp->appendContent("User has no config file.", array("aligncenter" => true, "color" => array('hiWhite', 'bgRed')));
}
return $userConfig;
}
}

View file

@ -0,0 +1,114 @@
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Tool
* @subpackage Framework
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Manifest.php 20096 2010-01-06 02:05:09Z bkarwin $
*/
/**
* @see Zend_Tool_Framework_Registry_EnabledInterface
*/
require_once 'Zend/Tool/Framework/Registry/EnabledInterface.php';
/**
* @see Zend_Tool_Framework_Provider_Interface
*/
require_once 'Zend/Tool/Framework/Provider/Interface.php';
/**
* @category Zend
* @package Zend_Tool
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class Zend_Tool_Framework_System_Provider_Manifest
implements Zend_Tool_Framework_Provider_Interface, Zend_Tool_Framework_Registry_EnabledInterface
{
public function setRegistry(Zend_Tool_Framework_Registry_Interface $registry)
{
$this->_registry = $registry;
}
public function getName()
{
return 'Manifest';
}
public function show()
{
$manifestRepository = $this->_registry->getManifestRepository();
$response = $this->_registry->getResponse();
$metadataTree = array();
$longestAttrNameLen = 50;
foreach ($manifestRepository as $metadata) {
$metadataType = $metadata->getType();
$metadataName = $metadata->getName();
$metadataAttrs = $metadata->getAttributes('attributesParent');
if (!$metadataAttrs) {
$metadataAttrs = '(None)';
} else {
$metadataAttrs = urldecode(http_build_query($metadataAttrs, null, ', '));
}
if (!array_key_exists($metadataType, $metadataTree)) {
$metadataTree[$metadataType] = array();
}
if (!array_key_exists($metadataName, $metadataTree[$metadataType])) {
$metadataTree[$metadataType][$metadataName] = array();
}
if (!array_key_exists($metadataAttrs, $metadataTree[$metadataType][$metadataName])) {
$metadataTree[$metadataType][$metadataName][$metadataAttrs] = array();
}
$longestAttrNameLen = (strlen($metadataAttrs) > $longestAttrNameLen) ? strlen($metadataAttrs) : $longestAttrNameLen;
$metadataValue = $metadata->getValue();
if (is_array($metadataValue) && count($metadataValue) > 0) {
$metadataValue = urldecode(http_build_query($metadataValue, null, ', '));
} elseif (is_array($metadataValue)) {
$metadataValue = '(empty array)';
}
$metadataTree[$metadataType][$metadataName][$metadataAttrs][] = $metadataValue;
}
foreach ($metadataTree as $metadataType => $metadatasByName) {
$response->appendContent($metadataType);
foreach ($metadatasByName as $metadataName => $metadatasByAttributes) {
$response->appendContent(" " . $metadataName);
foreach ($metadatasByAttributes as $metadataAttributeName => $metadataValues) {
foreach ($metadataValues as $metadataValue) {
$string = sprintf(" %-{$longestAttrNameLen}.{$longestAttrNameLen}s : ", $metadataAttributeName)
. $metadataValue;
$response->appendContent($string);
}
}
}
}
}
}

View file

@ -0,0 +1,38 @@
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Tool
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Phpinfo.php 20096 2010-01-06 02:05:09Z bkarwin $
*/
require_once 'Zend/Tool/Framework/Provider/Interface.php';
/**
* @category Zend
* @package Zend_Tool
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class Zend_Tool_Framework_System_Provider_Phpinfo implements Zend_Tool_Framework_Provider_Interface
{
public function showAction()
{
phpinfo();
}
}

View file

@ -0,0 +1,111 @@
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Tool
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Version.php 20096 2010-01-06 02:05:09Z bkarwin $
*/
require_once 'Zend/Tool/Framework/Registry.php';
require_once 'Zend/Tool/Framework/Provider/Interface.php';
require_once 'Zend/Version.php';
/**
* Version Provider
*
* @category Zend
* @package Zend_Tool
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class Zend_Tool_Framework_System_Provider_Version
implements Zend_Tool_Framework_Provider_Interface, Zend_Tool_Framework_Registry_EnabledInterface
{
/**
* @var Zend_Tool_Framework_Registry_Interface
*/
protected $_registry = null;
const MODE_MAJOR = 'major';
const MODE_MINOR = 'minor';
const MODE_MINI = 'mini';
protected $_specialties = array('MajorPart', 'MinorPart', 'MiniPart');
public function setRegistry(Zend_Tool_Framework_Registry_Interface $registry)
{
$this->_registry = $registry;
return $this;
}
/**
* Show Action
*
* @param string $mode The mode switch can be one of: major, minor, or mini (default)
* @param bool $nameincluded
*/
public function show($mode = self::MODE_MINI, $nameIncluded = true)
{
$versionInfo = $this->_splitVersion();
switch($mode) {
case self::MODE_MINOR:
unset($versionInfo['mini']);
break;
case self::MODE_MAJOR:
unset($versionInfo['mini'], $versionInfo['minor']);
break;
}
$output = implode('.', $versionInfo);
if ($nameIncluded) {
$output = 'Zend Framework Version: ' . $output;
}
$this->_registry->response->appendContent($output);
}
public function showMajorPart($nameIncluded = true)
{
$versionNumbers = $this->_splitVersion();
$output = (($nameIncluded == true) ? 'ZF Major Version: ' : null) . $versionNumbers['major'];
$this->_registry->response->appendContent($output);
}
public function showMinorPart($nameIncluded = true)
{
$versionNumbers = $this->_splitVersion();
$output = (($nameIncluded == true) ? 'ZF Minor Version: ' : null) . $versionNumbers['minor'];
$this->_registry->response->appendContent($output);
}
public function showMiniPart($nameIncluded = true)
{
$versionNumbers = $this->_splitVersion();
$output = (($nameIncluded == true) ? 'ZF Mini Version: ' : null) . $versionNumbers['mini'];
$this->_registry->response->appendContent($output);
}
protected function _splitVersion()
{
list($major, $minor, $mini) = explode('.', Zend_Version::VERSION);
return array('major' => $major, 'minor' => $minor, 'mini' => $mini);
}
}