lenso-cli 0.1.18

Lenso command-line interface for scaffolding and operating Lenso backend projects.
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
use lenso::host::http::{
    ApiErrorResponse, ApiOpenApiRouter, AppContext, AppError, ErrorCode, ErrorResponse,
    HttpRequestContext, Json, JsonBody, OpenApiRouter, Path, RequestContext, State, UserActor,
    json, routes,
};
use serde::{Deserialize, Serialize};
use sqlx::Row;
use utoipa::ToSchema;

#[derive(Debug, Serialize, ToSchema)]
struct AppStatusResponse {
    status: &'static str,
}

#[derive(Debug, Deserialize, ToSchema)]
struct CreateItemRequest {
    title: String,
}

#[derive(Debug, Deserialize, ToSchema)]
struct UpdateItemRequest {
    title: String,
}

#[derive(Debug, Serialize, ToSchema)]
struct AppItem {
    id: i64,
    owner_user_id: String,
    title: String,
}

pub fn merge_http(base: ApiOpenApiRouter) -> ApiOpenApiRouter {
    base.merge(router())
}

fn router() -> ApiOpenApiRouter {
    OpenApiRouter::new()
        .routes(routes!(status))
        .routes(routes!(create_item))
        .routes(routes!(get_item))
        .routes(routes!(update_item))
        .routes(routes!(delete_item))
        .routes(routes!(list_items))
}

#[utoipa::path(
    get,
    path = "/v1/app/status",
    operation_id = "app_status",
    tag = "app",
    responses((
        status = 200,
        description = "App module status",
        body = AppStatusResponse,
        content_type = "application/json"
    ))
)]
async fn status() -> Json<AppStatusResponse> {
    json(AppStatusResponse { status: "ok" })
}

#[utoipa::path(
    post,
    path = "/v1/app/items",
    operation_id = "app_create_item",
    tag = "app",
    request_body(
        content = CreateItemRequest,
        content_type = "application/json",
        description = "Create an app-owned item"
    ),
    responses(
        (
            status = 200,
            description = "Item created",
            body = AppItem,
            content_type = "application/json"
        ),
        (
            status = 400,
            description = "Request validation failed",
            body = ErrorResponse,
            content_type = "application/json"
        ),
        (
            status = 401,
            description = "Authentication is required",
            body = ErrorResponse,
            content_type = "application/json"
        ),
        (
            status = 403,
            description = "User authentication is required",
            body = ErrorResponse,
            content_type = "application/json"
        ),
        (
            status = 500,
            description = "Internal server error",
            body = ErrorResponse,
            content_type = "application/json"
        )
    )
)]
async fn create_item(
    State(ctx): State<AppContext>,
    actor: UserActor,
    HttpRequestContext(request_ctx): HttpRequestContext,
    JsonBody(input): JsonBody<CreateItemRequest>,
) -> Result<Json<AppItem>, ApiErrorResponse> {
    let title = input.title.trim();
    if title.is_empty() {
        return Err(ApiErrorResponse::with_context(
            AppError::new(ErrorCode::Validation, "item title is required"),
            &request_ctx,
        ));
    }

    let row = sqlx::query(
        r#"
        insert into app.items (owner_user_id, title)
        values ($1, $2)
        returning id, owner_user_id, title
        "#,
    )
    .bind(&actor.user_id)
    .bind(title)
    .fetch_one(&ctx.db)
    .await
    .map_err(|error| database_error(error, &request_ctx))?;

    Ok(json(item_from_row(row, &request_ctx)?))
}

