コード例 #1
0
ファイル: filelist.py プロジェクト: Richard-Ni/bareftp
    def makedir(self):
        _store = self.props.model
        _newiter = _store.insert(1)
        f = FtpFile(_('New Directory'))
        f.isdir = True
        f.icon = lib.icon_loader.load_icon(Gtk.STOCK_DIRECTORY)
        _store.set_value(_newiter, 0, f)
        _store.set_value(_newiter, 1, f.icon)
        _store.set_value(_newiter, 2, f.filename)

        _path = _store.get_path(_newiter)
        cr = self.cr_filename
        cr.props.editable = True
        self.signal_edit = cr.connect('edited', self.newdir_edited)
        self.signal_canceledit = cr.connect('editing-canceled', self.filename_editing_canceled)
        self.set_cursor_on_cell(_path, self.get_column(0), cr, True)
コード例 #2
0
    def _xdir(self):
        try:
            files = []
            for line in os.listdir(self.currentdir):
                filename = os.path.join(self.currentdir, line)
                if not os.path.exists(filename):
                    continue
                file_stats = os.stat(filename)
                if sys.version[0] == '3':
                    size = int(file_stats[stat.ST_SIZE])
                else:
                    size = long(file_stats[stat.ST_SIZE])

                date = datetime.datetime.fromtimestamp(
                    file_stats[stat.ST_MTIME])
                perms = lib.file_permission.str_from_mode(
                    file_stats[stat.ST_MODE])

                uid = file_stats[stat.ST_UID]
                gid = file_stats[stat.ST_GID]

                user = pwd.getpwuid(uid)[0]
                group = grp.getgrgid(gid)[0]

                f = FtpFile()
                f.filename = line
                f.size = size
                f.lastmodified = date
                f.permissions = perms
                f.owner = user
                f.group = group

                if stat.S_ISDIR(file_stats[stat.ST_MODE]):
                    f.isdir = True
                if stat.S_ISLNK(file_stats[stat.ST_MODE]):
                    f.islink = True
                files.append(f)

            self.update_file_list(files)
        except OSError as err:
            self.send_log_message(['error', 'LOCAL: %s' % str(err) + '\n'])
            return False
        except:
            self.send_log_message(
                ['error', 'LOCAL: %s' % sys.exc_info()[1] + '\n'])
            return False
        return True
コード例 #3
0
ファイル: filelist.py プロジェクト: bloodywing/bareftp
    def makedir(self):
        _store = self.props.model
        _newiter = _store.insert(1)
        f = FtpFile(_('New Directory'))
        f.isdir = True
        f.icon = lib.icon_loader.load_icon(Gtk.STOCK_DIRECTORY)
        _store.set_value(_newiter, 0, f)
        _store.set_value(_newiter, 1, f.icon)
        _store.set_value(_newiter, 2, f.filename)

        _path = _store.get_path(_newiter)
        cr = self.cr_filename
        cr.props.editable = True
        self.signal_edit = cr.connect('edited', self.newdir_edited)
        self.signal_canceledit = cr.connect('editing-canceled',
                                            self.filename_editing_canceled)
        self.set_cursor_on_cell(_path, self.get_column(0), cr, True)
コード例 #4
0
ファイル: local.py プロジェクト: Richard-Ni/bareftp
    def _xdir(self):
        try:
            files = []
            for line in os.listdir(self.currentdir):
                filename = os.path.join(self.currentdir, line)
                if not os.path.exists(filename):
                    continue
                file_stats = os.stat(filename)
                if sys.version[0] == '3':
                    size = int(file_stats[stat.ST_SIZE])
                else:
                    size = long(file_stats[stat.ST_SIZE])

                date = datetime.datetime.fromtimestamp(file_stats[stat.ST_MTIME])
                perms = lib.file_permission.str_from_mode(file_stats[stat.ST_MODE])

                uid = file_stats[stat.ST_UID]
                gid = file_stats[stat.ST_GID]

                user = pwd.getpwuid(uid)[0]
                group = grp.getgrgid(gid)[0]

                f = FtpFile()
                f.filename = line
                f.size = size
                f.lastmodified = date
                f.permissions = perms
                f.owner = user
                f.group = group

                if stat.S_ISDIR(file_stats[stat.ST_MODE]):
                    f.isdir = True
                if stat.S_ISLNK(file_stats[stat.ST_MODE]):
                    f.islink = True
                files.append(f)

            self.update_file_list(files)
        except OSError as err:
            self.send_log_message(['error', 'LOCAL: %s' % str(err) + '\n'])
            return False
        except:
            self.send_log_message(['error', 'LOCAL: %s' % sys.exc_info()[1] + '\n'])
            return False
        return True
