feat(cli) : separate cli, use templates WIP

This commit is contained in:
mrflos 2022-09-06 13:38:00 +03:00
parent a685758881
commit 8a62a447a8
6 changed files with 96 additions and 63 deletions

View file

@ -10,4 +10,11 @@ ip6='::1'
# Mysql account with enought privileges to create users and DB # Mysql account with enought privileges to create users and DB
mysqluser='root' mysqluser='root'
mysqlpassword='1 very long & secure password or passphrase!' mysqlpassword='1 very long & secure password or passphrase!'
# Services
phpservice='php8.1-fpm'
# Reserved names
maindomain='yeswiki.pro'
reservedsubdomains='www,stats,mail,sql,cron,modelesolo,modeleferme'

View file

@ -5,11 +5,12 @@
server { server {
listen [::]:80; listen [::]:80;
listen 80; listen 80;
server_name <?=$this->e($domain)?>; server_name <?php if (!$subDomain) : ?>www.<?=$this->e($domain)?> <?php endif ?><?=$this->e($domain)?>;
return 301 https://<?=$this->e($domain)?>$request_uri; return 301 https://<?=$this->e($domain)?>$request_uri;
} }
<?php if (!$subDomain) : ?>
server { server {
listen [::]:443 ssl http2; listen [::]:443 ssl http2;
listen 443 ssl http2; listen 443 ssl http2;
@ -22,11 +23,9 @@ server {
return 301 $scheme://<?=$this->e($domain)?>$request_uri; return 301 $scheme://<?=$this->e($domain)?>$request_uri;
} }
<?php endif ?>
server { server {
# listen [::]:443 ssl http2 accept_filter=dataready; # for FreeBSD
# listen 443 ssl http2 accept_filter=dataready; # for FreeBSD
listen [::]:443 ssl http2; listen [::]:443 ssl http2;
listen 443 ssl http2; listen 443 ssl http2;
@ -51,14 +50,17 @@ server {
index index.php index.html index.htm; index index.php index.html index.htm;
location / { location / {
try_files $uri $uri/ /index.php$is_args$args; <?php if (!empty($herseUser) && !empty($hersePass)) : ?>
auth_basic "Accès restreint";
auth_basic_user_file /home/<?=$this->e($user)?>/<?=$this->e($domain)?>/.htpasswd;
<?php endif ?>
try_files $uri $uri/ /index.php$is_args$args;
} }
location ~ \.php$ { location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php-fpm-<?=$this->e($user)?>.sock; fastcgi_pass unix:/var/run/php-fpm-<?=$this->e($user)?>.sock;
fastcgi_index index.php; fastcgi_index index.php;
include fastcgi.conf; include fastcgi.conf;
} }
} }

12
templates/php-fpm.php Normal file
View file

@ -0,0 +1,12 @@
[<?=$this->e($user)?>]
user = <?=$this->e($user)?>
group = <?=$this->e($user)?>
listen = /var/run/php-fpm-<?=$this->e($user)?>.sock
listen.owner = www-data
listen.group = www-data
pm = dynamic
pm.max_children = 75
pm.start_servers = 10
pm.min_spare_servers = 5
pm.max_spare_servers = 20
pm.process_idle_timeout = 10

View file

@ -39,9 +39,9 @@ function generateUserFromDomain($domain, $recursive = null)
if ($recursive == 100) { if ($recursive == 100) {
throw new Exception('Too much users found, 100 that is too much for '.$domain); throw new Exception('Too much users found, 100 that is too much for '.$domain);
} }
$user = str_split(str_replace(['yeswiki.pro', '-', '.'], '', $domain), 30)[0].$recursive; $user = str_split(str_replace([$_SERVER['maindomain'], '-', '.'], '', $domain), 30)[0].$recursive;
// try anthor username if user exists or if reserved name // try anthor username if user exists or if reserved name
if (checkIfUserExist($user) || in_array($user, ['www', 'stats', 'mail', 'sql', 'cron', 'modelesolo', 'modeleferme'])) { if (checkIfUserExist($user) || in_array($user, explode(',', $_SERVER['reservedsubdomains']))) {
if ($recursive === null) { if ($recursive === null) {
$recursive = 1; $recursive = 1;
} }
@ -104,21 +104,24 @@ function generatePassword($length = 32, $add_dashes = false, $available_sets = '
return $dash_str; return $dash_str;
} }
function createSQLUserAndDatabase($user) function createSQLUserAndDatabase($user, $type)
{ {
$pass = generatePassword(); $pass = generatePassword();
exec('mysql -u '.$_SERVER['mysqluser'].' -p'.$_SERVER['mysqlpassword'].' -e \'CREATE DATABASE IF NOT EXISTS '.$user.';\'', $output); exec('mysql -u '.$_SERVER['mysqluser'].' -p\''.$_SERVER['mysqlpassword'].'\' -e \'CREATE DATABASE IF NOT EXISTS '.$user.';\'', $output);
exec('mysql -u '.$_SERVER['mysqluser'].' -p'.$_SERVER['mysqlpassword'].' -e "CREATE USER IF NOT EXISTS \''.$user.'\'@\'localhost\' IDENTIFIED BY \''.$pass.'\';"', $output); exec('mysql -u '.$_SERVER['mysqluser'].' -p\''.$_SERVER['mysqlpassword'].'\' -e "CREATE USER IF NOT EXISTS \''.$user.'\'@\'localhost\' IDENTIFIED BY \''.$pass.'\';"', $output);
exec('mysql -u '.$_SERVER['mysqluser'].' -p'.$_SERVER['mysqlpassword'].' -e "GRANT ALL PRIVILEGES ON '.$user.'.* TO \''.$user.'\'@\'localhost\';"', $output); exec('mysql -u '.$_SERVER['mysqluser'].' -p\''.$_SERVER['mysqlpassword'].'\' -e "GRANT ALL PRIVILEGES ON '.$user.'.* TO \''.$user.'\'@\'localhost\';"', $output);
exec('mysql -u '.$_SERVER['mysqluser'].' -p'.$_SERVER['mysqlpassword'].' -e "FLUSH PRIVILEGES;"', $output); exec('mysql -u '.$_SERVER['mysqluser'].' -p\''.$_SERVER['mysqlpassword'].'\' -e "FLUSH PRIVILEGES;"', $output);
$databaseModel = ($type === 'solo') ? $_SERVER['solomodel'] : $_SERVER['fermemodel'];
exec('mysqldump -u '.$_SERVER['mysqluser'].' -p\''.$_SERVER['mysqlpassword'].'\' -v '.$databaseModel.' | mysql -u '.$user.' -p\''.$pass.'\' -D '.$user, $output);
// TODO: add first user and make him admin
return ['database' => $user, 'user' => $user, 'password' => $pass]; return ['database' => $user, 'user' => $user, 'password' => $pass];
} }
function removeMySQLUserAndDatabase($user) function removeMySQLUserAndDatabase($user)
{ {
exec('mysql -u '.$_SERVER['mysqluser'].' -p'.$_SERVER['mysqlpassword'].' -e \'DROP DATABASE IF EXISTS '.$user.';\'', $output); exec('mysql -u '.$_SERVER['mysqluser'].' -p\''.$_SERVER['mysqlpassword'].'\' -e \'DROP DATABASE IF EXISTS '.$user.';\'', $output);
exec('mysql -u '.$_SERVER['mysqluser'].' -p'.$_SERVER['mysqlpassword'].' -e "DROP USER IF EXISTS \''.$user.'\'@\'localhost\';"', $output); exec('mysql -u '.$_SERVER['mysqluser'].' -p\''.$_SERVER['mysqlpassword'].'\' -e "DROP USER IF EXISTS \''.$user.'\'@\'localhost\';"', $output);
exec('mysql -u '.$_SERVER['mysqluser'].' -p'.$_SERVER['mysqlpassword'].' -e "FLUSH PRIVILEGES;"', $output); exec('mysql -u '.$_SERVER['mysqluser'].' -p\''.$_SERVER['mysqlpassword'].'\' -e "FLUSH PRIVILEGES;"', $output);
return; return;
} }
@ -140,28 +143,60 @@ function removeUnixUser($user)
function createNginxConfig($domain, $user, $herseUser, $hersePass) function createNginxConfig($domain, $user, $herseUser, $hersePass)
{ {
// Create new Plates instance $nginxFile = '/etc/nginx/conf.d/'.$domain.'.conf';
$templates = new League\Plates\Engine('./templates'); if (empty($herseUser) && empty($hersePass)) {
// no herse needed
// Render a template } elseif (empty($herseUser) || empty($hersePass)) {
echo $templates->render('nginx-yeswiki.pro', ['domain' => $domain, 'user' => $user]); throw new Exception('You need an username AND a password to add a herse.');
} else {
addHerse($nginxFile, $herseUser, $hersePass); // add password file to domain
file_put_contents(
'/home'.'/'.$user.'/'.$domain.'/.htpasswd',
$herseUser.':'.password_hash($hersePass, PASSWORD_BCRYPT)
);
}
echo 'DIR:'.dirname(__FILE__);
$templates = new League\Plates\Engine(dirname(__FILE__).'/templates');
file_put_contents(
$nginxFile,
$templates->render(
'nginx-maindomain',
[
'domain' => $domain,
'user' => $user,
'herseUser' => $herseUser,
'hersePass' => $hersePass,
]
)
);
exec('service nginx force-reload', $output);
} }
function removeNginxConfig($domain, $user) function removeNginxConfig($domain)
{ {
$nginxFile = '/etc/nginx/conf.d/'.$domain.'.conf';
unlink($nginxFile);
exec('service nginx force-reload', $output);
} }
function createPhpFpmConfig($user) function createPhpFpmConfig($user)
{ {
$phpVersion = str_replace(['php', '-fpm'], '', $_SERVER['phpservice']);
$phpConfFile = '/etc/php/'.$phpVersion.'/fpm/pool.d/'.$user.'.conf';
$templates = new League\Plates\Engine(dirname(__FILE__).'/templates');
file_put_contents($phpConfFile, $templates->render('php-fpm', ['user' => $user]));
exec('service '.$_SERVER['phpservice'].' reload', $output);
} }
function removePhpFpmConfig($user) function removePhpFpmConfig($user)
{ {
$phpVersion = str_replace(['php', '-fpm'], '', $_SERVER['phpservice']);
$phpConfFile = '/etc/php/'.$phpVersion.'/fpm/pool.d/'.$user.'.conf';
unlink($phpConfFile);
exec('service '.$_SERVER['phpservice'].' reload', $output);
} }
function copyYesWikiFiles($domain, $user, $type) function copyYesWikiFiles($domain, $user)
{ {
$destDir = '/home'.'/'.$user.'/'.$domain; $destDir = '/home'.'/'.$user.'/'.$domain;
exec('mkdir -p '.$destDir, $output); exec('mkdir -p '.$destDir, $output);
@ -169,14 +204,6 @@ function copyYesWikiFiles($domain, $user, $type)
return; return;
} }
function copyYesWikiDatabase($user, $type)
{
$databaseModel = ($type === 'solo') ? $_SERVER['solomodel'] : $_SERVER['fermemodel'];
exec('mysql -u '.$_SERVER['mysqluser'].' -p'.$_SERVER['mysqlpassword'].' -e "DUPLICATE '.$databaseModel.' TO '.$user.';"', $output);
// TODO : handle errors
return;
}
function checkHerse($herseUser, $hersePass) function checkHerse($herseUser, $hersePass)
{ {
if (empty($herseUser) && empty($hersePass)) { if (empty($herseUser) && empty($hersePass)) {
@ -186,22 +213,3 @@ function checkHerse($herseUser, $hersePass)
} }
return true; // herse needed return true; // herse needed
} }
function addHerse(&$nginxFile, $herseUser, $hersePass)
{
if (empty($herseUser) && empty($hersePass)) {
return ; // no herse needed
} elseif (empty($herseUser) || empty($hersePass)) {
throw new Exception('You need an username AND a password to add a herse.');
} else {
//add herse to the domain
echo $nginxFile;
}
}
function removeYesWiki($domain, $user)
{
// enlever la db et le user sql
// enlever la config nginx et la conf php-fpm
// enlever le user unix et son home
}

View file

@ -75,11 +75,10 @@ if (0 == posix_getuid()) {
$input = $climate->confirm('Is it all good ?'); $input = $climate->confirm('Is it all good ?');
if ($confirm || $input->confirmed()) { if ($confirm || $input->confirmed()) {
$unixUser = createUnixUserWithQuota($user, $quota); $unixUser = createUnixUserWithQuota($user, $quota);
$dbUser = createSQLUserAndDatabase($user); $dbUser = createSQLUserAndDatabase($user, $type);
copyYesWikiFiles($domain, $user);
createNginxConfig($domain, $user, $herseUser, $hersePass); createNginxConfig($domain, $user, $herseUser, $hersePass);
createPhpFpmConfig($user); createPhpFpmConfig($user);
copyYesWikiFiles($domain, $user, $type);
copyYesWikiDatabase($user, $type);
$climate->shout( $climate->shout(
'The yeswiki was successfully installed on <bold>'.$domain.'</bold>, congrats ! 🎉'."\n" 'The yeswiki was successfully installed on <bold>'.$domain.'</bold>, congrats ! 🎉'."\n"
.' Unix user : <bold>'.$unixUser['user'].'</bold> with password : <bold>'.$unixUser['password'].'</bold> was created.'."\n" .' Unix user : <bold>'.$unixUser['user'].'</bold> with password : <bold>'.$unixUser['password'].'</bold> was created.'."\n"

View file

@ -42,10 +42,15 @@ if (0 == posix_getuid()) {
$climate->out('This will remove <bold>'.$domain.'</bold> with the user <bold>'.$user.'</bold>'."\n"); $climate->out('This will remove <bold>'.$domain.'</bold> with the user <bold>'.$user.'</bold>'."\n");
$input = $climate->confirm('Shall we really do it ?'); $input = $climate->confirm('Shall we really do it ?');
if ($confirm || $input->confirmed()) { if ($confirm || $input->confirmed()) {
removeUnixUser($user); // enlever la db et le user sql
removeNginxConfig($domain, $user);
removePhpFpmConfig($user);
removeMySQLUserAndDatabase($user); removeMySQLUserAndDatabase($user);
// enlever la config nginx et la conf php-fpm
removeNginxConfig($domain);
removePhpFpmConfig($user);
// enlever le user unix et son home
removeUnixUser($user);
$climate->shout( $climate->shout(
'The yeswiki on <bold>'.$domain.'</bold> was successfully removed, congrats ! 🎉'."\n" 'The yeswiki on <bold>'.$domain.'</bold> was successfully removed, congrats ! 🎉'."\n"
); );