2017-01-11 12:04:11 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
import shutil
|
|
|
|
|
|
|
|
from core import colorconsole as cc
|
|
|
|
from core import makepyo
|
|
|
|
from core import utils
|
2017-03-12 05:02:38 +00:00
|
|
|
from core.env import env
|
2017-01-11 12:04:11 +00:00
|
|
|
from core.context import *
|
|
|
|
from core.ver import *
|
|
|
|
|
|
|
|
ctx = BuildContext()
|
2017-11-24 15:28:38 +00:00
|
|
|
with_rdp = os.path.exists(os.path.join(env.root_path, 'server', 'tp_core', 'protocol', 'rdp'))
|
|
|
|
with_telnet = os.path.exists(os.path.join(env.root_path, 'server', 'tp_core', 'protocol', 'telnet'))
|
2017-01-11 12:04:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
class BuilderBase:
|
|
|
|
def __init__(self):
|
|
|
|
self.out_dir = ''
|
|
|
|
|
|
|
|
def build_installer(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def _build_web(self, base_path, dist, target_path):
|
|
|
|
cc.n('make Teleport Web package...')
|
2017-03-12 05:02:38 +00:00
|
|
|
src_path = os.path.join(env.root_path, 'server', 'www')
|
2017-01-26 16:20:03 +00:00
|
|
|
pkg_path = os.path.join(src_path, 'packages')
|
2017-01-11 12:04:11 +00:00
|
|
|
tmp_path = os.path.join(base_path, '_tmp_web_')
|
|
|
|
|
|
|
|
if os.path.exists(tmp_path):
|
|
|
|
utils.remove(tmp_path)
|
|
|
|
|
2017-01-26 16:20:03 +00:00
|
|
|
shutil.copytree(os.path.join(src_path, 'teleport'), os.path.join(tmp_path, 'teleport'))
|
|
|
|
utils.remove(os.path.join(tmp_path, 'teleport', '.idea'))
|
2017-01-11 12:04:11 +00:00
|
|
|
|
|
|
|
cc.n(' - copy packages...')
|
2018-09-23 18:47:50 +00:00
|
|
|
# utils.copy_ex(pkg_path, os.path.join(tmp_path, 'packages'), 'packages-common')
|
2017-03-12 05:02:38 +00:00
|
|
|
utils.copy_ex(os.path.join(pkg_path, 'packages-{}'.format(dist)), os.path.join(tmp_path, 'packages', 'packages-{}'.format(dist)), ctx.bits_path)
|
2018-09-23 18:47:50 +00:00
|
|
|
self._remove_py_cache(os.path.join(tmp_path, 'packages'))
|
2017-03-12 05:02:38 +00:00
|
|
|
|
2017-01-11 12:04:11 +00:00
|
|
|
makepyo.remove_cache(tmp_path)
|
|
|
|
|
2017-01-26 16:20:03 +00:00
|
|
|
shutil.copytree(tmp_path, os.path.join(target_path, 'www'))
|
2017-01-11 12:04:11 +00:00
|
|
|
utils.remove(tmp_path)
|
|
|
|
|
2018-09-23 18:47:50 +00:00
|
|
|
def _remove_py_cache(self, path):
|
|
|
|
for parent, dir_list, _ in os.walk(path):
|
|
|
|
for d in dir_list:
|
|
|
|
d = d.lower()
|
|
|
|
if d == '__pycache__':
|
|
|
|
utils.remove(os.path.join(parent, d))
|
|
|
|
continue
|
|
|
|
self._remove_py_cache(os.path.join(parent, d))
|
|
|
|
|
2017-01-11 12:04:11 +00:00
|
|
|
|
|
|
|
class BuilderWin(BuilderBase):
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__()
|
2017-11-24 15:28:38 +00:00
|
|
|
self.name = 'teleport-server-windows-{}-{}'.format(ctx.bits_path, VER_TP_SERVER)
|
2017-03-12 05:02:38 +00:00
|
|
|
self._final_file = os.path.join(env.root_path, 'out', 'installer', '{}.zip'.format(self.name))
|
2017-01-11 12:04:11 +00:00
|
|
|
|
2017-03-26 17:30:07 +00:00
|
|
|
self.dist_path = os.path.join(env.root_path, 'dist', 'server')
|
2017-03-12 05:02:38 +00:00
|
|
|
self.base_path = os.path.join(env.root_path, 'out', 'installer')
|
2017-01-11 12:04:11 +00:00
|
|
|
self.base_tmp = os.path.join(self.base_path, '_tmp_')
|
2017-03-12 05:02:38 +00:00
|
|
|
|
|
|
|
self.path_tmp = os.path.join(self.base_tmp, self.name)
|
|
|
|
self.path_tmp_data = os.path.join(self.path_tmp, 'data')
|
2017-01-11 12:04:11 +00:00
|
|
|
|
|
|
|
def build_installer(self):
|
|
|
|
cc.n('make teleport installer package...')
|
|
|
|
|
|
|
|
if os.path.exists(self.base_tmp):
|
|
|
|
utils.remove(self.base_tmp)
|
|
|
|
|
2017-03-12 05:02:38 +00:00
|
|
|
self._build_web(self.base_path, 'windows', self.path_tmp_data)
|
|
|
|
utils.copy_file(os.path.join(env.root_path, 'server', 'share', 'etc'), os.path.join(self.path_tmp_data, 'tmp', 'etc'), ('web.ini.in', 'web.ini'))
|
|
|
|
utils.copy_file(os.path.join(env.root_path, 'server', 'share', 'etc'), os.path.join(self.path_tmp_data, 'tmp', 'etc'), ('core.ini.in', 'core.ini'))
|
|
|
|
utils.copy_file(os.path.join(env.root_path, 'server', 'share', 'etc'), os.path.join(self.path_tmp_data, 'tmp', 'etc'), 'tp_ssh_server.key')
|
2017-01-11 12:04:11 +00:00
|
|
|
|
2017-03-12 05:02:38 +00:00
|
|
|
out_path = os.path.join(env.root_path, 'out', 'server', ctx.bits_path, ctx.target_path)
|
|
|
|
bin_path = os.path.join(self.path_tmp_data, 'bin')
|
|
|
|
utils.copy_ex(out_path, bin_path, 'tp_web.exe')
|
|
|
|
utils.copy_ex(out_path, bin_path, 'tp_core.exe')
|
|
|
|
utils.copy_ex(out_path, bin_path, 'tpssh.dll')
|
2018-04-08 09:28:17 +00:00
|
|
|
utils.copy_ex(out_path, bin_path, 'tptelnet.dll')
|
2017-11-24 15:28:38 +00:00
|
|
|
if with_rdp:
|
|
|
|
utils.copy_ex(out_path, bin_path, 'tprdp.dll')
|
2017-01-11 12:04:11 +00:00
|
|
|
|
2017-03-12 05:02:38 +00:00
|
|
|
utils.copy_ex(os.path.join(env.root_path, 'out', 'pysrt'), bin_path, (ctx.dist_path, 'pysrt'))
|
2017-01-11 12:04:11 +00:00
|
|
|
|
2017-03-12 05:02:38 +00:00
|
|
|
# 复制安装所需的脚本
|
2017-03-26 17:30:07 +00:00
|
|
|
utils.copy_ex(os.path.join(self.dist_path), self.path_tmp, 'setup.bat')
|
|
|
|
utils.copy_ex(os.path.join(self.dist_path), self.path_tmp, 'script')
|
2017-01-11 12:04:11 +00:00
|
|
|
|
2017-03-12 05:02:38 +00:00
|
|
|
if os.path.exists(self._final_file):
|
|
|
|
utils.remove(self._final_file)
|
2017-01-11 12:04:11 +00:00
|
|
|
|
2017-03-12 05:02:38 +00:00
|
|
|
utils.make_zip(self.path_tmp, self._final_file)
|
2017-01-11 12:04:11 +00:00
|
|
|
|
2017-03-26 21:11:47 +00:00
|
|
|
# utils.remove(self.base_tmp)
|
2017-01-11 12:04:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
class BuilderLinux(BuilderBase):
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__()
|
2017-11-24 15:28:38 +00:00
|
|
|
self.name = 'teleport-server-linux-{}-{}'.format(ctx.bits_path, VER_TP_SERVER)
|
2017-03-24 18:31:09 +00:00
|
|
|
self._final_file = os.path.join(env.root_path, 'out', 'installer', '{}.tar.gz'.format(self.name))
|
2017-01-11 12:04:11 +00:00
|
|
|
|
2017-03-26 17:30:07 +00:00
|
|
|
self.dist_path = os.path.join(env.root_path, 'dist', 'server')
|
2017-03-24 18:31:09 +00:00
|
|
|
self.base_path = os.path.join(env.root_path, 'out', 'installer')
|
2017-01-11 12:04:11 +00:00
|
|
|
self.base_tmp = os.path.join(self.base_path, '_tmp_')
|
2017-03-24 18:31:09 +00:00
|
|
|
|
|
|
|
self.path_tmp = os.path.join(self.base_tmp, self.name)
|
|
|
|
self.path_tmp_data = os.path.join(self.path_tmp, 'data')
|
2017-01-11 12:04:11 +00:00
|
|
|
|
|
|
|
def build_installer(self):
|
|
|
|
cc.n('make teleport installer package...')
|
|
|
|
|
|
|
|
if os.path.exists(self.base_tmp):
|
|
|
|
utils.remove(self.base_tmp)
|
|
|
|
|
2017-03-24 18:31:09 +00:00
|
|
|
self._build_web(self.base_path, 'linux', self.path_tmp_data)
|
2017-01-11 12:04:11 +00:00
|
|
|
|
2017-03-24 18:31:09 +00:00
|
|
|
utils.copy_file(os.path.join(env.root_path, 'server', 'share', 'etc'), os.path.join(self.path_tmp_data, 'tmp', 'etc'), ('web.ini.in', 'web.ini'))
|
|
|
|
utils.copy_file(os.path.join(env.root_path, 'server', 'share', 'etc'), os.path.join(self.path_tmp_data, 'tmp', 'etc'), ('core.ini.in', 'core.ini'))
|
|
|
|
utils.copy_file(os.path.join(env.root_path, 'server', 'share', 'etc'), os.path.join(self.path_tmp_data, 'tmp', 'etc'), 'tp_ssh_server.key')
|
2017-03-12 05:02:38 +00:00
|
|
|
|
2017-11-27 10:54:10 +00:00
|
|
|
# fix new line flag
|
|
|
|
utils.fix_new_line_flag(os.path.join(self.path_tmp_data, 'tmp', 'etc', 'web.ini'))
|
|
|
|
utils.fix_new_line_flag(os.path.join(self.path_tmp_data, 'tmp', 'etc', 'core.ini'))
|
|
|
|
|
2017-03-12 05:02:38 +00:00
|
|
|
out_path = os.path.join(env.root_path, 'out', 'server', ctx.bits_path, 'bin')
|
2017-03-24 18:31:09 +00:00
|
|
|
bin_path = os.path.join(self.path_tmp_data, 'bin')
|
2017-01-26 16:20:03 +00:00
|
|
|
utils.copy_ex(out_path, bin_path, 'tp_web')
|
|
|
|
utils.copy_ex(out_path, bin_path, 'tp_core')
|
|
|
|
utils.copy_ex(out_path, bin_path, 'libtpssh.so')
|
2018-04-08 09:28:17 +00:00
|
|
|
utils.copy_ex(out_path, bin_path, 'libtptelnet.so')
|
2017-11-24 15:28:38 +00:00
|
|
|
if with_rdp:
|
|
|
|
utils.copy_ex(out_path, bin_path, 'libtprdp.so')
|
2017-01-11 12:04:11 +00:00
|
|
|
|
2017-03-12 05:02:38 +00:00
|
|
|
utils.copy_ex(os.path.join(env.root_path, 'out', 'pysrt'), bin_path, (ctx.dist_path, 'pysrt'))
|
2017-01-11 12:04:11 +00:00
|
|
|
|
2017-03-24 18:31:09 +00:00
|
|
|
# 复制安装所需的脚本
|
2017-03-26 17:30:07 +00:00
|
|
|
utils.copy_ex(os.path.join(self.dist_path), self.path_tmp, 'setup.sh')
|
|
|
|
utils.copy_ex(os.path.join(self.dist_path), self.path_tmp, 'script')
|
|
|
|
utils.copy_ex(os.path.join(self.dist_path), self.path_tmp, 'daemon')
|
2017-01-11 12:04:11 +00:00
|
|
|
|
2017-03-24 18:31:09 +00:00
|
|
|
if os.path.exists(self._final_file):
|
|
|
|
utils.remove(self._final_file)
|
2017-01-11 12:04:11 +00:00
|
|
|
|
2017-03-24 18:31:09 +00:00
|
|
|
utils.make_targz(self.base_tmp, self.name, self._final_file)
|
2017-01-11 12:04:11 +00:00
|
|
|
|
|
|
|
# utils.remove(self.base_tmp)
|
|
|
|
|
|
|
|
|
|
|
|
def gen_builder(dist):
|
|
|
|
if dist == 'windows':
|
|
|
|
builder = BuilderWin()
|
|
|
|
elif dist == 'linux':
|
|
|
|
builder = BuilderLinux()
|
|
|
|
else:
|
|
|
|
raise RuntimeError('unsupported platform.')
|
|
|
|
|
|
|
|
ctx.set_dist(dist)
|
|
|
|
return builder
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2017-03-12 05:02:38 +00:00
|
|
|
if not env.init():
|
|
|
|
return
|
|
|
|
|
2017-01-11 12:04:11 +00:00
|
|
|
builder = None
|
|
|
|
|
|
|
|
argv = sys.argv[1:]
|
|
|
|
|
|
|
|
for i in range(len(argv)):
|
|
|
|
if 'debug' == argv[i]:
|
|
|
|
ctx.set_target(TARGET_DEBUG)
|
|
|
|
elif 'x86' == argv[i]:
|
|
|
|
ctx.set_bits(BITS_32)
|
|
|
|
elif 'x64' == argv[i]:
|
|
|
|
ctx.set_bits(BITS_64)
|
|
|
|
elif argv[i] in ctx.dist_all:
|
|
|
|
builder = gen_builder(argv[i])
|
|
|
|
|
|
|
|
if builder is None:
|
|
|
|
builder = gen_builder(ctx.host_os)
|
|
|
|
|
|
|
|
if 'installer' in argv:
|
|
|
|
builder.build_installer()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
try:
|
|
|
|
main()
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
pass
|
|
|
|
except RuntimeError as e:
|
|
|
|
cc.e(e.__str__())
|
|
|
|
except:
|
|
|
|
cc.f('got exception.')
|