mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 07:30:25 +00:00
update
This commit is contained in:
parent
801b6d5264
commit
a767683185
1 changed files with 91 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use App\ApiClient;
|
||||||
|
use App\Models\DomainSslCertificate;
|
||||||
|
use App\Settings;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
use Illuminate\Support\Facades\Route;
|
use Illuminate\Support\Facades\Route;
|
||||||
|
|
||||||
|
@ -14,6 +17,92 @@ use Illuminate\Support\Facades\Route;
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Route::middleware(['auth:sanctum'])->prefix('v1')->name('api.')->group(function () {
|
//Route::middleware(['auth:sanctum'])->prefix('v1')->name('api.')->group(function () {
|
||||||
Route::get('letsencrypt', fn (Request $request) => $request->user())->name('letsencrypt');
|
// Route::get('letsencrypt', fn (Request $request) => $request->user())->name('letsencrypt');
|
||||||
|
//});
|
||||||
|
|
||||||
|
Route::post('letsencrypt/secure', function () {
|
||||||
|
|
||||||
|
$domain = request('domain', null);
|
||||||
|
$email = request('email', null);
|
||||||
|
|
||||||
|
$findDomain = \App\Models\Domain::where('domain', $domain)->first();
|
||||||
|
if (! $findDomain) {
|
||||||
|
return response()->json(['error' => 'Domain not found'], 404);
|
||||||
|
}
|
||||||
|
|
||||||
|
$findSSL = DomainSslCertificate::where('domain', $findDomain->domain)->first();
|
||||||
|
if ($findSSL) {
|
||||||
|
return response()->json(['error' => 'Domain already secured'], 400);
|
||||||
|
}
|
||||||
|
|
||||||
|
$generalSettings = Settings::general();
|
||||||
|
|
||||||
|
$acmeConfigYaml = view('letsencrypt::actions.acme-config-yaml', [
|
||||||
|
'domain' => $event->model->domain,
|
||||||
|
'domainRoot' => $event->model->domain_root,
|
||||||
|
'domainPublic' => $event->model->domain_public,
|
||||||
|
'email' => $generalSettings['master_email'],
|
||||||
|
'country' => $generalSettings['master_country'],
|
||||||
|
'locality' => $generalSettings['master_locality'],
|
||||||
|
'organization' => $generalSettings['organization_name'],
|
||||||
|
])->render();
|
||||||
|
|
||||||
|
file_put_contents($event->model->domain_root.'/acme-config.yaml', $acmeConfigYaml);
|
||||||
|
|
||||||
|
$amePHPPharFile = base_path().'/Modules/LetsEncrypt/Actions/acmephp.phar';
|
||||||
|
|
||||||
|
$phyrePHP = ApiClient::getPhyrePHP();
|
||||||
|
|
||||||
|
$command = $phyrePHP.' '.$amePHPPharFile.' run '.$event->model->domain_root.'/acme-config.yaml';
|
||||||
|
$execSSL = shell_exec($command);
|
||||||
|
|
||||||
|
$validateCertificates = [];
|
||||||
|
$sslCertificateFilePath = '/root/.acmephp/master/certs/'.$event->model->domain.'/public/cert.pem';
|
||||||
|
$sslCertificateKeyFilePath = '/root/.acmephp/master/certs/'.$event->model->domain.'/private/key.private.pem';
|
||||||
|
$sslCertificateChainFilePath = '/root/.acmephp/master/certs/'.$event->model->domain.'/public/fullchain.pem';
|
||||||
|
|
||||||
|
if (! file_exists($sslCertificateFilePath)
|
||||||
|
|| ! file_exists($sslCertificateKeyFilePath)
|
||||||
|
|| ! file_exists($sslCertificateChainFilePath)) {
|
||||||
|
// Cant get all certificates
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$sslCertificateFileContent = file_get_contents($sslCertificateFilePath);
|
||||||
|
$sslCertificateKeyFileContent = file_get_contents($sslCertificateKeyFilePath);
|
||||||
|
$sslCertificateChainFileContent = file_get_contents($sslCertificateChainFilePath);
|
||||||
|
|
||||||
|
if (! empty($sslCertificateChainFileContent)) {
|
||||||
|
$validateCertificates['certificate'] = $sslCertificateFileContent;
|
||||||
|
}
|
||||||
|
if (! empty($sslCertificateKeyFileContent)) {
|
||||||
|
$validateCertificates['private_key'] = $sslCertificateKeyFileContent;
|
||||||
|
}
|
||||||
|
if (! empty($sslCertificateChainFileContent)) {
|
||||||
|
$validateCertificates['certificate_chain'] = $sslCertificateChainFileContent;
|
||||||
|
}
|
||||||
|
if (count($validateCertificates) !== 3) {
|
||||||
|
// Cant get all certificates
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$websiteSslCertificate = new DomainSslCertificate();
|
||||||
|
$websiteSslCertificate->domain = $event->model->domain;
|
||||||
|
$websiteSslCertificate->certificate = $validateCertificates['certificate'];
|
||||||
|
$websiteSslCertificate->private_key = $validateCertificates['private_key'];
|
||||||
|
$websiteSslCertificate->certificate_chain = $validateCertificates['certificate_chain'];
|
||||||
|
$websiteSslCertificate->customer_id = $event->model->customer_id;
|
||||||
|
$websiteSslCertificate->is_active = 1;
|
||||||
|
$websiteSslCertificate->is_wildcard = 0;
|
||||||
|
$websiteSslCertificate->is_auto_renew = 1;
|
||||||
|
$websiteSslCertificate->provider = 'letsencrypt';
|
||||||
|
$websiteSslCertificate->save();
|
||||||
|
|
||||||
|
$findDomain->configureVirtualHost();
|
||||||
|
|
||||||
|
return [
|
||||||
|
'success' => 'Domain secured successfully'
|
||||||
|
];
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue