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
|
use diesel_async::AsyncPgConnection;
use log::debug;
use rand::random;
use serenity::{
all::ReactionType,
async_trait,
builder::{
CreateAttachment,
CreateMessage,
},
framework::standard::{
macros::group,
CommandResult,
},
model::channel::Message,
prelude::*,
};
use songbird::input::{
core::{
io::MediaSource,
probe::Hint,
},
AudioStream,
AudioStreamError,
Compose,
Input,
};
use crate::{
commands::songbird,
db::{
Audio,
Meme,
},
CONFIG,
};
pub use self::{
create::*,
delete::*,
history::*,
invoke::*,
};
mod create;
mod delete;
mod history;
mod invoke;
#[group]
#[commands(
meme,
audio_meme,
silent_meme,
omen,
audioomen,
silentomen,
addmeme,
addaudiomeme,
delmeme,
wat,
stats,
history,
rare_meme,
memers,
query
)]
struct Memes;
async fn send_meme(
ctx: &Context,
t: &Meme,
conn: &mut AsyncPgConnection,
msg: &Message,
) -> CommandResult {
let should_tts =
t.content.as_ref().map(|t| !t.is_empty()).unwrap_or(false) && random::<u32>() % 25 == 0;
debug!("sending meme (tts: {}): {:?}", should_tts, t);
let image = t.image(conn);
let audio = t.audio(conn);
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);
msg.channel_id.send_files(ctx, vec![att], cmsg).await?;
},
None => {
if t.content.is_some() {
msg.channel_id.send_message(ctx, cmsg).await?;
}
},
};
if let Some(audio) = audio {
let audio = audio?;
let (_sb, call) = songbird(ctx, msg).await?;
let mut call = call.lock().await;
if call.current_channel().is_none() {
call.join(CONFIG.discord.voice_channel()).await?;
}
call.enqueue_input(Input::Lazy(Box::new(audio))).await;
msg.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
}
}
|