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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
//! Voices endpoint handlers.

use axum::{
    extract::{Path, State},
    http::StatusCode,
    Json,
};
use std::sync::Arc;
use vibelang_core::{GroupId, ParamMap, VoiceConfig, VoiceId, VoiceMessage};

use crate::{
    models::{
        ErrorResponse, NoteOffRequest, NoteOnRequest, ParamSet, TriggerRequest, Voice, VoiceCreate,
        VoiceUpdate,
    },
    AppState,
};

/// Resolve a voice identifier (either numeric ID or string name) to a VoiceId.
/// Returns the VoiceId if found, or an error response if not found.
async fn resolve_voice_id(
    state: &Arc<AppState>,
    identifier: &str,
) -> Result<VoiceId, (StatusCode, Json<ErrorResponse>)> {
    // First, try to parse as a numeric ID
    if let Ok(num_id) = identifier.parse::<u32>() {
        let voice_id = VoiceId::new(num_id);
        let exists = state.with_state(|s| s.voices.contains_key(&voice_id)).await;
        if exists {
            return Ok(voice_id);
        }
        // Fall through to try as name if numeric ID not found
    }

    // Try to find by name
    let found = state
        .with_state(|s| {
            s.voices
                .iter()
                .find(|(_, vs)| vs.config.name == identifier)
                .map(|(id, _)| *id)
        })
        .await;

    match found {
        Some(id) => Ok(id),
        None => Err((
            StatusCode::NOT_FOUND,
            Json(ErrorResponse::not_found(&format!(
                "Voice '{}' not found",
                identifier
            ))),
        )),
    }
}

/// Convert internal VoiceState to API Voice model
fn voice_to_api(_id: &VoiceId, state: &vibelang_core::VoiceState) -> Voice {
    // Use the actual name from config
    let name = state.config.name.clone();
    let group_path = state.config.group.raw().to_string();

    Voice {
        name,
        synth_name: state.config.synthdef.clone(),
        polyphony: state.config.polyphony,
        gain: state.config.params.get("amp").copied().unwrap_or(1.0),
        group_path: group_path.clone(),
        group_name: Some(group_path),
        output_bus: None, // Not directly tracked
        muted: state.config.muted,
        soloed: false, // Voice-level solo not tracked in core
        params: state
            .config
            .params
            .iter()
            .map(|(k, v)| (k.clone(), *v))
            .collect(),
        sfz_instrument: state.config.sfz_instrument.map(|s| s.raw().to_string()),
        vst_instrument: None, // Not implemented
        active_notes: Some(state.note_nodes.keys().copied().collect()),
        sustained_notes: None, // Not tracked
        running: !state.active_nodes.is_empty(),
        running_node_id: state.active_nodes.first().map(|n| n.raw() as i32),
        source_location: None, // Not tracked in core state
    }
}

/// GET /voices - List all voices
pub async fn list_voices(State(state): State<Arc<AppState>>) -> Json<Vec<Voice>> {
    let voices = state
        .with_state(|s| {
            s.voices
                .iter()
                .map(|(id, vs)| voice_to_api(id, vs))
                .collect::<Vec<_>>()
        })
        .await;

    Json(voices)
}

/// GET /voices/:id - Get voice by ID or name
pub async fn get_voice(
    State(state): State<Arc<AppState>>,
    Path(id): Path<String>,
) -> Result<Json<Voice>, (StatusCode, Json<ErrorResponse>)> {
    let voice_id = resolve_voice_id(&state, &id).await?;

    let voice = state
        .with_state(|s| {
            s.voices
                .get(&voice_id)
                .map(|vs| voice_to_api(&voice_id, vs))
        })
        .await;

    match voice {
        Some(v) => Ok(Json(v)),
        None => Err((
            StatusCode::NOT_FOUND,
            Json(ErrorResponse::not_found(&format!(
                "Voice '{}' not found",
                id
            ))),
        )),
    }
}

