~sschwarzer/ftputil

ftputil/sandbox/m2crypto_session.py -rw-r--r-- 1.3 KiB
77f2ca24Stefan Schwarzer Move item "Push to repository" a month ago
                                                                                
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
# Copyright (C) 2014-2018, Stefan Schwarzer

"""
Session factory class for use with M2Crypto.

Different from Python's `ftplib.FTP_TLS`, `M2Crypto.ftpslib.FTP_TLS`
uses a special socket object. This object's `sendall` method doesn't
work as expected for unicode arguments.

This module provides a workaround by wrapping the socket object so
that the argument to `sendall` is converted to a byte string before
being used.

See ticket #78 for details.
"""

import M2Crypto

import ftputil.tool


class M2CryptoSession(M2Crypto.ftpslib.FTP_TLS):

    # Argument names as in `ftplib.FTP_TLS`.
    def __init__(self, host, user, passwd):
        # Can't use `super` because `M2Crypto.ftpslib.FTP_TLS` is a
        # classic class.
        M2Crypto.ftpslib.FTP_TLS.__init__(self)
        self.connect(host, 21)
        self.auth_tls()
        self.login(user, passwd)
        self.prot_p()
        self._fix_socket()

    def _fix_socket(self):
        """
        Change the socket object so that arguments to `sendall`
        are converted to byte strings before being used.
        """
        original_sendall = self.sock.sendall
        # Bound method, therefore no `self` argument.
        def sendall(data):
            data = ftputil.tool.as_bytes(data)
            return original_sendall(data)
        self.sock.sendall = sendall