1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#[allow(non_camel_case_types)]
pub mod net {
pub static WEB_ADDR: &str = "localhost";
pub static WEB_PORT_DEFAULT: u16 = 8088;
pub static WEB_PORT_MAX: u16 = 8099;
pub static WEB_PORT_MIN: u16 = 8080;
pub static VERSION: &str = env!("CARGO_PKG_VERSION");
pub static HOMEPAGE: &str = env!("CARGO_PKG_HOMEPAGE");
}
pub mod tui {
pub static ALIVE_REFRESH_MSEC: u64 = 200;
}
pub mod webui {
pub mod jquery {
lazy_static! {
pub static ref JS_JQUERY: &'static str =
include_str!("../ctrl/webui/3rdparty/jquery/jquery-3.5.1.min.js");
}
}
pub mod bootstrap {
lazy_static! {
pub static ref JS: &'static str =
include_str!("../ctrl/webui/3rdparty/bootstrap-4.5.0/js/bootstrap.js");
pub static ref JS_MAP: &'static str =
include_str!("../ctrl/webui/3rdparty/bootstrap-4.5.0/js/bootstrap.js.map");
pub static ref JS_MIN: &'static str =
include_str!("../ctrl/webui/3rdparty/bootstrap-4.5.0/js/bootstrap.min.js");
pub static ref JS_MIN_MAP: &'static str =
include_str!("../ctrl/webui/3rdparty/bootstrap-4.5.0/js/bootstrap.min.js.map");
pub static ref JS_BUNDLE: &'static str =
include_str!("../ctrl/webui/3rdparty/bootstrap-4.5.0/js/bootstrap.bundle.js");
pub static ref JS_BUNDLE_MAP: &'static str =
include_str!("../ctrl/webui/3rdparty/bootstrap-4.5.0/js/bootstrap.bundle.js.map");
pub static ref JS_BUNDLE_MIN: &'static str =
include_str!("../ctrl/webui/3rdparty/bootstrap-4.5.0/js/bootstrap.bundle.min.js");
pub static ref JS_BUNDLE_MIN_MAP: &'static str =
include_str!("../ctrl/webui/3rdparty/bootstrap-4.5.0/js/bootstrap.bundle.min.js.map");
pub static ref CSS: &'static str =
include_str!("../ctrl/webui/3rdparty/bootstrap-4.5.0/css/bootstrap.css");
pub static ref CSS_MAP: &'static str =
include_str!("../ctrl/webui/3rdparty/bootstrap-4.5.0/css/bootstrap.css.map");
pub static ref CSS_MIN: &'static str =
include_str!("../ctrl/webui/3rdparty/bootstrap-4.5.0/css/bootstrap.min.css");
pub static ref CSS_MIN_MAP: &'static str =
include_str!("../ctrl/webui/3rdparty/bootstrap-4.5.0/css/bootstrap.min.css.map");
pub static ref CSS_GRID: &'static str =
include_str!("../ctrl/webui/3rdparty/bootstrap-4.5.0/css/bootstrap-grid.css");
pub static ref CSS_GRID_MAP: &'static str =
include_str!("../ctrl/webui/3rdparty/bootstrap-4.5.0/css/bootstrap-grid.css.map");
pub static ref CSS_GRID_MIN: &'static str =
include_str!("../ctrl/webui/3rdparty/bootstrap-4.5.0/css/bootstrap-grid.min.css");
pub static ref CSS_GRID_MIN_MAP: &'static str =
include_str!("../ctrl/webui/3rdparty/bootstrap-4.5.0/css/bootstrap-grid.min.css.map");
pub static ref CSS_REBOOT: &'static str =
include_str!("../ctrl/webui/3rdparty/bootstrap-4.5.0/css/bootstrap-reboot.css");
pub static ref CSS_REBOOT_MAP: &'static str =
include_str!("../ctrl/webui/3rdparty/bootstrap-4.5.0/css/bootstrap-reboot.css.map");
pub static ref CSS_REBOOT_MIN: &'static str =
include_str!("../ctrl/webui/3rdparty/bootstrap-4.5.0/css/bootstrap-reboot.min.css");
pub static ref CSS_REBOOT_MIN_MAP: &'static str =
include_str!("../ctrl/webui/3rdparty/bootstrap-4.5.0/css/bootstrap-reboot.min.css.map");
}
}
lazy_static! {
pub static ref HTML_PAGE: &'static str = include_str!("../ctrl/webui/html/main_page.html");
pub static ref PEER_PAGE: &'static str = include_str!("../ctrl/webui/html/peer_page.html");
pub static ref JS_APP: &'static str = include_str!("../ctrl/webui/js/app.js");
pub static ref JS_WS_EVENT_DISPATCHER: &'static str =
include_str!("../ctrl/webui/js/ws_events_dispatcher.js");
pub static ref FAVICON: &'static [u8] = include_bytes!("../ctrl/webui/gfx/favicon.png");
pub static ref PIC_SHEEP: &'static str = include_str!("../ctrl/webui/gfx/sheep.svg");
}
pub static HTML_REPLACE_STATIC_WEB_ADDR: &str = "WEBSOCKET_ADDR";
pub static HTML_REPLACE_STATIC_WEB_PORT: &str = "PORT_WEBSOCKET";
pub static HTML_REPLACE_STATIC_URL_SOURCE: &str = "URL_SOURCE";
pub static HTML_REPLACE_STATIC_LICENSE: &str = "LICENSES";
pub const LICENSE_NR: usize = 5;
lazy_static! {
pub static ref LICENSES: [&'static str; LICENSE_NR] = [
include_str!("../../../../LICENSE"),
include_str!("../../../../licenses/flutter_file_picker.txt"),
include_str!("../../../../licenses/js_bootstrap.txt"),
include_str!("../../../../licenses/js_ws_events_dispatcher.txt"),
include_str!("../../../../licenses/rs_bktree-rs.txt")
];
}
pub static HTML_REPLACER_BEGIN: &str = "<!---";
pub static HTML_REPLACER_END: &str = "--->";
pub static HTML_REPLACE_HOSTNAME: &str = "HOSTNAME";
pub static HTML_REPLACE_PATHS_MAX: &str = "PATHS_MAX";
pub static HTML_REPLACE_PEER_HASH: &str = "PEER_HASH";
pub static HTML_REPLACE_PEER_PAGE: &str = "PEER_PAGE";
pub static HTML_REPLACE_VERSION: &str = "VERSION";
pub static HTML_REPLACE_WEB_SOCKET: &str = "WEB_SOCKET";
}
pub mod data {
pub static IGNORE_AUDIO_FORMATS: [&str; 1] = ["x-mpegurl"];
pub static PATHS_MAX: usize = 8;
}