/// PATCH /voices/:id - Update voice by ID or name
pub async fn update_voice(
    State(state): State<Arc<AppState>>,
    Path(id): Path<String>,
    Json(update): Json<VoiceUpdate>,
) -> Result<Json<Voice>, (StatusCode, Json<ErrorResponse>)> {
    let voice_id = resolve_voice_id(&state, &id).await?;

    // Apply param updates
    for (param, value) in update.params {
        if let Err(e) = state
            .send(
                VoiceMessage::SetParam {
                    id: voice_id,
                    param,
                    value,
                }
                .into(),
            )
            .await
        {
            return Err((
                StatusCode::INTERNAL_SERVER_ERROR,
                Json(ErrorResponse::internal(&format!(
                    "Failed to update voice params: {}",
                    e
                ))),
            ));
        }
    }

    get_voice(State(state), Path(id)).await
}

/// POST /voices/:id/trigger - Trigger a voice by ID or name
pub async fn trigger_voice(
    State(state): State<Arc<AppState>>,
    Path(id): Path<String>,
    Json(req): Json<Option<TriggerRequest>>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    let voice_id = resolve_voice_id(&state, &id).await?;

    let mut params = ParamMap::new();
    if let Some(r) = req {
        for (k, v) in r.params {
            params.insert(k, v);
        }
    }

    if let Err(e) = state
        .send(
            VoiceMessage::Trigger {
                id: voice_id,
                params,
            }
            .into(),
        )
        .await
    {
        return Err((
            StatusCode::INTERNAL_SERVER_ERROR,
            Json(ErrorResponse::internal(&format!(
                "Failed to trigger voice: {}",
                e
            ))),
        ));
    }

    Ok(StatusCode::OK)
}

/// POST /voices/:id/stop - Stop a running voice by ID or name
pub async fn stop_voice(
    State(state): State<Arc<AppState>>,
    Path(id): Path<String>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    let voice_id = resolve_voice_id(&state, &id).await?;

    if let Err(e) = state.send(VoiceMessage::Stop { id: voice_id }.into()).await {
        return Err((
            StatusCode::INTERNAL_SERVER_ERROR,
            Json(ErrorResponse::internal(&format!(
                "Failed to stop voice: {}",
                e
            ))),
        ));
    }

    Ok(StatusCode::OK)
}

/// POST /voices/:id/note-on - Send note-on to voice by ID or name
pub async fn note_on(
    State(state): State<Arc<AppState>>,
    Path(id): Path<String>,
    Json(req): Json<NoteOnRequest>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    let voice_id = resolve_voice_id(&state, &id).await?;

    if let Err(e) = state
        .send(
            VoiceMessage::NoteOn {
                voice: voice_id,
                note: req.note,
                velocity: req.velocity,
            }
            .into(),
        )
        .await
    {
        return Err((
            StatusCode::INTERNAL_SERVER_ERROR,
            Json(ErrorResponse::internal(&format!(
                "Failed to send note-on: {}",
                e
            ))),
        ));
    }

    Ok(StatusCode::OK)
}

/// POST /voices/:id/note-off - Send note-off to voice by ID or name
pub async fn note_off(
    State(state): State<Arc<AppState>>,
    Path(id): Path<String>,
    Json(req): Json<NoteOffRequest>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    let voice_id = resolve_voice_id(&state, &id).await?;

    if let Err(e) = state
        .send(
            VoiceMessage::NoteOff {
                voice: voice_id,
                note: req.note,
            }
            .into(),
        )
        .await
    {
        return Err((
            StatusCode::INTERNAL_SERVER_ERROR,
            Json(ErrorResponse::internal(&format!(
                "Failed to send note-off: {}",
                e
            ))),
        ));
    }

    Ok(StatusCode::OK)
}

/// PUT /voices/:id/params/:param - Set a voice parameter by ID or name
pub async fn set_voice_param(
    State(state): State<Arc<AppState>>,
    Path((id, param)): Path<(String, String)>,
    Json(req): Json<ParamSet>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    let voice_id = resolve_voice_id(&state, &id).await?;

    if let Err(e) = state
        .send(
            VoiceMessage::SetParam {
                id: voice_id,
                param,
                value: req.value,
            }
            .into(),
        )
        .await
    {
        return Err((
            StatusCode::INTERNAL_SERVER_ERROR,
            Json(ErrorResponse::internal(&format!(
                "Failed to set voice param: {}",
                e
            ))),
        ));
    }

    Ok(StatusCode::OK)
}

