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
use crate::models::RunMetadata;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
#[derive(FromForm)]
pub struct ReportParams {
pub all: Option<bool>,
pub offset: Option<i64>,
pub page_size: Option<i64>,
}
#[derive(Serialize, Deserialize)]
pub struct RerunRequestParams {
pub token: String,
pub description: String,
}
#[derive(Deserialize, Serialize, Debug, Clone)]
pub struct FrontendConfig {
pub captcha_secret: String,
pub rerun_tokens: HashMap<String, String>,
}
#[derive(Serialize)]
pub struct TemplateContext {
pub global: HashMap<String, String>,
pub corpora: Option<Vec<HashMap<String, String>>>,
pub services: Option<Vec<HashMap<String, String>>>,
pub entries: Option<Vec<HashMap<String, String>>>,
pub categories: Option<Vec<HashMap<String, String>>>,
pub whats: Option<Vec<HashMap<String, String>>>,
pub workers: Option<Vec<HashMap<String, String>>>,
pub history: Option<Vec<RunMetadata>>,
pub history_serialized: Option<String>,
}
impl Default for TemplateContext {
fn default() -> Self {
TemplateContext {
global: HashMap::new(),
corpora: None,
services: None,
entries: None,
categories: None,
whats: None,
workers: None,
history: None,
history_serialized: None,
}
}
}