コード例 #5
0
ファイル: listparser.py プロジェクト: bloodywing/bareftp
def parse_list_unix(list):
    files = []

    now = datetime.now()
    current_year = now.year

    for line in list:
        if line.startswith('total') or line.strip() == '':
            continue

        fields = get_fields(line)

        # field position
        idx = 0
        permissions = fields[idx]

        _is_dir = permissions.startswith('d')
        _is_link = permissions.startswith('l')

        idx += 1
        linkcount = 0
        if fields[idx][0].isdigit():
            try:
                linkcount = int(fields[idx])
            except:
                pass
        elif fields[idx][0] == '-':
            idx += 1

        # user and group
        idx += 1
        user = fields[idx]
        idx += 1
        group = fields[idx]

        # size
        idx += 1
        size = 0
        sizestr = fields[idx]
        # rearrange fields for listings without user
        if not sizestr[0].isdigit() and group[0].isdigit():
            sizestr = group
            group = user
            user = ''
        else:
            idx += 1

        if sys.version[0] == '3':
            size = int(sizestr)
        else:
            size = long(sizestr)

        lastmodified = None
        if fields[idx][0].isdigit():
            idx += 1

        datetimepos = idx
        timestr = fields[idx]
        idx += 1
        timestr += fields[idx]
        idx += 1
        timestr += fields[idx]

        try:
            if timestr.find(':') > 0:
                timestr += str(current_year)
                lastmodified = datetime.strptime(timestr, '%b%d%H:%M%Y')
            else:
                lastmodified = datetime.strptime(timestr, '%b%d%Y')

            if lastmodified > timedelta(days=2) + now:
                lastmodified = lastmodified + timedelta(weeks=-52)
        except:
            print timestr
            lastmodified = ''

        name = ''
        linkedname = ''
        pos = 0
        ok = True

        for i in range(datetimepos, datetimepos + 3):
            pos = line.find(fields[i], pos)
            if pos < 0:
                ok = False
                break
            else:
                pos += len(fields[i])
        if ok:
            remainder = line[pos:]
            if not _is_link:
                name = remainder
            else:
                pos = remainder.find('->')
                if pos <= 0:
                    name = remainder
                else:
                    name = remainder[0:pos].strip()
                    if pos + 2 < len(remainder):
                        linkedname = remainder[pos + 2:].strip()

        f = FtpFile()
        f.isdir = _is_dir
        f.islink = _is_link
        #f.filename = unicode(name.strip())
        f.filename = name.strip()
        f.linkdest = linkedname
        if sys.version[0] == '3':
            f.size = int(size)
        else:
            f.size = long(size)
        f.lastmodified = lastmodified
        f.owner = user
        f.group = group
        f.permissions = permissions
        files.append(f)

    return files
コード例 #6
0
ファイル: listparser.py プロジェクト: bloodywing/bareftp
def parse_list_win(list):
    files = []

    for line in list:
        if line.strip() == '':
            continue

        fields = get_fields(line)

        lastmodified = datetime.strptime(fields[0] + " " + fields[1],
                                         '%m-%d-%y %I:%M%p')
        _isdir = False
        _size = 0
        if fields[2].upper() == "<DIR>":
            _isdir = True
        else:
            _size = int(fields[2])

        ok = True
        pos = 0
        for i in range(pos, 3):
            pos = line.find(fields[i], pos)
            if pos < 0:
                ok = False
                break
            else:
                pos += len(fields[i])
        if ok:
            f = FtpFile()
            f.isdir = _isdir
            f.islink = False
            f.filename = line[pos:].strip()
            f.linkdest = ''
            if sys.version[0] == '3':
                f.size = int(_size)
            else:
                f.size = long(_size)
            f.lastmodified = lastmodified
            f.owner = ''
            f.group = ''
            f.permissions = ''
            files.append(f)

    return files
