mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 15:40:25 +00:00
127 lines
5.4 KiB
PHP
127 lines
5.4 KiB
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
class MasterDomain
|
|
{
|
|
public $domain;
|
|
|
|
public $email;
|
|
|
|
public $country = 'US';
|
|
|
|
public $locality = 'New York';
|
|
|
|
public $organization = 'PhyrePanel';
|
|
|
|
public $domainPublic = '/var/www/html';
|
|
|
|
public $domainRoot = '/var/www';
|
|
|
|
public function __construct()
|
|
{
|
|
$generalSettings = Settings::general();
|
|
|
|
$this->domain = $generalSettings['master_domain'];
|
|
$this->email = $generalSettings['master_email'];
|
|
$this->country = $generalSettings['master_country'];
|
|
$this->locality = $generalSettings['master_locality'];
|
|
$this->organization = $generalSettings['organization_name'];
|
|
|
|
}
|
|
|
|
public function configureVirtualHost()
|
|
{
|
|
return; // TODO
|
|
$apacheVirtualHostBuilder = new \App\VirtualHosts\ApacheVirtualHostBuilder();
|
|
$apacheVirtualHostBuilder->setDomain($this->domain);
|
|
$apacheVirtualHostBuilder->setDomainPublic($this->domainPublic);
|
|
$apacheVirtualHostBuilder->setDomainRoot($this->domainRoot);
|
|
$apacheVirtualHostBuilder->setHomeRoot($this->domainRoot);
|
|
$apacheVirtualHostBuilder->setServerAdmin($this->email);
|
|
|
|
$apacheBaseConfig = $apacheVirtualHostBuilder->buildConfig();
|
|
|
|
if (!empty($apacheBaseConfig)) {
|
|
file_put_contents('/etc/apache2/sites-available/000-default.conf', $apacheBaseConfig);
|
|
shell_exec('ln -s /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-enabled/000-default.conf');
|
|
}
|
|
|
|
|
|
// install SSL
|
|
$findDomainSSLCertificate = null;
|
|
|
|
// Try to find wildcard SSL certificate
|
|
$findDomainSSLCertificateWildcard = \App\Models\DomainSslCertificate::where('domain', '*.' . $this->domain)
|
|
->where('is_wildcard', 1)
|
|
->first();
|
|
if ($findDomainSSLCertificateWildcard) {
|
|
$findDomainSSLCertificate = $findDomainSSLCertificateWildcard;
|
|
} else {
|
|
$findDomainSSL = \App\Models\DomainSslCertificate::where('domain', $this->domain)->first();
|
|
$findDomainSSLCertificate = $findDomainSSL;
|
|
}
|
|
|
|
if ($findDomainSSLCertificate) {
|
|
|
|
$certsFolderName = $findDomainSSLCertificate->domain;
|
|
$certsFolderName = str_replace('*.', 'wildcard.', $certsFolderName);
|
|
|
|
$sslCertificateFile = $this->domainRoot . '/certs/' . $certsFolderName . '/public/cert.pem';
|
|
$sslCertificateKeyFile = $this->domainRoot . '/certs/' . $certsFolderName . '/private/key.private.pem';
|
|
$sslCertificateChainFile = $this->domainRoot . '/certs/' . $certsFolderName . '/public/fullchain.pem';
|
|
|
|
if (!empty($findDomainSSLCertificate->certificate)) {
|
|
if (!is_dir($this->domainRoot . '/certs/' . $certsFolderName . '/public')) {
|
|
mkdir($this->domainRoot . '/certs/' . $certsFolderName . '/public', 0755, true);
|
|
}
|
|
file_put_contents($sslCertificateFile, $findDomainSSLCertificate->certificate);
|
|
}
|
|
if (!empty($findDomainSSLCertificate->private_key)) {
|
|
if (!is_dir($this->domainRoot . '/certs/' . $certsFolderName . '/private')) {
|
|
mkdir($this->domainRoot . '/certs/' . $certsFolderName . '/private', 0755, true);
|
|
}
|
|
file_put_contents($sslCertificateKeyFile, $findDomainSSLCertificate->private_key);
|
|
}
|
|
if (!empty($findDomainSSLCertificate->certificate_chain)) {
|
|
if (!is_dir($this->domainRoot . '/certs/' . $certsFolderName . '/public')) {
|
|
mkdir($this->domainRoot . '/certs/' . $certsFolderName . '/public', 0755, true);
|
|
}
|
|
file_put_contents($sslCertificateChainFile, $findDomainSSLCertificate->certificate_chain);
|
|
}
|
|
|
|
$apacheVirtualHostBuilder->setPort(443);
|
|
$apacheVirtualHostBuilder->setSSLCertificateFile($sslCertificateFile);
|
|
$apacheVirtualHostBuilder->setSSLCertificateKeyFile($sslCertificateKeyFile);
|
|
$apacheVirtualHostBuilder->setSSLCertificateChainFile($sslCertificateChainFile);
|
|
|
|
$apacheBaseConfigWithSSL = $apacheVirtualHostBuilder->buildConfig();
|
|
if (!empty($apacheBaseConfigWithSSL)) {
|
|
|
|
// Add SSL options conf file
|
|
$apache2SSLOptionsSample = view('actions.samples.ubuntu.apache2-ssl-options-conf')->render();
|
|
$apache2SSLOptionsFilePath = '/etc/apache2/phyre/options-ssl-apache.conf';
|
|
|
|
if (!file_exists($apache2SSLOptionsFilePath)) {
|
|
if (!is_dir('/etc/apache2/phyre')) {
|
|
mkdir('/etc/apache2/phyre');
|
|
}
|
|
file_put_contents($apache2SSLOptionsFilePath, $apache2SSLOptionsSample);
|
|
}
|
|
|
|
file_put_contents('/etc/apache2/sites-available/000-default-ssl.conf', $apacheBaseConfigWithSSL);
|
|
shell_exec('ln -s /etc/apache2/sites-available/000-default-ssl.conf /etc/apache2/sites-enabled/000-default-ssl.conf');
|
|
|
|
}
|
|
|
|
}
|
|
// End install SSL
|
|
|
|
// $indexContent = view('actions.samples.apache.html.app-index-html')->render();
|
|
// file_put_contents($this->domainPublic . '/index.html', $indexContent);
|
|
|
|
shell_exec('chown -R www-data:www-data ' . $this->domainPublic);
|
|
shell_exec('chmod -R 755 ' . $this->domainPublic);
|
|
shell_exec('systemctl restart apache2');
|
|
}
|
|
}
|