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
use std::convert;
use std::ffi;
use std::process::Command;

use failure::Error;

pub struct Occ<P> {
    path: P,
}

impl<P> Occ<P>
where
    P: convert::AsRef<ffi::OsStr>,
{
    pub fn new(occ_path: P) -> Self {
        Occ { path: occ_path }
    }

    fn start_command(&self) -> Command {
        Command::new(&self.path)
    }

    fn invoke_command(&self, mut cmd: Command) -> Result<(), Error> {
        cmd.status()?;
        Ok(())
    }

    pub fn enable_app(&self, app_id: &String) -> Result<(), Error> {
        let mut cmd = self.start_command();
        cmd.arg("app:enable").arg(app_id);
        self.invoke_command(cmd)
    }

    pub fn disable_app(&self, app_id: &String) -> Result<(), Error> {
        let mut cmd = self.start_command();
        cmd.arg("app:disable").arg(app_id);
        self.invoke_command(cmd)
    }
}