spin_templates/
run.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
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
use std::{
    collections::HashMap,
    path::{Path, PathBuf},
};

use anyhow::{anyhow, Context};
use itertools::Itertools;
use path_absolutize::Absolutize;
use walkdir::WalkDir;

use crate::{
    cancellable::Cancellable,
    interaction::{InteractionStrategy, Interactive, Silent},
    renderer::MergeTarget,
    template::{ExtraOutputAction, TemplateVariantInfo},
};
use crate::{
    renderer::{RenderOperation, TemplateContent, TemplateRenderer},
    template::Template,
};

/// Executes a template to the point where it is ready to generate
/// artefacts.
pub struct Run {
    pub(crate) template: Template,
    pub(crate) options: RunOptions,
}

/// Options controlling the execution of a template.
pub struct RunOptions {
    /// The variant mode in which to run the template.
    pub variant: TemplateVariantInfo,
    /// The name of the generated item.
    pub name: String,
    /// The path at which to generate artefacts.
    pub output_path: PathBuf,
    /// The values to use for template parameters.
    pub values: HashMap<String, String>,
    /// If true accept default values where available
    pub accept_defaults: bool,
    /// If true, do not create a .gitignore file
    pub no_vcs: bool,
    /// Skip the overwrite prompt if the output directory already contains files
    /// (or, if silent, allow overwrite instead of erroring).
    pub allow_overwrite: bool,
}

impl Run {
    pub(crate) fn new(template: Template, options: RunOptions) -> Self {
        Self { template, options }
    }

    /// Runs the template interactively. The user will be prompted for any
    /// information or input the template needs, such as parameter values.
    /// Execution will block while waiting on user responses.
    pub async fn interactive(&self) -> anyhow::Result<()> {
        self.run(Interactive).await
    }

    /// Runs the template silently. The template will be executed without
    /// user interaction, and will not wait on the user. If the template needs
    /// any information or input that was not provided in the `RunOptions`,
    /// execution will fail and result in an error.
    pub async fn silent(&self) -> anyhow::Result<()> {
        self.run(Silent).await
    }

    async fn run(&self, interaction: impl InteractionStrategy) -> anyhow::Result<()> {
        self.build_renderer(interaction)
            .await
            .and_then(|t| t.render())
            .and_then_async(|o| async move { o.write().await })
            .await
            .err()
    }

    async fn build_renderer(
        &self,
        interaction: impl InteractionStrategy,
    ) -> Cancellable<TemplateRenderer, anyhow::Error> {
        self.build_renderer_raw(interaction).await.into()
    }

    // The 'raw' in this refers to the output type, which is an ugly representation
    // of cancellation: Ok(Some(...)) means a result, Ok(None) means cancelled, Err
    // means error. Why have this ugly representation? Because it makes it terser to
    // write using the Rust `?` operator to early-return. It would be lovely to find
    // a better way but I don't see one yet...
    async fn build_renderer_raw(
        &self,
        interaction: impl InteractionStrategy,
    ) -> anyhow::Result<Option<TemplateRenderer>> {
        self.validate_version()?;
        self.validate_trigger()?;

        // TODO: rationalise `path` and `dir`
        let to = self.generation_target_dir();

        if !self.options.allow_overwrite {
            match interaction.allow_generate_into(&to) {
                Cancellable::Cancelled => return Ok(None),
                Cancellable::Ok(_) => (),
                Cancellable::Err(e) => return Err(e),
            };
        }

        self.validate_provided_values()?;

        let files = match self.template.content_dir() {
            None => vec![],
            Some(path) => {
                let from = path
                    .absolutize()
                    .context("Failed to get absolute path of template directory")?;
                self.included_files(&from, &to)?
            }
        };

        let snippets = self
            .template
            .snippets(&self.options.variant)
            .iter()
            .map(|(id, path)| self.snippet_operation(id, path))
            .collect::<anyhow::Result<Vec<_>>>()?;

        let extras = self
            .template
            .extra_outputs()
            .iter()
            .map(|extra| self.extra_operation(extra))
            .collect::<anyhow::Result<Vec<_>>>()?;

        let render_operations = files.into_iter().chain(snippets).chain(extras).collect();

        match interaction.populate_parameters(self) {
            Cancellable::Ok(parameter_values) => {
                let values = self
                    .special_values()
                    .await
                    .into_iter()
                    .chain(parameter_values)
                    .collect();
                let prepared_template = TemplateRenderer {
                    render_operations,
                    parameter_values: values,
                };
                Ok(Some(prepared_template))
            }
            Cancellable::Cancelled => Ok(None),
            Cancellable::Err(e) => Err(e),
        }
    }

