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

//! Download `nuget.exe`

use flowey::node::prelude::*;
use std::fs;

#[derive(Serialize, Deserialize)]
pub enum NugetInstallPlatform {
    Windows,
    Linux,
    MacOs,
}

flowey_request! {
    pub enum Request {
        NugetBin(WriteVar<PathBuf>),
        NugetInstallPlatform(WriteVar<NugetInstallPlatform>),
        /// When running using WSL2, use `mono` to run the `nuget.exe` inside
        /// WSL2 directly, instead of running `nuget.exe` via WSL2 interop.
        ///
        /// This is sometimes required to work around windows defender bugs when
        /// restoring.
        LocalOnlyForceWsl2MonoNugetExe(bool),
    }
}

new_flow_node!(struct Node);

impl FlowNode for Node {
    type Request = Request;

    fn imports(ctx: &mut ImportCtx<'_>) {
        ctx.import::<crate::ado_task_nuget_tool_installer::Node>();
        ctx.import::<crate::install_dist_pkg::Node>();
    }

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

        for req in requests {
            match req {
                Request::LocalOnlyForceWsl2MonoNugetExe(v) => same_across_all_reqs(
                    "LocalOnlyForceWsl2MonoNugetExe",
                    &mut force_mono_nuget_exe_wsl2,
                    v,
                )?,
                Request::NugetBin(outvar) => broadcast_nuget_tool_kind.push(outvar),
                Request::NugetInstallPlatform(outvar) => {
                    broadcast_nuget_config_platform.push(outvar)
                }
            };
        }

        let broadcast_nuget_tool_kind = broadcast_nuget_tool_kind;
        let broadcast_nuget_config_platform = broadcast_nuget_config_platform;

        let force_mono_nuget_exe_wsl2 = if matches!(ctx.backend(), FlowBackend::Local) {
            force_mono_nuget_exe_wsl2.ok_or(anyhow::anyhow!(
                "Missing essential request: LocalOnlyForceWsl2MonoNugetExe"
            ))?
        } else {
            if force_mono_nuget_exe_wsl2.is_some() {
                anyhow::bail!(
                    "can only use `LocalOnlyForceWsl2MonoNugetExe` when using the Local backend"
                );
            }
            false
        };

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

        if !broadcast_nuget_config_platform.is_empty() {
            ctx.emit_rust_step("report nuget install platform", |ctx| {
                let broadcast_nuget_config_platform = broadcast_nuget_config_platform.claim(ctx);
                move |rt| {
                    let nuget_config_platform = match rt.platform() {
                        FlowPlatform::Windows => NugetInstallPlatform::Windows,
                        FlowPlatform::Linux(_) if crate::_util::running_in_wsl(rt) => {
                            if force_mono_nuget_exe_wsl2 {
                                NugetInstallPlatform::Linux
                            } else {
                                NugetInstallPlatform::Windows
                            }
                        }
                        FlowPlatform::Linux(_) => NugetInstallPlatform::Linux,
                        FlowPlatform::MacOs => NugetInstallPlatform::MacOs,
                        platform => anyhow::bail!("unsupported platform {platform}"),
                    };

                    rt.write_all(broadcast_nuget_config_platform, &nuget_config_platform);

                    Ok(())
                }
            });
        }

        match ctx.backend() {
            FlowBackend::Ado => Self::emit_ado(ctx, broadcast_nuget_tool_kind),
            FlowBackend::Local => {
                Self::emit_local(ctx, broadcast_nuget_tool_kind, force_mono_nuget_exe_wsl2)
            }
            FlowBackend::Github => {
                anyhow::bail!("nuget installation not yet implemented for the Github backend")
            }
        }
    }
}

impl Node {
    fn emit_ado(
        ctx: &mut NodeCtx<'_>,
        broadcast_nuget_tool_kind: Vec<WriteVar<PathBuf>>,
    ) -> anyhow::Result<()> {
        let nuget_tool_installed = ctx.reqv(crate::ado_task_nuget_tool_installer::Request);

        ctx.emit_rust_step("report nuget install", move |ctx| {
            nuget_tool_installed.claim(ctx);
            let broadcast_nuget_tool_kind = broadcast_nuget_tool_kind.claim(ctx);
            move |rt| {
                // trust that the ADO nuget install task works correctly
                rt.write_all(
                    broadcast_nuget_tool_kind,
                    &which::which(rt.platform().binary("nuget"))?,
                );

                Ok(())
            }
        });

        Ok(())
    }

