2019-09-22 19:30:39 +02:00
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
import requests
|
|
|
|
|
|
|
|
|
|
from wo.core.fileutils import WOFileUtils
|
|
|
|
|
from wo.core.git import WOGit
|
|
|
|
|
from wo.core.logging import Log
|
|
|
|
|
from wo.core.shellexec import WOShellExec
|
|
|
|
|
from wo.core.variables import WOVariables
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class WOAcme:
|
|
|
|
|
"""Acme.sh utilities for WordOps"""
|
|
|
|
|
|
2019-09-23 01:02:44 +02:00
|
|
|
def setupletsencrypt(self, acme_domains, acmedata):
|
2019-09-30 12:38:28 +02:00
|
|
|
"""Issue SSL certificates with acme.sh"""
|
2019-09-23 01:02:44 +02:00
|
|
|
all_domains = '\' -d \''.join(acme_domains)
|
2019-09-22 19:30:39 +02:00
|
|
|
wo_acme_dns = acmedata['acme_dns']
|
2019-09-30 15:05:07 +02:00
|
|
|
keylenght = acmedata['keylength']
|
2019-09-22 19:30:39 +02:00
|
|
|
wo_acme_exec = ("/etc/letsencrypt/acme.sh --config-home "
|
|
|
|
|
"'/etc/letsencrypt/config'")
|
|
|
|
|
if acmedata['dns'] is True:
|
|
|
|
|
acme_mode = "--dns {0}".format(wo_acme_dns)
|
|
|
|
|
validation_mode = "DNS mode with {0}".format(wo_acme_dns)
|
2019-09-24 02:36:46 +02:00
|
|
|
if acmedata['dnsalias'] is True:
|
|
|
|
|
acme_mode = acme_mode + \
|
|
|
|
|
" --challenge-alias {0}".format(acmedata['acme_alias'])
|
2019-09-22 19:30:39 +02:00
|
|
|
else:
|
|
|
|
|
acme_mode = "-w /var/www/html"
|
|
|
|
|
validation_mode = "Webroot challenge"
|
|
|
|
|
Log.debug(self, "Validation : Webroot mode")
|
|
|
|
|
|
|
|
|
|
Log.info(self, "Validation mode : {0}".format(validation_mode))
|
|
|
|
|
Log.wait(self, "Issuing SSL cert with acme.sh")
|
2019-09-23 01:16:52 +02:00
|
|
|
if not WOShellExec.cmd_exec(
|
2019-09-22 19:30:39 +02:00
|
|
|
self, "{0} ".format(wo_acme_exec) +
|
|
|
|
|
"--issue -d '{0}' {1} -k {2} -f"
|
2019-09-23 01:16:52 +02:00
|
|
|
.format(all_domains, acme_mode, keylenght)):
|
2019-09-22 19:30:39 +02:00
|
|
|
Log.failed(self, "Issuing SSL cert with acme.sh")
|
|
|
|
|
if acmedata['dns'] is True:
|
|
|
|
|
Log.warn(
|
|
|
|
|
self, "Please make sure your properly "
|
|
|
|
|
"set your DNS API credentials for acme.sh")
|
|
|
|
|
else:
|
2019-09-24 01:59:49 +02:00
|
|
|
Log.error(
|
|
|
|
|
self, "Your domain is properly configured "
|
|
|
|
|
"but acme.sh was unable to issue certificate.\n"
|
|
|
|
|
"You can find more informations in "
|
|
|
|
|
"/var/log/wo/wordops.log", False)
|
2019-09-22 19:30:39 +02:00
|
|
|
return False
|
2019-09-23 01:14:59 +02:00
|
|
|
else:
|
|
|
|
|
Log.valide(self, "Issuing SSL cert with acme.sh")
|
|
|
|
|
return True
|
2019-09-22 19:30:39 +02:00
|
|
|
|
|
|
|
|
def deploycert(self, wo_domain_name):
|
|
|
|
|
wo_acme_exec = ("/etc/letsencrypt/acme.sh --config-home "
|
|
|
|
|
"'/etc/letsencrypt/config'")
|
2019-09-23 01:00:58 +02:00
|
|
|
if not os.path.isfile('/etc/letsencrypt/renewal/{0}_ecc/fullchain.cer'
|
2019-09-22 19:30:39 +02:00
|
|
|
.format(wo_domain_name)):
|
|
|
|
|
Log.error(self, 'Certificate not found. Deployment canceled')
|
|
|
|
|
|
|
|
|
|
Log.debug(self, "Cert deployment for domain: {0}"
|
|
|
|
|
.format(wo_domain_name))
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
Log.wait(self, "Deploying SSL cert")
|
|
|
|
|
if WOShellExec.cmd_exec(
|
|
|
|
|
self, "mkdir -p {0}/{1} && {2} --install-cert -d {1} --ecc "
|
|
|
|
|
"--cert-file {0}/{1}/cert.pem --key-file {0}/{1}/key.pem "
|
|
|
|
|
"--fullchain-file {0}/{1}/fullchain.pem "
|
|
|
|
|
"--ca-file {0}/{1}/ca.pem --reloadcmd \"nginx -t && "
|
|
|
|
|
"service nginx restart\" "
|
|
|
|
|
.format(WOVariables.wo_ssl_live,
|
|
|
|
|
wo_domain_name, wo_acme_exec)):
|
|
|
|
|
Log.valide(self, "Deploying SSL cert")
|
|
|
|
|
else:
|
|
|
|
|
Log.failed(self, "Deploying SSL cert")
|
|
|
|
|
Log.error(self, "Unable to deploy certificate")
|
|
|
|
|
|
|
|
|
|
if os.path.isdir('/var/www/{0}/conf/nginx'
|
|
|
|
|
.format(wo_domain_name)):
|
|
|
|
|
|
|
|
|
|
sslconf = open("/var/www/{0}/conf/nginx/ssl.conf"
|
|
|
|
|
.format(wo_domain_name),
|
|
|
|
|
encoding='utf-8', mode='w')
|
|
|
|
|
sslconf.write(
|
|
|
|
|
"listen 443 ssl http2;\n"
|
|
|
|
|
"listen [::]:443 ssl http2;\n"
|
|
|
|
|
"ssl_certificate {0}/{1}/fullchain.pem;\n"
|
|
|
|
|
"ssl_certificate_key {0}/{1}/key.pem;\n"
|
|
|
|
|
"ssl_trusted_certificate {0}/{1}/ca.pem;\n"
|
|
|
|
|
"ssl_stapling_verify on;\n"
|
|
|
|
|
.format(WOVariables.wo_ssl_live, wo_domain_name))
|
|
|
|
|
sslconf.close()
|
|
|
|
|
|
|
|
|
|
if not WOFileUtils.grep(self, '/var/www/22222/conf/nginx/ssl.conf',
|
|
|
|
|
'/etc/letsencrypt'):
|
2019-09-30 12:38:28 +02:00
|
|
|
Log.info(self, "Securing WordOps backend with current cert")
|
2019-09-22 19:30:39 +02:00
|
|
|
sslconf = open("/var/www/22222/conf/nginx/ssl.conf",
|
|
|
|
|
encoding='utf-8', mode='w')
|
|
|
|
|
sslconf.write("ssl_certificate {0}/{1}/fullchain.pem;\n"
|
|
|
|
|
"ssl_certificate_key {0}/{1}/key.pem;\n"
|
|
|
|
|
"ssl_trusted_certificate {0}/{1}/ca.pem;\n"
|
|
|
|
|
"ssl_stapling_verify on;\n"
|
|
|
|
|
.format(WOVariables.wo_ssl_live, wo_domain_name))
|
|
|
|
|
sslconf.close()
|
|
|
|
|
|
|
|
|
|
WOGit.add(self, ["/etc/letsencrypt"],
|
|
|
|
|
msg="Adding letsencrypt folder")
|
|
|
|
|
|
|
|
|
|
except IOError as e:
|
|
|
|
|
Log.debug(self, str(e))
|
|
|
|
|
Log.debug(self, "Error occured while generating "
|
|
|
|
|
"ssl.conf")
|
2019-09-24 01:59:49 +02:00
|
|
|
|
|
|
|
|
def check_dns(self, acme_domains):
|
|
|
|
|
"""Check if a list of domains point to the server IP"""
|
|
|
|
|
server_ip = requests.get('http://v4.wordops.eu/').text
|
|
|
|
|
for domain in acme_domains:
|
|
|
|
|
domain_ip = requests.get('http://v4.wordops.eu/dns/{0}/'
|
|
|
|
|
.format(domain)).text
|
|
|
|
|
if(not domain_ip == server_ip):
|
|
|
|
|
Log.warn(
|
|
|
|
|
self, "{0} is not pointing to your server IP"
|
|
|
|
|
.format(domain))
|
|
|
|
|
Log.error(
|
|
|
|
|
self, "You have to add the "
|
|
|
|
|
"proper DNS record", False)
|
|
|
|
|
return False
|
|
|
|
|
break
|
|
|
|
|
else:
|
|
|
|
|
Log.debug(self, "DNS record are properly set")
|
|
|
|
|
return True
|