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
mod devices;
mod logging;
mod backup;
mod restore;
mod adb_command;
mod file_transfer;
mod database;

extern crate chrono;
extern crate fern;

#[macro_use]
extern crate log;

#[cfg(test)]
#[macro_use]
extern crate hamcrest;

extern crate failure;
#[macro_use] extern crate failure_derive;

use backup::Backup;
use database::management::DatabaseManager;
use devices::Device;
use failure::{err_msg, Error};
use restore::Restore;

pub fn version() -> &'static str {
    env!("CARGO_PKG_VERSION")
}

pub fn setup_logging(verbosity: u64) {
    logging::setup_logging(verbosity).expect("failed to initialize logging.");
}

pub fn get_printable_device_list() -> Result<String, Error> {
    let devices = Device::list_devices()?;
    
    if devices.len() > 0 {
        let devices_found = "Found the following devices:";
        info!("{}", devices_found);

        let mut device_list = format!("{}\r\n", devices_found);

        devices.into_iter().for_each(|device| {
            let device_info = format!("Id: '{}', details: '{}'", device.id, device.details);
            info!("{}", device_info);
            device_list = format!("{}\r\n{}", device_list, device_info)
        });

        Ok(device_list)
    } else {
        let no_devices_found =
            "No device found. Make sure that you connect at least one device with enabled \
             debug options.";
        warn!("{}", no_devices_found);

        Ok(String::from(no_devices_found))
    }
}

pub fn get_device_id() -> Result<String, Error> {
    check_too_many_devices(&None)?;

    let devices = Device::list_devices()?;
    
    if let Some(first_device) = devices.first() {
        Ok(first_device.id.clone())
    } else {
        let no_device_found =
            "No device found. Make sure that you connect one device with enabled \
             debug options.";
        warn!("{}", no_device_found);

        Err(err_msg(no_device_found))
    }
}

pub fn get_printable_app_list(device_id: Option<&str>) -> Result<String, Error> {
    check_too_many_devices(&device_id)?;

    let apps = Backup::list_apps(device_id)?;

    if apps.len() > 0 {
        let app_found = "Found the following app(s) on device:";
        info!("{}", app_found);

        let mut app_list = format!("{}\r\n", app_found);

        apps.into_iter().for_each(|app| {
            let app_name = format!("{}\n", app);
            info!("{}", app_name);
            app_list = format!("{}{}", app_list, app_name)
        });

        Ok(app_list)
    } else {
        let no_apps_found = "No packages found.";
        warn!("{}", no_apps_found);

        Ok(String::from(no_apps_found))
    }
}

pub fn backup(
    device_id: &str,
    apk: Option<&str>,
    shared: Option<&str>,
    system: Option<&str>,
    only_specified: Option<&str>,
) -> Result<String, Error> {
    check_too_many_devices(&Some(device_id))?;

    let mut backup_options = backup::BackupOptions::default(device_id);
    
    if let Some(_) = apk {
        backup_options = backup_options.with_applications();
    }
    if let Some(_) = shared {
        backup_options = backup_options.with_shared_storage();
    }
    if let Some(_) = system {
        backup_options = backup_options.with_system_apps();
    }
    if let Some(only_specified) = only_specified {
        backup_options = backup_options.with_only_specified_app(only_specified);
    }

    Backup::backup(backup_options)?;

    let db_manager = DatabaseManager::open_connection(&device_id)?;
    db_manager.insert_data(&format!("{}.ab", device_id))?;

    let backup_finished = "Backup finished.";
    info!("{}", backup_finished);

    Ok(String::from(backup_finished))
}

pub fn restore(device_id: &str) -> Result<String, Error> {
    check_too_many_devices(&Some(device_id))?;

    let db_manager = DatabaseManager::open_connection(&device_id)?;
    db_manager.get_latest_backup(&format!("{}.ab", device_id))?;

    Restore::restore(device_id)?;

    let restore_finished = "Restore finished.";
    info!("{}", restore_finished);

    Ok(String::from(restore_finished))
}

pub fn pull(device_id: Option<&str>, path: &str) -> Result<String, Error> {
    check_too_many_devices(&device_id)?;

    file_transfer::FileTransfer::pull(device_id, path)?;

    let pull_finished = "Pulling path finished.";
    info!("{}", pull_finished);

    Ok(String::from(pull_finished))
}

pub fn push(device_id: Option<&str>, src_path: &str, dst_path: &str) -> Result<String, Error> {
    check_too_many_devices(&device_id)?;

    file_transfer::FileTransfer::push(device_id, src_path, dst_path)?;

    let push_finished = format!("Pushing from {} to {} finished.", src_path, dst_path);
    info!("{}", push_finished);

    Ok(String::from(push_finished))
}

fn check_too_many_devices(device_id: &Option<&str>) -> Result<(), Error> {
    if device_id.is_none() && devices::Device::list_devices()?.len() > 1 {
        let error =
            "More than one device connected and no device provided.\n \
             Please execute adbackup again, with `--device` and one of the following device ids:\n";

        let error_message = format!("{}\n{}", error, get_printable_device_list()?);
        info!("{}", error_message);
        return Err(err_msg(error_message));
    }

    Ok(())
}