コード例 #7
0
ファイル: listparser.py プロジェクト: Richard-Ni/bareftp
def parse_list_unix(list):
    files = []

    now = datetime.now()
    current_year = now.year

    for line in list:
        if line.startswith('total') or line.strip() == '':
            continue

        fields = get_fields(line)

        # field position
        idx = 0
        permissions = fields[idx]

        _is_dir = permissions.startswith('d')
        _is_link = permissions.startswith('l')

        idx += 1
        linkcount = 0
        if fields[idx][0].isdigit():
            try:
                linkcount = int(fields[idx])
            except:
                pass
        elif fields[idx][0] == '-':
            idx += 1

        # user and group
        idx += 1
        user = fields[idx]
        idx += 1
        group = fields[idx]

        # size
        idx += 1
        size = 0
        sizestr = fields[idx]
        # rearrange fields for listings without user
        if not sizestr[0].isdigit() and group[0].isdigit():
            sizestr = group
            group = user
            user = ''
        else:
            idx += 1

        if sys.version[0] == '3':
            size = int(sizestr)
        else:
            size = long(sizestr)

        lastmodified = None
        if fields[idx][0].isdigit():
            idx += 1

        datetimepos = idx
        timestr = fields[idx]
        idx += 1
        timestr += fields[idx]
        idx += 1
        timestr += fields[idx]

        try:
            if timestr.find(':') > 0:
                timestr += str(current_year)
                lastmodified = datetime.strptime(timestr, '%b%d%H:%M%Y')
            else:
                lastmodified = datetime.strptime(timestr, '%b%d%Y')

            if lastmodified > timedelta(days=2) + now:
                lastmodified = lastmodified + timedelta(weeks=-52)
        except:
            print timestr
            lastmodified = ''

        name = ''
        linkedname = ''
        pos = 0
        ok = True

        for i in range(datetimepos, datetimepos + 3):
            pos = line.find(fields[i], pos)
            if pos < 0:
                ok = False
                break
            else:
                pos += len(fields[i])
        if ok:
            remainder = line[pos:]
            if not _is_link:
                name = remainder
            else:
                pos = remainder.find('->')
                if pos <= 0:
                    name = remainder
                else:
                    name = remainder[0:pos].strip()
                    if pos + 2 < len(remainder):
                        linkedname = remainder[pos+2:].strip()

        f = FtpFile()
        f.isdir = _is_dir
        f.islink = _is_link
        #f.filename = unicode(name.strip())
        f.filename = name.strip()
        f.linkdest = linkedname
        if sys.version[0] == '3':
            f.size = int(size)
        else:
            f.size = long(size)
        f.lastmodified = lastmodified
        f.owner = user
        f.group = group
        f.permissions = permissions
        files.append(f)

    return files
コード例 #8
0
ファイル: listparser.py プロジェクト: Richard-Ni/bareftp
def parse_list_win(list):
    files = []

    for line in list:
        if line.strip() == '':
            continue

        fields = get_fields(line)

        lastmodified = datetime.strptime(fields[0] + " " + fields[1], '%m-%d-%y %I:%M%p')
        _isdir = False
        _size = 0
        if fields[2].upper() == "<DIR>":
            _isdir = True
        else:
            _size = int(fields[2])

        ok = True
        pos = 0
        for i in range(pos, 3):
            pos = line.find(fields[i], pos)
            if pos < 0:
                ok = False
                break
            else:
                pos += len(fields[i])
        if ok:
            f = FtpFile()
            f.isdir = _isdir
            f.islink = False
            f.filename = line[pos:].strip()
            f.linkdest = ''
            if sys.version[0] == '3':
                f.size = int(_size)
            else:
                f.size = long(_size)
            f.lastmodified = lastmodified
            f.owner = ''
            f.group = ''
            f.permissions = ''
            files.append(f)

    return files