winterbaume-codebuild 0.1.0

CodeBuild service implementation for winterbaume
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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
//! Serde-compatible view types for CodeBuild state snapshots.

use std::collections::HashMap;

use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
use winterbaume_core::{StateChangeNotifier, StateViewError, StatefulService};

use crate::handlers::CodeBuildService;
use crate::state::CodeBuildState;
use crate::types::{Build, BuildPhase, Project, ReportGroup, SourceCredential, Tag, Webhook};

/// Serializable view of the entire CodeBuild state for one account/region.
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct CodeBuildStateView {
    /// Projects keyed by project name.
    #[serde(default)]
    pub projects: HashMap<String, ProjectView>,
    /// Builds keyed by build ID.
    #[serde(default)]
    pub builds: HashMap<String, BuildView>,
    /// Ordered list of build IDs.
    #[serde(default)]
    pub build_ids: Vec<String>,
    /// Next build number per project.
    #[serde(default)]
    pub build_counters: HashMap<String, i64>,
    /// Webhooks keyed by project name.
    #[serde(default)]
    pub webhooks: HashMap<String, WebhookView>,
    /// Source credentials keyed by ARN.
    #[serde(default)]
    pub source_credentials: HashMap<String, SourceCredentialView>,
    /// Resource policies keyed by resource ARN.
    #[serde(default)]
    pub resource_policies: HashMap<String, String>,
    /// Report groups keyed by ARN.
    #[serde(default)]
    pub report_groups: HashMap<String, ReportGroupView>,
    /// Ordered list of report group ARNs.
    #[serde(default)]
    pub report_group_arns: Vec<String>,
}

/// Serializable view of a tag.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TagView {
    pub key: String,
    pub value: String,
}

/// Serializable view of a CodeBuild project.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ProjectView {
    pub name: String,
    pub arn: String,
    pub description: String,
    pub source_type: String,
    pub source_location: String,
    pub artifact_type: String,
    pub artifact_location: Option<String>,
    pub environment_type: String,
    pub environment_image: String,
    pub environment_compute_type: String,
    pub service_role: String,
    #[serde(default)]
    pub tags: Vec<TagView>,
    pub created: String,
    pub last_modified: String,
    /// `build_batch_config` nested block.
    #[serde(default)]
    pub build_batch_config: Option<serde_json::Value>,
    /// `cache` nested block.
    #[serde(default)]
    pub cache: Option<serde_json::Value>,
    /// `file_system_locations` nested blocks.
    #[serde(default)]
    pub file_system_locations: Vec<serde_json::Value>,
    /// `logs_config` nested block.
    #[serde(default)]
    pub logs_config: Option<serde_json::Value>,
    /// `secondary_artifacts` nested blocks.
    #[serde(default)]
    pub secondary_artifacts: Vec<serde_json::Value>,
    /// `secondary_sources` nested blocks.
    #[serde(default)]
    pub secondary_sources: Vec<serde_json::Value>,
    /// `vpc_config` nested block.
    #[serde(default)]
    pub vpc_config: Option<serde_json::Value>,
}

/// Serializable view of a build phase.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BuildPhaseView {
    pub phase_type: String,
    pub phase_status: Option<String>,
    pub start_time: f64,
    pub end_time: Option<f64>,
    pub duration_in_seconds: Option<i64>,
}

/// Serializable view of a CodeBuild build.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BuildView {
    pub id: String,
    pub arn: String,
    pub project_name: String,
    pub build_status: String,
    pub current_phase: String,
    pub source_type: String,
    pub source_location: String,
    pub source_version: String,
    pub artifact_type: String,
    pub artifact_location: Option<String>,
    pub environment_type: String,
    pub environment_image: String,
    pub environment_compute_type: String,
    pub service_role: String,
    pub start_time: String,
    pub end_time: Option<String>,
    pub build_number: i64,
    #[serde(default)]
    pub phases: Vec<BuildPhaseView>,
}