    fn emit_local(
        ctx: &mut NodeCtx<'_>,
        broadcast_nuget_tool_kind: Vec<WriteVar<PathBuf>>,
        force_mono_nuget_exe_wsl2: bool,
    ) -> anyhow::Result<()> {
        if broadcast_nuget_tool_kind.is_empty() {
            return Ok(());
        }

        let install_dir = ctx
            .persistent_dir()
            .ok_or(anyhow::anyhow!("No persistent dir for nuget installation"))?;

        // let install_mono = if matches!(ctx.platform(), FlowPlatform::Linux(_)) {
        //     Some(ctx.reqv(|v| crate::install_dist_pkg::Request::Install {
        //         package_names: vec!["mono-devel".to_string()],
        //         done: v,
        //     }))
        // } else {
        //     None
        // }; // !!! TEMP !!! installing mono is breaking WSL2 interop!

        ctx.emit_rust_step("Install nuget", |ctx| {
            // install_mono.claim(ctx);
            let install_dir = install_dir.clone().claim(ctx);
            let broadcast_nuget_tool_kind = broadcast_nuget_tool_kind.claim(ctx);
            move |rt| {
                let sh = xshell::Shell::new()?;

                let install_dir = rt.read(install_dir);

                let nuget_exe_path = install_dir.join("nuget.exe");

                // download nuget if none was previously downloaded
                if !nuget_exe_path.exists() {
                    let nuget_install_latest_url =
                        "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe";
                    xshell::cmd!(
                        sh,
                        "curl --fail -o {nuget_exe_path} {nuget_install_latest_url}"
                    )
                    .run()?;
                }

                let write_mono_shim = || {
                    let sh = xshell::Shell::new()?;
                    fs::write(
                        "./nuget-shim.sh",
                        format!("#!/bin/sh\nmono {}/nuget.exe \"$@\"", install_dir.display()),
                    )?;
                    xshell::cmd!(sh, "chmod +x ./nuget-shim.sh").run()?;
                    anyhow::Ok(sh.current_dir().join("nuget-shim.sh").absolute()?)
                };

                let nuget_exec_path = match rt.platform() {
                    FlowPlatform::Windows => nuget_exe_path,
                    FlowPlatform::Linux(_) if crate::_util::running_in_wsl(rt) => {
                        // allow reusing the windows config directory from wsl2, if available
                        {
                            let windows_userprofile =
                                xshell::cmd!(sh, "cmd.exe /c echo %UserProfile%").read()?;

                            let windows_dot_nuget_path =
                                crate::_util::wslpath::win_to_linux(windows_userprofile)
                                    .join(".nuget");

                            let linux_dot_nuget_path =
                                dirs::home_dir().unwrap_or_default().join(".nuget");

                            // Only symlink if the user doesn't already have an
                            // existing .nuget folder / symlink
                            if windows_dot_nuget_path.exists()
                                && fs_err::symlink_metadata(&linux_dot_nuget_path).is_err()
                            {
                                xshell::cmd!(
                                    sh,
                                    "ln -s {windows_dot_nuget_path} {linux_dot_nuget_path}"
                                )
                                .run()?;
                            }
                        }

                        if force_mono_nuget_exe_wsl2 {
                            write_mono_shim()?
                        } else {
                            // rely on magical wsl2 interop

                            // WORKARDOUND: seems like on some folk's machines,
                            // nuget.exe will only work correctly when launched
                            // from a windows filesystem.
                            let windows_tempdir = crate::_util::wslpath::win_to_linux(
                                xshell::cmd!(sh, "cmd.exe /c echo %Temp%").read()?,
                            );
                            let flowey_nuget = windows_tempdir.join("flowey_nuget.exe");
                            if !flowey_nuget.exists() {
                                fs_err::copy(nuget_exe_path, &flowey_nuget)?;
                            }
                            xshell::cmd!(sh, "chmod +x {flowey_nuget}").run()?;
                            flowey_nuget
                        }
                    }
                    FlowPlatform::Linux(_) => write_mono_shim()?,
                    platform => anyhow::bail!("unsupported platform {platform}"),
                };

                rt.write_all(broadcast_nuget_tool_kind, &nuget_exec_path);

                Ok(())
            }
        });

        Ok(())
    }
}