80 lines
2.1 KiB
Python
80 lines
2.1 KiB
Python
# This file is part of Gajim.
|
|
#
|
|
# Gajim 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; version 3 only.
|
|
#
|
|
# Gajim 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 Gajim. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# Util module
|
|
|
|
from typing import Union
|
|
|
|
import nbxmpp
|
|
|
|
from gajim.common import app
|
|
|
|
|
|
def is_self_message(message: nbxmpp.Node,
|
|
groupchat: bool = False) -> bool:
|
|
if groupchat:
|
|
return False
|
|
frm = message.getFrom()
|
|
to = message.getTo()
|
|
return frm.bareMatch(to)
|
|
|
|
|
|
def is_muc_pm(message: nbxmpp.Node,
|
|
jid: nbxmpp.JID,
|
|
groupchat: bool = False) -> bool:
|
|
if groupchat:
|
|
return False
|
|
muc_user = message.getTag('x', namespace=nbxmpp.NS_MUC_USER)
|
|
if muc_user is not None:
|
|
return muc_user.getChildren() == []
|
|
|
|
# muc#user namespace was added in MUC 1.28 so we need a fallback
|
|
# Check if we know the jid
|
|
if app.logger.jid_is_room_jid(jid.getStripped()):
|
|
return True
|
|
return False
|
|
|
|
|
|
def from_xs_boolean(value: Union[str, bool]) -> bool:
|
|
# Convert a xs:boolean ('true', 'false', '1', '0', '')
|
|
# to a python boolean (True, False)
|
|
if isinstance(value, bool):
|
|
return value
|
|
|
|
if value in ('1', 'true'):
|
|
return True
|
|
|
|
# '0', 'false' or empty
|
|
if value in ('0', 'false', ''):
|
|
return False
|
|
|
|
raise ValueError(
|
|
'Cant convert %s to python boolean' % value)
|
|
|
|
|
|
def to_xs_boolean(value: Union[bool, None]) -> str:
|
|
# Convert to xs:boolean ('true', 'false')
|
|
# from a python boolean (True, False) or None
|
|
if value is True:
|
|
return 'true'
|
|
|
|
if value is False:
|
|
return 'false'
|
|
|
|
if value is None:
|
|
return 'false'
|
|
|
|
raise ValueError(
|
|
'Cant convert %s to xs:boolean' % value)
|