You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
3.6 KiB
PHP
102 lines
3.6 KiB
PHP
<?php
|
|
/*
|
|
* CVM is more free software. It is licensed under the WTFPL, which
|
|
* allows you to do pretty much anything with it, without having to
|
|
* ask permission. Commercial use is allowed, and no attribution is
|
|
* required. We do politely request that you share your modifications
|
|
* to benefit other developers, but you are under no enforced
|
|
* obligation to do so :)
|
|
*
|
|
* Please read the accompanying LICENSE document for the full WTFPL
|
|
* licensing text.
|
|
*/
|
|
|
|
if(!isset($_CVM)) { die("Unauthorized."); }
|
|
|
|
$display_form = true;
|
|
|
|
if(isset($_POST['submit']))
|
|
{
|
|
if(!empty($_POST['template']))
|
|
{
|
|
try
|
|
{
|
|
$sContainer->CheckAllowed();
|
|
$sTemplate = new Template($_POST['template']);
|
|
$sTemplate->CheckAvailable();
|
|
|
|
if(isset($_POST['confirm']))
|
|
{
|
|
$sContainer->uTemplateId = $sTemplate->sId;
|
|
$sContainer->InsertIntoDatabase();
|
|
$sContainer->Reinstall();
|
|
$sContainer->Start();
|
|
|
|
$err = new CPHPErrorHandler(CPHP_ERRORHANDLER_TYPE_SUCCESS, "Reinstallation succeeded!", "Your VPS was successfully reinstalled.");
|
|
$sPageContents .= $err->Render();
|
|
}
|
|
else
|
|
{
|
|
$err = new CPHPErrorHandler(CPHP_ERRORHANDLER_TYPE_ERROR, "Reinstallation aborted", "You did not tick the checkbox at the bottom of the page. Please carefully read the warning, tick the checkbox, and try again.");
|
|
$sPageContents .= $err->Render();
|
|
}
|
|
}
|
|
catch (NotFoundException $e)
|
|
{
|
|
$err = new CPHPErrorHandler(CPHP_ERRORHANDLER_TYPE_ERROR, "Reinstallation aborted", "The template you selected does not exist (anymore). Please select a different template.");
|
|
$sPageContents .= $err->Render();
|
|
}
|
|
catch (TemplateUnavailableException $e)
|
|
{
|
|
$err = new CPHPErrorHandler(CPHP_ERRORHANDLER_TYPE_ERROR, "Reinstallation aborted", "The template you selected is not available. Please select a different template.");
|
|
$sPageContents .= $err->Render();
|
|
}
|
|
catch (ContainerReinstallException $e)
|
|
{
|
|
$err = new CPHPErrorHandler(CPHP_ERRORHANDLER_TYPE_ERROR, "Reinstallation failed", "Something went wrong during the reinstallation of your VPS. Please try again. If the reinstallation fails again, please contact support.");
|
|
$sPageContents .= $err->Render();
|
|
}
|
|
catch (ContainerStartException $e)
|
|
{
|
|
$err = new CPHPErrorHandler(CPHP_ERRORHANDLER_TYPE_WARNING, "Failed to start", "The VPS was successfully reinstalled, but it could not be started. If the issue persists, please contact support.");
|
|
$sPageContents .= $err->Render();
|
|
}
|
|
catch (ContainerSuspendedException $e)
|
|
{
|
|
$err = new CPHPErrorHandler(CPHP_ERRORHANDLER_TYPE_ERROR, "Reinstallation aborted", "You can not reinstall this VPS, because it is suspended. If you believe this is in error, please contact support.");
|
|
$sPageContents .= $err->Render();
|
|
}
|
|
catch (ContainerTerminatedException $e)
|
|
{
|
|
$err = new CPHPErrorHandler(CPHP_ERRORHANDLER_TYPE_ERROR, "Reinstallation aborted", "You can not reinstall this VPS, because it has been terminated.");
|
|
$sPageContents .= $err->Render();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$err = new CPHPErrorHandler(CPHP_ERRORHANDLER_TYPE_ERROR, "No template selected", "You did not select a template from the list. Please select a template and try again.");
|
|
$sPageContents .= $err->Render();
|
|
}
|
|
}
|
|
|
|
if($display_form === true)
|
|
{
|
|
$result = mysql_query_cached("SELECT * FROM templates WHERE `Available` = '1'");
|
|
|
|
$sTemplateList = array();
|
|
|
|
foreach($result->data as $row)
|
|
{
|
|
$sTemplate = new Template($row);
|
|
$sTemplateList[] = array(
|
|
'id' => $sTemplate->sId,
|
|
'name' => $sTemplate->sName,
|
|
'description' => $sTemplate->sDescription
|
|
);
|
|
}
|
|
|
|
$sPageContents .= Templater::InlineRender("vps.reinstall", $locale->strings, array(
|
|
'templates' => $sTemplateList
|
|
));
|
|
}
|