/// POST /voices/:id/mute - Mute a voice by ID or name
pub async fn mute_voice(
    State(state): State<Arc<AppState>>,
    Path(id): Path<String>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    let voice_id = resolve_voice_id(&state, &id).await?;

    if let Err(e) = state
        .send(
            VoiceMessage::Mute {
                id: voice_id,
                muted: true,
            }
            .into(),
        )
        .await
    {
        return Err((
            StatusCode::INTERNAL_SERVER_ERROR,
            Json(ErrorResponse::internal(&format!(
                "Failed to mute voice: {}",
                e
            ))),
        ));
    }

    Ok(StatusCode::OK)
}

/// POST /voices/:id/unmute - Unmute a voice by ID or name
pub async fn unmute_voice(
    State(state): State<Arc<AppState>>,
    Path(id): Path<String>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    let voice_id = resolve_voice_id(&state, &id).await?;

    if let Err(e) = state
        .send(
            VoiceMessage::Mute {
                id: voice_id,
                muted: false,
            }
            .into(),
        )
        .await
    {
        return Err((
            StatusCode::INTERNAL_SERVER_ERROR,
            Json(ErrorResponse::internal(&format!(
                "Failed to unmute voice: {}",
                e
            ))),
        ));
    }

    Ok(StatusCode::OK)
}

/// POST /voices - Create a new voice
pub async fn create_voice(
    State(state): State<Arc<AppState>>,
    Json(req): Json<VoiceCreate>,
) -> Result<(StatusCode, Json<Voice>), (StatusCode, Json<ErrorResponse>)> {
    // Generate a new voice ID
    let voice_id = state
        .with_state(|s| {
            let max_id = s.voices.keys().map(|id| id.raw()).max().unwrap_or(0);
            VoiceId::new(max_id + 1)
        })
        .await;

    // Parse group ID (default to root group if not specified)
    let group_id = if let Some(gid) = &req.group_path {
        gid.parse::<u32>().map(GroupId::new).map_err(|_| {
            (
                StatusCode::BAD_REQUEST,
                Json(ErrorResponse::bad_request(&format!(
                    "Invalid group path '{}': must be a number",
                    gid
                ))),
            )
        })?
    } else {
        // Use root group (ID 0)
        GroupId::new(0)
    };

    // Build voice config - synth_name is required
    let voice_name = req
        .name
        .clone()
        .unwrap_or_else(|| voice_id.raw().to_string());
    let synth_name = req
        .synth_name
        .clone()
        .unwrap_or_else(|| "default".to_string());
    let mut config = VoiceConfig::new(&voice_name, &synth_name, group_id);
    if let Some(polyphony) = req.polyphony {
        config = config.with_polyphony(polyphony);
    }
    for (param, value) in req.params {
        config = config.with_param(param, value);
    }

    // Send create message
    if let Err(e) = state
        .send(
            VoiceMessage::Create {
                id: voice_id,
                config,
            }
            .into(),
        )
        .await
    {
        return Err((
            StatusCode::INTERNAL_SERVER_ERROR,
            Json(ErrorResponse::internal(&format!(
                "Failed to create voice: {}",
                e
            ))),
        ));
    }

    // Return the created voice
    // Wait a moment for state to update, then fetch
    tokio::time::sleep(tokio::time::Duration::from_millis(10)).await;

    let voice = state
        .with_state(|s| {
            s.voices
                .get(&voice_id)
                .map(|vs| voice_to_api(&voice_id, vs))
        })
        .await;

    match voice {
        Some(v) => Ok((StatusCode::CREATED, Json(v))),
        None => Err((
            StatusCode::INTERNAL_SERVER_ERROR,
            Json(ErrorResponse::internal(
                "Voice created but not found in state",
            )),
        )),
    }
}

/// DELETE /voices/:id - Delete a voice by ID or name
pub async fn delete_voice(
    State(state): State<Arc<AppState>>,
    Path(id): Path<String>,
) -> Result<StatusCode, (StatusCode, Json<ErrorResponse>)> {
    let voice_id = resolve_voice_id(&state, &id).await?;

    if let Err(e) = state
        .send(VoiceMessage::Delete { id: voice_id }.into())
        .await
    {
        return Err((
            StatusCode::INTERNAL_SERVER_ERROR,
            Json(ErrorResponse::internal(&format!(
                "Failed to delete voice: {}",
                e
            ))),
        ));
    }

    Ok(StatusCode::NO_CONTENT)
}