flowey_lib_common/
ado_task_nuget_authenticate.rs

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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! ADO Task Wrapper: `NuGetAuthenticate@1`

use flowey::node::prelude::*;

flowey_request! {
    pub enum Request {
        EnsureAuth(WriteVar<SideEffect>),
        ServiceConnection(String),
    }
}

new_flow_node!(struct Node);

impl FlowNode for Node {
    type Request = Request;

    fn imports(_ctx: &mut ImportCtx<'_>) {}

    fn emit(requests: Vec<Self::Request>, ctx: &mut NodeCtx<'_>) -> anyhow::Result<()> {
        let mut ensure_auth = Vec::new();
        let mut all_service_connections = Vec::new();

        for req in requests {
            match req {
                Request::EnsureAuth(v) => ensure_auth.push(v),
                Request::ServiceConnection(conn) => all_service_connections.push(conn),
            }
        }

        let ensure_auth = ensure_auth;
        let all_service_connections = all_service_connections;

        // -- end of req processing -- //

        if ensure_auth.is_empty() {
            return Ok(());
        }

        ctx.emit_ado_step("Authenticate to NuGet feeds", move |ctx| {
            ensure_auth.claim(ctx);
            move |_| {
                format!(
                    r#"
                        - task: NuGetAuthenticate@1
                          inputs:
                            nuGetServiceConnections: {}
                    "#,
                    all_service_connections.join(",")
                )
            }
        });

        Ok(())
    }
}