vibelang-http 0.3.0

HTTP REST API server for VibeLang
Documentation
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
//! Fade endpoint handlers.

use axum::{
    extract::{Path, State},
    http::StatusCode,
    Json,
};
use serde::Deserialize;
use std::sync::Arc;
use vibelang_core::{
    traits::{FadeConfig, FadeCurve, FadeTarget},
    types::Duration,
    EffectId, FadeMessage, GroupId, VoiceId,
};

use crate::{
    models::{ErrorResponse, FadeCreate, FadeTargetType},
    AppState,
};

/// Curve specification that can be a simple string name or a complex curve definition.
///
/// # Examples (JSON)
/// ```json
/// // Simple string curve
/// {"curve": "ease_in_out"}
///
/// // Exponential with custom exponent
/// {"curve": {"exp": 3.0}}
///
/// // Cubic spline with control points
/// {"curve": {"spline": [[0.25, 0.1], [0.5, 0.9], [0.75, 0.3]]}}
/// ```
#[derive(Debug, Deserialize, Clone)]
#[serde(untagged)]
pub enum CurveSpec {
    /// Simple curve name (backward compatible).
    Name(String),
    /// Exponential curve with custom exponent.
    Exponential { exp: f64 },
    /// Cubic spline with control points.
    Spline { spline: Vec<[f64; 2]> },
}

impl Default for CurveSpec {
    fn default() -> Self {
        CurveSpec::Name("linear".to_string())
    }
}

/// Request body for starting a fade on a voice.
#[derive(Debug, Deserialize)]
pub struct VoiceFadeRequest {
    /// Parameter name to fade.
    pub param: String,
    /// Target value.
    pub to: f32,
    /// Duration in beats.
    pub duration_beats: f64,
    /// Optional starting value (defaults to current value).
    #[serde(default)]
    pub from: Option<f32>,
    /// Interpolation curve specification.
    #[serde(default)]
    pub curve: CurveSpec,
}

/// Request body for starting a fade on a group.
#[derive(Debug, Deserialize)]
pub struct GroupFadeRequest {
    /// Parameter name to fade.
    pub param: String,
    /// Target value.
    pub to: f32,
    /// Duration in beats.
    pub duration_beats: f64,
    /// Optional starting value (defaults to current value).
    #[serde(default)]
    pub from: Option<f32>,
    /// Interpolation curve specification.
    #[serde(default)]
    pub curve: CurveSpec,
}

/// Request body for starting a fade on an effect.
#[derive(Debug, Deserialize)]
pub struct EffectFadeRequest {
    /// Parameter name to fade.
    pub param: String,
    /// Target value.
    pub to: f32,
    /// Duration in beats.
    pub duration_beats: f64,
    /// Optional starting value (defaults to current value).
    #[serde(default)]
    pub from: Option<f32>,
    /// Interpolation curve specification.
    #[serde(default)]
    pub curve: CurveSpec,
}

/// Parse a curve name string into a FadeCurve.
fn parse_curve_name(curve: &str) -> FadeCurve {
    match curve.to_lowercase().as_str() {
        // Ease (quadratic)
        "ease_in" | "easein" | "ease-in" => FadeCurve::EaseIn,
        "ease_out" | "easeout" | "ease-out" => FadeCurve::EaseOut,
        "ease_in_out" | "easeinout" | "ease-in-out" | "ease" => FadeCurve::EaseInOut,

        // Sine
        "sine_in" | "sinein" | "sine-in" => FadeCurve::SineIn,
        "sine_out" | "sineout" | "sine-out" => FadeCurve::SineOut,
        "sine" | "sine_in_out" | "sineinout" | "sin" | "smooth" => FadeCurve::SineInOut,

        // Cubic
        "cubic_in" | "cubicin" | "cubic-in" => FadeCurve::CubicIn,
        "cubic_out" | "cubicout" | "cubic-out" => FadeCurve::CubicOut,
        "cubic_in_out" | "cubicinout" | "cubic-in-out" | "cubic" => FadeCurve::CubicInOut,

        // Exponential (default exponent 2.0)
        "exponential" | "exp" => FadeCurve::Exponential { exponent: 2.0 },

        // Logarithmic
        "log" | "logarithmic" => FadeCurve::Logarithmic,

        // Step
        "step" | "instant" => FadeCurve::Step,

        // Default to linear
        _ => FadeCurve::Linear,
    }
}