/// Serializable view of a CodeBuild webhook.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WebhookView {
    pub project_name: String,
    pub url: String,
    pub branch_filter: Option<String>,
    pub build_type: Option<String>,
    pub secret: Option<String>,
}

/// Serializable view of a source credential.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SourceCredentialView {
    pub arn: String,
    pub server_type: String,
    pub auth_type: String,
    pub resource: Option<String>,
}

/// Serializable view of a report group.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ReportGroupView {
    pub arn: String,
    pub name: String,
    pub r#type: String,
    pub export_config_type: Option<String>,
    #[serde(default)]
    pub tags: Vec<TagView>,
    pub created: String,
    pub last_modified: String,
    pub status: String,
}

// ---------------------------------------------------------------------------
// From conversions
// ---------------------------------------------------------------------------

impl From<&Tag> for TagView {
    fn from(t: &Tag) -> Self {
        TagView {
            key: t.key.clone(),
            value: t.value.clone(),
        }
    }
}

impl From<&Project> for ProjectView {
    fn from(p: &Project) -> Self {
        ProjectView {
            name: p.name.clone(),
            arn: p.arn.clone(),
            description: p.description.clone(),
            source_type: p.source_type.clone(),
            source_location: p.source_location.clone(),
            artifact_type: p.artifact_type.clone(),
            artifact_location: p.artifact_location.clone(),
            environment_type: p.environment_type.clone(),
            environment_image: p.environment_image.clone(),
            environment_compute_type: p.environment_compute_type.clone(),
            service_role: p.service_role.clone(),
            tags: p.tags.iter().map(TagView::from).collect(),
            created: p.created.to_rfc3339(),
            last_modified: p.last_modified.to_rfc3339(),
            build_batch_config: None,
            cache: None,
            file_system_locations: vec![],
            logs_config: None,
            secondary_artifacts: vec![],
            secondary_sources: vec![],
            vpc_config: None,
        }
    }
}

impl From<&BuildPhase> for BuildPhaseView {
    fn from(ph: &BuildPhase) -> Self {
        BuildPhaseView {
            phase_type: ph.phase_type.clone(),
            phase_status: ph.phase_status.clone(),
            start_time: ph.start_time,
            end_time: ph.end_time,
            duration_in_seconds: ph.duration_in_seconds,
        }
    }
}

impl From<&Build> for BuildView {
    fn from(b: &Build) -> Self {
        BuildView {
            id: b.id.clone(),
            arn: b.arn.clone(),
            project_name: b.project_name.clone(),
            build_status: b.build_status.clone(),
            current_phase: b.current_phase.clone(),
            source_type: b.source_type.clone(),
            source_location: b.source_location.clone(),
            source_version: b.source_version.clone(),
            artifact_type: b.artifact_type.clone(),
            artifact_location: b.artifact_location.clone(),
            environment_type: b.environment_type.clone(),
            environment_image: b.environment_image.clone(),
            environment_compute_type: b.environment_compute_type.clone(),
            service_role: b.service_role.clone(),
            start_time: b.start_time.to_rfc3339(),
            end_time: b.end_time.as_ref().map(|d| d.to_rfc3339()),
            build_number: b.build_number,
            phases: b.phases.iter().map(BuildPhaseView::from).collect(),
        }
    }
}

impl From<&Webhook> for WebhookView {
    fn from(w: &Webhook) -> Self {
        WebhookView {
            project_name: w.project_name.clone(),
            url: w.url.clone(),
            branch_filter: w.branch_filter.clone(),
            build_type: w.build_type.clone(),
            secret: w.secret.clone(),
        }
    }
}

impl From<&SourceCredential> for SourceCredentialView {
    fn from(c: &SourceCredential) -> Self {
        SourceCredentialView {
            arn: c.arn.clone(),
            server_type: c.server_type.clone(),
            auth_type: c.auth_type.clone(),
            resource: c.resource.clone(),
        }
    }
}

