forked from zer.ooo/web
commit
c0df1d3b31
File diff suppressed because one or more lines are too long
@ -0,0 +1,83 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
|
namespace Eater\Glim\Handler\Panel\ConfigBuilder;
|
||||||
|
|
||||||
|
use Eater\Glim\Handler\Session;
|
||||||
|
use Eater\Glim\Model\Certificate;
|
||||||
|
use Eater\Glim\Model\CertificateQuery;
|
||||||
|
use Eater\Glim\Model\Server;
|
||||||
|
use Eater\Glim\Model\ServerQuery;
|
||||||
|
|
||||||
|
class Action extends Session
|
||||||
|
{
|
||||||
|
public function handle()
|
||||||
|
{
|
||||||
|
$zipFile = tempnam(sys_get_temp_dir(), '0zip');
|
||||||
|
$zip = new \ZipArchive();
|
||||||
|
$zip->open($zipFile, \ZipArchive::CREATE);
|
||||||
|
$server = ServerQuery::create()->findOneByFingerprint($this->post('fingerprint'));
|
||||||
|
$name = $server->getFqdn();
|
||||||
|
|
||||||
|
$this->fillZipWithCaAndConfig($zip, $server);
|
||||||
|
|
||||||
|
$cert = $this->post('cert');
|
||||||
|
|
||||||
|
if ($cert !== null) {
|
||||||
|
$certModel = CertificateQuery::create()->findOneByUserAndName($this->getUser(), $cert);
|
||||||
|
$this->addClientCertificateData($zip, $certModel);
|
||||||
|
|
||||||
|
$name .= '-' . $certModel->getName() . '.' . $certModel->getSerial();
|
||||||
|
}
|
||||||
|
|
||||||
|
$zip->close();
|
||||||
|
|
||||||
|
$zipContents = file_get_contents($zipFile);
|
||||||
|
unlink($zipFile);
|
||||||
|
|
||||||
|
return $this->getResponse()
|
||||||
|
->withHeader('Content-Type', 'application/zip')
|
||||||
|
->withHeader('Content-Disposition', 'attachment; filename="' . $name . '.zip"')
|
||||||
|
->write($zipContents);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param \ZipArchive $zip
|
||||||
|
* @param Server $server
|
||||||
|
*/
|
||||||
|
public function fillZipWithCaAndConfig($zip, $server)
|
||||||
|
{
|
||||||
|
$config = $this->getConfigForServerFingerprint($server);
|
||||||
|
$zip->addFromString('server.conf', $config);
|
||||||
|
$zip->addFromString('ca.crt', file_get_contents($this->getCore()->getBaseDir() . '/storage/ca/ca.crt'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Server $server
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getConfigForServerFingerprint($server)
|
||||||
|
{
|
||||||
|
/** @var \Twig_Environment $twig */
|
||||||
|
$twig = $this->get('twig');
|
||||||
|
|
||||||
|
$config = $twig->render('etc/openvpn-client.conf.twig', [
|
||||||
|
'server' => $server
|
||||||
|
]);
|
||||||
|
|
||||||
|
return $config;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param \ZipArchive $zip
|
||||||
|
* @param Certificate $cert
|
||||||
|
*/
|
||||||
|
public function addClientCertificateData($zip, $cert)
|
||||||
|
{
|
||||||
|
$zip->addFromString('client.crt', $cert->getCertificate());
|
||||||
|
|
||||||
|
if ($cert->hasPrivateKey()) {
|
||||||
|
$zip->addFromString('client.key', $cert->getPrivateKey());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
|
namespace Eater\Glim\Handler\Panel\ConfigBuilder;
|
||||||
|
|
||||||
|
|
||||||
|
use Eater\Glim\Handler\Panel;
|
||||||
|
use Eater\Glim\Model\ServerQuery;
|
||||||
|
|
||||||
|
class Show extends Panel
|
||||||
|
{
|
||||||
|
public function handle()
|
||||||
|
{
|
||||||
|
$servers = ServerQuery::create()->filterByStatus('signed')->find();
|
||||||
|
|
||||||
|
return $this->render(
|
||||||
|
'panel/config_builder.html.twig',
|
||||||
|
[
|
||||||
|
'servers' => $servers
|
||||||
|
]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Created by PhpStorm.
|
||||||
|
* User: eater
|
||||||
|
* Date: 4/10/16
|
||||||
|
* Time: 9:30 PM
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Eater\Glim\Handler\Panel\Servers;
|
||||||
|
|
||||||
|
|
||||||
|
use Eater\Glim\Handler\Panel;
|
||||||
|
use Eater\Glim\Model\ServerQuery;
|
||||||
|
|
||||||
|
class Show extends Panel
|
||||||
|
{
|
||||||
|
protected $shouldHaveSuperuser = true;
|
||||||
|
|
||||||
|
public function handle()
|
||||||
|
{
|
||||||
|
$server = ServerQuery::create()->findOneByFingerprint($this->attr('fingerprint'));
|
||||||
|
|
||||||
|
if ($server === null) {
|
||||||
|
return $this->getResponse()->withStatus(404);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->render(
|
||||||
|
"panel/servers/show.html.twig",
|
||||||
|
[
|
||||||
|
'server' => $server
|
||||||
|
]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,26 @@
|
|||||||
|
{% extends "panel.html.twig" %}
|
||||||
|
|
||||||
|
{% block panel_contents %}
|
||||||
|
<h1 class="title">Config builder</h1>
|
||||||
|
<form target="_blank" action="/panel/config-builder" method="post" class="form">
|
||||||
|
<div class="row">
|
||||||
|
<label for="server">Server</label>
|
||||||
|
<select name="fingerprint" id="server">
|
||||||
|
{% for server in servers %}
|
||||||
|
<option value="{{ server.getFingerprint() }}">{{ server.getFqdn() }}</option>
|
||||||
|
{% endfor %}
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<label for="certificate">Certificate</label>
|
||||||
|
<select name="cert" id="certificate">
|
||||||
|
{% for certificate in user.getActiveCertificates() %}
|
||||||
|
<option value="{{ certificate.getName() }}">{{ certificate.getName() }}</option>
|
||||||
|
{% endfor %}
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
<div class="buttons">
|
||||||
|
<button type="submit">Build</button>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
{% endblock %}
|
@ -0,0 +1,49 @@
|
|||||||
|
{% extends "panel.html.twig" %}
|
||||||
|
|
||||||
|
{% block panel_contents %}
|
||||||
|
<h1 class="title">Server '{{ server.getFqdn() }}'</h1>
|
||||||
|
<div class="server-form" data-fingerprint="{{ server.getFingerprint() }}">
|
||||||
|
<div class="row">
|
||||||
|
<label for="fqdn">Hostname</label>
|
||||||
|
<label>{{ server.getFqdn() }}</label>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<label for="external-ip">External IP</label>
|
||||||
|
<label>{{ server.getExternalIp() }}</label>
|
||||||
|
</div>
|
||||||
|
<h2>Details</h2>
|
||||||
|
<div class="row">
|
||||||
|
<label for="location">Location</label>
|
||||||
|
<label>{{ server.getLocation() }}</label>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<label for="speed">Speed</label>
|
||||||
|
<label>{{ server.getSpeed() }}</label>
|
||||||
|
</div>
|
||||||
|
<h2>Config</h2>
|
||||||
|
<div class="row">
|
||||||
|
<label for="internal-ip">Internal IP</label>
|
||||||
|
<label>{{ server.getInternalIp() }}</label>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<label>Netmask</label>
|
||||||
|
<label>{{ server.getNetmask() }}</label>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<label>Port</label>
|
||||||
|
<label>{{ server.getPort() }}</label>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<label>Protocol</label>
|
||||||
|
<label>{{ server.getProtocol() }}</label>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<label for="first-dns">first DNS</label>
|
||||||
|
<label>{{ server.getFirstDns() }}</label>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<label class="control-label col-md-4" for="second-dns">second DNS</label>
|
||||||
|
<label>{{ server.getSecondDns() }}</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
Loading…
Reference in New Issue