2017-10-06 05:38:33 +08:00
from flask import Flask
from flask_restful import Resource , Api
2017-10-06 16:20:40 +08:00
from flask import jsonify
2017-11-04 03:26:09 +08:00
from flask import request
2017-10-27 17:22:39 +08:00
from threading import Thread
[Docker API] Use TLS encryption for communication with "on-the-fly" created key paris (non-exposed)
[Docker API] Create pipe to pass Rspamd UI worker password
[Dovecot] Pull Spamassassin ruleset to be read by Rspamd (MANY THANKS to Peer Heinlein!)
[Dovecot] Garbage collector for deleted maildirs (set keep time via MAILDIR_GC_TIME which defaults to 1440 minutes)
[Web] Flush memcached after mailbox item changes, fixes #1808
[Web] Fix duplicate IDs, fixes #1792
[Compose] Use SQL sockets
[PHP-FPM] Update APCu and Redis libs
[Dovecot] Encrypt maildir with global key pair in crypt-vol-1 (BACKUP!), also fixes #1791
[Web] Fix deletion of spam aliases
[Helper] Add "crypt" to backup script
[Helper] Override file for external SQL socket (not supported!)
[Compose] New images for Rspamd, PHP-FPM, SOGo, Dovecot, Docker API, Watchdog, ACME, Postfix
2018-09-30 04:01:23 +08:00
from OpenSSL import crypto
2017-10-06 16:20:40 +08:00
import docker
[Docker API] Use TLS encryption for communication with "on-the-fly" created key paris (non-exposed)
[Docker API] Create pipe to pass Rspamd UI worker password
[Dovecot] Pull Spamassassin ruleset to be read by Rspamd (MANY THANKS to Peer Heinlein!)
[Dovecot] Garbage collector for deleted maildirs (set keep time via MAILDIR_GC_TIME which defaults to 1440 minutes)
[Web] Flush memcached after mailbox item changes, fixes #1808
[Web] Fix duplicate IDs, fixes #1792
[Compose] Use SQL sockets
[PHP-FPM] Update APCu and Redis libs
[Dovecot] Encrypt maildir with global key pair in crypt-vol-1 (BACKUP!), also fixes #1791
[Web] Fix deletion of spam aliases
[Helper] Add "crypt" to backup script
[Helper] Override file for external SQL socket (not supported!)
[Compose] New images for Rspamd, PHP-FPM, SOGo, Dovecot, Docker API, Watchdog, ACME, Postfix
2018-09-30 04:01:23 +08:00
import uuid
2017-10-27 17:22:39 +08:00
import signal
import time
2017-12-09 20:15:24 +08:00
import os
import re
import sys
[Docker API] Use TLS encryption for communication with "on-the-fly" created key paris (non-exposed)
[Docker API] Create pipe to pass Rspamd UI worker password
[Dovecot] Pull Spamassassin ruleset to be read by Rspamd (MANY THANKS to Peer Heinlein!)
[Dovecot] Garbage collector for deleted maildirs (set keep time via MAILDIR_GC_TIME which defaults to 1440 minutes)
[Web] Flush memcached after mailbox item changes, fixes #1808
[Web] Fix duplicate IDs, fixes #1792
[Compose] Use SQL sockets
[PHP-FPM] Update APCu and Redis libs
[Dovecot] Encrypt maildir with global key pair in crypt-vol-1 (BACKUP!), also fixes #1791
[Web] Fix deletion of spam aliases
[Helper] Add "crypt" to backup script
[Helper] Override file for external SQL socket (not supported!)
[Compose] New images for Rspamd, PHP-FPM, SOGo, Dovecot, Docker API, Watchdog, ACME, Postfix
2018-09-30 04:01:23 +08:00
import ssl
import socket
2017-10-06 05:38:33 +08:00
2017-12-02 06:41:37 +08:00
docker_client = docker . DockerClient ( base_url = ' unix://var/run/docker.sock ' , version = ' auto ' )
2017-10-06 05:38:33 +08:00
app = Flask ( __name__ )
api = Api ( app )
2017-10-06 16:20:40 +08:00
class containers_get ( Resource ) :
2017-10-27 17:22:39 +08:00
def get ( self ) :
containers = { }
2017-11-04 03:26:09 +08:00
try :
2017-12-11 16:43:01 +08:00
for container in docker_client . containers . list ( all = True ) :
2017-11-04 03:26:09 +08:00
containers . update ( { container . attrs [ ' Id ' ] : container . attrs } )
return containers
except Exception as e :
2018-02-01 20:38:42 +08:00
return jsonify ( type = ' danger ' , msg = str ( e ) )
2017-10-06 05:38:33 +08:00
2017-10-06 16:20:40 +08:00
class container_get ( Resource ) :
2017-10-27 17:22:39 +08:00
def get ( self , container_id ) :
if container_id and container_id . isalnum ( ) :
2017-11-04 03:26:09 +08:00
try :
2017-12-11 16:43:01 +08:00
for container in docker_client . containers . list ( all = True , filters = { " id " : container_id } ) :
2017-11-04 03:26:09 +08:00
return container . attrs
except Exception as e :
2018-02-01 20:38:42 +08:00
return jsonify ( type = ' danger ' , msg = str ( e ) )
2017-10-27 17:22:39 +08:00
else :
2017-11-04 03:26:09 +08:00
return jsonify ( type = ' danger ' , msg = ' no or invalid id defined ' )
2017-10-06 05:38:33 +08:00
2017-10-06 16:20:40 +08:00
class container_post ( Resource ) :
2017-10-27 17:22:39 +08:00
def post ( self , container_id , post_action ) :
if container_id and container_id . isalnum ( ) and post_action :
if post_action == ' stop ' :
try :
2017-12-11 16:43:01 +08:00
for container in docker_client . containers . list ( all = True , filters = { " id " : container_id } ) :
2017-10-27 17:22:39 +08:00
container . stop ( )
2017-11-04 03:26:09 +08:00
return jsonify ( type = ' success ' , msg = ' command completed successfully ' )
except Exception as e :
2018-02-01 20:38:42 +08:00
return jsonify ( type = ' danger ' , msg = str ( e ) )
2017-11-04 03:26:09 +08:00
2017-10-27 17:22:39 +08:00
elif post_action == ' start ' :
try :
2017-12-11 16:43:01 +08:00
for container in docker_client . containers . list ( all = True , filters = { " id " : container_id } ) :
2017-10-27 17:22:39 +08:00
container . start ( )
2017-11-04 03:26:09 +08:00
return jsonify ( type = ' success ' , msg = ' command completed successfully ' )
except Exception as e :
2018-02-01 20:38:42 +08:00
return jsonify ( type = ' danger ' , msg = str ( e ) )
2017-11-04 03:26:09 +08:00
2017-10-27 17:22:39 +08:00
elif post_action == ' restart ' :
try :
2017-12-11 16:43:01 +08:00
for container in docker_client . containers . list ( all = True , filters = { " id " : container_id } ) :
2017-10-27 17:22:39 +08:00
container . restart ( )
2017-11-04 03:26:09 +08:00
return jsonify ( type = ' success ' , msg = ' command completed successfully ' )
except Exception as e :
2018-02-01 20:38:42 +08:00
return jsonify ( type = ' danger ' , msg = str ( e ) )
2017-11-04 03:26:09 +08:00
elif post_action == ' exec ' :
if not request . json or not ' cmd ' in request . json :
return jsonify ( type = ' danger ' , msg = ' cmd is missing ' )
2018-02-22 16:21:37 +08:00
if request . json [ ' cmd ' ] == ' df ' and request . json [ ' dir ' ] :
2017-11-04 03:26:09 +08:00
try :
2017-12-11 16:43:01 +08:00
for container in docker_client . containers . list ( filters = { " id " : container_id } ) :
2018-02-22 16:21:37 +08:00
# Should be changed to be able to validate a path
directory = re . sub ( ' [^0-9a-zA-Z/]+ ' , ' ' , request . json [ ' dir ' ] )
df_return = container . exec_run ( [ " /bin/bash " , " -c " , " /bin/df -H " + directory + " | /usr/bin/tail -n1 | /usr/bin/tr -s [:blank:] | /usr/bin/tr ' ' ' , ' " ] , user = ' nobody ' )
if df_return . exit_code == 0 :
return df_return . output . rstrip ( )
else :
return " 0,0,0,0,0,0 "
except Exception as e :
return jsonify ( type = ' danger ' , msg = str ( e ) )
elif request . json [ ' cmd ' ] == ' sieve_list ' and request . json [ ' username ' ] :
try :
for container in docker_client . containers . list ( filters = { " id " : container_id } ) :
sieve_return = container . exec_run ( [ " /bin/bash " , " -c " , " /usr/local/bin/doveadm sieve list -u ' " + request . json [ ' username ' ] . replace ( " ' " , " ' \\ ' ' " ) + " ' " ] , user = ' vmail ' )
return sieve_return . output
2017-11-04 03:26:09 +08:00
except Exception as e :
2018-02-01 20:38:42 +08:00
return jsonify ( type = ' danger ' , msg = str ( e ) )
2017-11-04 03:26:09 +08:00
elif request . json [ ' cmd ' ] == ' sieve_print ' and request . json [ ' script_name ' ] and request . json [ ' username ' ] :
try :
2017-12-11 16:43:01 +08:00
for container in docker_client . containers . list ( filters = { " id " : container_id } ) :
2018-06-20 13:25:10 +08:00
sieve_return = container . exec_run ( [ " /bin/bash " , " -c " , " /usr/local/bin/doveadm sieve get -u ' " + request . json [ ' username ' ] . replace ( " ' " , " ' \\ ' ' " ) + " ' ' " + request . json [ ' script_name ' ] . replace ( " ' " , " ' \\ ' ' " ) + " ' " ] , user = ' vmail ' )
return sieve_return . output
2017-11-04 03:26:09 +08:00
except Exception as e :
2018-02-01 20:38:42 +08:00
return jsonify ( type = ' danger ' , msg = str ( e ) )
[Docker API] Use TLS encryption for communication with "on-the-fly" created key paris (non-exposed)
[Docker API] Create pipe to pass Rspamd UI worker password
[Dovecot] Pull Spamassassin ruleset to be read by Rspamd (MANY THANKS to Peer Heinlein!)
[Dovecot] Garbage collector for deleted maildirs (set keep time via MAILDIR_GC_TIME which defaults to 1440 minutes)
[Web] Flush memcached after mailbox item changes, fixes #1808
[Web] Fix duplicate IDs, fixes #1792
[Compose] Use SQL sockets
[PHP-FPM] Update APCu and Redis libs
[Dovecot] Encrypt maildir with global key pair in crypt-vol-1 (BACKUP!), also fixes #1791
[Web] Fix deletion of spam aliases
[Helper] Add "crypt" to backup script
[Helper] Override file for external SQL socket (not supported!)
[Compose] New images for Rspamd, PHP-FPM, SOGo, Dovecot, Docker API, Watchdog, ACME, Postfix
2018-09-30 04:01:23 +08:00
# not in use...
elif request . json [ ' cmd ' ] == ' mail_crypt_generate ' and request . json [ ' username ' ] and request . json [ ' old_password ' ] and request . json [ ' new_password ' ] :
try :
for container in docker_client . containers . list ( filters = { " id " : container_id } ) :
# create if missing
crypto_generate = container . exec_run ( [ " /bin/bash " , " -c " , " /usr/local/bin/doveadm mailbox cryptokey generate -u ' " + request . json [ ' username ' ] . replace ( " ' " , " ' \\ ' ' " ) + " ' -URf " ] , user = ' vmail ' )
if crypto_generate . exit_code == 0 :
# open a shell, bind stdin and return socket
cryptokey_shell = container . exec_run ( [ " /bin/bash " ] , stdin = True , socket = True , user = ' vmail ' )
# command to be piped to shell
cryptokey_cmd = " /usr/local/bin/doveadm mailbox cryptokey password -u ' " + request . json [ ' username ' ] . replace ( " ' " , " ' \\ ' ' " ) + " ' -n ' " + request . json [ ' new_password ' ] . replace ( " ' " , " ' \\ ' ' " ) + " ' -o ' " + request . json [ ' old_password ' ] . replace ( " ' " , " ' \\ ' ' " ) + " ' \n "
# socket is .output
cryptokey_socket = cryptokey_shell . output ;
try :
# send command utf-8 encoded
cryptokey_socket . sendall ( cryptokey_cmd . encode ( ' utf-8 ' ) )
# we won't send more data than this
cryptokey_socket . shutdown ( socket . SHUT_WR )
except socket . error :
# exit on socket error
return jsonify ( type = ' danger ' , msg = str ( ' socket error ' ) )
# read response
cryptokey_response = recv_socket_data ( cryptokey_socket )
crypto_error = re . search ( ' dcrypt_key_load_private.+failed.+error ' , cryptokey_response )
if crypto_error is not None :
return jsonify ( type = ' danger ' , msg = str ( " dcrypt_key_load_private error " ) )
return jsonify ( type = ' success ' , msg = str ( " key pair generated " ) )
else :
return jsonify ( type = ' danger ' , msg = str ( crypto_generate . output ) )
except Exception as e :
return jsonify ( type = ' danger ' , msg = str ( e ) )
elif request . json [ ' cmd ' ] == ' maildir_cleanup ' and request . json [ ' maildir ' ] :
try :
for container in docker_client . containers . list ( filters = { " id " : container_id } ) :
sane_name = re . sub ( r ' \ W+ ' , ' ' , request . json [ ' maildir ' ] )
2018-10-03 17:27:52 +08:00
maildir_cleanup = container . exec_run ( [ " /bin/bash " , " -c " , " if [[ -d ' /var/vmail/ " + request . json [ ' maildir ' ] . replace ( " ' " , " ' \\ ' ' " ) + " ' ]]; then /bin/mv ' /var/vmail/ " + request . json [ ' maildir ' ] . replace ( " ' " , " ' \\ ' ' " ) + " ' ' /var/vmail/_garbage/ " + str ( int ( time . time ( ) ) ) + " _ " + sane_name + " ' ; fi " ] , user = ' vmail ' )
[Docker API] Use TLS encryption for communication with "on-the-fly" created key paris (non-exposed)
[Docker API] Create pipe to pass Rspamd UI worker password
[Dovecot] Pull Spamassassin ruleset to be read by Rspamd (MANY THANKS to Peer Heinlein!)
[Dovecot] Garbage collector for deleted maildirs (set keep time via MAILDIR_GC_TIME which defaults to 1440 minutes)
[Web] Flush memcached after mailbox item changes, fixes #1808
[Web] Fix duplicate IDs, fixes #1792
[Compose] Use SQL sockets
[PHP-FPM] Update APCu and Redis libs
[Dovecot] Encrypt maildir with global key pair in crypt-vol-1 (BACKUP!), also fixes #1791
[Web] Fix deletion of spam aliases
[Helper] Add "crypt" to backup script
[Helper] Override file for external SQL socket (not supported!)
[Compose] New images for Rspamd, PHP-FPM, SOGo, Dovecot, Docker API, Watchdog, ACME, Postfix
2018-09-30 04:01:23 +08:00
if maildir_cleanup . exit_code == 0 :
return jsonify ( type = ' success ' , msg = str ( " moved to garbage " ) )
else :
return jsonify ( type = ' danger ' , msg = str ( maildir_cleanup . output ) )
except Exception as e :
return jsonify ( type = ' danger ' , msg = str ( e ) )
2017-12-09 20:15:24 +08:00
elif request . json [ ' cmd ' ] == ' worker_password ' and request . json [ ' raw ' ] :
try :
2017-12-11 16:43:01 +08:00
for container in docker_client . containers . list ( filters = { " id " : container_id } ) :
[Docker API] Use TLS encryption for communication with "on-the-fly" created key paris (non-exposed)
[Docker API] Create pipe to pass Rspamd UI worker password
[Dovecot] Pull Spamassassin ruleset to be read by Rspamd (MANY THANKS to Peer Heinlein!)
[Dovecot] Garbage collector for deleted maildirs (set keep time via MAILDIR_GC_TIME which defaults to 1440 minutes)
[Web] Flush memcached after mailbox item changes, fixes #1808
[Web] Fix duplicate IDs, fixes #1792
[Compose] Use SQL sockets
[PHP-FPM] Update APCu and Redis libs
[Dovecot] Encrypt maildir with global key pair in crypt-vol-1 (BACKUP!), also fixes #1791
[Web] Fix deletion of spam aliases
[Helper] Add "crypt" to backup script
[Helper] Override file for external SQL socket (not supported!)
[Compose] New images for Rspamd, PHP-FPM, SOGo, Dovecot, Docker API, Watchdog, ACME, Postfix
2018-09-30 04:01:23 +08:00
worker_shell = container . exec_run ( [ " /bin/bash " ] , stdin = True , socket = True , user = ' _rspamd ' )
worker_cmd = " /usr/bin/rspamadm pw -e -p ' " + request . json [ ' raw ' ] . replace ( " ' " , " ' \\ ' ' " ) + " ' 2> /dev/null \n "
worker_socket = worker_shell . output ;
try :
worker_socket . sendall ( worker_cmd . encode ( ' utf-8 ' ) )
worker_socket . shutdown ( socket . SHUT_WR )
except socket . error :
return jsonify ( type = ' danger ' , msg = str ( ' socket error ' ) )
worker_response = recv_socket_data ( worker_socket )
matched = False
for line in worker_response . split ( " \n " ) :
if ' $2$ ' in line :
matched = True
hash = line . strip ( )
hash_out = re . search ( ' \ $2 \ $.+$ ' , hash ) . group ( 0 )
f = open ( " /access.inc " , " w " )
f . write ( ' enable_password = " ' + re . sub ( ' [^0-9a-zA-Z \ $]+ ' , ' ' , hash_out . rstrip ( ) ) + ' " ; \n ' )
f . close ( )
container . restart ( )
if matched :
2018-02-09 05:29:06 +08:00
return jsonify ( type = ' success ' , msg = ' command completed successfully ' )
else :
[Docker API] Use TLS encryption for communication with "on-the-fly" created key paris (non-exposed)
[Docker API] Create pipe to pass Rspamd UI worker password
[Dovecot] Pull Spamassassin ruleset to be read by Rspamd (MANY THANKS to Peer Heinlein!)
[Dovecot] Garbage collector for deleted maildirs (set keep time via MAILDIR_GC_TIME which defaults to 1440 minutes)
[Web] Flush memcached after mailbox item changes, fixes #1808
[Web] Fix duplicate IDs, fixes #1792
[Compose] Use SQL sockets
[PHP-FPM] Update APCu and Redis libs
[Dovecot] Encrypt maildir with global key pair in crypt-vol-1 (BACKUP!), also fixes #1791
[Web] Fix deletion of spam aliases
[Helper] Add "crypt" to backup script
[Helper] Override file for external SQL socket (not supported!)
[Compose] New images for Rspamd, PHP-FPM, SOGo, Dovecot, Docker API, Watchdog, ACME, Postfix
2018-09-30 04:01:23 +08:00
return jsonify ( type = ' danger ' , msg = ' command did not complete ' )
2017-12-09 20:15:24 +08:00
except Exception as e :
2018-02-01 20:38:42 +08:00
return jsonify ( type = ' danger ' , msg = str ( e ) )
2018-04-19 18:56:49 +08:00
elif request . json [ ' cmd ' ] == ' mailman_password ' and request . json [ ' email ' ] and request . json [ ' passwd ' ] :
try :
for container in docker_client . containers . list ( filters = { " id " : container_id } ) :
add_su = container . exec_run ( [ " /bin/bash " , " -c " , " /opt/mm_web/add_su.py ' " + request . json [ ' passwd ' ] . replace ( " ' " , " ' \\ ' ' " ) + " ' ' " + request . json [ ' email ' ] . replace ( " ' " , " ' \\ ' ' " ) + " ' " ] , user = ' mailman ' )
if add_su . exit_code == 0 :
return jsonify ( type = ' success ' , msg = ' command completed successfully ' )
else :
return jsonify ( type = ' danger ' , msg = ' command did not complete, exit code was ' + int ( add_su . exit_code ) )
except Exception as e :
return jsonify ( type = ' danger ' , msg = str ( e ) )
2017-12-09 20:15:24 +08:00
2017-10-06 05:38:33 +08:00
else :
2017-11-04 03:26:09 +08:00
return jsonify ( type = ' danger ' , msg = ' Unknown command ' )
2017-10-27 17:22:39 +08:00
else :
2017-11-04 03:26:09 +08:00
return jsonify ( type = ' danger ' , msg = ' invalid action ' )
2017-10-27 17:22:39 +08:00
else :
2017-11-04 03:26:09 +08:00
return jsonify ( type = ' danger ' , msg = ' invalid container id or missing action ' )
2017-10-27 17:22:39 +08:00
class GracefulKiller :
kill_now = False
def __init__ ( self ) :
signal . signal ( signal . SIGINT , self . exit_gracefully )
signal . signal ( signal . SIGTERM , self . exit_gracefully )
[Docker API] Use TLS encryption for communication with "on-the-fly" created key paris (non-exposed)
[Docker API] Create pipe to pass Rspamd UI worker password
[Dovecot] Pull Spamassassin ruleset to be read by Rspamd (MANY THANKS to Peer Heinlein!)
[Dovecot] Garbage collector for deleted maildirs (set keep time via MAILDIR_GC_TIME which defaults to 1440 minutes)
[Web] Flush memcached after mailbox item changes, fixes #1808
[Web] Fix duplicate IDs, fixes #1792
[Compose] Use SQL sockets
[PHP-FPM] Update APCu and Redis libs
[Dovecot] Encrypt maildir with global key pair in crypt-vol-1 (BACKUP!), also fixes #1791
[Web] Fix deletion of spam aliases
[Helper] Add "crypt" to backup script
[Helper] Override file for external SQL socket (not supported!)
[Compose] New images for Rspamd, PHP-FPM, SOGo, Dovecot, Docker API, Watchdog, ACME, Postfix
2018-09-30 04:01:23 +08:00
def exit_gracefully ( self , signum , frame ) :
2017-10-27 17:22:39 +08:00
self . kill_now = True
def startFlaskAPI ( ) :
[Docker API] Use TLS encryption for communication with "on-the-fly" created key paris (non-exposed)
[Docker API] Create pipe to pass Rspamd UI worker password
[Dovecot] Pull Spamassassin ruleset to be read by Rspamd (MANY THANKS to Peer Heinlein!)
[Dovecot] Garbage collector for deleted maildirs (set keep time via MAILDIR_GC_TIME which defaults to 1440 minutes)
[Web] Flush memcached after mailbox item changes, fixes #1808
[Web] Fix duplicate IDs, fixes #1792
[Compose] Use SQL sockets
[PHP-FPM] Update APCu and Redis libs
[Dovecot] Encrypt maildir with global key pair in crypt-vol-1 (BACKUP!), also fixes #1791
[Web] Fix deletion of spam aliases
[Helper] Add "crypt" to backup script
[Helper] Override file for external SQL socket (not supported!)
[Compose] New images for Rspamd, PHP-FPM, SOGo, Dovecot, Docker API, Watchdog, ACME, Postfix
2018-09-30 04:01:23 +08:00
create_self_signed_cert ( )
try :
ctx = ssl . create_default_context ( ssl . Purpose . CLIENT_AUTH )
ctx . check_hostname = False
ctx . load_cert_chain ( certfile = ' /cert.pem ' , keyfile = ' /key.pem ' )
except :
print " Cannot initialize TLS, retrying in 5s... "
time . sleep ( 5 )
app . run ( debug = False , host = ' 0.0.0.0 ' , port = 443 , threaded = True , ssl_context = ctx )
def recv_socket_data ( c_socket , timeout = 10 ) :
c_socket . setblocking ( 0 )
total_data = [ ] ;
data = ' ' ;
begin = time . time ( )
while True :
if total_data and time . time ( ) - begin > timeout :
break
elif time . time ( ) - begin > timeout * 2 :
break
try :
data = c_socket . recv ( 8192 )
if data :
total_data . append ( data )
#change the beginning time for measurement
begin = time . time ( )
else :
#sleep for sometime to indicate a gap
time . sleep ( 0.1 )
break
except :
pass
return ' ' . join ( total_data )
def create_self_signed_cert ( ) :
pkey = crypto . PKey ( )
pkey . generate_key ( crypto . TYPE_RSA , 2048 )
cert = crypto . X509 ( )
cert . get_subject ( ) . O = " mailcow "
cert . get_subject ( ) . CN = " dockerapi "
cert . set_serial_number ( int ( uuid . uuid4 ( ) ) )
cert . gmtime_adj_notBefore ( 0 )
cert . gmtime_adj_notAfter ( 10 * 365 * 24 * 60 * 60 )
cert . set_issuer ( cert . get_subject ( ) )
cert . set_pubkey ( pkey )
cert . sign ( pkey , ' sha512 ' )
cert = crypto . dump_certificate ( crypto . FILETYPE_PEM , cert )
pkey = crypto . dump_privatekey ( crypto . FILETYPE_PEM , pkey )
with os . fdopen ( os . open ( ' /cert.pem ' , os . O_WRONLY | os . O_CREAT , 0o644 ) , ' w ' ) as handle :
handle . write ( cert )
with os . fdopen ( os . open ( ' /key.pem ' , os . O_WRONLY | os . O_CREAT , 0o600 ) , ' w ' ) as handle :
handle . write ( pkey )
2017-10-06 05:38:33 +08:00
2017-10-06 16:20:40 +08:00
api . add_resource ( containers_get , ' /containers/json ' )
api . add_resource ( container_get , ' /containers/<string:container_id>/json ' )
api . add_resource ( container_post , ' /containers/<string:container_id>/<string:post_action> ' )
2017-10-06 05:38:33 +08:00
if __name__ == ' __main__ ' :
2017-10-27 17:22:39 +08:00
api_thread = Thread ( target = startFlaskAPI )
api_thread . daemon = True
api_thread . start ( )
killer = GracefulKiller ( )
while True :
time . sleep ( 1 )
if killer . kill_now :
break
print " Stopping dockerapi-mailcow "
2017-12-11 16:43:01 +08:00