oscp 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  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.file_path = os.path.join(os.path.dirname(os.path.realpath(__file__)))
  14. # Default the config path to /etc
  15. self.config_path = os.path.join(os.path.sep, 'etc', \
  16. 'openshift_ansible', \
  17. 'openshift_ansible.conf')
  18. self.parse_cli_args()
  19. self.parse_config_file()
  20. # parse host and user
  21. self.process_host()
  22. self.aws = awsutil.AwsUtil()
  23. # get a dict of host inventory
  24. if self.args.refresh_cache:
  25. self.get_hosts(True)
  26. else:
  27. self.get_hosts()
  28. if (self.args.src == '' or self.args.dest == '') and not self.args.list:
  29. self.parser.print_help()
  30. return
  31. if self.args.debug:
  32. print self.host
  33. print self.args
  34. # perform the scp
  35. if self.args.list:
  36. self.list_hosts()
  37. else:
  38. self.scp()
  39. def parse_config_file(self):
  40. if os.path.isfile(self.config_path):
  41. config = ConfigParser.ConfigParser()
  42. config.read(self.config_path)
  43. def parse_cli_args(self):
  44. parser = argparse.ArgumentParser(description='OpenShift Online SSH Tool.')
  45. parser.add_argument('-e', '--env',
  46. action="store", help="Environment where this server exists.")
  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. self.user = ''
  68. # is the first param passed a valid file?
  69. if os.path.isfile(self.args.src) or os.path.isdir(self.args.src):
  70. self.local_src = True
  71. self.host = self.args.dest
  72. else:
  73. self.local_src = False
  74. self.host = self.args.src
  75. if '@' in self.host:
  76. re_host = re.compile("(.*@)(.*)(:.*$)")
  77. else:
  78. re_host = re.compile("(.*)(:.*$)")
  79. search = re_host.search(self.host)
  80. if search:
  81. if len(search.groups()) > 2:
  82. self.user = search.groups()[0]
  83. self.host = search.groups()[1]
  84. self.path = search.groups()[2]
  85. else:
  86. self.host = search.groups()[0]
  87. self.path = search.groups()[1]
  88. if self.args.env:
  89. self.env = self.args.env
  90. elif "." in self.host:
  91. self.host, self.env = self.host.split(".")
  92. else:
  93. self.env = None
  94. def get_hosts(self, refresh_cache=False):
  95. '''Query our host inventory and return a dict where the format
  96. equals:
  97. dict['environment'] = [{'servername' : {}}, ]
  98. '''
  99. if refresh_cache:
  100. self.host_inventory = self.aws.build_host_dict_by_env(['--refresh-cache'])
  101. else:
  102. self.host_inventory = self.aws.build_host_dict_by_env()
  103. def select_host(self):
  104. '''select host attempts to match the host specified
  105. on the command line with a list of hosts.
  106. '''
  107. results = []
  108. for env in self.host_inventory.keys():
  109. for hostname, server_info in self.host_inventory[env].items():
  110. if hostname.split(':')[0] == self.host:
  111. results.append((hostname, server_info))
  112. # attempt to select the correct environment if specified
  113. if self.env:
  114. results = filter(lambda result: result[1]['ec2_tag_env'] == self.env, results)
  115. if results:
  116. return results
  117. else:
  118. print "Could not find specified host: %s." % self.host
  119. # default - no results found.
  120. return None
  121. def list_hosts(self, limit=None):
  122. '''Function to print out the host inventory.
  123. Takes a single parameter to limit the number of hosts printed.
  124. '''
  125. if self.env:
  126. results = self.select_host()
  127. if len(results) == 1:
  128. hostname, server_info = results[0]
  129. sorted_keys = server_info.keys()
  130. sorted_keys.sort()
  131. for key in sorted_keys:
  132. print '{0:<35} {1}'.format(key, server_info[key])
  133. else:
  134. for host_id, server_info in results[:limit]:
  135. name = server_info['ec2_tag_Name']
  136. ec2_id = server_info['ec2_id']
  137. ip = server_info['ec2_ip_address']
  138. print '{ec2_tag_Name:<35} {ec2_tag_env:<8} {ec2_id:<15} {ec2_ip_address:<18} {ec2_private_ip_address}'.format(**server_info)
  139. if limit:
  140. print
  141. print 'Showing only the first %d results...' % limit
  142. print
  143. else:
  144. for env, host_ids in self.host_inventory.items():
  145. for host_id, server_info in host_ids.items():
  146. name = server_info['ec2_tag_Name']
  147. ec2_id = server_info['ec2_id']
  148. ip = server_info['ec2_ip_address']
  149. print '{ec2_tag_Name:<35} {ec2_tag_env:<8} {ec2_id:<15} {ec2_ip_address:<18} {ec2_private_ip_address}'.format(**server_info)
  150. def scp(self):
  151. '''scp files to or from a specified host
  152. '''
  153. try:
  154. # shell args start with the program name in position 1
  155. scp_args = ['/usr/bin/scp']
  156. if self.args.verbose:
  157. scp_args.append('-v')
  158. if self.args.recurse:
  159. scp_args.append('-r')
  160. if self.args.ssh_opts:
  161. for arg in self.args.ssh_opts.split(","):
  162. scp_args.append("-o%s" % arg)
  163. results = self.select_host()
  164. if self.args.debug: print results
  165. if not results:
  166. return # early exit, no results
  167. if len(results) > 1:
  168. print "Multiple results found for %s." % self.host
  169. for result in results:
  170. print "{ec2_tag_Name:<35} {ec2_tag_env:<5} {ec2_id:<10}".format(**result[1])
  171. return # early exit, too many results
  172. # Assume we have one and only one.
  173. hostname, server_info = results[0]
  174. dns = server_info['ec2_public_dns_name']
  175. host_str = "%s%s%s" % (self.user, dns, self.path)
  176. if self.local_src:
  177. scp_args.append(self.args.src)
  178. scp_args.append(host_str)
  179. else:
  180. scp_args.append(host_str)
  181. scp_args.append(self.args.dest)
  182. print "Running: %s\n" % ' '.join(scp_args)
  183. os.execve('/usr/bin/scp', scp_args, os.environ)
  184. except:
  185. print traceback.print_exc()
  186. print sys.exc_info()
  187. if __name__ == '__main__':
  188. oscp = Oscp()