Moved last config items to lua + small cleanup
This commit is contained in:
parent
8ad11e7965
commit
8d8878218c
|
@ -1,7 +1,7 @@
|
||||||
FROM gcr.io/distroless/cc-debian12:nonroot
|
FROM gcr.io/distroless/cc-debian12:nonroot
|
||||||
|
|
||||||
ENV AUTOMATION_CONFIG=/app/config.yml
|
ENV AUTOMATION_CONFIG=/app/config.lua
|
||||||
COPY ./config/config.yml /app/config.yml
|
COPY ./config.lua /app/config.lua
|
||||||
|
|
||||||
COPY ./build/automation /app/automation
|
COPY ./build/automation /app/automation
|
||||||
|
|
||||||
|
|
14
config.lua
14
config.lua
|
@ -1,5 +1,9 @@
|
||||||
print("Hello from lua")
|
print("Hello from lua")
|
||||||
|
|
||||||
|
automation.fulfillment = {
|
||||||
|
openid_url = "https://login.huizinga.dev/api/oidc",
|
||||||
|
}
|
||||||
|
|
||||||
local debug, value = pcall(automation.util.get_env, "DEBUG")
|
local debug, value = pcall(automation.util.get_env, "DEBUG")
|
||||||
if debug and value ~= "true" then
|
if debug and value ~= "true" then
|
||||||
debug = false
|
debug = false
|
||||||
|
@ -13,7 +17,7 @@ local function mqtt_automation(topic)
|
||||||
return "automation/" .. topic
|
return "automation/" .. topic
|
||||||
end
|
end
|
||||||
|
|
||||||
local mqtt_client = automation.create_mqtt_client({
|
local mqtt_client = automation.new_mqtt_client({
|
||||||
host = debug and "olympus.lan.huizinga.dev" or "mosquitto",
|
host = debug and "olympus.lan.huizinga.dev" or "mosquitto",
|
||||||
port = 8883,
|
port = 8883,
|
||||||
client_name = debug and "automation-debug" or "automation_rs",
|
client_name = debug and "automation-debug" or "automation_rs",
|
||||||
|
@ -24,13 +28,13 @@ local mqtt_client = automation.create_mqtt_client({
|
||||||
|
|
||||||
automation.device_manager:add(Ntfy.new({
|
automation.device_manager:add(Ntfy.new({
|
||||||
topic = automation.util.get_env("NTFY_TOPIC"),
|
topic = automation.util.get_env("NTFY_TOPIC"),
|
||||||
event_channel = automation.event_channel,
|
event_channel = automation.device_manager:event_channel(),
|
||||||
}))
|
}))
|
||||||
|
|
||||||
automation.device_manager:add(Presence.new({
|
automation.device_manager:add(Presence.new({
|
||||||
topic = "automation_dev/presence/+/#",
|
topic = "automation_dev/presence/+/#",
|
||||||
client = mqtt_client,
|
client = mqtt_client,
|
||||||
event_channel = automation.event_channel,
|
event_channel = automation.device_manager:event_channel(),
|
||||||
}))
|
}))
|
||||||
|
|
||||||
automation.device_manager:add(DebugBridge.new({
|
automation.device_manager:add(DebugBridge.new({
|
||||||
|
@ -58,7 +62,7 @@ automation.device_manager:add(LightSensor.new({
|
||||||
client = mqtt_client,
|
client = mqtt_client,
|
||||||
min = 22000,
|
min = 22000,
|
||||||
max = 23500,
|
max = 23500,
|
||||||
event_channel = automation.event_channel,
|
event_channel = automation.device_manager:event_channel(),
|
||||||
}))
|
}))
|
||||||
|
|
||||||
automation.device_manager:add(WakeOnLAN.new({
|
automation.device_manager:add(WakeOnLAN.new({
|
||||||
|
@ -110,7 +114,7 @@ automation.device_manager:add(Washer.new({
|
||||||
topic = mqtt_z2m("batchroom/washer"),
|
topic = mqtt_z2m("batchroom/washer"),
|
||||||
client = mqtt_client,
|
client = mqtt_client,
|
||||||
threshold = 1,
|
threshold = 1,
|
||||||
event_channel = automation.event_channel,
|
event_channel = automation.device_manager:event_channel(),
|
||||||
}))
|
}))
|
||||||
|
|
||||||
automation.device_manager:add(IkeaOutlet.new({
|
automation.device_manager:add(IkeaOutlet.new({
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
openid:
|
|
||||||
base_url: "https://login.huizinga.dev/api/oidc"
|
|
|
@ -1,2 +0,0 @@
|
||||||
openid:
|
|
||||||
base_url: "https://login.huizinga.dev/api/oidc"
|
|
11
src/auth.rs
11
src/auth.rs
|
@ -6,11 +6,6 @@ use serde::Deserialize;
|
||||||
|
|
||||||
use crate::error::{ApiError, ApiErrorJson};
|
use crate::error::{ApiError, ApiErrorJson};
|
||||||
|
|
||||||
#[derive(Debug, Clone, Deserialize)]
|
|
||||||
pub struct OpenIDConfig {
|
|
||||||
pub base_url: String,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Deserialize)]
|
#[derive(Debug, Deserialize)]
|
||||||
pub struct User {
|
pub struct User {
|
||||||
pub preferred_username: String,
|
pub preferred_username: String,
|
||||||
|
@ -19,18 +14,18 @@ pub struct User {
|
||||||
#[async_trait]
|
#[async_trait]
|
||||||
impl<S> FromRequestParts<S> for User
|
impl<S> FromRequestParts<S> for User
|
||||||
where
|
where
|
||||||
OpenIDConfig: FromRef<S>,
|
String: FromRef<S>,
|
||||||
S: Send + Sync,
|
S: Send + Sync,
|
||||||
{
|
{
|
||||||
type Rejection = ApiError;
|
type Rejection = ApiError;
|
||||||
|
|
||||||
async fn from_request_parts(parts: &mut Parts, state: &S) -> Result<Self, Self::Rejection> {
|
async fn from_request_parts(parts: &mut Parts, state: &S) -> Result<Self, Self::Rejection> {
|
||||||
// Get the state
|
// Get the state
|
||||||
let openid = OpenIDConfig::from_ref(state);
|
let openid_url = String::from_ref(state);
|
||||||
|
|
||||||
// Create a request to the auth server
|
// Create a request to the auth server
|
||||||
// TODO: Do some discovery to find the correct url for this instead of assuming
|
// TODO: Do some discovery to find the correct url for this instead of assuming
|
||||||
let mut req = reqwest::Client::new().get(format!("{}/userinfo", openid.base_url));
|
let mut req = reqwest::Client::new().get(format!("{}/userinfo", openid_url));
|
||||||
|
|
||||||
// Add auth header to the request if it exists
|
// Add auth header to the request if it exists
|
||||||
if let Some(auth) = parts.headers.get(axum::http::header::AUTHORIZATION) {
|
if let Some(auth) = parts.headers.get(axum::http::header::AUTHORIZATION) {
|
||||||
|
|
|
@ -1,21 +1,8 @@
|
||||||
use std::fs;
|
|
||||||
use std::net::{Ipv4Addr, SocketAddr};
|
use std::net::{Ipv4Addr, SocketAddr};
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
use regex::{Captures, Regex};
|
|
||||||
use rumqttc::{MqttOptions, Transport};
|
use rumqttc::{MqttOptions, Transport};
|
||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
use tracing::debug;
|
|
||||||
|
|
||||||
use crate::auth::OpenIDConfig;
|
|
||||||
use crate::error::{ConfigParseError, MissingEnv};
|
|
||||||
|
|
||||||
#[derive(Debug, Deserialize)]
|
|
||||||
pub struct Config {
|
|
||||||
pub openid: OpenIDConfig,
|
|
||||||
#[serde(default)]
|
|
||||||
pub fullfillment: FullfillmentConfig,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, Deserialize)]
|
#[derive(Debug, Clone, Deserialize)]
|
||||||
pub struct MqttConfig {
|
pub struct MqttConfig {
|
||||||
|
@ -43,33 +30,25 @@ impl From<MqttConfig> for MqttOptions {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Deserialize)]
|
#[derive(Debug, Deserialize)]
|
||||||
pub struct FullfillmentConfig {
|
pub struct FulfillmentConfig {
|
||||||
#[serde(default = "default_fullfillment_ip")]
|
pub openid_url: String,
|
||||||
|
#[serde(default = "default_fulfillment_ip")]
|
||||||
pub ip: Ipv4Addr,
|
pub ip: Ipv4Addr,
|
||||||
#[serde(default = "default_fullfillment_port")]
|
#[serde(default = "default_fulfillment_port")]
|
||||||
pub port: u16,
|
pub port: u16,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<FullfillmentConfig> for SocketAddr {
|
impl From<FulfillmentConfig> for SocketAddr {
|
||||||
fn from(fullfillment: FullfillmentConfig) -> Self {
|
fn from(fulfillment: FulfillmentConfig) -> Self {
|
||||||
(fullfillment.ip, fullfillment.port).into()
|
(fulfillment.ip, fulfillment.port).into()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for FullfillmentConfig {
|
fn default_fulfillment_ip() -> Ipv4Addr {
|
||||||
fn default() -> Self {
|
|
||||||
Self {
|
|
||||||
ip: default_fullfillment_ip(),
|
|
||||||
port: default_fullfillment_port(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn default_fullfillment_ip() -> Ipv4Addr {
|
|
||||||
[0, 0, 0, 0].into()
|
[0, 0, 0, 0].into()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn default_fullfillment_port() -> u16 {
|
fn default_fulfillment_port() -> u16 {
|
||||||
7878
|
7878
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -93,31 +72,3 @@ impl InfoConfig {
|
||||||
pub struct MqttDeviceConfig {
|
pub struct MqttDeviceConfig {
|
||||||
pub topic: String,
|
pub topic: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Config {
|
|
||||||
pub fn parse_file(filename: &str) -> Result<Self, ConfigParseError> {
|
|
||||||
debug!("Loading config: {filename}");
|
|
||||||
let file = fs::read_to_string(filename)?;
|
|
||||||
|
|
||||||
// Substitute in environment variables
|
|
||||||
let re = Regex::new(r"\$\{(.*)\}").expect("Regex should be valid");
|
|
||||||
let mut missing = MissingEnv::new();
|
|
||||||
let file = re.replace_all(&file, |caps: &Captures| {
|
|
||||||
let key = caps.get(1).expect("Capture group should exist").as_str();
|
|
||||||
debug!("Substituting '{key}' in config");
|
|
||||||
match std::env::var(key) {
|
|
||||||
Ok(value) => value,
|
|
||||||
Err(_) => {
|
|
||||||
missing.add_missing(key);
|
|
||||||
"".into()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
missing.has_missing()?;
|
|
||||||
|
|
||||||
let config: Config = serde_yaml::from_str(&file)?;
|
|
||||||
|
|
||||||
Ok(config)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -238,6 +238,8 @@ impl mlua::UserData for DeviceManager {
|
||||||
let schedule = lua.from_value(schedule)?;
|
let schedule = lua.from_value(schedule)?;
|
||||||
this.add_schedule(schedule).await;
|
this.add_schedule(schedule).await;
|
||||||
Ok(())
|
Ok(())
|
||||||
})
|
});
|
||||||
|
|
||||||
|
methods.add_method("event_channel", |_lua, this, ()| Ok(this.event_channel()))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@ mod audio_setup;
|
||||||
mod contact_sensor;
|
mod contact_sensor;
|
||||||
mod debug_bridge;
|
mod debug_bridge;
|
||||||
mod hue_bridge;
|
mod hue_bridge;
|
||||||
mod hue_light;
|
mod hue_group;
|
||||||
mod ikea_outlet;
|
mod ikea_outlet;
|
||||||
mod kasa_outlet;
|
mod kasa_outlet;
|
||||||
mod light_sensor;
|
mod light_sensor;
|
||||||
|
@ -21,7 +21,7 @@ pub use self::audio_setup::*;
|
||||||
pub use self::contact_sensor::*;
|
pub use self::contact_sensor::*;
|
||||||
pub use self::debug_bridge::*;
|
pub use self::debug_bridge::*;
|
||||||
pub use self::hue_bridge::*;
|
pub use self::hue_bridge::*;
|
||||||
pub use self::hue_light::*;
|
pub use self::hue_group::*;
|
||||||
pub use self::ikea_outlet::*;
|
pub use self::ikea_outlet::*;
|
||||||
pub use self::kasa_outlet::*;
|
pub use self::kasa_outlet::*;
|
||||||
pub use self::light_sensor::*;
|
pub use self::light_sensor::*;
|
||||||
|
@ -42,6 +42,24 @@ pub trait LuaDeviceCreate {
|
||||||
Self: Sized;
|
Self: Sized;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn register_with_lua(lua: &mlua::Lua) -> mlua::Result<()> {
|
||||||
|
AirFilter::register_with_lua(lua)?;
|
||||||
|
AudioSetup::register_with_lua(lua)?;
|
||||||
|
ContactSensor::register_with_lua(lua)?;
|
||||||
|
DebugBridge::register_with_lua(lua)?;
|
||||||
|
HueBridge::register_with_lua(lua)?;
|
||||||
|
HueGroup::register_with_lua(lua)?;
|
||||||
|
IkeaOutlet::register_with_lua(lua)?;
|
||||||
|
KasaOutlet::register_with_lua(lua)?;
|
||||||
|
LightSensor::register_with_lua(lua)?;
|
||||||
|
Ntfy::register_with_lua(lua)?;
|
||||||
|
Presence::register_with_lua(lua)?;
|
||||||
|
WakeOnLAN::register_with_lua(lua)?;
|
||||||
|
Washer::register_with_lua(lua)?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
#[impl_cast::device(As: OnMqtt + OnPresence + OnDarkness + OnNotification + OnOff + Timeout)]
|
#[impl_cast::device(As: OnMqtt + OnPresence + OnDarkness + OnNotification + OnOff + Timeout)]
|
||||||
pub trait Device: AsGoogleHomeDevice + std::fmt::Debug + Sync + Send {
|
pub trait Device: AsGoogleHomeDevice + std::fmt::Debug + Sync + Send {
|
||||||
fn get_id(&self) -> String;
|
fn get_id(&self) -> String;
|
||||||
|
|
10
src/error.rs
10
src/error.rs
|
@ -65,16 +65,6 @@ pub enum ParseError {
|
||||||
InvalidPayload(Bytes),
|
InvalidPayload(Bytes),
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Error)]
|
|
||||||
pub enum ConfigParseError {
|
|
||||||
#[error(transparent)]
|
|
||||||
MissingEnv(#[from] MissingEnv),
|
|
||||||
#[error(transparent)]
|
|
||||||
IoError(#[from] std::io::Error),
|
|
||||||
#[error(transparent)]
|
|
||||||
YamlError(#[from] serde_yaml::Error),
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: Would be nice to somehow get the line number of the expected wildcard topic
|
// TODO: Would be nice to somehow get the line number of the expected wildcard topic
|
||||||
#[derive(Debug, Error)]
|
#[derive(Debug, Error)]
|
||||||
#[error("Topic '{topic}' is expected to be a wildcard topic")]
|
#[error("Topic '{topic}' is expected to be a wildcard topic")]
|
||||||
|
|
72
src/main.rs
72
src/main.rs
|
@ -1,13 +1,12 @@
|
||||||
#![feature(async_closure)]
|
#![feature(async_closure)]
|
||||||
use std::{fs, process};
|
use std::path::Path;
|
||||||
|
use std::process;
|
||||||
|
|
||||||
use automation::auth::{OpenIDConfig, User};
|
use anyhow::anyhow;
|
||||||
use automation::config::{Config, MqttConfig};
|
use automation::auth::User;
|
||||||
|
use automation::config::{FulfillmentConfig, MqttConfig};
|
||||||
use automation::device_manager::DeviceManager;
|
use automation::device_manager::DeviceManager;
|
||||||
use automation::devices::{
|
use automation::devices;
|
||||||
AirFilter, AudioSetup, ContactSensor, DebugBridge, HueBridge, HueGroup, IkeaOutlet, KasaOutlet,
|
|
||||||
LightSensor, Ntfy, Presence, WakeOnLAN, Washer,
|
|
||||||
};
|
|
||||||
use automation::error::ApiError;
|
use automation::error::ApiError;
|
||||||
use automation::mqtt::{self, WrappedAsyncClient};
|
use automation::mqtt::{self, WrappedAsyncClient};
|
||||||
use axum::extract::FromRef;
|
use axum::extract::FromRef;
|
||||||
|
@ -23,12 +22,12 @@ use tracing::{debug, error, info, warn};
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
struct AppState {
|
struct AppState {
|
||||||
pub openid: OpenIDConfig,
|
pub openid_url: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl FromRef<AppState> for OpenIDConfig {
|
impl FromRef<AppState> for String {
|
||||||
fn from_ref(input: &AppState) -> Self {
|
fn from_ref(input: &AppState) -> Self {
|
||||||
input.openid.clone()
|
input.openid_url.clone()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -53,15 +52,9 @@ async fn app() -> anyhow::Result<()> {
|
||||||
|
|
||||||
info!("Starting automation_rs...");
|
info!("Starting automation_rs...");
|
||||||
|
|
||||||
let config_filename =
|
|
||||||
std::env::var("AUTOMATION_CONFIG").unwrap_or("./config/config.yml".into());
|
|
||||||
let config = Config::parse_file(&config_filename)?;
|
|
||||||
|
|
||||||
// Setup the device handler
|
// Setup the device handler
|
||||||
let device_manager = DeviceManager::new();
|
let device_manager = DeviceManager::new();
|
||||||
|
|
||||||
// Lua testing
|
|
||||||
{
|
|
||||||
let lua = mlua::Lua::new();
|
let lua = mlua::Lua::new();
|
||||||
|
|
||||||
lua.set_warning_function(|_lua, text, _cont| {
|
lua.set_warning_function(|_lua, text, _cont| {
|
||||||
|
@ -71,7 +64,7 @@ async fn app() -> anyhow::Result<()> {
|
||||||
|
|
||||||
let automation = lua.create_table()?;
|
let automation = lua.create_table()?;
|
||||||
let event_channel = device_manager.event_channel();
|
let event_channel = device_manager.event_channel();
|
||||||
let create_mqtt_client = lua.create_function(move |lua, config: mlua::Value| {
|
let new_mqtt_client = lua.create_function(move |lua, config: mlua::Value| {
|
||||||
let config: MqttConfig = lua.from_value(config)?;
|
let config: MqttConfig = lua.from_value(config)?;
|
||||||
|
|
||||||
// Create a mqtt client
|
// Create a mqtt client
|
||||||
|
@ -82,9 +75,8 @@ async fn app() -> anyhow::Result<()> {
|
||||||
Ok(WrappedAsyncClient(client))
|
Ok(WrappedAsyncClient(client))
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
automation.set("create_mqtt_client", create_mqtt_client)?;
|
automation.set("new_mqtt_client", new_mqtt_client)?;
|
||||||
automation.set("device_manager", device_manager.clone())?;
|
automation.set("device_manager", device_manager.clone())?;
|
||||||
automation.set("event_channel", device_manager.event_channel())?;
|
|
||||||
|
|
||||||
let util = lua.create_table()?;
|
let util = lua.create_table()?;
|
||||||
let get_env = lua.create_function(|_lua, name: String| {
|
let get_env = lua.create_function(|_lua, name: String| {
|
||||||
|
@ -95,35 +87,31 @@ async fn app() -> anyhow::Result<()> {
|
||||||
|
|
||||||
lua.globals().set("automation", automation)?;
|
lua.globals().set("automation", automation)?;
|
||||||
|
|
||||||
// Register all the device types
|
devices::register_with_lua(&lua)?;
|
||||||
Ntfy::register_with_lua(&lua)?;
|
|
||||||
Presence::register_with_lua(&lua)?;
|
|
||||||
AirFilter::register_with_lua(&lua)?;
|
|
||||||
AudioSetup::register_with_lua(&lua)?;
|
|
||||||
ContactSensor::register_with_lua(&lua)?;
|
|
||||||
DebugBridge::register_with_lua(&lua)?;
|
|
||||||
HueBridge::register_with_lua(&lua)?;
|
|
||||||
HueGroup::register_with_lua(&lua)?;
|
|
||||||
IkeaOutlet::register_with_lua(&lua)?;
|
|
||||||
KasaOutlet::register_with_lua(&lua)?;
|
|
||||||
LightSensor::register_with_lua(&lua)?;
|
|
||||||
WakeOnLAN::register_with_lua(&lua)?;
|
|
||||||
Washer::register_with_lua(&lua)?;
|
|
||||||
|
|
||||||
// TODO: Make this not hardcoded
|
// TODO: Make this not hardcoded
|
||||||
let filename = "config.lua";
|
let config_filename = std::env::var("AUTOMATION_CONFIG").unwrap_or("./config.lua".into());
|
||||||
let file = fs::read_to_string(filename)?;
|
let config_path = Path::new(&config_filename);
|
||||||
match lua.load(file).set_name(filename).exec_async().await {
|
match lua.load(config_path).exec_async().await {
|
||||||
Err(error) => {
|
Err(error) => {
|
||||||
println!("{error}");
|
println!("{error}");
|
||||||
Err(error)
|
Err(error)
|
||||||
}
|
}
|
||||||
result => result,
|
result => result,
|
||||||
}?;
|
}?;
|
||||||
}
|
|
||||||
|
|
||||||
// Create google home fullfillment route
|
let automation: mlua::Table = lua.globals().get("automation")?;
|
||||||
let fullfillment = Router::new().route(
|
let fulfillment_config: Option<mlua::Value> = automation.get("fulfillment")?;
|
||||||
|
let fulfillment_config = if let Some(fulfillment_config) = fulfillment_config {
|
||||||
|
let fulfillment_config: FulfillmentConfig = lua.from_value(fulfillment_config)?;
|
||||||
|
debug!("automation.fulfillment = {fulfillment_config:?}");
|
||||||
|
fulfillment_config
|
||||||
|
} else {
|
||||||
|
return Err(anyhow!("Fulfillment is not configured"));
|
||||||
|
};
|
||||||
|
|
||||||
|
// Create google home fulfillment route
|
||||||
|
let fulfillment = Router::new().route(
|
||||||
"/google_home",
|
"/google_home",
|
||||||
post(async move |user: User, Json(payload): Json<Request>| {
|
post(async move |user: User, Json(payload): Json<Request>| {
|
||||||
debug!(username = user.preferred_username, "{payload:#?}");
|
debug!(username = user.preferred_username, "{payload:#?}");
|
||||||
|
@ -145,13 +133,13 @@ async fn app() -> anyhow::Result<()> {
|
||||||
|
|
||||||
// Combine together all the routes
|
// Combine together all the routes
|
||||||
let app = Router::new()
|
let app = Router::new()
|
||||||
.nest("/fullfillment", fullfillment)
|
.nest("/fulfillment", fulfillment)
|
||||||
.with_state(AppState {
|
.with_state(AppState {
|
||||||
openid: config.openid,
|
openid_url: fulfillment_config.openid_url.clone(),
|
||||||
});
|
});
|
||||||
|
|
||||||
// Start the web server
|
// Start the web server
|
||||||
let addr = config.fullfillment.into();
|
let addr = fulfillment_config.into();
|
||||||
info!("Server started on http://{addr}");
|
info!("Server started on http://{addr}");
|
||||||
axum::Server::try_bind(&addr)?
|
axum::Server::try_bind(&addr)?
|
||||||
.serve(app.into_make_service())
|
.serve(app.into_make_service())
|
||||||
|
|
Loading…
Reference in New Issue
Block a user