/usr/share/backintime/common/cli.py is in backintime-common 1.1.12-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | # -*- coding: utf-8 -*-
# Back In Time
# Copyright (C) 2012-2016 Germar Reitze
#
# This program 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; either version 2 of the License, or
# (at your option) any later version.
#
# This program 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 this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
import os
import sys
import tools
import snapshots
import bcolors
def restore(cfg, snapshot_id = None, what = None, where = None, **kwargs):
if what is None:
what = input('File to restore: ')
what = tools.prepare_path(os.path.abspath(os.path.expanduser(what)))
if where is None:
where = input('Restore to (empty for original path): ')
if where:
where = tools.prepare_path(os.path.abspath(os.path.expanduser(where)))
snapshots_ = snapshots.Snapshots(cfg)
snapshot_id = selectSnapshot(snapshots_, snapshot_id, 'SnapshotID to restore')
print('')
RestoreDialog(cfg, snapshots_, snapshot_id, what, where, **kwargs).run()
def remove(cfg, snapshot_ids = None, force = None):
snapshots_ = snapshots.Snapshots(cfg)
if not snapshot_ids:
snapshot_ids = (None,)
sids = [selectSnapshot(snapshots_, sid, 'SnapshotID to remove') for sid in snapshot_ids]
if not force:
print('Do you really want to remove this snapshots?')
[print(snapshots_.get_snapshot_display_name(sid)) for sid in sids]
if not 'yes' == input('(no/yes): '):
return
[snapshots_.remove_snapshot(sid) for sid in sids]
def checkConfig(cfg, crontab = True):
import mount
from exceptions import MountException
def announceTest():
print()
print(frame(test))
def failed():
print(test + ': ' + bcolors.FAIL + 'failed' + bcolors.ENDC)
def okay():
print(test + ': ' + bcolors.OKGREEN + 'done' + bcolors.ENDC)
def errorHandler(msg):
print(bcolors.WARNING + 'WARNING: ' + bcolors.ENDC + msg)
cfg.set_error_handler(errorHandler)
mode = cfg.get_snapshots_mode()
if cfg.SNAPSHOT_MODES[mode][0] is not None:
#pre_mount_check
test = 'Run mount tests'
announceTest()
mnt = mount.Mount(cfg = cfg, tmp_mount = True)
try:
mnt.pre_mount_check(mode = mode, first_run = True)
except MountException as ex:
failed()
print(str(ex))
return False
okay()
#okay, lets try to mount
test = 'Mount'
announceTest()
try:
hash_id = mnt.mount(mode = mode, check = False)
except MountException as ex:
failed()
print(str(ex))
return False
okay()
test = 'Check/prepair snapshot path'
announceTest()
snapshots_path = cfg.get_snapshots_path(mode = mode, tmp_mount = True)
if not cfg.set_snapshots_path( snapshots_path, mode = mode ):
failed()
return False
okay()
#umount
if not cfg.SNAPSHOT_MODES[mode][0] is None:
test = 'Unmount'
announceTest()
try:
mnt.umount(hash_id = hash_id)
except MountException as ex:
failed()
print(str(ex))
return False
okay()
test = 'Check config'
announceTest()
if not cfg.check_config():
failed()
return False
okay()
if crontab:
test = 'Install crontab'
announceTest()
if not cfg.setup_cron():
failed()
return False
okay()
return True
def selectSnapshot(snapshots_, snapshot_id = None, msg = 'SnapshotID'):
'''check if given snapshot is valid. If not print a list of all
snapshots and ask to choose one'''
snapshot_list = snapshots_.get_snapshots_list()
len_snapshots = len(snapshot_list)
if not snapshot_id is None:
if len(snapshot_id) == 19:
if snapshot_id in snapshot_list:
return snapshot_id
else:
print('SnapshotID %s not found.' % snapshot_id)
else:
try:
index = int(snapshot_id)
return snapshot_list[index]
except (ValueError, IndexError):
print('Invalid SnaphotID index: %s' % snapshot_id)
snapshot_id = None
columns = (terminalSize()[1] - 25) // 26 + 1
rows = len_snapshots // columns
if len_snapshots % columns > 0:
rows += 1
print('SnapshotID\'s:')
for row in range(rows):
line = []
for column in range(columns):
index = row + column * rows
if index > len_snapshots - 1:
continue
line.append('{i:>4}: {s}'.format(i = index, s = snapshot_list[index]))
print(' '.join(line))
print('')
while snapshot_id is None:
try:
sid = int(input(msg + ' ( 0 - %d ): ' % (len_snapshots - 1) ))
snapshot_id = snapshot_list[sid]
except (ValueError, IndexError):
print('Invalid Input')
continue
return snapshot_id
def terminalSize():
'''get terminal size'''
for fd in (sys.stdin, sys.stdout, sys.stderr):
try:
import fcntl, termios, struct
return [int(x) for x in struct.unpack('hh', fcntl.ioctl(fd, termios.TIOCGWINSZ, '1234'))]
except:
pass
return [24, 80]
def frame(msg, size = 32):
ret = ' ┌' + '─' * size + '┐\n'
ret += ' │' + msg.center(size) + '│\n'
ret += ' └' + '─' * size + '┘'
return ret
class RestoreDialog(object):
def __init__(self, cfg, snapshots_, snapshot_id, what, where, **kwargs):
self.config = cfg
self.snapshots = snapshots_
self.snapshot_id = snapshot_id
self.what = what
self.where = where
self.kwargs = kwargs
self.log_file = self.config.get_restore_log_file()
if os.path.exists(self.log_file):
os.remove(self.log_file)
def callback(self, line, *params):
if not line:
return
print(line)
with open(self.log_file, 'a') as log:
log.write(line + '\n')
def run(self):
self.snapshots.restore(self.snapshot_id, self.what, self.callback, self.where, **self.kwargs)
print('\nLog saved to %s' % self.log_file)
|