#[utoipa::path(
    get,
    path = "/v1/app/items",
    operation_id = "app_list_items",
    tag = "app",
    responses(
        (
            status = 200,
            description = "Recent app-owned items for the authenticated user",
            body = Vec<AppItem>,
            content_type = "application/json"
        ),
        (
            status = 401,
            description = "Authentication is required",
            body = ErrorResponse,
            content_type = "application/json"
        ),
        (
            status = 403,
            description = "User authentication is required",
            body = ErrorResponse,
            content_type = "application/json"
        ),
        (
            status = 500,
            description = "Internal server error",
            body = ErrorResponse,
            content_type = "application/json"
        )
    )
)]
async fn list_items(
    State(ctx): State<AppContext>,
    actor: UserActor,
    HttpRequestContext(request_ctx): HttpRequestContext,
) -> Result<Json<Vec<AppItem>>, ApiErrorResponse> {
    let rows = sqlx::query(
        r#"
        select id, owner_user_id, title
        from app.items
        where owner_user_id = $1
        order by id desc
        limit 50
        "#,
    )
    .bind(&actor.user_id)
    .fetch_all(&ctx.db)
    .await
    .map_err(|error| database_error(error, &request_ctx))?;
    let items = rows
        .into_iter()
        .map(|row| item_from_row(row, &request_ctx))
        .collect::<Result<Vec<_>, _>>()?;

    Ok(json(items))
}

#[utoipa::path(
    get,
    path = "/v1/app/items/{id}",
    operation_id = "app_get_item",
    tag = "app",
    params(("id" = i64, Path, description = "App item id")),
    responses(
        (
            status = 200,
            description = "App-owned item",
            body = AppItem,
            content_type = "application/json"
        ),
        (
            status = 404,
            description = "Item not found",
            body = ErrorResponse,
            content_type = "application/json"
        ),
        (
            status = 401,
            description = "Authentication is required",
            body = ErrorResponse,
            content_type = "application/json"
        ),
        (
            status = 403,
            description = "User authentication is required",
            body = ErrorResponse,
            content_type = "application/json"
        ),
        (
            status = 500,
            description = "Internal server error",
            body = ErrorResponse,
            content_type = "application/json"
        )
    )
)]
async fn get_item(
    State(ctx): State<AppContext>,
    actor: UserActor,
    HttpRequestContext(request_ctx): HttpRequestContext,
    Path(id): Path<i64>,
) -> Result<Json<AppItem>, ApiErrorResponse> {
    let row = sqlx::query(
        r#"
        select id, owner_user_id, title
        from app.items
        where id = $1 and owner_user_id = $2
        "#,
    )
    .bind(id)
    .bind(&actor.user_id)
    .fetch_optional(&ctx.db)
    .await
    .map_err(|error| database_error(error, &request_ctx))?
    .ok_or_else(|| {
        ApiErrorResponse::with_context(
            AppError::new(ErrorCode::NotFound, format!("app item {id} was not found")),
            &request_ctx,
        )
    })?;

    Ok(json(item_from_row(row, &request_ctx)?))
}

#[utoipa::path(
    patch,
    path = "/v1/app/items/{id}",
    operation_id = "app_update_item",
    tag = "app",
    params(("id" = i64, Path, description = "App item id")),
    request_body(
        content = UpdateItemRequest,
        content_type = "application/json",
        description = "Update an app-owned item"
    ),
    responses(
        (
            status = 200,
            description = "Item updated",
            body = AppItem,
            content_type = "application/json"
        ),
        (
            status = 400,
            description = "Request validation failed",
            body = ErrorResponse,
            content_type = "application/json"
        ),
        (
            status = 404,
            description = "Item not found",
            body = ErrorResponse,
            content_type = "application/json"
        ),
        (
            status = 401,
            description = "Authentication is required",
            body = ErrorResponse,
            content_type = "application/json"
        ),
        (
            status = 403,
            description = "User authentication is required",
            body = ErrorResponse,
            content_type = "application/json"
        ),
        (
            status = 500,
            description = "Internal server error",
            body = ErrorResponse,
            content_type = "application/json"
        )
    )
)]
async fn update_item(
    State(ctx): State<AppContext>,
    actor: UserActor,
    HttpRequestContext(request_ctx): HttpRequestContext,
    Path(id): Path<i64>,
    JsonBody(input): JsonBody<UpdateItemRequest>,
) -> Result<Json<AppItem>, ApiErrorResponse> {
    let title = input.title.trim();
    if title.is_empty() {
        return Err(ApiErrorResponse::with_context(
            AppError::new(ErrorCode::Validation, "item title is required"),
            &request_ctx,
        ));
    }

    let row = sqlx::query(
        r#"
        update app.items
        set title = $1
        where id = $2 and owner_user_id = $3
        returning id, owner_user_id, title
        "#,
    )
    .bind(title)
    .bind(id)
    .bind(&actor.user_id)
    .fetch_optional(&ctx.db)
    .await
    .map_err(|error| database_error(error, &request_ctx))?
    .ok_or_else(|| {
        ApiErrorResponse::with_context(
            AppError::new(ErrorCode::NotFound, format!("app item {id} was not found")),
            &request_ctx,
        )
    })?;

    Ok(json(item_from_row(row, &request_ctx)?))
}

