oscp 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. #!/usr/bin/env python
  2. # vim: expandtab:tabstop=4:shiftwidth=4
  3. import argparse
  4. import ansibleutil
  5. import traceback
  6. import sys
  7. import os
  8. import re
  9. class Oscp(object):
  10. def __init__(self):
  11. self.file_path = os.path.join(os.path.dirname(os.path.realpath(__file__)))
  12. self.parse_cli_args()
  13. # parse host and user
  14. self.process_host()
  15. self.ansible = ansibleutil.AnsibleUtil()
  16. # get a dict of host inventory
  17. if self.args.list:
  18. self.get_hosts()
  19. else:
  20. self.get_hosts(True)
  21. if (self.args.src == '' or self.args.dest == '') and not self.args.list:
  22. self.parser.print_help()
  23. return
  24. if self.args.debug:
  25. print self.host
  26. print self.args
  27. # perform the scp
  28. if self.args.list:
  29. self.list_hosts()
  30. else:
  31. self.scp()
  32. def parse_cli_args(self):
  33. parser = argparse.ArgumentParser(description='Openshift Online SSH Tool.')
  34. parser.add_argument('-e', '--env',
  35. action="store", help="Environment where this server exists.")
  36. parser.add_argument('-d', '--debug', default=False,
  37. action="store_true", help="debug mode")
  38. parser.add_argument('-v', '--verbose', default=False,
  39. action="store_true", help="Verbose?")
  40. parser.add_argument('--list', default=False,
  41. action="store_true", help="list out hosts")
  42. parser.add_argument('-r', '--recurse', action='store_true', default=False,
  43. help='Recursively copy files to or from destination.')
  44. parser.add_argument('-o', '--ssh_opts', action='store',
  45. help='options to pass to SSH.\n \
  46. "-oPort=22,TCPKeepAlive=yes"')
  47. parser.add_argument('src', nargs='?', default='')
  48. parser.add_argument('dest',nargs='?', default='')
  49. self.args = parser.parse_args()
  50. self.parser = parser
  51. def process_host(self):
  52. '''Determine host name and user name for SSH.
  53. '''
  54. self.user = ''
  55. # is the first param passed a valid file?
  56. if os.path.isfile(self.args.src) or os.path.isdir(self.args.src):
  57. self.local_src = True
  58. self.host = self.args.dest
  59. else:
  60. self.local_src = False
  61. self.host = self.args.src
  62. if '@' in self.host:
  63. re_host = re.compile("(.*@)(.*)(:.*$)")
  64. else:
  65. re_host = re.compile("(.*)(:.*$)")
  66. search = re_host.search(self.host)
  67. if search:
  68. if len(search.groups()) > 2:
  69. self.user = search.groups()[0]
  70. self.host = search.groups()[1]
  71. self.path = search.groups()[2]
  72. else:
  73. self.host = search.groups()[0]
  74. self.path = search.groups()[1]
  75. if self.args.env:
  76. self.env = self.args.env
  77. elif "." in self.host:
  78. self.host, self.env = self.host.split(".")
  79. else:
  80. self.env = None
  81. def get_hosts(self, cache_only=False):
  82. '''Query our host inventory and return a dict where the format
  83. equals:
  84. dict['environment'] = [{'servername' : {}}, ]
  85. '''
  86. if cache_only:
  87. self.host_inventory = self.ansible.build_host_dict_by_env(['--cache-only'])
  88. else:
  89. self.host_inventory = self.ansible.build_host_dict_by_env()
  90. def select_host(self):
  91. '''select host attempts to match the host specified
  92. on the command line with a list of hosts.
  93. '''
  94. results = []
  95. for env in self.host_inventory.keys():
  96. for hostname, server_info in self.host_inventory[env].items():
  97. if hostname.split(':')[0] == self.host:
  98. results.append((hostname, server_info))
  99. # attempt to select the correct environment if specified
  100. if self.env:
  101. results = filter(lambda result: result[1]['ec2_tag_environment'] == self.env, results)
  102. if results:
  103. return results
  104. else:
  105. print "Could not find specified host: %s." % self.host
  106. # default - no results found.
  107. return None
  108. def list_hosts(self, limit=None):
  109. '''Function to print out the host inventory.
  110. Takes a single parameter to limit the number of hosts printed.
  111. '''
  112. if self.env:
  113. results = self.select_host()
  114. if len(results) == 1:
  115. hostname, server_info = results[0]
  116. sorted_keys = server_info.keys()
  117. sorted_keys.sort()
  118. for key in sorted_keys:
  119. print '{0:<35} {1}'.format(key, server_info[key])
  120. else:
  121. for host_id, server_info in results[:limit]:
  122. name = server_info['ec2_tag_Name']
  123. ec2_id = server_info['ec2_id']
  124. ip = server_info['ec2_ip_address']
  125. print '{ec2_tag_Name:<35} {ec2_tag_environment:<8} {ec2_id:<15} {ec2_ip_address}'.format(**server_info)
  126. if limit:
  127. print
  128. print 'Showing only the first %d results...' % limit
  129. print
  130. else:
  131. for env, host_ids in self.host_inventory.items():
  132. for host_id, server_info in host_ids.items():
  133. name = server_info['ec2_tag_Name']
  134. ec2_id = server_info['ec2_id']
  135. ip = server_info['ec2_ip_address']
  136. print '{ec2_tag_Name:<35} {ec2_tag_environment:<5} {ec2_id:<15} {ec2_ip_address}'.format(**server_info)
  137. def scp(self):
  138. '''scp files to or from a specified host
  139. '''
  140. try:
  141. # shell args start with the program name in position 1
  142. scp_args = ['/usr/bin/scp']
  143. if self.args.verbose:
  144. scp_args.append('-v')
  145. if self.args.recurse:
  146. scp_args.append('-r')
  147. if self.args.ssh_opts:
  148. for arg in self.args.ssh_opts.split(","):
  149. scp_args.append("-o%s" % arg)
  150. results = self.select_host()
  151. if self.args.debug: print results
  152. if not results:
  153. return # early exit, no results
  154. if len(results) > 1:
  155. print "Multiple results found for %s." % self.host
  156. for result in results:
  157. print "{ec2_tag_Name:<35} {ec2_tag_environment:<5} {ec2_id:<10}".format(**result[1])
  158. return # early exit, too many results
  159. # Assume we have one and only one.
  160. hostname, server_info = results[0]
  161. dns = server_info['ec2_public_dns_name']
  162. host_str = "%s%s%s" % (self.user, dns, self.path)
  163. if self.local_src:
  164. scp_args.append(self.args.src)
  165. scp_args.append(host_str)
  166. else:
  167. scp_args.append(host_str)
  168. scp_args.append(self.args.dest)
  169. print "Running: %s\n" % ' '.join(scp_args)
  170. os.execve('/usr/bin/scp', scp_args, os.environ)
  171. except:
  172. print traceback.print_exc()
  173. print sys.exc_info()
  174. if __name__ == '__main__':
  175. oscp = Oscp()