provenant-cli 0.1.3

Independent Rust scanner for ScanCode-compatible workflows, licenses, package metadata, SBOMs, and provenance data.
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
// SPDX-FileCopyrightText: Provenant contributors
// SPDX-License-Identifier: Apache-2.0

use schemars::{JsonSchema, schema_for};
use serde::{Deserialize, Serialize};
use serde_json::{Value, json};

pub const API_VERSION: &str = "v1";

#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct ServeLivenessResponse {
    pub status: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct ServeReadinessResponse {
    pub status: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub api_version: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub spdx_license_list_version: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub message: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct ServeVersionResponse {
    pub service: String,
    pub api_version: String,
    pub tool_version: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct ServeErrorResponse {
    pub status: String,
    pub message: String,
    pub api_version: String,
}

#[derive(Debug, Clone, Copy, Serialize, Deserialize, JsonSchema, PartialEq, Eq)]
#[serde(rename_all = "snake_case")]
pub enum AsyncJobState {
    Pending,
    Running,
    Succeeded,
    Failed,
}

#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct AsyncScanAcceptedResponse {
    pub status: String,
    pub job_id: String,
    pub state: AsyncJobState,
    pub status_url: String,
    pub result_url: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct AsyncJobStatusResponse {
    pub job_id: String,
    pub state: AsyncJobState,
    pub result_ready: bool,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub allocated_processors: Option<usize>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub message: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct SyncScanRequest {
    pub input: SyncScanInput,
    #[serde(default)]
    pub options: SyncScanOptions,
}

#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum SyncScanInput {
    Paths {
        paths: Vec<String>,
    },
    Repository {
        url: String,
        #[serde(rename = "ref")]
        reference: String,
    },
    Url {
        url: String,
    },
    Upload {
        filename: String,
        content_base64: String,
    },
}

#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum SyncLicenseSource {
    Disabled,
    Embedded,
    Directory { path: String },
}

#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
#[serde(default)]
pub struct SyncScanOptions {
    pub collect_info: bool,
    pub detect_license: SyncLicenseSource,
    pub detect_packages: bool,
    pub detect_system_packages: bool,
    pub detect_packages_in_compiled: bool,
    pub detect_copyrights: bool,
    pub detect_emails: bool,
    pub detect_urls: bool,
    pub detect_generated: bool,
    pub include: Vec<String>,
    pub exclude: Vec<String>,
    pub strip_root: bool,
    pub full_root: bool,
    pub license_text: bool,
    pub license_text_diagnostics: bool,
    pub license_diagnostics: bool,
    pub unknown_licenses: bool,
    pub license_score: u8,
    pub only_findings: bool,
    pub mark_source: bool,
    pub classify: bool,
    pub summary: bool,
    pub license_clarity_score: bool,
    pub license_references: bool,
    pub tallies: bool,
    pub tallies_key_files: bool,
    pub tallies_with_details: bool,
    pub facets: Vec<String>,
    pub tallies_by_facet: bool,
}

impl Default for SyncScanOptions {
    fn default() -> Self {
        Self {
            collect_info: false,
            detect_license: SyncLicenseSource::Disabled,
            detect_packages: false,
            detect_system_packages: false,
            detect_packages_in_compiled: false,
            detect_copyrights: false,
            detect_emails: false,
            detect_urls: false,
            detect_generated: false,
            include: Vec::new(),
            exclude: Vec::new(),
            strip_root: false,
            full_root: false,
            license_text: false,
            license_text_diagnostics: false,
            license_diagnostics: false,
            unknown_licenses: false,
            license_score: 0,
            only_findings: false,
            mark_source: false,
            classify: false,
            summary: false,
            license_clarity_score: false,
            license_references: false,
            tallies: false,
            tallies_key_files: false,
            tallies_with_details: false,
            facets: Vec::new(),
            tallies_by_facet: false,
        }
    }
}

pub fn openapi_document() -> Value {
    json!({
        "openapi": "3.1.0",
        "info": {
            "title": "Provenant Serve API",
            "version": API_VERSION,
            "description": "Current machine-readable contract for the implemented `provenant serve` HTTP API surface."
        },
        "paths": {
            "/livez": {
                "get": {
                    "summary": "Liveness probe",
                    "operationId": "getLivez",
                    "responses": {
                        "200": {
                            "description": "Process is alive.",
                            "content": {
                                "application/json": {
                                    "schema": {"$ref": "#/components/schemas/ServeLivenessResponse"}
                                }
                            }
                        }
                    }
                }
            },
            "/readyz": {
                "get": {
                    "summary": "Readiness probe",
                    "operationId": "getReadyz",
                    "responses": {
                        "200": {
                            "description": "Service is ready to accept scan requests.",
                            "content": {
                                "application/json": {
                                    "schema": {"$ref": "#/components/schemas/ServeReadinessResponse"}
                                }
                            }
                        },
                        "503": {
                            "description": "Service is still warming or startup failed.",
                            "content": {
                                "application/json": {
                                    "schema": {"$ref": "#/components/schemas/ServeReadinessResponse"}
                                }
                            }
                        }
                    }
                }
            },
            "/version": {
                "get": {
                    "summary": "Version metadata",
                    "operationId": "getVersion",
                    "responses": {
                        "200": {
                            "description": "Current service and tool version metadata.",
                            "content": {
                                "application/json": {
                                    "schema": {"$ref": "#/components/schemas/ServeVersionResponse"}
                                }
                            }
                        }
                    }
                }
            },
            "/v1/scans": {
                "post": {
                    "summary": "Run a synchronous scan",
                    "operationId": "postSyncScan",
                    "requestBody": {
                        "required": true,
                        "content": {
                            "application/json": {
                                "schema": {"$ref": "#/components/schemas/SyncScanRequest"}
                            }
                        }
                    },
                    "responses": {
                        "200": {
                            "description": "ScanCode-compatible scan result output.",
                            "content": {
                                "application/json": {
                                    "schema": {
                                        "type": "object",
                                        "description": "Current ScanCode-compatible output JSON returned by the shared Provenant output schema."
                                    }
                                }
                            }
                        },
                        "400": {
                            "description": "Invalid HTTP request or malformed JSON body.",
                            "content": {
                                "application/json": {
                                    "schema": {"$ref": "#/components/schemas/ServeErrorResponse"}
                                }
                            }
                        },
                        "415": {
                            "description": "Unsupported media type.",
                            "content": {
                                "application/json": {
                                    "schema": {"$ref": "#/components/schemas/ServeErrorResponse"}
                                }
                            }
                        },
                        "422": {
                            "description": "Request is well-formed but cannot be executed.",
                            "content": {
                                "application/json": {
                                    "schema": {"$ref": "#/components/schemas/ServeErrorResponse"}
                                }
                            }
                        }
                    }
                }
            },
            "/v1/scans:async": {
                "post": {
                    "summary": "Submit an asynchronous scan job",
                    "operationId": "postAsyncScan",
                    "requestBody": {
                        "required": true,
                        "content": {
                            "application/json": {
                                "schema": {"$ref": "#/components/schemas/SyncScanRequest"}
                            }
                        }
                    },
                    "responses": {
                        "202": {
                            "description": "Scan job accepted for bounded background execution.",
                            "content": {
                                "application/json": {
                                    "schema": {"$ref": "#/components/schemas/AsyncScanAcceptedResponse"}
                                }
                            }
                        },
                        "400": {
                            "description": "Invalid HTTP request or malformed JSON body.",
                            "content": {
                                "application/json": {
                                    "schema": {"$ref": "#/components/schemas/ServeErrorResponse"}
                                }
                            }
                        },
                        "415": {
                            "description": "Unsupported media type.",
                            "content": {
                                "application/json": {
                                    "schema": {"$ref": "#/components/schemas/ServeErrorResponse"}
                                }
                            }
                        },
                        "503": {
                            "description": "Service has no remaining async admission capacity.",
                            "content": {
                                "application/json": {
                                    "schema": {"$ref": "#/components/schemas/ServeErrorResponse"}
                                }
                            }
                        }
                    }
                }
            },
            "/v1/jobs/{id}": {
                "get": {
                    "summary": "Inspect asynchronous job state",
                    "operationId": "getAsyncJobStatus",
                    "parameters": [
                        {
                            "name": "id",
                            "in": "path",
                            "required": true,
                            "schema": {"type": "string"}
                        }
                    ],
                    "responses": {
                        "200": {
                            "description": "Current async job state.",
                            "content": {
                                "application/json": {
                                    "schema": {"$ref": "#/components/schemas/AsyncJobStatusResponse"}
                                }
                            }
                        },
                        "404": {
                            "description": "Async job was not found.",
                            "content": {
                                "application/json": {
                                    "schema": {"$ref": "#/components/schemas/ServeErrorResponse"}
                                }
                            }
                        }
                    }
                }
            },
            "/v1/jobs/{id}/result": {
                "get": {
                    "summary": "Fetch completed asynchronous job result",
                    "operationId": "getAsyncJobResult",
                    "parameters": [
                        {
                            "name": "id",
                            "in": "path",
                            "required": true,
                            "schema": {"type": "string"}
                        }
                    ],
                    "responses": {
                        "200": {
                            "description": "Completed ScanCode-compatible scan result output.",
                            "content": {
                                "application/json": {
                                    "schema": {
                                        "type": "object",
                                        "description": "Current ScanCode-compatible output JSON returned by the shared Provenant output schema."
                                    }
                                }
                            }
                        },
                        "404": {
                            "description": "Async job was not found.",
                            "content": {
                                "application/json": {
                                    "schema": {"$ref": "#/components/schemas/ServeErrorResponse"}
                                }
                            }
                        },
                        "409": {
                            "description": "Async job has not completed yet.",
                            "content": {
                                "application/json": {
                                    "schema": {"$ref": "#/components/schemas/ServeErrorResponse"}
                                }
                            }
                        },
                        "422": {
                            "description": "Async job completed with a failure.",
                            "content": {
                                "application/json": {
                                    "schema": {"$ref": "#/components/schemas/ServeErrorResponse"}
                                }
                            }
                        }
                    }
                }
            }
        },
        "components": {
            "schemas": {
                "ServeLivenessResponse": schema_json::<ServeLivenessResponse>(),
                "ServeReadinessResponse": schema_json::<ServeReadinessResponse>(),
                "ServeVersionResponse": schema_json::<ServeVersionResponse>(),
                "ServeErrorResponse": schema_json::<ServeErrorResponse>(),
                "AsyncJobState": schema_json::<AsyncJobState>(),
                "AsyncScanAcceptedResponse": schema_json::<AsyncScanAcceptedResponse>(),
                "AsyncJobStatusResponse": schema_json::<AsyncJobStatusResponse>(),
                "SyncScanRequest": schema_json::<SyncScanRequest>(),
                "SyncScanInput": schema_json::<SyncScanInput>(),
                "SyncLicenseSource": schema_json::<SyncLicenseSource>(),
                "SyncScanOptions": schema_json::<SyncScanOptions>()
            }
        }
    })
}

fn schema_json<T: JsonSchema>() -> Value {
    serde_json::to_value(schema_for!(T)).expect("schema should serialize")
}