| [1027] | 1 | #!/usr/bin/env python | 
|---|
|  | 2 |  | 
|---|
| [1061] | 3 | # -*- coding: utf-8 -*- | 
|---|
|  | 4 |  | 
|---|
| [1055] | 5 | """ospi-client: performs operation for opsi clients on opsi server via JSON-RPC.""" | 
|---|
|  | 6 |  | 
|---|
| [1061] | 7 | __author__ = "Joerg Steffens" | 
|---|
| [1055] | 8 | __copyright__ = "Copyright 2012, dass IT GmbH" | 
|---|
|  | 9 | __license__ = "GPL" | 
|---|
|  | 10 | __version__ = "1.0" | 
|---|
|  | 11 | __email__ = "joerg.steffens@dass-it.de" | 
|---|
|  | 12 |  | 
|---|
|  | 13 | # | 
|---|
| [1051] | 14 | # Skript, dass ein OPSI-Rechner-Eintrag kopiert. | 
|---|
| [1046] | 15 | # D.h. die Produkte, Anforderung. | 
|---|
|  | 16 | # Ggf. optional Stand und ggf. Versionsnummer | 
|---|
|  | 17 | # Ggf. optional ProductProperties | 
|---|
| [1055] | 18 | # | 
|---|
| [1027] | 19 |  | 
|---|
| [1051] | 20 | #self.command("opsi-admin -d method host_createOpsiClient "+ \ | 
|---|
|  | 21 | #computername + " null " + "\\'"+description+"\\'" + \ | 
|---|
|  | 22 | #" \\'created by dassadmin\\' " + mac_address + " " + \ | 
|---|
|  | 23 | #ip_address) | 
|---|
|  | 24 | #self.command("opsi-admin -d method configState_create clientconfig.depot.id " + \ | 
|---|
|  | 25 | #computername + " " + depotName) | 
|---|
| [1047] | 26 |  | 
|---|
|  | 27 | import argparse | 
|---|
| [1046] | 28 | import jsonrpc | 
|---|
| [1027] | 29 | from pprint import pprint | 
|---|
|  | 30 |  | 
|---|
| [1063] | 31 | UrlJsonRpc="https://<username>:<password>@opsi:4447/rpc" | 
|---|
| [1027] | 32 |  | 
|---|
| [1063] | 33 | HelpEpilog="WARNING: python-json-rpc is known to have problems with HTTP proxies. In case of problems, make sure, the environment variables http_proxy and/or https_proxy are *not* set." | 
|---|
|  | 34 |  | 
|---|
| [1046] | 35 | class OpsiRpc: | 
|---|
| [1065] | 36 |  | 
|---|
|  | 37 | UrlJsonRpcDefault="https://opsi:4447/rpc" | 
|---|
| [1047] | 38 |  | 
|---|
|  | 39 | ProductAttributesCopy = ['actionRequest','actionResult','installationStatus','packageVersion','productVersion'] | 
|---|
|  | 40 |  | 
|---|
| [1065] | 41 | def __init__(self, urlJsonRpc = UrlJsonRpcDefault, debug=False ): | 
|---|
| [1047] | 42 | self.debug=debug | 
|---|
| [1046] | 43 | self.urlJsonRpc=urlJsonRpc | 
|---|
| [1047] | 44 | self.rpc=jsonrpc.ServiceProxy(self.urlJsonRpc) | 
|---|
| [1046] | 45 |  | 
|---|
|  | 46 | def dump(self): | 
|---|
|  | 47 | print self.urlJsonRpc | 
|---|
| [1047] | 48 | print self.rpc.getClientIds_list() | 
|---|
| [1051] | 49 |  | 
|---|
|  | 50 | def list(self): | 
|---|
|  | 51 | return self.rpc.getClientIds_list() | 
|---|
| [1046] | 52 |  | 
|---|
| [1051] | 53 | def exists(self, src): | 
|---|
|  | 54 | return len( self.rpc.host_getObjects( [], {"id":src} ) ) == 1 | 
|---|
|  | 55 |  | 
|---|
|  | 56 | def info(self, src): | 
|---|
|  | 57 | if not self.exists( src ): | 
|---|
|  | 58 | print "failed: opsi client", src, "does not exist" | 
|---|
|  | 59 | return False | 
|---|
|  | 60 | print src + ":" | 
|---|
| [1052] | 61 | host = self.rpc.host_getHashes( [], {"id":src} )[0] | 
|---|
|  | 62 | print "  IP:", host["ipAddress"] | 
|---|
|  | 63 | print "  MAC:", host["hardwareAddress"] | 
|---|
|  | 64 | print "  inventory:", host["inventoryNumber"] | 
|---|
|  | 65 | print "  last seen:", host["lastSeen"] | 
|---|
|  | 66 | print "  notes:", host["notes"] | 
|---|
|  | 67 |  | 
|---|
|  | 68 | print "  products:" | 
|---|
| [1051] | 69 | products = self.getProductOnClient( src, [] ) | 
|---|
|  | 70 | for i in products: | 
|---|
| [1052] | 71 | print "    " + i['productId'] + ":" | 
|---|
|  | 72 | print "      " + i['installationStatus'], "(", | 
|---|
|  | 73 | if i['actionRequest']: | 
|---|
|  | 74 | print i['actionRequest'], | 
|---|
|  | 75 | if i['actionProgress']: | 
|---|
|  | 76 | print i['actionProgress'], | 
|---|
|  | 77 | print ")" | 
|---|
|  | 78 | print "      ", | 
|---|
|  | 79 | pprint( i, indent=8 ) | 
|---|
| [1051] | 80 | return True | 
|---|
|  | 81 |  | 
|---|
|  | 82 | def clean(self, src): | 
|---|
|  | 83 | if not self.exists( src ): | 
|---|
|  | 84 | return False | 
|---|
|  | 85 | products = self.rpc.productOnClient_getObjects( [], { 'clientId': src } ) | 
|---|
|  | 86 | self.rpc.productOnClient_deleteObjects( products ) | 
|---|
|  | 87 | if self.debug: | 
|---|
|  | 88 | pprint( self.getProductOnClient( src ) ) | 
|---|
|  | 89 | return True | 
|---|
|  | 90 |  | 
|---|
| [1067] | 91 | def createClient(self, name, opsiHostKey, description, notes, hardwareAddress, ipAddress): | 
|---|
|  | 92 | self.rpc.host_createOpsiClient( name, opsiHostKey, description, notes, hardwareAddress, ipAddress ) | 
|---|
|  | 93 |  | 
|---|
|  | 94 | def clientSetDepot(self, name, depot): | 
|---|
|  | 95 | self.rpc.configState_create( "clientconfig.depot.id", name, depot ) | 
|---|
|  | 96 |  | 
|---|
|  | 97 | def copyClient( self, src, dst, ipAddress = None, hardwareAddress = None, depot = None, description = "" ): | 
|---|
| [1028] | 98 |  | 
|---|
| [1047] | 99 | print "create/update", dst, "from template", src + ":", | 
|---|
| [1064] | 100 | obj = { | 
|---|
|  | 101 | "id" : dst, | 
|---|
|  | 102 | "type" : "OpsiClient", | 
|---|
|  | 103 | "notes" : "copy of " + src, | 
|---|
| [1067] | 104 | "description" : description, | 
|---|
| [1064] | 105 | #"inventoryNumber" : "", | 
|---|
|  | 106 | } | 
|---|
|  | 107 | if hardwareAddress: | 
|---|
|  | 108 | obj['hardwareAddress'] = hardwareAddress | 
|---|
|  | 109 | if ipAddress: | 
|---|
|  | 110 | obj['ipAddress'] = ipAddress | 
|---|
|  | 111 |  | 
|---|
|  | 112 | if self.exists( dst ): | 
|---|
|  | 113 | self.rpc.host_updateObject(obj) | 
|---|
|  | 114 | else: | 
|---|
|  | 115 | self.rpc.host_insertObject(obj) | 
|---|
|  | 116 |  | 
|---|
| [1047] | 117 | if depot: | 
|---|
| [1067] | 118 | self.clientSetDepot(dst,depot) | 
|---|
| [1064] | 119 |  | 
|---|
| [1047] | 120 | if self.debug: | 
|---|
| [1051] | 121 | pprint( self.getProductOnClient( src ) ) | 
|---|
| [1047] | 122 | self.copyProductOnClient( src, dst ) | 
|---|
|  | 123 | # TODO: | 
|---|
|  | 124 | #  copy product properties: | 
|---|
|  | 125 | #  opsiCallClientBaculaProperties=[ "method", "getProductProperties_hash", "bacula" ] | 
|---|
|  | 126 | print "done" | 
|---|
| [1052] | 127 | return True | 
|---|
| [1047] | 128 |  | 
|---|
| [1046] | 129 |  | 
|---|
| [1051] | 130 | def getProductOnClient( self, client, attributes = ProductAttributesCopy ): | 
|---|
| [1047] | 131 | #pprint( self.rpc.productOnClient_getObjects( [], { 'clientId': client } ) ) | 
|---|
|  | 132 | #pprint( self.rpc.productOnClient_getHashes( attributes, { 'clientId': client } ) ) | 
|---|
| [1051] | 133 | return self.rpc.productOnClient_getHashes( [], { 'clientId': client } ) | 
|---|
| [1047] | 134 |  | 
|---|
|  | 135 | def copyProductOnClient( self, src, dst, attributes = ProductAttributesCopy ): | 
|---|
|  | 136 | products = self.rpc.productOnClient_getHashes( attributes, { 'clientId': src } ) | 
|---|
|  | 137 | for i in products: | 
|---|
|  | 138 | if self.debug: | 
|---|
| [1051] | 139 | print i['productId'] | 
|---|
| [1047] | 140 | pprint( i ) | 
|---|
|  | 141 | i['clientId'] = dst | 
|---|
|  | 142 | self.rpc.productOnClient_createObjects( i ) | 
|---|
| [1051] | 143 | if self.debug: | 
|---|
|  | 144 | pprint( self.getProductOnClient( dst ) ) | 
|---|
| [1047] | 145 |  | 
|---|
| [1028] | 146 |  | 
|---|
|  | 147 |  | 
|---|
| [1047] | 148 | if __name__ == '__main__': | 
|---|
| [1063] | 149 | parser = argparse.ArgumentParser(description='Command line tool for OPSI configuration.', epilog=HelpEpilog ) | 
|---|
|  | 150 |  | 
|---|
|  | 151 | parser.add_argument( '--url', required=True, help="OPSI Server JSON-RPC url, in following format: " + UrlJsonRpc ) | 
|---|
|  | 152 |  | 
|---|
| [1047] | 153 | parser.add_argument( '--debug', action='store_true', help="enable debugging output" ) | 
|---|
|  | 154 | #parser.add_argument( '--verbose', type=bool, help="add debugging output" ) | 
|---|
| [1028] | 155 |  | 
|---|
| [1050] | 156 | subparsers = parser.add_subparsers(title='subcommands', | 
|---|
|  | 157 | description='valid subcommands', | 
|---|
|  | 158 | help='additional help', | 
|---|
|  | 159 | dest='subcommand' ) | 
|---|
| [1047] | 160 |  | 
|---|
| [1050] | 161 | parser_list = subparsers.add_parser('list', help='list all opsi clients' ) | 
|---|
|  | 162 |  | 
|---|
|  | 163 | parser_exists = subparsers.add_parser('exists', help='check, if a opsi clients exists' ) | 
|---|
|  | 164 | parser_exists.add_argument( 'src', help="source opsi client" ) | 
|---|
| [1051] | 165 |  | 
|---|
|  | 166 | parser_info = subparsers.add_parser('info', help='print information about a opsi client' ) | 
|---|
|  | 167 | parser_info.add_argument( 'src', help="opsi client" ) | 
|---|
|  | 168 |  | 
|---|
| [1050] | 169 | parser_clean = subparsers.add_parser('clean', help='remove all product states from a opsi client' ) | 
|---|
|  | 170 | parser_clean.add_argument( 'src', help="source opsi client to clean" ) | 
|---|
|  | 171 |  | 
|---|
|  | 172 | parser_copy = subparsers.add_parser('copy', help='copy/create a opsi client from a template opsi client') | 
|---|
|  | 173 | parser_copy.add_argument( 'src', help="source/template opsi client" ) | 
|---|
|  | 174 | parser_copy.add_argument( 'dst', help="opsi client to be created" ) | 
|---|
|  | 175 | parser_copy.add_argument( '--ip', help="IP address of the new opsi client" ) | 
|---|
|  | 176 | parser_copy.add_argument( '--mac', help="MAC address of the new opsi client" ) | 
|---|
|  | 177 | parser_copy.add_argument( '--depot', help="depot server the new opsi client should be located" ) | 
|---|
|  | 178 |  | 
|---|
| [1047] | 179 | args = parser.parse_args() | 
|---|
|  | 180 |  | 
|---|
| [1063] | 181 | opsi=OpsiRpc( args.url, args.debug ) | 
|---|
| [1050] | 182 |  | 
|---|
| [1051] | 183 | result = True | 
|---|
|  | 184 |  | 
|---|
|  | 185 | if args.subcommand == "list": | 
|---|
|  | 186 | print( "\n".join( opsi.list() ) ) | 
|---|
|  | 187 | elif args.subcommand == "exists": | 
|---|
|  | 188 | result = opsi.exists( args.src ) | 
|---|
|  | 189 | elif args.subcommand == "info": | 
|---|
|  | 190 | result = opsi.info( args.src ) | 
|---|
|  | 191 | elif args.subcommand == "clean": | 
|---|
|  | 192 | result = opsi.clean( args.src ) | 
|---|
|  | 193 | elif args.subcommand == "copy": | 
|---|
| [1052] | 194 | result = opsi.copyClient( args.src, args.dst, args.ip, args.mac, args.depot ) | 
|---|
| [1050] | 195 | else: | 
|---|
|  | 196 | print "not yet implemented" | 
|---|
|  | 197 |  | 
|---|
| [1051] | 198 | if args.debug: print result | 
|---|
|  | 199 |  | 
|---|
|  | 200 | if result: | 
|---|
|  | 201 | exit(0) | 
|---|
|  | 202 | else: | 
|---|
|  | 203 | exit(1) | 
|---|