impl From<&ReportGroup> for ReportGroupView {
    fn from(rg: &ReportGroup) -> Self {
        ReportGroupView {
            arn: rg.arn.clone(),
            name: rg.name.clone(),
            r#type: rg.r#type.clone(),
            export_config_type: rg.export_config_type.clone(),
            tags: rg.tags.iter().map(TagView::from).collect(),
            created: rg.created.to_rfc3339(),
            last_modified: rg.last_modified.to_rfc3339(),
            status: rg.status.clone(),
        }
    }
}

impl From<&CodeBuildState> for CodeBuildStateView {
    fn from(s: &CodeBuildState) -> Self {
        let projects = s
            .projects
            .iter()
            .map(|(k, v)| (k.clone(), ProjectView::from(v)))
            .collect();
        let builds = s
            .builds
            .iter()
            .map(|(k, v)| (k.clone(), BuildView::from(v)))
            .collect();
        let webhooks = s
            .webhooks
            .iter()
            .map(|(k, v)| (k.clone(), WebhookView::from(v)))
            .collect();
        let source_credentials = s
            .source_credentials
            .iter()
            .map(|(k, v)| (k.clone(), SourceCredentialView::from(v)))
            .collect();
        let report_groups = s
            .report_groups
            .iter()
            .map(|(k, v)| (k.clone(), ReportGroupView::from(v)))
            .collect();
        CodeBuildStateView {
            projects,
            builds,
            build_ids: s.build_ids.clone(),
            build_counters: s.build_counters.clone(),
            webhooks,
            source_credentials,
            resource_policies: s.resource_policies.clone(),
            report_groups,
            report_group_arns: s.report_group_arns.clone(),
        }
    }
}

// ---------------------------------------------------------------------------
// StatefulService implementation
// ---------------------------------------------------------------------------

impl StatefulService for CodeBuildService {
    type StateView = CodeBuildStateView;

    async fn snapshot(&self, account_id: &str, region: &str) -> Self::StateView {
        let state = self.state.get(account_id, region);
        let guard = state.read().await;
        CodeBuildStateView::from(&*guard)
    }

