oscp 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. #!/usr/bin/env python2
  2. # vim: expandtab:tabstop=4:shiftwidth=4
  3. import argparse
  4. import traceback
  5. import sys
  6. import os
  7. import re
  8. import ConfigParser
  9. from openshift_ansible import awsutil
  10. CONFIG_MAIN_SECTION = 'main'
  11. class Oscp(object):
  12. def __init__(self):
  13. self.host = None
  14. self.user = ''
  15. self.file_path = os.path.join(os.path.dirname(os.path.realpath(__file__)))
  16. # Default the config path to /etc
  17. self.config_path = os.path.join(os.path.sep, 'etc', \
  18. 'openshift_ansible', \
  19. 'openshift_ansible.conf')
  20. self.parse_cli_args()
  21. self.parse_config_file()
  22. # parse host and user
  23. self.process_host()
  24. self.aws = awsutil.AwsUtil()
  25. # get a dict of host inventory
  26. if self.args.refresh_cache:
  27. self.get_hosts(True)
  28. else:
  29. self.get_hosts()
  30. if (self.args.src == '' or self.args.dest == '') and not self.args.list:
  31. self.parser.print_help()
  32. return
  33. if self.args.debug:
  34. print self.host
  35. print self.args
  36. # perform the scp
  37. if self.args.list:
  38. self.list_hosts()
  39. else:
  40. self.scp()
  41. def parse_config_file(self):
  42. if os.path.isfile(self.config_path):
  43. config = ConfigParser.ConfigParser()
  44. config.read(self.config_path)
  45. def parse_cli_args(self):
  46. parser = argparse.ArgumentParser(description='OpenShift Online SSH Tool.')
  47. parser.add_argument('-d', '--debug', default=False,
  48. action="store_true", help="debug mode")
  49. parser.add_argument('-v', '--verbose', default=False,
  50. action="store_true", help="Verbose?")
  51. parser.add_argument('--refresh-cache', default=False,
  52. action="store_true", help="Force a refresh on the host cache.")
  53. parser.add_argument('--list', default=False,
  54. action="store_true", help="list out hosts")
  55. parser.add_argument('-r', '--recurse', action='store_true', default=False,
  56. help='Recursively copy files to or from destination.')
  57. parser.add_argument('-o', '--ssh_opts', action='store',
  58. help='options to pass to SSH.\n \
  59. "-oPort=22,TCPKeepAlive=yes"')
  60. parser.add_argument('src', nargs='?', default='')
  61. parser.add_argument('dest',nargs='?', default='')
  62. self.args = parser.parse_args()
  63. self.parser = parser
  64. def process_host(self):
  65. '''Determine host name and user name for SSH.
  66. '''
  67. # is the first param passed a valid file?
  68. if os.path.isfile(self.args.src) or os.path.isdir(self.args.src):
  69. self.local_src = True
  70. self.host = self.args.dest
  71. else:
  72. self.local_src = False
  73. self.host = self.args.src
  74. if '@' in self.host:
  75. re_host = re.compile("(.*@)(.*)(:.*$)")
  76. else:
  77. re_host = re.compile("(.*)(:.*$)")
  78. search = re_host.search(self.host)
  79. if search:
  80. if len(search.groups()) > 2:
  81. self.user = search.groups()[0]
  82. self.host = search.groups()[1]
  83. self.path = search.groups()[2]
  84. else:
  85. self.host = search.groups()[0]
  86. self.path = search.groups()[1]
  87. def get_hosts(self, refresh_cache=False):
  88. '''Query our host inventory and return a dict where the format '''
  89. if refresh_cache:
  90. self.host_inventory = self.aws.get_inventory(['--refresh-cache'])['_meta']['hostvars']
  91. else:
  92. self.host_inventory = self.aws.get_inventory()['_meta']['hostvars']
  93. def select_host(self):
  94. '''select host attempts to match the host specified
  95. on the command line with a list of hosts.
  96. '''
  97. results = None
  98. if self.host_inventory.has_key(self.host):
  99. results = (self.host, self.host_inventory[self.host])
  100. else:
  101. print "Could not find specified host: %s." % self.host
  102. # default - no results found.
  103. return results
  104. def list_hosts(self, limit=None):
  105. '''Function to print out the host inventory.
  106. Takes a single parameter to limit the number of hosts printed.
  107. '''
  108. for host_id, server_info in self.host_inventory.items():
  109. print '{oo_name:<35} {oo_clusterid:<10} {oo_environment:<8} ' \
  110. '{oo_id:<15} {oo_public_ip:<18} {oo_private_ip:<18}'.format(**server_info)
  111. def scp(self):
  112. '''scp files to or from a specified host
  113. '''
  114. try:
  115. # shell args start with the program name in position 1
  116. scp_args = ['/usr/bin/scp']
  117. if self.args.verbose:
  118. scp_args.append('-v')
  119. if self.args.recurse:
  120. scp_args.append('-r')
  121. if self.args.ssh_opts:
  122. for arg in self.args.ssh_opts.split(","):
  123. scp_args.append("-o%s" % arg)
  124. results = self.select_host()
  125. if self.args.debug: print results
  126. if not results:
  127. return # early exit, no results
  128. # Assume we have one and only one.
  129. server_info = results[1]
  130. host_str = "%s%s%s" % (self.user, server_info['oo_public_ip'], self.path)
  131. if self.local_src:
  132. scp_args.append(self.args.src)
  133. scp_args.append(host_str)
  134. else:
  135. scp_args.append(host_str)
  136. scp_args.append(self.args.dest)
  137. print "Running: %s\n" % ' '.join(scp_args)
  138. os.execve('/usr/bin/scp', scp_args, os.environ)
  139. except:
  140. print traceback.print_exc()
  141. print sys.exc_info()
  142. if __name__ == '__main__':
  143. oscp = Oscp()