#[utoipa::path(
    delete,
    path = "/v1/app/items/{id}",
    operation_id = "app_delete_item",
    tag = "app",
    params(("id" = i64, Path, description = "App item id")),
    responses(
        (
            status = 200,
            description = "Item deleted",
            body = AppItem,
            content_type = "application/json"
        ),
        (
            status = 404,
            description = "Item not found",
            body = ErrorResponse,
            content_type = "application/json"
        ),
        (
            status = 401,
            description = "Authentication is required",
            body = ErrorResponse,
            content_type = "application/json"
        ),
        (
            status = 403,
            description = "User authentication is required",
            body = ErrorResponse,
            content_type = "application/json"
        ),
        (
            status = 500,
            description = "Internal server error",
            body = ErrorResponse,
            content_type = "application/json"
        )
    )
)]
async fn delete_item(
    State(ctx): State<AppContext>,
    actor: UserActor,
    HttpRequestContext(request_ctx): HttpRequestContext,
    Path(id): Path<i64>,
) -> Result<Json<AppItem>, ApiErrorResponse> {
    let row = sqlx::query(
        r#"
        delete from app.items
        where id = $1 and owner_user_id = $2
        returning id, owner_user_id, title
        "#,
    )
    .bind(id)
    .bind(&actor.user_id)
    .fetch_optional(&ctx.db)
    .await
    .map_err(|error| database_error(error, &request_ctx))?
    .ok_or_else(|| {
        ApiErrorResponse::with_context(
            AppError::new(ErrorCode::NotFound, format!("app item {id} was not found")),
            &request_ctx,
        )
    })?;

    Ok(json(item_from_row(row, &request_ctx)?))
}

fn item_from_row(
    row: sqlx::postgres::PgRow,
    request_ctx: &RequestContext,
) -> Result<AppItem, ApiErrorResponse> {
    Ok(AppItem {
        id: row
            .try_get("id")
            .map_err(|error| database_error(error, request_ctx))?,
        owner_user_id: row
            .try_get("owner_user_id")
            .map_err(|error| database_error(error, request_ctx))?,
        title: row
            .try_get("title")
            .map_err(|error| database_error(error, request_ctx))?,
    })
}

fn database_error(error: sqlx::Error, request_ctx: &RequestContext) -> ApiErrorResponse {
    ApiErrorResponse::with_context(
        AppError::new(ErrorCode::Internal, "App item database operation failed").with_source(error),
        request_ctx,
    )
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn router_documents_app_routes() {
        let document = router().to_openapi();

        assert!(document.paths.paths.contains_key("/v1/app/status"));
        let items = document
            .paths
            .paths
            .get("/v1/app/items")
            .expect("items path should be documented");
        assert!(items.get.is_some());
        assert!(items.post.is_some());
        let item = document
            .paths
            .paths
            .get("/v1/app/items/{id}")
            .expect("item detail path should be documented");
        assert!(item.get.is_some());
        assert!(item.patch.is_some());
        assert!(item.delete.is_some());
    }
}