1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
# Copyright (C) 2020 Philipp Hörist <philipp AT hoerist.com>
#
# This file is part of nbxmpp.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; If not, see <http://www.gnu.org/licenses/>.
import logging
from nbxmpp.namespaces import Namespace
def is_error(error):
return isinstance(error, BaseError)
class BaseError(Exception):
def __init__(self, is_fatal=False):
self.is_fatal = is_fatal
self.text = ''
def __str__(self):
return self.text
def get_text(self):
return self.text
class StanzaError(BaseError):
log_level = logging.INFO
app_namespace = None
def __init__(self, stanza):
BaseError.__init__(self)
self.stanza = stanza
self._stanza_name = stanza.getName()
self._error_node = stanza.getTag('error')
self.condition = stanza.getError()
self.condition_data = self._error_node.getTagData(self.condition)
self.app_condition = self._get_app_condition()
self.type = stanza.getErrorType()
self.jid = stanza.getFrom()
self.id = stanza.getID()
self._text = {}
text_elements = self._error_node.getTags('text',
namespace=Namespace.STANZAS)
for element in text_elements:
lang = element.getXmlLang()
text = element.getData()
self._text[lang] = text
def _get_app_condition(self):
if self.app_namespace is None:
return None
for node in self._error_node.getChildren():
if node.getNamespace() == self.app_namespace:
return node.getName()
return None
def get_text(self, pref_lang=None):
if pref_lang is not None:
text = self._text.get(pref_lang)
if text is not None:
return text
if self._text:
text = self._text.get('en')
if text is not None:
return text
text = self._text.get(None)
if text is not None:
return text
return self._text.popitem()[1]
return ''
def set_text(self, lang, text):
self._text[lang] = text
def __str__(self):
condition = self.condition
if self.app_condition is not None:
condition = '%s (%s)' % (self.condition, self.app_condition)
text = self.get_text('en') or ''
if text:
text = ' - %s' % text
return 'Error from %s: %s%s' % (self.jid, condition, text)
class PubSubStanzaError(StanzaError):
app_namespace = Namespace.PUBSUB_ERROR
class HTTPUploadStanzaError(StanzaError):
app_namespace = Namespace.HTTPUPLOAD_0
def get_max_file_size(self):
if self.app_condition != 'file-too-large':
return None
node = self._error_node.getTag(self.app_condition)
try:
return float(node.getTagData('max-file-size'))
except Exception:
return None
def get_retry_date(self):
if self.app_condition != 'retry':
return None
return self._error_node.getTagAttr('stamp')
class MalformedStanzaError(BaseError):
log_level = logging.WARNING
def __init__(self, text, stanza, is_fatal=True):
BaseError.__init__(self, is_fatal=is_fatal)
self.stanza = stanza
self.text = str(text)
class CancelledError(BaseError):
log_level = logging.INFO
def __init__(self):
BaseError.__init__(self, is_fatal=True)
self.text = 'Task has been cancelled'
class TimeoutStanzaError(BaseError):
log_level = logging.INFO
def __init__(self):
BaseError.__init__(self)
self.text = 'Timeout reached'
class RegisterStanzaError(StanzaError):
def __init__(self, stanza, data):
StanzaError.__init__(self, stanza)
self._data = data
def get_data(self):
return self._data
class ChangePasswordStanzaError(StanzaError):
def __init__(self, stanza, form):
StanzaError.__init__(self, stanza)
self._form = form
def get_form(self):
return self._form
|