Files
OutFleet/src/services/uri_generator/builders/trojan.rs

223 lines
7.6 KiB
Rust
Raw Normal View History

use serde_json::Value;
2025-10-24 18:11:34 +03:00
use std::collections::HashMap;
2025-10-24 18:11:34 +03:00
use super::{utils, UriBuilder};
use crate::services::uri_generator::{error::UriGeneratorError, ClientConfigData};
pub struct TrojanUriBuilder;
impl TrojanUriBuilder {
pub fn new() -> Self {
Self
}
}
impl UriBuilder for TrojanUriBuilder {
fn build_uri(&self, config: &ClientConfigData) -> Result<String, UriGeneratorError> {
self.validate_config(config)?;
2025-10-24 18:11:34 +03:00
// Trojan uses xray_user_id as password
let password = &config.xray_user_id;
2025-10-24 18:11:34 +03:00
// Apply variable substitution to stream settings
let stream_settings = if !config.variable_values.is_null() {
apply_variables(&config.stream_settings, &config.variable_values)?
} else {
config.stream_settings.clone()
};
2025-10-24 18:11:34 +03:00
let mut params = HashMap::new();
2025-10-24 18:11:34 +03:00
// Determine security layer (Trojan typically uses TLS)
let has_certificate = config.certificate_domain.is_some();
let security = utils::extract_security_type(&stream_settings, has_certificate);
2025-10-24 18:11:34 +03:00
// Trojan usually requires TLS, but allow other security types
if security != "none" {
params.insert("security".to_string(), security.clone());
}
2025-10-24 18:11:34 +03:00
// Transport type - always specify explicitly
let transport_type = utils::extract_transport_type(&stream_settings);
params.insert("type".to_string(), transport_type.clone());
2025-10-24 18:11:34 +03:00
// Transport-specific parameters
match transport_type.as_str() {
"ws" => {
if let Some(path) = utils::extract_ws_path(&stream_settings) {
params.insert("path".to_string(), path);
}
if let Some(host) = utils::extract_ws_host(&stream_settings) {
params.insert("host".to_string(), host);
}
2025-10-24 18:11:34 +03:00
}
"grpc" => {
if let Some(service_name) = utils::extract_grpc_service_name(&stream_settings) {
params.insert("serviceName".to_string(), service_name);
}
// gRPC mode for Trojan
params.insert("mode".to_string(), "gun".to_string());
2025-10-24 18:11:34 +03:00
}
"tcp" => {
// Check for HTTP header type
if let Some(header_type) = stream_settings
.get("tcpSettings")
.and_then(|tcp| tcp.get("header"))
.and_then(|header| header.get("type"))
2025-10-24 18:11:34 +03:00
.and_then(|t| t.as_str())
{
if header_type != "none" {
params.insert("headerType".to_string(), header_type.to_string());
}
}
2025-10-24 18:11:34 +03:00
}
_ => {} // Other transport types
}
2025-10-24 18:11:34 +03:00
// TLS/Security specific parameters
if security == "tls" || security == "reality" {
2025-10-24 18:11:34 +03:00
if let Some(sni) =
utils::extract_tls_sni(&stream_settings, config.certificate_domain.as_deref())
{
params.insert("sni".to_string(), sni);
}
2025-10-24 18:11:34 +03:00
// TLS fingerprint
if let Some(fp) = stream_settings
.get("tlsSettings")
.and_then(|tls| tls.get("fingerprint"))
2025-10-24 18:11:34 +03:00
.and_then(|fp| fp.as_str())
{
params.insert("fp".to_string(), fp.to_string());
}
2025-10-24 18:11:34 +03:00
// ALPN
if let Some(alpn) = stream_settings
.get("tlsSettings")
.and_then(|tls| tls.get("alpn"))
2025-10-24 18:11:34 +03:00
.and_then(|alpn| alpn.as_array())
{
let alpn_str = alpn
.iter()
.filter_map(|v| v.as_str())
.collect::<Vec<_>>()
.join(",");
if !alpn_str.is_empty() {
params.insert("alpn".to_string(), alpn_str);
}
}
2025-10-24 18:11:34 +03:00
// Allow insecure connections (optional)
if let Some(allow_insecure) = stream_settings
.get("tlsSettings")
.and_then(|tls| tls.get("allowInsecure"))
2025-10-24 18:11:34 +03:00
.and_then(|ai| ai.as_bool())
{
if allow_insecure {
params.insert("allowInsecure".to_string(), "1".to_string());
}
}
2025-10-24 18:11:34 +03:00
// REALITY specific parameters
if security == "reality" {
if let Some(pbk) = stream_settings
.get("realitySettings")
.and_then(|reality| reality.get("publicKey"))
2025-10-24 18:11:34 +03:00
.and_then(|pbk| pbk.as_str())
{
params.insert("pbk".to_string(), pbk.to_string());
}
2025-10-24 18:11:34 +03:00
if let Some(sid) = stream_settings
.get("realitySettings")
.and_then(|reality| reality.get("shortId"))
2025-10-24 18:11:34 +03:00
.and_then(|sid| sid.as_str())
{
params.insert("sid".to_string(), sid.to_string());
}
}
}
2025-10-24 18:11:34 +03:00
// Flow control for XTLS (if supported)
2025-10-24 18:11:34 +03:00
if let Some(flow) = stream_settings.get("flow").and_then(|f| f.as_str()) {
params.insert("flow".to_string(), flow.to_string());
}
2025-10-24 18:11:34 +03:00
// Build the URI
let query_string = utils::build_query_string(&params);
2025-10-19 04:13:36 +03:00
let alias = utils::generate_alias(&config.server_name, &config.template_name);
2025-10-24 18:11:34 +03:00
let uri = if query_string.is_empty() {
format!(
"trojan://{}@{}:{}#{}",
utils::url_encode(password),
config.hostname,
config.port,
utils::url_encode(&alias)
)
} else {
format!(
"trojan://{}@{}:{}?{}#{}",
utils::url_encode(password),
config.hostname,
config.port,
query_string,
utils::url_encode(&alias)
)
};
2025-10-24 18:11:34 +03:00
Ok(uri)
}
2025-10-24 18:11:34 +03:00
fn validate_config(&self, config: &ClientConfigData) -> Result<(), UriGeneratorError> {
// Basic validation
if config.hostname.is_empty() {
2025-10-24 18:11:34 +03:00
return Err(UriGeneratorError::MissingRequiredField(
"hostname".to_string(),
));
}
if config.port <= 0 || config.port > 65535 {
2025-10-24 18:11:34 +03:00
return Err(UriGeneratorError::InvalidConfiguration(
"Invalid port number".to_string(),
));
}
if config.xray_user_id.is_empty() {
2025-10-24 18:11:34 +03:00
return Err(UriGeneratorError::MissingRequiredField(
"xray_user_id".to_string(),
));
}
2025-10-24 18:11:34 +03:00
// Trojan uses xray_user_id as password, already validated above
2025-10-24 18:11:34 +03:00
Ok(())
}
}
impl Default for TrojanUriBuilder {
fn default() -> Self {
Self::new()
}
}
/// Apply variable substitution to JSON value
fn apply_variables(template: &Value, variables: &Value) -> Result<Value, UriGeneratorError> {
let template_str = template.to_string();
let mut result = template_str;
2025-10-24 18:11:34 +03:00
if let Value::Object(var_map) = variables {
for (key, value) in var_map {
let placeholder = format!("${{{}}}", key);
let replacement = match value {
Value::String(s) => s.clone(),
Value::Number(n) => n.to_string(),
Value::Bool(b) => b.to_string(),
_ => value.to_string().trim_matches('"').to_string(),
};
result = result.replace(&placeholder, &replacement);
}
}
2025-10-24 18:11:34 +03:00
serde_json::from_str(&result)
.map_err(|e| UriGeneratorError::VariableSubstitution(e.to_string()))
2025-10-24 18:11:34 +03:00
}