import pycurl import sys, getopt from StringIO import StringIO import json import copy from importNormativeElements import createNormativeElement from importCommon import * ################################################################################################################################################ # # # Import all users from a given file # # # # activation : # # python importUsers.py [-i | --ip=] [-p | --port= ] [-f | --ifile= ] # # # # shortest activation (be host = localhost, be port = 8080): # # # python importUsers.py [-f | --ifile= ] # # # ################################################################################################################################################ def usage(): print sys.argv[0], '[-i | --ip=] [-p | --port= ] [-u | --user= ]' def importNormativeInterfaceLifecycleType(beHost, bePort, adminUser, exitOnSuccess, fileDir): result = createNormativeElement(beHost, bePort, adminUser, fileDir, "/sdc2/rest/v1/catalog/uploadType/interfaceLifecycle", "interfaceLifecycleTypes", "interfaceLifecycleTypeZip") printFrameLine() printNameAndReturnCode(result[0], result[1]) printFrameLine() if ( result[1] == None or result[1] not in [200, 201, 409] ): errorAndExit(1, None) else: if (exitOnSuccess == True): errorAndExit(0, None) def main(argv): print 'Number of arguments:', len(sys.argv), 'arguments.' beHost = 'localhost' bePort = '8080' adminUser = 'jh0003' try: opts, args = getopt.getopt(argv,"i:p:u:h:",["ip=","port=","user="]) except getopt.GetoptError: usage() errorAndExit(2, 'Invalid input') for opt, arg in opts: #print opt, arg if opt == '-h': usage() sys.exit(3) elif opt in ("-i", "--ip"): beHost = arg elif opt in ("-p", "--port"): bePort = arg elif opt in ("-u", "--user"): adminUser = arg print 'be host =',beHost,', be port =', bePort,', user =', adminUser if ( beHost == None ): usage() sys.exit(3) importNormativeInterfaceLifecycleType(beHost, bePort, adminUser, True, "../../../import/tosca/interface-lifecycle-types//") if __name__ == "__main__": main(sys.argv[1:])