/// Convert a CurveSpec into a FadeCurve.
fn parse_curve_spec(spec: &CurveSpec) -> FadeCurve {
    match spec {
        CurveSpec::Name(name) => parse_curve_name(name),
        CurveSpec::Exponential { exp } => FadeCurve::Exponential {
            exponent: *exp as f32,
        },
        CurveSpec::Spline { spline } => FadeCurve::CubicSpline {
            points: spline.iter().map(|[t, v]| (*t as f32, *v as f32)).collect(),
        },
    }
}

/// POST /fades/voice/:name - Start a fade on a voice parameter.
pub async fn fade_voice(
    State(state): State<Arc<AppState>>,
    Path(name): Path<String>,
    Json(req): Json<VoiceFadeRequest>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    // Find the voice by name
    let voice_id = state
        .with_state(|s| {
            s.voices
                .iter()
                .find(|(_, v)| v.id.raw().to_string() == name || v.config.name == name)
                .map(|(id, _)| *id)
        })
        .await;

    let voice_id = match voice_id {
        Some(id) => id,
        None => {
            // Try parsing as numeric ID
            match name.parse::<u32>() {
                Ok(n) => VoiceId::new(n),
                Err(_) => {
                    return Err((
                        StatusCode::NOT_FOUND,
                        Json(ErrorResponse::not_found(&format!(
                            "Voice '{}' not found",
                            name
                        ))),
                    ));
                }
            }
        }
    };

    let mut config = FadeConfig::new(
        FadeTarget::Voice(voice_id),
        &req.param,
        req.to,
        Duration::from_beats(req.duration_beats),
    );
    config.from = req.from;
    config.curve = parse_curve_spec(&req.curve);

    state
        .send(FadeMessage::Start { config }.into())
        .await
        .map_err(|e| {
            (
                StatusCode::INTERNAL_SERVER_ERROR,
                Json(ErrorResponse::internal(&e.to_string())),
            )
        })?;

    Ok(StatusCode::NO_CONTENT)
}

/// POST /fades/group/:path - Start a fade on a group parameter.
pub async fn fade_group(
    State(state): State<Arc<AppState>>,
    Path(path): Path<String>,
    Json(req): Json<GroupFadeRequest>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    // Find the group by path or name
    let group_id = state
        .with_state(|s| {
            s.groups
                .iter()
                .find(|(_, g)| g.id.raw().to_string() == path || format!("{}", g.id) == path)
                .map(|(id, _)| *id)
        })
        .await;

    let group_id = match group_id {
        Some(id) => id,
        None => {
            // Try parsing as numeric ID
            match path.parse::<u32>() {
                Ok(n) => GroupId::new(n),
                Err(_) => {
                    return Err((
                        StatusCode::NOT_FOUND,
                        Json(ErrorResponse::not_found(&format!(
                            "Group '{}' not found",
                            path
                        ))),
                    ));
                }
            }
        }
    };

    let mut config = FadeConfig::new(
        FadeTarget::Group(group_id),
        &req.param,
        req.to,
        Duration::from_beats(req.duration_beats),
    );
    config.from = req.from;
    config.curve = parse_curve_spec(&req.curve);

    state
        .send(FadeMessage::Start { config }.into())
        .await
        .map_err(|e| {
            (
                StatusCode::INTERNAL_SERVER_ERROR,
                Json(ErrorResponse::internal(&e.to_string())),
            )
        })?;

    Ok(StatusCode::NO_CONTENT)
}

/// POST /fades/effect/:id - Start a fade on an effect parameter.
pub async fn fade_effect(
    State(state): State<Arc<AppState>>,
    Path(id): Path<String>,
    Json(req): Json<EffectFadeRequest>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    let effect_id = id.parse::<u32>().map(EffectId::new).map_err(|_| {
        (
            StatusCode::BAD_REQUEST,
            Json(ErrorResponse::bad_request(&format!(
                "Invalid effect ID '{}': must be a number",
                id
            ))),
        )
    })?;

    let mut config = FadeConfig::new(
        FadeTarget::Effect(effect_id),
        &req.param,
        req.to,
        Duration::from_beats(req.duration_beats),
    );
    config.from = req.from;
    config.curve = parse_curve_spec(&req.curve);

    state
        .send(FadeMessage::Start { config }.into())
        .await
        .map_err(|e| {
            (
                StatusCode::INTERNAL_SERVER_ERROR,
                Json(ErrorResponse::internal(&e.to_string())),
            )
        })?;

    Ok(StatusCode::NO_CONTENT)
}

