130 lines
4.6 KiB
Python
130 lines
4.6 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/>.
|
|
|
|
from gi.repository import Gtk
|
|
from gi.repository import Gdk
|
|
|
|
from gajim import vcard
|
|
|
|
from gajim.common import app
|
|
from gajim.common.i18n import _
|
|
|
|
from .add_contact import AddNewContactWindow
|
|
from .util import get_builder
|
|
|
|
|
|
class SubscriptionRequest(Gtk.ApplicationWindow):
|
|
def __init__(self, account, jid, text, user_nick=None):
|
|
Gtk.ApplicationWindow.__init__(self)
|
|
self.set_name('SubscriptionRequest')
|
|
self.set_application(app.app)
|
|
self.set_show_menubar(False)
|
|
self.set_resizable(False)
|
|
self.set_position(Gtk.WindowPosition.CENTER)
|
|
self.set_title(_('Subscription Request'))
|
|
|
|
self.jid = jid
|
|
self.account = account
|
|
self.user_nick = user_nick
|
|
|
|
self._ui = get_builder('subscription_request_window.ui')
|
|
self.add(self._ui.subscription_box)
|
|
self._ui.authorize_button.grab_default()
|
|
|
|
if len(app.connections) >= 2:
|
|
prompt_text = _(
|
|
'Subscription request for account %(account)s from '
|
|
'%(jid)s') % {'account': self.account, 'jid': self.jid}
|
|
else:
|
|
prompt_text = _('Subscription request from %s') % self.jid
|
|
|
|
self._ui.request_label.set_text(prompt_text)
|
|
self._ui.subscription_text.set_text(text)
|
|
|
|
con = app.connections[self.account]
|
|
if con.get_module('Blocking').supported:
|
|
self._ui.block_button.set_sensitive(True)
|
|
self._ui.report_button.set_sensitive(True)
|
|
|
|
self.connect('key-press-event', self._on_key_press)
|
|
|
|
self._ui.connect_signals(self)
|
|
self.show_all()
|
|
|
|
def _on_key_press(self, _widget, event):
|
|
if event.keyval == Gdk.KEY_Escape:
|
|
self.destroy()
|
|
|
|
def _on_authorize_clicked(self, _widget):
|
|
"""
|
|
Accept the request
|
|
"""
|
|
con = app.connections[self.account]
|
|
con.get_module('Presence').subscribed(self.jid)
|
|
self.destroy()
|
|
contact = app.contacts.get_contact(self.account, self.jid)
|
|
if not contact or _('Not in contact list') in contact.groups:
|
|
AddNewContactWindow(self.account, self.jid, self.user_nick)
|
|
|
|
def _on_contact_info_clicked(self, _widget):
|
|
"""
|
|
Ask for vCard
|
|
"""
|
|
open_windows = app.interface.instances[self.account]['infos']
|
|
if self.jid in open_windows:
|
|
open_windows[self.jid].window.present()
|
|
else:
|
|
contact = app.contacts.create_contact(jid=self.jid,
|
|
account=self.account)
|
|
app.interface.instances[self.account]['infos'][self.jid] = \
|
|
vcard.VcardWindow(contact, self.account)
|
|
# Remove xmpp page
|
|
app.interface.instances[self.account]['infos'][self.jid].xml.\
|
|
get_object('information_notebook').remove_page(0)
|
|
|
|
def _on_start_chat_clicked(self, _widget):
|
|
"""
|
|
Open chat
|
|
"""
|
|
app.interface.new_chat_from_jid(self.account, self.jid)
|
|
|
|
def _on_deny_clicked(self, _widget):
|
|
self._deny_request()
|
|
self._remove_contact()
|
|
|
|
def _on_block_clicked(self, _widget):
|
|
app.events.remove_events(self.account, self.jid)
|
|
self._deny_request()
|
|
con = app.connections[self.account]
|
|
con.get_module('Blocking').block([self.jid])
|
|
self._remove_contact()
|
|
|
|
def _on_report_clicked(self, _widget):
|
|
app.events.remove_events(self.account, self.jid)
|
|
self._deny_request()
|
|
con = app.connections[self.account]
|
|
con.get_module('Blocking').block([self.jid], report='spam')
|
|
self._remove_contact()
|
|
|
|
def _deny_request(self):
|
|
con = app.connections[self.account]
|
|
con.get_module('Presence').unsubscribed(self.jid)
|
|
|
|
def _remove_contact(self):
|
|
contact = app.contacts.get_contact(self.account, self.jid)
|
|
if contact and _('Not in contact list') in contact.get_shown_groups():
|
|
app.interface.roster.remove_contact(
|
|
self.jid, self.account, force=True, backend=True)
|
|
self.destroy()
|