    async fn restore(
        &self,
        account_id: &str,
        region: &str,
        view: Self::StateView,
    ) -> Result<(), StateViewError> {
        let mut new_state = CodeBuildState::default();

        for (name, pv) in view.projects {
            let created = DateTime::parse_from_rfc3339(&pv.created)
                .map(|d| d.with_timezone(&Utc))
                .unwrap_or_else(|_| Utc::now());
            let last_modified = DateTime::parse_from_rfc3339(&pv.last_modified)
                .map(|d| d.with_timezone(&Utc))
                .unwrap_or_else(|_| Utc::now());
            new_state.projects.insert(
                name,
                Project {
                    name: pv.name,
                    arn: pv.arn,
                    description: pv.description,
                    source_type: pv.source_type,
                    source_location: pv.source_location,
                    artifact_type: pv.artifact_type,
                    artifact_location: pv.artifact_location,
                    environment_type: pv.environment_type,
                    environment_image: pv.environment_image,
                    environment_compute_type: pv.environment_compute_type,
                    service_role: pv.service_role,
                    tags: pv
                        .tags
                        .into_iter()
                        .map(|t| Tag {
                            key: t.key,
                            value: t.value,
                        })
                        .collect(),
                    created,
                    last_modified,
                },
            );
        }

        for (id, bv) in view.builds {
            let start_time = DateTime::parse_from_rfc3339(&bv.start_time)
                .map(|d| d.with_timezone(&Utc))
                .unwrap_or_else(|_| Utc::now());
            let end_time = bv
                .end_time
                .as_deref()
                .and_then(|s| DateTime::parse_from_rfc3339(s).ok())
                .map(|d| d.with_timezone(&Utc));
            new_state.builds.insert(
                id,
                Build {
                    id: bv.id,
                    arn: bv.arn,
                    project_name: bv.project_name,
                    build_status: bv.build_status,
                    current_phase: bv.current_phase,
                    source_type: bv.source_type,
                    source_location: bv.source_location,
                    source_version: bv.source_version,
                    artifact_type: bv.artifact_type,
                    artifact_location: bv.artifact_location,
                    environment_type: bv.environment_type,
                    environment_image: bv.environment_image,
                    environment_compute_type: bv.environment_compute_type,
                    service_role: bv.service_role,
                    start_time,
                    end_time,
                    build_number: bv.build_number,
                    phases: bv
                        .phases
                        .into_iter()
                        .map(|ph| BuildPhase {
                            phase_type: ph.phase_type,
                            phase_status: ph.phase_status,
                            start_time: ph.start_time,
                            end_time: ph.end_time,
                            duration_in_seconds: ph.duration_in_seconds,
                        })
                        .collect(),
                },
            );
        }

        new_state.build_ids = view.build_ids;
        new_state.build_counters = view.build_counters;

        for (name, wv) in view.webhooks {
            new_state.webhooks.insert(
                name,
                Webhook {
                    project_name: wv.project_name,
                    url: wv.url,
                    branch_filter: wv.branch_filter,
                    build_type: wv.build_type,
                    secret: wv.secret,
                },
            );
        }

        for (arn, cv) in view.source_credentials {
            new_state.source_credentials.insert(
                arn,
                SourceCredential {
                    arn: cv.arn,
                    server_type: cv.server_type,
                    auth_type: cv.auth_type,
                    resource: cv.resource,
                },
            );
        }

        new_state.resource_policies = view.resource_policies;

        for (arn, rgv) in view.report_groups {
            let created = DateTime::parse_from_rfc3339(&rgv.created)
                .map(|d| d.with_timezone(&Utc))
                .unwrap_or_else(|_| Utc::now());
            let last_modified = DateTime::parse_from_rfc3339(&rgv.last_modified)
                .map(|d| d.with_timezone(&Utc))
                .unwrap_or_else(|_| Utc::now());
            new_state.report_groups.insert(
                arn,
                ReportGroup {
                    arn: rgv.arn,
                    name: rgv.name,
                    r#type: rgv.r#type,
                    export_config_type: rgv.export_config_type,
                    tags: rgv
                        .tags
                        .into_iter()
                        .map(|t| Tag {
                            key: t.key,
                            value: t.value,
                        })
                        .collect(),
                    created,
                    last_modified,
                    status: rgv.status,
                },
            );
        }

        new_state.report_group_arns = view.report_group_arns;

        {
            let state = self.state.get(account_id, region);
            *state.write().await = new_state;
        }
        self.notify_state_changed(account_id, region).await;
        Ok(())
    }