    fn included_files(&self, from: &Path, to: &Path) -> anyhow::Result<Vec<RenderOperation>> {
        let gitignore = ".gitignore";
        let mut all_content_files = Self::list_content_files(from)?;
        // If user asked for no_vcs
        if self.options.no_vcs {
            all_content_files.retain(|file| match file.file_name() {
                None => true,
                Some(file_name) => file_name.to_os_string() != gitignore,
            });
        }
        let included_files =
            self.template
                .included_files(from, all_content_files, &self.options.variant);
        let template_contents = self.read_all(included_files)?;
        let outputs = Self::to_output_paths(from, to, template_contents);
        let file_ops = outputs
            .into_iter()
            .map(|(path, content)| RenderOperation::WriteFile(path, content))
            .collect();
        Ok(file_ops)
    }

    async fn special_values(&self) -> HashMap<String, String> {
        let mut values = HashMap::new();

        let authors = crate::environment::get_authors().await.unwrap_or_default();
        values.insert("authors".into(), authors.author);
        values.insert("username".into(), authors.username);
        values.insert("project-name".into(), self.options.name.clone());
        values.insert(
            "output-path".into(),
            self.relative_target_dir().to_string_lossy().to_string(),
        );

        values
    }

    fn relative_target_dir(&self) -> &Path {
        &self.options.output_path
    }

    fn generation_target_dir(&self) -> PathBuf {
        match &self.options.variant {
            TemplateVariantInfo::NewApplication => self.options.output_path.clone(),
            TemplateVariantInfo::AddComponent { manifest_path } => manifest_path
                .parent()
                .unwrap()
                .join(&self.options.output_path),
        }
    }

    fn validate_provided_values(&self) -> anyhow::Result<()> {
        let errors = self
            .options
            .values
            .iter()
            .filter_map(|(n, v)| self.validate_value(n, v))
            .collect_vec();
        if errors.is_empty() {
            Ok(())
        } else {
            // TODO: better to provide this as a structured object and let the caller choose how to present it
            let errors_msg = errors.iter().map(|s| format!("- {}", s)).join("\n");
            Err(anyhow!(
                "The following provided value(s) are invalid according to the template:\n{}",
                errors_msg
            ))
        }
    }

    fn validate_value(&self, name: &str, value: &str) -> Option<String> {
        match self.template.parameter(name) {
            None => Some(format!(
                "Template does not contain a parameter named '{}'",
                name
            )),
            Some(p) => match p.validate_value(value) {
                Ok(_) => None,
                Err(e) => Some(format!("{}: {}", name, e)),
            },
        }
    }

    fn validate_trigger(&self) -> anyhow::Result<()> {
        match &self.options.variant {
            TemplateVariantInfo::NewApplication => Ok(()),
            TemplateVariantInfo::AddComponent { manifest_path } => {
                match crate::app_info::AppInfo::from_file(manifest_path) {
                    Some(Ok(app_info)) if app_info.manifest_format() == 1 => self
                        .template
                        .check_compatible_trigger(app_info.trigger_type()),
                    _ => Ok(()), // Fail forgiving - don't block the user if things are under construction
                }
            }
        }
    }

    fn validate_version(&self) -> anyhow::Result<()> {
        match &self.options.variant {
            TemplateVariantInfo::NewApplication => Ok(()),
            TemplateVariantInfo::AddComponent { manifest_path } => {
                match crate::app_info::AppInfo::from_file(manifest_path) {
                    Some(Ok(app_info)) => self
                        .template
                        .check_compatible_manifest_format(app_info.manifest_format()),
                    _ => Ok(()), // Fail forgiving - don't block the user if things are under construction
                }
            }
        }
    }

    fn snippet_operation(&self, id: &str, snippet_file: &str) -> anyhow::Result<RenderOperation> {
        let snippets_dir = self
            .template
            .snippets_dir()
            .as_ref()
            .ok_or_else(|| anyhow::anyhow!("Template snippets directory not found"))?;
        let abs_snippet_file = snippets_dir.join(snippet_file);
        let file_content = std::fs::read(abs_snippet_file)
            .with_context(|| format!("Error reading snippet file {}", snippet_file))?;
        let content = TemplateContent::infer_from_bytes(file_content, &Self::template_parser())
            .with_context(|| format!("Error parsing snippet file {}", snippet_file))?;

        match id {
            "component" => {
                match &self.options.variant {
                    TemplateVariantInfo::AddComponent { manifest_path } =>
                        Ok(RenderOperation::AppendToml(
                            manifest_path.clone(),
                            content,
                        )),
                    TemplateVariantInfo::NewApplication =>
                        Err(anyhow::anyhow!("Spin doesn't know what to do with a 'component' snippet outside an 'add component' operation")),
                }
            },
            "application_trigger" => {
                match &self.options.variant {
                    TemplateVariantInfo::AddComponent { manifest_path } =>
                        Ok(RenderOperation::AppendToml(
                            manifest_path.clone(),
                            content,
                        )),
                    TemplateVariantInfo::NewApplication =>
                        Err(anyhow::anyhow!("Spin doesn't know what to do with an 'application_trigger' snippet outside an 'add component' operation")),
                    }
            },
            "variables" => {
                match &self.options.variant {
                    TemplateVariantInfo::AddComponent { manifest_path } =>
                        Ok(RenderOperation::MergeToml(
                            manifest_path.clone(),
                            MergeTarget::Application("variables"),
                            content,
                        )),
                    TemplateVariantInfo::NewApplication =>
                        Err(anyhow::anyhow!("Spin doesn't know what to do with a 'variables' snippet outside an 'add component' operation")),
                }
            },
            _ => Err(anyhow::anyhow!(
                "Spin doesn't know what to do with snippet {id}",
            )),
        }
    }

