diff options
Diffstat (limited to 'ovh/soapi')
-rw-r--r-- | ovh/soapi/Makefile | 25 | ||||
-rwxr-xr-x | ovh/soapi/domainCapabilities | 24 | ||||
-rwxr-xr-x | ovh/soapi/domainList | 24 | ||||
-rwxr-xr-x | ovh/soapi/zoneEntryList | 24 |
4 files changed, 97 insertions, 0 deletions
diff --git a/ovh/soapi/Makefile b/ovh/soapi/Makefile new file mode 100644 index 00000000..6a4a3a6b --- /dev/null +++ b/ovh/soapi/Makefile @@ -0,0 +1,25 @@ +.PHONY: all install +all: select-target + +exes := $(shell \ + find . -mindepth 1 -maxdepth 1 -type f -executable -exec basename \{\} \;) + +target_exes := $(addprefix ../../bin/,$(exes)) + +install: $(target_exes) + +../../bin/%: % SOAPpy + ln -vsnf ../ovh/soapi/$* $@ + +src: + mkdir $@ + +src/SOAPpy: src + cd $< && \ + svn co https://pywebsvcs.svn.sourceforge.net/svnroot/pywebsvcs/trunk/SOAPpy + +src/SOAPpy/build/lib/SOAPpy: src/SOAPpy + cd $< && python setup.py build + +SOAPpy: src/SOAPpy/build/lib/SOAPpy + ln -snf $< diff --git a/ovh/soapi/domainCapabilities b/ovh/soapi/domainCapabilities new file mode 100755 index 00000000..edce3f0d --- /dev/null +++ b/ovh/soapi/domainCapabilities @@ -0,0 +1,24 @@ +#!/usr/bin/python + +from os import environ +import pprint +from SOAPpy import WSDL + +soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl') + +username = environ['KREBS_OVH_USER'] +password = environ['KREBS_OVH_PASS'] + +#login +session = soap.login(username, password, 'de', 0) +print "login successfull" + +#domainCapabilities +result = soap.domainCapabilities(session, 'krebsco.de') +print "domainCapabilities successfull" +pp = pprint.PrettyPrinter(indent=4) +pp.pprint(result) # your code here ... + +#logout +soap.logout(session) +print "logout successfull" diff --git a/ovh/soapi/domainList b/ovh/soapi/domainList new file mode 100755 index 00000000..3f829ebe --- /dev/null +++ b/ovh/soapi/domainList @@ -0,0 +1,24 @@ +#!/usr/bin/python + +from os import environ +import pprint +from SOAPpy import WSDL + +soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl') + +username = environ['KREBS_OVH_USER'] +password = environ['KREBS_OVH_PASS'] + +#login +session = soap.login(username, password, 'de', 0) +print "login successfull" + +#domainHostList +result = soap.domainList(session) +print "domainList successfull" +pp = pprint.PrettyPrinter(indent=4) +pp.pprint(result) # your code here ... + +#logout +soap.logout(session) +print "logout successfull" diff --git a/ovh/soapi/zoneEntryList b/ovh/soapi/zoneEntryList new file mode 100755 index 00000000..7c032462 --- /dev/null +++ b/ovh/soapi/zoneEntryList @@ -0,0 +1,24 @@ +#!/usr/bin/python + +from os import environ +import pprint +from SOAPpy import WSDL + +soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl') + +username = environ['KREBS_OVH_USER'] +password = environ['KREBS_OVH_PASS'] + +#login +session = soap.login(username, password, 'de', 0) +print "login successfull" + +#zoneEntryList +result = soap.zoneEntryList(session, 'krebsco.de') +print "zoneEntryList successfull" +pp = pprint.PrettyPrinter(indent=4) +pp.pprint(result) # your code here ... + +#logout +soap.logout(session) +print "logout successfull" |