    async fn merge(
        &self,
        account_id: &str,
        region: &str,
        view: Self::StateView,
    ) -> Result<(), StateViewError> {
        let state = self.state.get(account_id, region);
        {
            let mut guard = state.write().await;

            for (name, pv) in view.projects {
                let created = DateTime::parse_from_rfc3339(&pv.created)
                    .map(|d| d.with_timezone(&Utc))
                    .unwrap_or_else(|_| Utc::now());
                let last_modified = DateTime::parse_from_rfc3339(&pv.last_modified)
                    .map(|d| d.with_timezone(&Utc))
                    .unwrap_or_else(|_| Utc::now());
                guard.projects.insert(
                    name,
                    Project {
                        name: pv.name,
                        arn: pv.arn,
                        description: pv.description,
                        source_type: pv.source_type,
                        source_location: pv.source_location,
                        artifact_type: pv.artifact_type,
                        artifact_location: pv.artifact_location,
                        environment_type: pv.environment_type,
                        environment_image: pv.environment_image,
                        environment_compute_type: pv.environment_compute_type,
                        service_role: pv.service_role,
                        tags: pv
                            .tags
                            .into_iter()
                            .map(|t| Tag {
                                key: t.key,
                                value: t.value,
                            })
                            .collect(),
                        created,
                        last_modified,
                    },
                );
            }

            for (id, bv) in view.builds {
                let start_time = DateTime::parse_from_rfc3339(&bv.start_time)
                    .map(|d| d.with_timezone(&Utc))
                    .unwrap_or_else(|_| Utc::now());
                let end_time = bv
                    .end_time
                    .as_deref()
                    .and_then(|s| DateTime::parse_from_rfc3339(s).ok())
                    .map(|d| d.with_timezone(&Utc));
                if !guard.build_ids.contains(&bv.id) {
                    guard.build_ids.push(bv.id.clone());
                }
                guard.builds.insert(
                    id,
                    Build {
                        id: bv.id,
                        arn: bv.arn,
                        project_name: bv.project_name,
                        build_status: bv.build_status,
                        current_phase: bv.current_phase,
                        source_type: bv.source_type,
                        source_location: bv.source_location,
                        source_version: bv.source_version,
                        artifact_type: bv.artifact_type,
                        artifact_location: bv.artifact_location,
                        environment_type: bv.environment_type,
                        environment_image: bv.environment_image,
                        environment_compute_type: bv.environment_compute_type,
                        service_role: bv.service_role,
                        start_time,
                        end_time,
                        build_number: bv.build_number,
                        phases: bv
                            .phases
                            .into_iter()
                            .map(|ph| BuildPhase {
                                phase_type: ph.phase_type,
                                phase_status: ph.phase_status,
                                start_time: ph.start_time,
                                end_time: ph.end_time,
                                duration_in_seconds: ph.duration_in_seconds,
                            })
                            .collect(),
                    },
                );
            }

            for (name, counter) in view.build_counters {
                let entry = guard.build_counters.entry(name).or_insert(0);
                if counter > *entry {
                    *entry = counter;
                }
            }

            for (name, wv) in view.webhooks {
                guard.webhooks.insert(
                    name,
                    Webhook {
                        project_name: wv.project_name,
                        url: wv.url,
                        branch_filter: wv.branch_filter,
                        build_type: wv.build_type,
                        secret: wv.secret,
                    },
                );
            }

            for (arn, cv) in view.source_credentials {
                guard.source_credentials.insert(
                    arn,
                    SourceCredential {
                        arn: cv.arn,
                        server_type: cv.server_type,
                        auth_type: cv.auth_type,
                        resource: cv.resource,
                    },
                );
            }

            for (arn, policy) in view.resource_policies {
                guard.resource_policies.insert(arn, policy);
            }

            for (arn, rgv) in view.report_groups {
                let created = DateTime::parse_from_rfc3339(&rgv.created)
                    .map(|d| d.with_timezone(&Utc))
                    .unwrap_or_else(|_| Utc::now());
                let last_modified = DateTime::parse_from_rfc3339(&rgv.last_modified)
                    .map(|d| d.with_timezone(&Utc))
                    .unwrap_or_else(|_| Utc::now());
                if !guard.report_group_arns.contains(&rgv.arn) {
                    guard.report_group_arns.push(rgv.arn.clone());
                }
                guard.report_groups.insert(
                    arn,
                    ReportGroup {
                        arn: rgv.arn,
                        name: rgv.name,
                        r#type: rgv.r#type,
                        export_config_type: rgv.export_config_type,
                        tags: rgv
                            .tags
                            .into_iter()
                            .map(|t| Tag {
                                key: t.key,
                                value: t.value,
                            })
                            .collect(),
                        created,
                        last_modified,
                        status: rgv.status,
                    },
                );
            }
        }
        self.notify_state_changed(account_id, region).await;
        Ok(())
    }

    fn notifier(&self) -> &StateChangeNotifier<Self::StateView> {
        &self.notifier
    }
}