Compare commits
3 Commits
72f148f7b9
...
f62579ce90
Author | SHA1 | Date | |
---|---|---|---|
f62579ce90 | |||
496b915c9d | |||
9f9df79ab8 |
@ -28,6 +28,14 @@ mitel\_ommclient2.connection module
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
mitel\_ommclient2.exceptions module
|
||||
-----------------------------------
|
||||
|
||||
.. automodule:: mitel_ommclient2.exceptions
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
mitel\_ommclient2.session module
|
||||
--------------------------------
|
||||
|
||||
|
@ -37,6 +37,18 @@ class OMMClient2:
|
||||
else:
|
||||
self.session = session
|
||||
|
||||
def get_account(self, id):
|
||||
"""
|
||||
Get account
|
||||
|
||||
:param id: User id
|
||||
"""
|
||||
|
||||
r = self.session.request(message.GetAccount(id))
|
||||
r.raise_on_error()
|
||||
|
||||
return r.account[0]
|
||||
|
||||
def ping(self):
|
||||
"""
|
||||
Is OMM still there?
|
||||
|
156
mitel_ommclient2/exceptions.py
Normal file
156
mitel_ommclient2/exceptions.py
Normal file
@ -0,0 +1,156 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
exception_classes = {}
|
||||
|
||||
def _collect_exception_class(c):
|
||||
"""
|
||||
Decorator that collects exception classes for parsing error codes.
|
||||
"""
|
||||
exception_classes[c.__name__] = c
|
||||
return c
|
||||
|
||||
|
||||
class OMResponseException(Exception):
|
||||
def __init__(self, response, msg=None):
|
||||
self.response = response
|
||||
if msg is None:
|
||||
msg = self.response.info
|
||||
super().__init__(msg)
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EAreaFull(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EAuth(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EDectRegDomainInvalid(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EEncryptNotAllowed(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EExist(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EFailed(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EForbidden(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EInProgress(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EInval(OMResponseException):
|
||||
def __init__(self, response):
|
||||
super().__init__(response, response.bad)
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EInvalidChars(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class ELicense(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class ELicenseFile(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class ELicenseWrongInstallId(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EMissing(OMResponseException):
|
||||
def __init__(self, response):
|
||||
super().__init__(response, response.bad)
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class ENoEnt(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class ENoMem(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EPerm(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EPwEmpty(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EPwSimilarToHost(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EPwSimilarToName(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EPwTooManySimilarChars(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EPwTooShort(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EPwTooSimilar(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EPwTooWeak(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EPwUnchanged(OMResponseException):
|
||||
pass
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class ETooLong(OMResponseException):
|
||||
def __init__(self, response):
|
||||
super().__init__(response, response.bad + ", maximum of " + str(response.maxLen))
|
||||
|
||||
|
||||
@_collect_exception_class
|
||||
class EWlanRegDomainInvalid(OMResponseException):
|
||||
pass
|
@ -2,6 +2,8 @@
|
||||
|
||||
from xml.dom.minidom import getDOMImplementation, parseString
|
||||
|
||||
from ..exceptions import exception_classes, OMResponseException
|
||||
|
||||
|
||||
class Request:
|
||||
"""
|
||||
@ -58,6 +60,23 @@ class Response:
|
||||
self.attrs = attrs
|
||||
self.childs = childs
|
||||
|
||||
def raise_on_error(self):
|
||||
"""
|
||||
Raises an exception if the response contains an error.
|
||||
|
||||
Usage::
|
||||
|
||||
>>> try:
|
||||
>>> r.raise_on_error()
|
||||
>>> except mitel_ommclient2.exceptions.EAuth as e:
|
||||
>>> print("We don't care about authentication!")
|
||||
|
||||
See children of :class:`mitel_ommclient2.exceptions.OMResponseException` for all possible exceptions.
|
||||
"""
|
||||
|
||||
if self.errCode is not None:
|
||||
raise exception_classes.get(self.errCode, OMResponseException)()
|
||||
|
||||
@property
|
||||
def seq(self):
|
||||
return self.attrs.get("seq")
|
||||
@ -78,10 +97,9 @@ class Response:
|
||||
def maxLen(self):
|
||||
return self.attrs.get("maxLen")
|
||||
|
||||
|
||||
from .getaccount import GetAccount, GetAccountResp
|
||||
from .ping import Ping, PingResp
|
||||
|
||||
|
||||
def construct(request):
|
||||
"""
|
||||
Builds the XML message DOM and returns as string
|
||||
@ -104,6 +122,7 @@ def construct(request):
|
||||
|
||||
def _response_type_by_name(name):
|
||||
response_types = [
|
||||
GetAccountResp,
|
||||
PingResp,
|
||||
]
|
||||
|
||||
|
27
mitel_ommclient2/messages/getaccount.py
Normal file
27
mitel_ommclient2/messages/getaccount.py
Normal file
@ -0,0 +1,27 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
from . import Request, Response
|
||||
|
||||
|
||||
class GetAccount(Request):
|
||||
def __init__(self, id, maxRecords=None, **kwargs):
|
||||
super().__init__("GetAccount", **kwargs)
|
||||
|
||||
self.attrs["id"] = id
|
||||
|
||||
if maxRecords is not None:
|
||||
self.attrs["maxRecords"] = maxRecords
|
||||
|
||||
@property
|
||||
def id(self):
|
||||
return self.attrs.get("id")
|
||||
|
||||
@property
|
||||
def maxRecords(self):
|
||||
return self.attrs.get("maxRecords")
|
||||
|
||||
|
||||
class GetAccountResp(Response):
|
||||
@property
|
||||
def account(self):
|
||||
return self.attrs.get("account")
|
@ -57,10 +57,13 @@ class Session:
|
||||
|
||||
self._connection.connect()
|
||||
|
||||
# Login
|
||||
self._connection.send(messages.Open(self.username, self.password))
|
||||
|
||||
res = self._wait_for_respose()
|
||||
|
||||
res.raise_on_error()
|
||||
|
||||
def request(self, request):
|
||||
"""
|
||||
Sends a request and waits for response
|
||||
|
Loading…
Reference in New Issue
Block a user