chore: WebServer in config as vector for Multiples Webs
This commit is contained in:
parent
899566c9a2
commit
2f305ffecf
@ -31,7 +31,7 @@ pub async fn login_handler (
|
|||||||
let mut ctx = reqenv.ctx();
|
let mut ctx = reqenv.ctx();
|
||||||
let req_module = "";
|
let req_module = "";
|
||||||
let app_module: &str;
|
let app_module: &str;
|
||||||
if ! req_module.is_empty() && req_module != reqenv.config().default_module.as_str() {
|
if ! req_module.is_empty() && req_module != reqenv.websrvr().default_module.as_str() {
|
||||||
app_module = req_module;
|
app_module = req_module;
|
||||||
} else {
|
} else {
|
||||||
app_module = "";
|
app_module = "";
|
||||||
@ -45,7 +45,7 @@ pub async fn login_handler (
|
|||||||
match reqenv
|
match reqenv
|
||||||
.render_page(
|
.render_page(
|
||||||
&mut ctx,
|
&mut ctx,
|
||||||
reqenv.config().templates_path.as_str(),
|
reqenv.websrvr().templates_path.as_str(),
|
||||||
"login/index.html",
|
"login/index.html",
|
||||||
"index.html",
|
"index.html",
|
||||||
format!("login/{}.toml", lang.to_owned())
|
format!("login/{}.toml", lang.to_owned())
|
||||||
@ -95,9 +95,9 @@ pub async fn loginin_handler(
|
|||||||
Ok(token) => // Ok(token.to_string()),o
|
Ok(token) => // Ok(token.to_string()),o
|
||||||
match reqenv.check_authentication(token.to_owned()).await {
|
match reqenv.check_authentication(token.to_owned()).await {
|
||||||
Ok(usrctx) => {
|
Ok(usrctx) => {
|
||||||
let mut path = format!("{}/profiles/{}/{}/defs.yaml",reqenv.config().resources_path,&body.mapkey,&usrctx.user_id);
|
let mut path = format!("{}/profiles/{}/{}/defs.yaml",reqenv.websrvr().resources_path,&body.mapkey,&usrctx.user_id);
|
||||||
if ! std::path::Path::new(&path).exists() {
|
if ! std::path::Path::new(&path).exists() {
|
||||||
path = format!("{}/profiles/{}/defs.yaml",reqenv.config().resources_path,&prfx);
|
path = format!("{}/profiles/{}/defs.yaml",reqenv.websrvr().resources_path,&prfx);
|
||||||
}
|
}
|
||||||
let content = Profile::load_fs_content(path.into());
|
let content = Profile::load_fs_content(path.into());
|
||||||
// let lang = opts.lang.unwrap_or_else(|| String::from("es"));
|
// let lang = opts.lang.unwrap_or_else(|| String::from("es"));
|
||||||
@ -144,9 +144,9 @@ pub async fn checkin_handler(
|
|||||||
// let allow_origin = reqenv.config().allow_origin;
|
// let allow_origin = reqenv.config().allow_origin;
|
||||||
match &reqenv.check_authentication(body.data.to_owned()).await {
|
match &reqenv.check_authentication(body.data.to_owned()).await {
|
||||||
Ok(usrctx) => { // Ok(token.to_string()),
|
Ok(usrctx) => { // Ok(token.to_string()),
|
||||||
let mut path = format!("{}/profiles/{}/{}/defs.yaml",reqenv.config().resources_path,&body.mapkey,&usrctx.user_id);
|
let mut path = format!("{}/profiles/{}/{}/defs.yaml",reqenv.websrvr().resources_path,&body.mapkey,&usrctx.user_id);
|
||||||
if ! std::path::Path::new(&path).exists() {
|
if ! std::path::Path::new(&path).exists() {
|
||||||
path = format!("{}/profiles/{}/defs.yaml",reqenv.config().resources_path,&body.mapkey);
|
path = format!("{}/profiles/{}/defs.yaml",reqenv.websrvr().resources_path,&body.mapkey);
|
||||||
}
|
}
|
||||||
let content = Profile::load_fs_content(path.into());
|
let content = Profile::load_fs_content(path.into());
|
||||||
let res = Profile::to_yaml(content);
|
let res = Profile::to_yaml(content);
|
||||||
|
@ -60,7 +60,7 @@ pub async fn upload_handler (
|
|||||||
let mut ctx = req.ctx();
|
let mut ctx = req.ctx();
|
||||||
let req_module = "";
|
let req_module = "";
|
||||||
let app_module: &str;
|
let app_module: &str;
|
||||||
if ! req_module.is_empty() && req_module != req.config().default_module.as_str() {
|
if ! req_module.is_empty() && req_module != req.websrvr().default_module.as_str() {
|
||||||
app_module = req_module;
|
app_module = req_module;
|
||||||
} else {
|
} else {
|
||||||
app_module = "";
|
app_module = "";
|
||||||
@ -73,7 +73,7 @@ pub async fn upload_handler (
|
|||||||
match req
|
match req
|
||||||
.render_page(
|
.render_page(
|
||||||
&mut ctx,
|
&mut ctx,
|
||||||
req.config().templates_path.as_str(),
|
req.websrvr().templates_path.as_str(),
|
||||||
"upload/index.html",
|
"upload/index.html",
|
||||||
"index.html",
|
"index.html",
|
||||||
format!("upload/{}.toml", lang.to_owned())
|
format!("upload/{}.toml", lang.to_owned())
|
||||||
@ -135,7 +135,7 @@ pub async fn uploadin_handler(
|
|||||||
// let allow_origin = req.config().allow_origin;
|
// let allow_origin = req.config().allow_origin;
|
||||||
match req.user_authentication().await {
|
match req.user_authentication().await {
|
||||||
Ok(auth) => {
|
Ok(auth) => {
|
||||||
let mut files_path = format!("{}/{}", req.config().upload_path,&auth.user_id);
|
let mut files_path = format!("{}/{}", req.websrvr().upload_path,&auth.user_id);
|
||||||
if ! std::path::Path::new(&files_path).exists() {
|
if ! std::path::Path::new(&files_path).exists() {
|
||||||
std::fs::create_dir(&files_path).unwrap_or_else(|e| { println!("Error create dir {}: {}", &files_path,e); files_path = String::from("");});
|
std::fs::create_dir(&files_path).unwrap_or_else(|e| { println!("Error create dir {}: {}", &files_path,e); files_path = String::from("");});
|
||||||
if files_path.is_empty() {
|
if files_path.is_empty() {
|
||||||
|
@ -16,7 +16,7 @@ use warp::{
|
|||||||
use reqtasks::ReqTasks;
|
use reqtasks::ReqTasks;
|
||||||
use app_env::{
|
use app_env::{
|
||||||
appenv::AppEnv,
|
appenv::AppEnv,
|
||||||
config::Config,
|
config::{Config, WebServer},
|
||||||
module::Module,
|
module::Module,
|
||||||
AppStore,
|
AppStore,
|
||||||
// AppData,
|
// AppData,
|
||||||
@ -95,6 +95,10 @@ impl ReqEnv {
|
|||||||
#[must_use]
|
#[must_use]
|
||||||
pub fn config(&self) -> Config {
|
pub fn config(&self) -> Config {
|
||||||
self.req.config()
|
self.req.config()
|
||||||
|
}
|
||||||
|
#[must_use]
|
||||||
|
pub fn websrvr(&self) -> WebServer {
|
||||||
|
self.req.config().websrvrs[self.req.env().curr_web].to_owned()
|
||||||
}
|
}
|
||||||
#[must_use]
|
#[must_use]
|
||||||
pub fn module(&self) -> Module {
|
pub fn module(&self) -> Module {
|
||||||
|
@ -14,7 +14,7 @@ use tera::Tera;
|
|||||||
use app_env::{
|
use app_env::{
|
||||||
AppStore,
|
AppStore,
|
||||||
appenv::AppEnv,
|
appenv::AppEnv,
|
||||||
config::Config,
|
config::{Config,WebServer},
|
||||||
module::Module,
|
module::Module,
|
||||||
appdata::AppData
|
appdata::AppData
|
||||||
};
|
};
|
||||||
@ -118,6 +118,11 @@ impl ReqTasks {
|
|||||||
pub fn config(&self) -> Config {
|
pub fn config(&self) -> Config {
|
||||||
self.app_data.env.config.to_owned()
|
self.app_data.env.config.to_owned()
|
||||||
}
|
}
|
||||||
|
/// Get `AppEnv` Config
|
||||||
|
#[must_use]
|
||||||
|
pub fn websrvr(&self) -> WebServer {
|
||||||
|
self.app_data.env.config.websrvrs[self.app_data.env.curr_web].to_owned()
|
||||||
|
}
|
||||||
#[must_use]
|
#[must_use]
|
||||||
pub fn module(&self) -> Module {
|
pub fn module(&self) -> Module {
|
||||||
self.app_data.env.get_module(&self.key_module)
|
self.app_data.env.get_module(&self.key_module)
|
||||||
@ -136,13 +141,13 @@ impl ReqTasks {
|
|||||||
// }
|
// }
|
||||||
/// Get Lang list from header - accept-language
|
/// Get Lang list from header - accept-language
|
||||||
/// get first one but only root part as first two characters (es in case of es-ES)
|
/// get first one but only root part as first two characters (es in case of es-ES)
|
||||||
/// if lang is not in `Config.langs`it will fallback to `Config.default_lang`
|
/// if lang is not in `WebServer.langs`it will fallback to `Config.default_lang`
|
||||||
#[must_use]
|
#[must_use]
|
||||||
pub fn lang(&self) -> String {
|
pub fn lang(&self) -> String {
|
||||||
#[allow(unused_assignments)]
|
#[allow(unused_assignments)]
|
||||||
let mut lang = self.config().default_lang;
|
let mut lang = self.config().default_lang;
|
||||||
let default_lang = self.config().default_lang;
|
let default_lang = self.config().default_lang;
|
||||||
let langs = self.config().langs;
|
let langs = self.websrvr().langs;
|
||||||
// As fallback set default_lang
|
// As fallback set default_lang
|
||||||
lang = default_lang;
|
lang = default_lang;
|
||||||
// Get langs list from header
|
// Get langs list from header
|
||||||
@ -295,7 +300,7 @@ impl ReqTasks {
|
|||||||
self
|
self
|
||||||
.render_page(
|
.render_page(
|
||||||
&mut ctx,
|
&mut ctx,
|
||||||
app_env.config.templates_path.as_str(),
|
app_env.get_curr_websrvr_config().templates_path.as_str(),
|
||||||
template_name,
|
template_name,
|
||||||
fallback_template,
|
fallback_template,
|
||||||
data_path,
|
data_path,
|
||||||
|
Loading…
Reference in New Issue
Block a user