    fn extra_operation(&self, extra: &ExtraOutputAction) -> anyhow::Result<RenderOperation> {
        match extra {
            ExtraOutputAction::CreateDirectory(_, template, at) => {
                let component_path = self.options.output_path.clone();
                let base_path = match at {
                    crate::reader::CreateLocation::Component => component_path,
                    crate::reader::CreateLocation::Manifest => match &self.options.variant {
                        TemplateVariantInfo::NewApplication => component_path,
                        TemplateVariantInfo::AddComponent { manifest_path } => manifest_path
                            .parent()
                            .map(|p| p.to_owned())
                            .unwrap_or(component_path),
                    },
                };
                Ok(RenderOperation::CreateDirectory(
                    base_path,
                    template.clone(),
                ))
            }
        }
    }

    fn list_content_files(from: &Path) -> anyhow::Result<Vec<PathBuf>> {
        let walker = WalkDir::new(from);
        let files = walker
            .into_iter()
            .filter_map(|entry| match entry {
                Err(e) => Some(Err(e)),
                Ok(de) => {
                    if de.file_type().is_file() {
                        Some(Ok(de.path().to_owned()))
                    } else {
                        None
                    }
                }
            })
            .collect::<Result<Vec<_>, _>>()?;
        Ok(files)
    }

    // TODO: async when we know where things sit
    fn read_all(&self, paths: Vec<PathBuf>) -> anyhow::Result<Vec<(PathBuf, TemplateContent)>> {
        let template_parser = Self::template_parser();
        let contents = paths
            .iter()
            .map(|path| TemplateContent::infer_from_bytes(std::fs::read(path)?, &template_parser))
            .collect::<Result<Vec<_>, _>>()?;
        // Strip optional .tmpl extension
        // Templates can use this if they don't want to store files with their final extensions
        let paths = paths.into_iter().map(|p| {
            if p.extension().is_some_and(|e| e == "tmpl") {
                p.with_extension("")
            } else {
                p
            }
        });
        let pairs = paths.zip(contents).collect();
        Ok(pairs)
    }

    fn to_output_paths<T>(
        src_dir: &Path,
        dest_dir: &Path,
        contents: Vec<(PathBuf, T)>,
    ) -> Vec<(PathBuf, T)> {
        contents
            .into_iter()
            .filter_map(|f| Self::to_output_path(src_dir, dest_dir, f))
            .collect()
    }

    fn to_output_path<T>(
        src_dir: &Path,
        dest_dir: &Path,
        (source, cont): (PathBuf, T),
    ) -> Option<(PathBuf, T)> {
        pathdiff::diff_paths(source, src_dir).map(|rel| (dest_dir.join(rel), cont))
    }

    fn template_parser() -> liquid::Parser {
        let builder = liquid::ParserBuilder::with_stdlib()
            .filter(crate::filters::KebabCaseFilterParser)
            .filter(crate::filters::PascalCaseFilterParser)
            .filter(crate::filters::DottedPascalCaseFilterParser)
            .filter(crate::filters::SnakeCaseFilterParser)
            .filter(crate::filters::HttpWildcardFilterParser);
        builder
            .build()
            .expect("can't fail due to no partials support")
    }
}

#[cfg(test)]
mod test {
    use super::*;

    #[test]
    fn test_filters() {
        let data = liquid::object!({
            "snaky": "originally_snaky",
            "kebabby": "originally-kebabby",
            "dotted": "originally.semi-dotted"
        });
        let parser = Run::template_parser();

        let eval = |s: &str| parser.parse(s).unwrap().render(&data).unwrap();

        let kebab = eval("{{ snaky | kebab_case }}");
        assert_eq!("originally-snaky", kebab);

        let snek = eval("{{ kebabby | snake_case }}");
        assert_eq!("originally_kebabby", snek);

        let pascal = eval("{{ snaky | pascal_case }}");
        assert_eq!("OriginallySnaky", pascal);

        let dotpas = eval("{{ dotted | dotted_pascal_case }}");
        assert_eq!("Originally.SemiDotted", dotpas);
    }
}