9578053 Jan 22 2022 distfiles.gentoo.org/distfiles/gajim-1.3.3-2.tar.gz
This commit is contained in:
parent
a5b3822651
commit
4c1b226bff
1045 changed files with 753037 additions and 18 deletions
59
gajim/common/modules/last_activity.py
Normal file
59
gajim/common/modules/last_activity.py
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
# 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/>.
|
||||
|
||||
# XEP-0012: Last Activity
|
||||
|
||||
import nbxmpp
|
||||
from nbxmpp.namespaces import Namespace
|
||||
from nbxmpp.structs import StanzaHandler
|
||||
|
||||
from gajim.common import app
|
||||
from gajim.common import idle
|
||||
from gajim.common.modules.base import BaseModule
|
||||
|
||||
|
||||
class LastActivity(BaseModule):
|
||||
def __init__(self, con):
|
||||
BaseModule.__init__(self, con)
|
||||
|
||||
self.handlers = [
|
||||
StanzaHandler(name='iq',
|
||||
typ='get',
|
||||
callback=self._answer_request,
|
||||
ns=Namespace.LAST),
|
||||
]
|
||||
|
||||
def _answer_request(self, _con, stanza, properties):
|
||||
self._log.info('Request from %s', properties.jid)
|
||||
|
||||
allow_send = app.settings.get_account_setting(self._account,
|
||||
'send_idle_time')
|
||||
if app.is_installed('IDLE') and allow_send:
|
||||
iq = stanza.buildReply('result')
|
||||
query = iq.setQuery()
|
||||
seconds = idle.Monitor.get_idle_sec()
|
||||
query.attrs['seconds'] = seconds
|
||||
self._log.info('Respond with seconds: %s', seconds)
|
||||
else:
|
||||
iq = stanza.buildReply('error')
|
||||
err = nbxmpp.ErrorNode(nbxmpp.ERR_SERVICE_UNAVAILABLE)
|
||||
iq.addChild(node=err)
|
||||
|
||||
self._con.connection.send(iq)
|
||||
|
||||
raise nbxmpp.NodeProcessed
|
||||
|
||||
|
||||
def get_instance(*args, **kwargs):
|
||||
return LastActivity(*args, **kwargs), 'LastActivity'
|
||||
Loading…
Add table
Add a link
Reference in a new issue