/// Request to cancel a fade.
#[derive(Debug, Deserialize)]
pub struct CancelFadeRequest {
    /// Target type: "group", "voice", or "effect".
    pub target_type: FadeTargetType,
    /// Target name/ID.
    pub target_name: String,
    /// Parameter name.
    pub param: String,
}

/// DELETE /fades - Cancel a fade.
pub async fn cancel_fade(
    State(state): State<Arc<AppState>>,
    Json(req): Json<CancelFadeRequest>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    let target = match req.target_type {
        FadeTargetType::Group => {
            let id = req
                .target_name
                .parse::<u32>()
                .map(GroupId::new)
                .map_err(|_| {
                    (
                        StatusCode::BAD_REQUEST,
                        Json(ErrorResponse::bad_request("Invalid group ID")),
                    )
                })?;
            FadeTarget::Group(id)
        }
        FadeTargetType::Voice => {
            let id = req
                .target_name
                .parse::<u32>()
                .map(VoiceId::new)
                .map_err(|_| {
                    (
                        StatusCode::BAD_REQUEST,
                        Json(ErrorResponse::bad_request("Invalid voice ID")),
                    )
                })?;
            FadeTarget::Voice(id)
        }
        FadeTargetType::Effect => {
            let id = req
                .target_name
                .parse::<u32>()
                .map(EffectId::new)
                .map_err(|_| {
                    (
                        StatusCode::BAD_REQUEST,
                        Json(ErrorResponse::bad_request("Invalid effect ID")),
                    )
                })?;
            FadeTarget::Effect(id)
        }
    };

    state
        .send(
            FadeMessage::Cancel {
                target,
                param: req.param,
            }
            .into(),
        )
        .await
        .map_err(|e| {
            (
                StatusCode::INTERNAL_SERVER_ERROR,
                Json(ErrorResponse::internal(&e.to_string())),
            )
        })?;

    Ok(StatusCode::NO_CONTENT)
}

/// POST /fades - Start a fade (generic endpoint).
pub async fn start_fade(
    State(state): State<Arc<AppState>>,
    Json(req): Json<FadeCreate>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    let target = match req.target_type {
        FadeTargetType::Group => {
            let id = req
                .target_name
                .parse::<u32>()
                .map(GroupId::new)
                .map_err(|_| {
                    (
                        StatusCode::BAD_REQUEST,
                        Json(ErrorResponse::bad_request("Invalid group ID")),
                    )
                })?;
            FadeTarget::Group(id)
        }
        FadeTargetType::Voice => {
            let id = req
                .target_name
                .parse::<u32>()
                .map(VoiceId::new)
                .map_err(|_| {
                    (
                        StatusCode::BAD_REQUEST,
                        Json(ErrorResponse::bad_request("Invalid voice ID")),
                    )
                })?;
            FadeTarget::Voice(id)
        }
        FadeTargetType::Effect => {
            let id = req
                .target_name
                .parse::<u32>()
                .map(EffectId::new)
                .map_err(|_| {
                    (
                        StatusCode::BAD_REQUEST,
                        Json(ErrorResponse::bad_request("Invalid effect ID")),
                    )
                })?;
            FadeTarget::Effect(id)
        }
    };

    let mut config = FadeConfig::new(
        target,
        &req.param_name,
        req.target_value,
        Duration::from_beats(req.duration_beats),
    );
    config.from = req.start_value;

    state
        .send(FadeMessage::Start { config }.into())
        .await
        .map_err(|e| {
            (
                StatusCode::INTERNAL_SERVER_ERROR,
                Json(ErrorResponse::internal(&e.to_string())),
            )
        })?;

    Ok(StatusCode::CREATED)
}