aboutsummaryrefslogtreecommitdiff
path: root/src/commands/meme/mod.rs
blob: 603ec285f4efe910c56530d86bbaaf81c9a76dc9 (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
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
use std::{
    borrow::ToOwned,
    default::Default,
};

use diesel_async::AsyncPgConnection;
use grate::tracing;
use rand::random;
use serenity::{
    all::ReactionType,
    async_trait,
    builder::{
        CreateAttachment,
        CreateMessage,
    },
};
use songbird::input::{
    core::{
        io::MediaSource,
        probe::Hint,
    },
    AudioStream,
    AudioStreamError,
    Compose,
    Input,
};

pub use self::{
    create::*,
    delete::*,
    history::*,
    invoke::*,
};
use crate::{
    bot::PlaybackKey,
    commands::{
        playback,
        playback::{
            songbird,
            InvokeInfo,
        },
    },
    db::{
        Audio,
        Meme,
    },
    util,
    PoiseContext,
};

mod create;
mod delete;
mod history;
pub(crate) mod invoke;

pub fn commands() -> Vec<poise::Command<crate::PoiseData, anyhow::Error>> {
    vec![
        meme(),
        silent_meme(),
        audio_meme(),
        rare_meme(),
        omen(),
        silentomen(),
        audioomen(),
        addmeme(),
        addaudiomeme(),
        delmeme(),
        history(),
        stats(),
        memers(),
        wat(),
        query(),
    ]
}

async fn send_meme(
    ctx: PoiseContext<'_>,
    t: &Meme,
    conn: &mut AsyncPgConnection,
) -> anyhow::Result<()> {
    let should_tts =
        t.content.as_ref().map(|t| !t.is_empty()).unwrap_or(false) && random::<u32>() % 25 == 0;

    tracing::debug!(should_tts, meme = ?t, "sending meme");

    let image = t.image(conn).await;
    let audio = t.audio(conn).await;

    let cmsg = {
        let ret = CreateMessage::default().tts(should_tts);

        match t.content {
            Some(ref text) if !text.is_empty() => ret.content(text),
            _ => ret,
        }
    };

    match image {
        Some(image) => {
            let image = image?;
            let att = CreateAttachment::bytes(image.data.as_slice(), &image.filename);

            ctx.channel_id().send_files(ctx, vec![att], cmsg).await?;
        },

        None => {
            if t.content.is_some() {
                ctx.channel_id().send_message(ctx, cmsg).await?;
            }
        },
    };

    if let Some(audio) = audio {
        let audio = audio?;

        let Some(voice_channel) = util::best_voice_channel(ctx) else {
            tracing::error!(?ctx, "couldn't find a relevant voice channel");
            util::react(ctx, '🔇').await?;

            return Ok(());
        };

        let volume = util::volume(ctx).await;
        tracing::debug!(volume);

        let playback = {
            let data = ctx.serenity_context().data.read().await;
            data.get::<PlaybackKey>().unwrap().clone()
        };

        {
            let (_sb, call) = songbird(ctx).await?;
            let mut call = call.lock().await;

            if call.current_channel().is_none() {
                call.join(voice_channel).await?;
            }

            let input = Input::Lazy(Box::new(audio));

            let handle = call.enqueue_input(input).await;
            handle.set_volume(volume as _)?;

            playback.insert(handle.uuid(), playback::Metadata {
                invoker:     ctx.author().id,
                invoke_info: InvokeInfo::Meme {
                    meme: t.clone(),
                },
            });
        }

        util::react(ctx, ReactionType::Unicode("📣".to_owned())).await?;
    }

    Ok(())
}

#[async_trait]
impl Compose for Audio {
    fn create(&mut self) -> Result<AudioStream<Box<dyn MediaSource>>, AudioStreamError> {
        let ms = std::io::Cursor::new(self.data.clone());
        let ms: Box<dyn MediaSource> = Box::new(ms);

        let mut hint = Hint::new();
        hint.mime_type("audio/opus");

        Ok(AudioStream {
            input: ms,
            hint:  Some(hint),
        })
    }

    #[inline]
    async fn create_async(
        &mut self,
    ) -> Result<AudioStream<Box<dyn MediaSource>>, AudioStreamError> {
        self.create()
    }

    #[inline]
    fn should_create_async(&self) -> bool {
        false
    }
}