send session-accept stanza if user approve file transfer
This commit is contained in:
parent
182a448630
commit
5f96675d56
|
@ -47,10 +47,20 @@ class JingleFileTransfer(JingleContent):
|
||||||
else:
|
else:
|
||||||
self.weinitiate = True
|
self.weinitiate = True
|
||||||
|
|
||||||
|
if self.file_props != None:
|
||||||
|
self.file_props['sender'] = session.ourjid
|
||||||
|
self.file_props['session-type'] = 'jingle'
|
||||||
|
self.file_props['sid'] = session.sid
|
||||||
|
self.file_props['transfered_size'] = []
|
||||||
|
|
||||||
|
log.info("FT request: %s"%file_props)
|
||||||
|
|
||||||
|
|
||||||
if transport == None:
|
if transport == None:
|
||||||
self.transport = JingleTransportICEUDP()
|
self.transport = JingleTransportICEUDP()
|
||||||
|
|
||||||
self.session = session
|
self.session = session
|
||||||
|
self.media = 'file'
|
||||||
|
|
||||||
def __on_session_initiate(self, stanza, content, error, action):
|
def __on_session_initiate(self, stanza, content, error, action):
|
||||||
jid = unicode(stanza.getFrom())
|
jid = unicode(stanza.getFrom())
|
||||||
|
@ -60,6 +70,8 @@ class JingleFileTransfer(JingleContent):
|
||||||
file_props['sender'] = jid
|
file_props['sender'] = jid
|
||||||
file_props['request-id'] = unicode(stanza.getAttr('id'))
|
file_props['request-id'] = unicode(stanza.getAttr('id'))
|
||||||
|
|
||||||
|
file_props['session-type'] = 'jingle'
|
||||||
|
|
||||||
file_tag = content.getTag('description').getTag('offer').getTag('file')
|
file_tag = content.getTag('description').getTag('offer').getTag('file')
|
||||||
for attribute in file_tag.getAttrs():
|
for attribute in file_tag.getAttrs():
|
||||||
if attribute in ('name', 'size', 'hash', 'date'):
|
if attribute in ('name', 'size', 'hash', 'date'):
|
||||||
|
@ -76,6 +88,8 @@ class JingleFileTransfer(JingleContent):
|
||||||
file_props['sid'] = unicode(stanza.getTag('jingle').getAttr('sid'))
|
file_props['sid'] = unicode(stanza.getTag('jingle').getAttr('sid'))
|
||||||
file_props['transfered_size'] = []
|
file_props['transfered_size'] = []
|
||||||
|
|
||||||
|
self.file_props = file_props
|
||||||
|
|
||||||
log.info("FT request: %s"%file_props)
|
log.info("FT request: %s"%file_props)
|
||||||
|
|
||||||
#TODO
|
#TODO
|
||||||
|
|
|
@ -37,6 +37,9 @@ from common import dataforms
|
||||||
|
|
||||||
from common.socks5 import Socks5Receiver
|
from common.socks5 import Socks5Receiver
|
||||||
|
|
||||||
|
import logging
|
||||||
|
log = logging.getLogger('gajim.c.protocol.bytestream')
|
||||||
|
|
||||||
|
|
||||||
def is_transfer_paused(file_props):
|
def is_transfer_paused(file_props):
|
||||||
if 'stopped' in file_props and file_props['stopped']:
|
if 'stopped' in file_props and file_props['stopped']:
|
||||||
|
@ -125,6 +128,21 @@ class ConnectionBytestream:
|
||||||
# user response to ConfirmationDialog may come after we've disconneted
|
# user response to ConfirmationDialog may come after we've disconneted
|
||||||
if not self.connection or self.connected < 2:
|
if not self.connection or self.connected < 2:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
#file transfer initiated by a jingle session
|
||||||
|
log.info("send_file_approval: jingle session accept")
|
||||||
|
if file_props.get('session-type') == 'jingle':
|
||||||
|
session = self.get_jingle_session(file_props['sender'], file_props['sid'])
|
||||||
|
if not session:
|
||||||
|
return
|
||||||
|
jid = gajim.get_jid_without_resource(file_props['sender'])
|
||||||
|
resource = gajim.get_resource_from_jid(file_props['sender'])
|
||||||
|
|
||||||
|
if not session.accepted:
|
||||||
|
session.approve_session()
|
||||||
|
session.approve_content('file')
|
||||||
|
return
|
||||||
|
|
||||||
iq = xmpp.Iq(to=unicode(file_props['sender']), typ='result')
|
iq = xmpp.Iq(to=unicode(file_props['sender']), typ='result')
|
||||||
iq.setAttr('id', file_props['request-id'])
|
iq.setAttr('id', file_props['request-id'])
|
||||||
si = iq.setTag('si', namespace=xmpp.NS_SI)
|
si = iq.setTag('si', namespace=xmpp.NS_SI)
|
||||||
|
@ -138,6 +156,7 @@ class ConnectionBytestream:
|
||||||
field = _feature.setField('stream-method')
|
field = _feature.setField('stream-method')
|
||||||
field.delAttr('type')
|
field.delAttr('type')
|
||||||
field.setValue(xmpp.NS_BYTESTREAM)
|
field.setValue(xmpp.NS_BYTESTREAM)
|
||||||
|
log.info("send_file_approval: %s"%(str(iq)))
|
||||||
self.connection.send(iq)
|
self.connection.send(iq)
|
||||||
|
|
||||||
def send_file_rejection(self, file_props, code='403', typ=None):
|
def send_file_rejection(self, file_props, code='403', typ=None):
|
||||||
|
|
Loading…
Reference in New Issue