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
use clap::{ArgMatches, Command};
use seaplane::api::locks::v1::LockId;
use serde_json::json;
use crate::{
api::LocksReq,
cli::cmds::locks::{common, common::SeaplaneLocksCommonArgMatches, CliCommand},
context::{Ctx, LocksCtx},
error::Result,
printer::OutputFormat,
};
#[derive(Copy, Clone, Debug)]
pub struct SeaplaneLocksRelease;
impl SeaplaneLocksRelease {
pub fn command() -> Command<'static> {
Command::new("release")
.visible_alias("rl")
.about("Attempt to release a lock")
.arg(common::lock_name())
.arg(common::lock_id())
.arg(common::base64())
}
}
impl CliCommand for SeaplaneLocksRelease {
fn run(&self, ctx: &mut Ctx) -> Result<()> {
let mut req = LocksReq::new(ctx)?;
let locksctx = ctx.locks_ctx.get_mut_or_init();
let model_name = locksctx.lock_name.as_ref().map(|s| s.to_model());
req.set_identifiers(model_name, locksctx.lock_id.as_ref().map(|s| s.encoded().to_owned()))?;
req.release()?;
if ctx.args.out_format == OutputFormat::Table {
cli_println!("Successfully released the lock");
} else {
cli_println!(
"{}",
json!({"name": ctx.locks_ctx.get_or_init().lock_name.as_ref().unwrap()})
)
}
Ok(())
}
fn update_ctx(&self, matches: &ArgMatches, ctx: &mut Ctx) -> Result<()> {
ctx.locks_ctx
.init(LocksCtx::from_locks_common(&SeaplaneLocksCommonArgMatches(matches))?);
ctx.args.out_format = matches.get_one("format").copied().unwrap_or_default();
let mut locksctx = ctx.locks_ctx.get_mut().unwrap();
locksctx.base64 = matches.contains_id("base64");
let raw_lock_id = matches.get_one::<String>("lock-id").unwrap();
locksctx.lock_id = Some(LockId::from_encoded(raw_lock_id));
Ok(())
}
}