mirror of
https://github.com/amtoaer/bili-sync.git
synced 2026-05-11 10:00:18 +08:00
31 lines
803 B
Rust
31 lines
803 B
Rust
use rand::seq::IndexedRandom;
|
|
|
|
/// 默认的 auth_token 实现,生成随机 16 位字符串
|
|
pub(super) fn default_auth_token() -> String {
|
|
let byte_choices = b"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+-=";
|
|
let mut rng = rand::rng();
|
|
(0..16)
|
|
.map(|_| *(byte_choices.choose(&mut rng).expect("choose byte failed")) as char)
|
|
.collect()
|
|
}
|
|
|
|
pub(crate) fn default_bind_address() -> String {
|
|
"0.0.0.0:12345".to_string()
|
|
}
|
|
|
|
pub(super) fn default_time_format() -> String {
|
|
"%Y-%m-%d".to_string()
|
|
}
|
|
|
|
pub fn default_favorite_path() -> String {
|
|
"收藏夹/{{name}}".to_owned()
|
|
}
|
|
|
|
pub fn default_collection_path() -> String {
|
|
"合集/{{name}}".to_owned()
|
|
}
|
|
|
|
pub fn default_submission_path() -> String {
|
|
"投稿/{{name}}".to_owned()
|
|
}
|