getPath( 'admin_html' ) );
require_once( $mainframe->getPath( 'class' ) );
$element = mosGetParam( $_REQUEST, 'element', '' );
$client = mosGetParam( $_REQUEST, 'client', '' );
$path = $mosConfig_absolute_path . "/administrator/components/com_installer/$element/$element.php";
// ensure user has access to this function
if ( !$acl->acl_check( 'administration', 'install', 'users', $my->usertype, $element . 's', 'all' ) ) {
mosRedirect( 'index2.php', _NOT_AUTH );
}
// map the element to the required derived class
$classMap = array(
'component' => 'mosInstallerComponent',
'language' => 'mosInstallerLanguage',
'mambot' => 'mosInstallerMambot',
'module' => 'mosInstallerModule',
'template' => 'mosInstallerTemplate'
);
if (array_key_exists ( $element, $classMap )) {
require_once( $mainframe->getPath( 'installer_class', $element ) );
switch ($task) {
case 'uploadfile':
uploadPackage( $classMap[$element], $option, $element, $client );
break;
case 'installfromdir':
installFromDirectory( $classMap[$element], $option, $element, $client );
break;
case 'remove':
removeElement( $classMap[$element], $option, $element, $client );
break;
default:
$path = $mosConfig_absolute_path . "/administrator/components/com_installer/$element/$element.php";
if (file_exists( $path )) {
require $path;
} else {
echo T_('Installer not found for element')." [$element]";
}
break;
}
} else {
echo T_('Installer not available for element')." [$element]";
}
/**
* @param string The class name for the installer
* @param string The URL option
* @param string The element name
*/
function uploadPackage( $installerClass, $option, $element, $client ) {
global $mainframe;
$installer = new $installerClass();
// Check if file uploads are enabled
if (!(bool)ini_get('file_uploads')) {
HTML_installer::showInstallMessage( T_("The installer can't continue before file uploads are enabled. Please use the install from directory method."),
'Installer - Error', $installer->returnTo( $option, $element, $client ) );
exit();
}
// Check that the zlib is available
if(!extension_loaded('zlib')) {
HTML_installer::showInstallMessage( T_("The installer can't continue before zlib is installed"),
T_('Installer - Error'), $installer->returnTo( $option, $element, $client ) );
exit();
}
$userfile = mosGetParam( $_FILES, 'userfile', null );
if (!$userfile) {
HTML_installer::showInstallMessage( T_('No file selected'), T_('Upload new module - error'),
$installer->returnTo( $option, $element, $client ));
exit();
}
$userfile_name = $userfile['name'];
$msg = '';
$resultdir = uploadFile( $userfile['tmp_name'], $userfile['name'], $msg );
if ($resultdir !== false) {
if (!$installer->upload( $userfile['name'] )) {
HTML_installer::showInstallMessage( $installer->getError(), T_('Upload').' '.$element.' - '.T_('Upload Failed'),
$installer->returnTo( $option, $element, $client ) );
}
$ret = $installer->install();
HTML_installer::showInstallMessage( $installer->getError(), 'Upload '.$element.' - '.($ret ? T_('Success') : T_('Failed')),
$installer->returnTo( $option, $element, $client ) );
cleanupInstall( $userfile['name'], $installer->unpackDir() );
} else {
HTML_installer::showInstallMessage( $msg, T_('Upload').' '.$element.' - '.T_('Upload Error'),
$installer->returnTo( $option, $element, $client ) );
}
}
/**
* Install a template from a directory
* @param string The URL option
*/
function installFromDirectory( $installerClass, $option, $element, $client ) {
$userfile = mosGetParam( $_REQUEST, 'userfile', '' );
if (!$userfile) {
mosRedirect( "index2.php?option=$option&element=module", T_("Please select a directory") );
}
$installer = new $installerClass();
$path = mosPathName( $userfile );
if (!is_dir( $path )) {
$path = dirname( $path );
}
$ret = $installer->install( $path );
HTML_installer::showInstallMessage( $installer->getError(), T_('Upload new').' '.$element.' - '.($ret ? T_('Success') : T_('Error')),
$installer->returnTo( $option, $element, $client ) );
}
/**
*
* @param
*/
function removeElement( $installerClass, $option, $element, $client ) {
$cid = mosGetParam( $_REQUEST, 'cid', array(0) );
if (!is_array( $cid )) {
$cid = array(0);
}
$installer = new $installerClass();
$result = false;
if ($cid[0]) {
$result = $installer->uninstall( $cid[0], $option, $client );
}
$msg = $installer->getError();
mosRedirect( $installer->returnTo( $option, $element, $client ), $result ? T_('Success').' ' . $msg : T_('Failed').' '. $msg );
}
/**
* @param string The name of the php (temporary) uploaded file
* @param string The name of the file to put in the temp directory
* @param string The message to return
*/
function uploadFile( $filename, $userfile_name, &$msg ) {
global $mosConfig_absolute_path;
$baseDir = mosPathName( $mosConfig_absolute_path . '/media' );
if (file_exists( $baseDir )) {
if (is_writable( $baseDir )) {
if (move_uploaded_file( $filename, $baseDir . $userfile_name )) {
if (mosChmod( $baseDir . $userfile_name )) {
return true;
} else {
$msg = T_('Failed to change the permissions of the uploaded file.');
}
} else {
$msg = T_('Failed to move uploaded file to /media directory.');
}
} else {
$msg = T_('Upload failed as /media directory is not writable.');
}
} else {
$msg = T_('Upload failed as /media directory does not exist.');
}
return false;
}
?>