syncplay/syncplayServer.py

47 lines
1.3 KiB
Python
Raw Normal View History

2018-07-20 17:21:52 +00:00
#!/usr/bin/env python3
2012-10-12 16:37:12 +00:00
#coding:utf8
import socket
2018-06-19 21:24:24 +00:00
import sys
2013-12-18 06:33:39 +00:00
# libpath
try:
if (sys.version_info.major != 3) or (sys.version_info.minor < 4):
raise Exception("You must run Syncplay with Python 3.4 or newer!")
except AttributeError:
import warnings
warnings.warn("You must run Syncplay with Python 3.4 or newer!")
2014-06-19 18:31:49 +00:00
2019-02-03 15:40:50 +00:00
from OpenSSL import crypto
from twisted.internet import reactor, ssl
from twisted.internet.endpoints import SSL4ServerEndpoint
2012-10-12 16:37:12 +00:00
from syncplay.server import SyncFactory, ConfigurationGetter
with open('server.pem') as f:
certData = f.read()
2019-02-03 15:40:50 +00:00
certificate = ssl.PrivateCertificate.loadPEM(certData).options()
2019-02-03 15:40:50 +00:00
if __name__ == '__main__':
argsGetter = ConfigurationGetter()
args = argsGetter.getConfiguration()
2019-02-03 15:30:20 +00:00
factory = SyncFactory(
args.port,
args.password,
args.motd_file,
args.isolate_rooms,
args.salt,
args.disable_ready,
args.disable_chat,
args.max_chat_message_length,
args.max_username_length,
2019-02-03 15:30:20 +00:00
args.stats_db_file
2019-02-03 15:30:20 +00:00
)
endpoint4 = SSL4ServerEndpoint(reactor, int(args.port), certificate, interface='0.0.0.0')
2019-02-03 15:30:20 +00:00
endpoint4.listen(factory)
endpoint6 = SSL4ServerEndpoint(reactor, int(args.port), certificate, interface='::')
endpoint6.listen(factory)
reactor.run()