summaryrefslogtreecommitdiffstatshomepage
path: root/src/actions/terminal_print.rs
blob: e0c8599284a5908fb6dd4a8087800d8f7e3249a8 (plain) (blame)
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
use super::Action;
use crate::message::MessageConfig;
use crate::message::MessageParams;
use anyhow::Result;
use async_trait::async_trait;

#[derive(Debug)]
pub struct TerminalPrintAction<'a> {
    message_config: &'a MessageConfig,
}

impl<'a> TerminalPrintAction<'a> {
    pub fn new(message_config: &'a MessageConfig) -> Self {
        Self { message_config }
    }
}

#[async_trait]
impl Action<'_> for TerminalPrintAction<'_> {
    fn name(&self) -> &'static str { "terminal_print" }

    async fn run(&self, params: Option<&MessageParams<'_, '_>>) -> Result<()> {
        println!(
            "{}\n{}\n",
            self.message_config.subject(params)?,
            self.message_config.body(params)?
        );
        Ok(())
    }
}