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
|
use crate::config::CONFIG;
use axum::{
extract::Path,
http::{HeaderMap, HeaderName, HeaderValue, StatusCode},
};
use reqwest::header::AUTHORIZATION;
use std::{
fs::{self, File},
io::Write,
path::Path as StdPath,
};
/// Create a new sound from a text
pub async fn tts(text: String, filename: String) -> Result<(), String> {
let url = "https://api.v7.unrealspeech.com/stream";
let api_key = format!("Bearer {}", CONFIG.unrealspeech_token);
let body = serde_json::json!({
"Text": text,
"VoiceId": "Will",
"Bitrate": "192k",
"Speed": "0",
"Pitch": "0.92",
"Codec": "libmp3lame",
});
let client = reqwest::Client::new();
let response = client
.post(url)
.header(AUTHORIZATION, api_key)
.json(&body)
.send()
.await
.map_err(|e| format!("Error creating new audio: {}", e))?;
if response.status().is_success() {
let filepath = format!("{}/{}", CONFIG.audio_path, filename);
if let Some(parent) = StdPath::new(&filepath).parent() {
fs::create_dir_all(parent)
.map_err(|e| format!("Failed to create directories: {}", e))?;
}
let mut file =
File::create(&filepath).map_err(|e| format!("Failed to create file: {}", e))?;
let content = response
.bytes()
.await
.map_err(|e| format!("Failed to get response bytes: {}", e))?;
file.write_all(&content)
.map_err(|e| format!("Failed to write file: {}", e))?;
Ok(())
} else {
Err(format!("Failed to fetch the audio: {}", response.status()))
}
}
/// Axum endpoint which shows files
pub async fn show_file(
Path(id): Path<String>,
) -> Result<(HeaderMap, Vec<u8>), (StatusCode, String)> {
let index = id.find('.').unwrap_or(usize::MAX);
let ext_name = if index != usize::MAX {
&id[index + 1..]
} else {
"xxx"
};
let mut headers = HeaderMap::new();
if ["mp3"].contains(&ext_name) {
headers.insert(
HeaderName::from_static("content-type"),
HeaderValue::from_str("audio/mpeg").unwrap(),
);
}
let file_name = format!("{}/{}", CONFIG.audio_path, id);
let file_path = StdPath::new(&file_name);
if !file_path.exists() {
return Err((StatusCode::NOT_FOUND, "File not found".to_string()));
}
fs::read(file_path)
.map(|file_content| (headers, file_content))
.map_err(|_| {
(
StatusCode::INTERNAL_SERVER_ERROR,
"Failed to read file".to_string(),
)
})
}
|