from ranger.api.commands import * from ranger.core.loader import CommandLoader import os class compress(Command): def execute(self): cwd = self.fm.thisdir marked_files = cwd.get_selection() if not marked_files: return def refresh(_): cwd = self.fm.get_directory(original_path) cwd.load_content() original_path = cwd.path parts = self.line.strip().split() if len(parts) > 1: au_flags = [' '.join(parts[1:])] else: au_flags = [os.path.basename(self.fm.thisdir.path) + '.zip'] files_num = len(marked_files) files_num_str = str(files_num) + ' objects' if files_num > 1 else '1 object' descr = "Compressing " + files_num_str + " -> " + os.path.basename(au_flags[0]) obj = CommandLoader(args=['apack'] + au_flags + [os.path.relpath(f.path, cwd.path) for f in marked_files], descr=descr, read=True) obj.signal_bind('after', refresh) self.fm.loader.add(obj) def tab(self, tabnum): extension = ['.zip', '.tar.gz', '.rar', '.7z'] return ['compress ' + os.path.basename(self.fm.thisdir.path) + ext for ext in extension] class extract(Command): def execute(self): cwd = self.fm.thisdir copied_files = cwd.get_selection() if not copied_files: return def refresh(_): cwd = self.fm.get_directory(original_path) cwd.load_content() one_file = copied_files[0] cwd = self.fm.thisdir original_path = cwd.path line_args = self.line.split()[1:] if line_args: extraction_dir = os.path.join(cwd.path, "".join(line_args)) os.makedirs(extraction_dir, exist_ok=True) flags = ['-X', extraction_dir] flags += ['-e'] else: flags = ['-X', cwd.path] flags += ['-e'] self.fm.copy_buffer.clear() self.fm.cut_buffer = False if len(copied_files) == 1: descr = "Extracting: " + os.path.basename(one_file.path) else: descr = "Extracting files from: " + os.path.basename(one_file.dirname) obj = CommandLoader(args=['aunpack'] + flags + [f.path for f in copied_files], descr=descr, read=True) obj.signal_bind('after', refresh) self.fm.loader.add(obj) class extract_to_dirs(Command): def execute(self): cwd = self.fm.thisdir original_path = cwd.path copied_files = cwd.get_selection() if not copied_files: return def refresh(_): cwd = self.fm.get_directory(original_path) cwd.load_content() def make_flags(fn): flags = ['-D'] return flags one_file = copied_files[0] self.fm.copy_buffer.clear() self.fm.cut_buffer = False if len(copied_files) == 1: descr = "Extracting: " + os.path.basename(one_file.path) else: descr = "Extracting files from: " + os.path.basename(one_file.dirname) for f in copied_files: obj = CommandLoader(args=['aunpack'] + make_flags(f.path) + [f.path], descr=descr, read=True) obj.signal_bind('after', refresh) self.fm.loader.add(obj)