Update index.html with stream links and HLS.js player using mustache templating (#6)

* Initial plan for issue

* Add mustache templating and update index.html with stream links

Co-authored-by: v0l <1172179+v0l@users.noreply.github.com>

* Add documentation and update TODO for completed stream index feature

Co-authored-by: v0l <1172179+v0l@users.noreply.github.com>

* Implement serializable structs and stream caching to address review feedback

Co-authored-by: v0l <1172179+v0l@users.noreply.github.com>

* Fix stream cache sharing and remove duplicated caching code

Co-authored-by: v0l <1172179+v0l@users.noreply.github.com>

* Address feedback: remove docs file, revert TODO changes, optimize template compilation

Co-authored-by: v0l <1172179+v0l@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: v0l <1172179+v0l@users.noreply.github.com>
This commit is contained in:
Copilot
2025-06-07 16:29:04 +01:00
committed by GitHub
parent e097b9caf1
commit 93e7d47cd1
5 changed files with 281 additions and 18 deletions

View File

@ -12,6 +12,7 @@ use std::str::FromStr;
use std::sync::Arc;
use std::time::Duration;
use tokio::net::TcpListener;
use tokio::sync::RwLock;
use tokio::task::JoinHandle;
use tokio::time::sleep;
use url::Url;
@ -23,7 +24,7 @@ use zap_stream_core::ingress::srt;
use zap_stream_core::ingress::test;
use crate::api::Api;
use crate::http::HttpServer;
use crate::http::{HttpServer, StreamCache};
use crate::monitor::BackgroundMonitor;
use crate::overseer::ZapStreamOverseer;
use crate::settings::Settings;
@ -69,11 +70,13 @@ async fn main() -> Result<()> {
}
let http_addr: SocketAddr = settings.listen_http.parse()?;
let index_html = include_str!("../index.html").replace("%%PUBLIC_URL%%", &settings.public_url);
let index_template = include_str!("../index.html");
let api = Api::new(overseer.clone(), settings.clone());
// Create shared stream cache
let stream_cache: StreamCache = Arc::new(RwLock::new(None));
// HTTP server
let server = HttpServer::new(index_html, PathBuf::from(settings.output_dir), api);
let server = HttpServer::new(index_template.to_string(), PathBuf::from(settings.output_dir), api, stream_cache);
tasks.push(tokio::spawn(async move {
let listener = TcpListener::bind(&http_addr).await?;