You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OneAuth/oab/src/cfg.rs

205 lines
5.4 KiB
Rust

2 years ago
//
// cfg.rs
// Copyright (C) 2022 veypi <veypi@qq.com>
// Distributed under terms of the MIT license.
//
//
//
//
//
use std::{
fs::File,
io::{self, Read},
time::Duration,
};
2 years ago
use clap::{Args, Parser, Subcommand};
2 years ago
use lazy_static::lazy_static;
use sea_orm::{ConnectOptions, Database, DatabaseConnection};
use sqlx::{mysql::MySqlPoolOptions, Pool};
1 year ago
use tracing::Level;
2 years ago
use crate::Result;
lazy_static! {
pub static ref CLI: AppCli = AppCli::new();
}
// lazy_static! {
// pub static ref CONFIG: ApplicationConfig = ApplicationConfig::new();
// }
#[derive(Debug, Parser)]
#[clap(name = "oab")]
#[clap(about = "oab", long_about = None)]
pub struct AppCli {
#[clap(short = 'c', value_name = "cfg",default_value_t = String::from("~/.config/oab/oab.yml"), value_hint = clap::ValueHint::DirPath)]
cfg: String,
#[clap(subcommand)]
pub command: Option<Clis>,
}
#[derive(Debug, Subcommand)]
pub enum Clis {
Init,
Web,
Stash(StashData),
}
#[derive(Debug, Args)]
#[clap(args_conflicts_with_subcommands = true)]
pub struct StashData {
command: Option<String>,
}
impl AppCli {
fn new() -> Self {
AppCli::parse()
}
}
#[derive(Debug, serde::Serialize, serde::Deserialize, Clone)]
pub struct ApplicationConfig {
#[serde(skip)]
pub db: DatabaseConnection,
}
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
pub struct AppState {
2 years ago
pub uuid: String,
pub key: String,
2 years ago
pub debug: bool,
pub server_url: String,
2 years ago
pub media_path: String,
2 years ago
pub db_url: String,
pub db_user: String,
pub db_pass: String,
pub db_name: String,
pub log_dir: Option<String>,
1 year ago
pub fs_root: String,
2 years ago
/// "100MB" 日志分割尺寸-单位KB,MB,GB
pub log_temp_size: Option<String>,
pub log_pack_compress: Option<String>,
pub log_level: Option<String>,
pub jwt_secret: Option<String>,
1 year ago
pub user_init_space: i64,
2 years ago
#[serde(skip)]
pub _sqlx: Option<Pool<sqlx::MySql>>,
#[serde(skip)]
pub _db: Option<DatabaseConnection>,
2 years ago
}
impl AppState {
2 years ago
pub fn new() -> Self {
2 years ago
let mut res = Self::defaut();
let mut f = match File::open(CLI.cfg.clone()) {
Ok(f) => f,
2 years ago
Err(ref e) if e.kind() == io::ErrorKind::NotFound => {
res.connect_sqlx().unwrap();
2 years ago
return res;
}
Err(e) => panic!("{}", e),
};
File::open(CLI.cfg.clone()).unwrap();
let mut yml_data = String::new();
f.read_to_string(&mut yml_data).unwrap();
//读取配置
2 years ago
res = serde_yaml::from_str(&yml_data).expect("load config file fail");
if res.debug {
println!("load config:{:?}", res);
println!("///////////////////// Start On Debug Mode ////////////////////////////");
} else {
println!("release_mode is enable!")
}
res.connect_sqlx().unwrap();
2 years ago
res
}
pub fn defaut() -> Self {
Self {
2 years ago
uuid: "FR9P5t8debxc11aFF".to_string(),
key: "AMpjwQHwVjGsb1WC4WG6".to_string(),
2 years ago
debug: true,
server_url: "127.0.0.1:4001".to_string(),
db_url: "localhost:3306".to_string(),
2 years ago
db_user: "root".to_string(),
db_pass: "123456".to_string(),
1 year ago
db_name: "oneauth".to_string(),
log_dir: None,
log_temp_size: None,
log_pack_compress: None,
media_path: "/Users/veypi/test/media".to_string(),
fs_root: "/Users/veypi/test/media".to_string(),
log_level: None,
jwt_secret: None,
_sqlx: None,
_db: None,
1 year ago
user_init_space: 300,
2 years ago
}
}
pub fn save(&self) {}
pub fn db(&self) -> &DatabaseConnection {
match &self._db {
Some(d) => d,
None => panic!("failed"),
}
}
pub fn sqlx(&self) -> &sqlx::MySqlPool {
match &self._sqlx {
2 years ago
Some(d) => d,
None => panic!("failed"),
}
2 years ago
}
pub fn connect_sqlx(&mut self) -> Result<()> {
2 years ago
let url = format!(
"mysql://{}:{}@{}/{}",
self.db_user, self.db_pass, self.db_url, self.db_name
);
1 year ago
2 years ago
let p = MySqlPoolOptions::new()
.max_connections(5)
.connect_lazy(&url)?;
self._sqlx = Some(p);
Ok(())
}
pub async fn connect(&mut self) -> Result<()> {
let url = format!(
"mysql://{}:{}@{}/{}",
self.db_user, self.db_pass, self.db_url, self.db_name
);
let mut opt = ConnectOptions::new(url);
opt.max_connections(100)
.min_connections(1)
.connect_timeout(Duration::from_secs(8))
.acquire_timeout(Duration::from_secs(8))
.idle_timeout(Duration::from_secs(8))
1 year ago
.sqlx_logging(false)
.max_lifetime(Duration::from_secs(8));
self._db = Some(Database::connect(opt).await?);
Ok(())
2 years ago
}
}
struct FormatTime;
impl tracing_subscriber::fmt::time::FormatTime for FormatTime {
fn format_time(&self, w: &mut tracing_subscriber::fmt::format::Writer<'_>) -> std::fmt::Result {
2 years ago
let d = chrono::Local::now();
w.write_str(&d.format("%Y-%m-%d %H:%M:%S").to_string())
2 years ago
}
}
pub fn init_log() {
tracing_subscriber::fmt()
.with_line_number(true)
.with_timer(FormatTime {})
.with_max_level(Level::TRACE)
1 year ago
.with_target(false)
.with_file(true)
.init();
2 years ago
}