This repository has been archived by the owner on Jul 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathspringBoot.ts
89 lines (77 loc) · 3.26 KB
/
springBoot.ts
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
/*
* Copyright © 2019 Atomist, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {
GitCommandGitProject,
GitHubRepoRef,
HttpMethod,
} from "@atomist/automation-client";
import {
CommandListenerInvocation,
GeneratorRegistration,
} from "@atomist/sdm";
import { configure } from "@atomist/sdm-core";
import * as _ from "lodash";
import { promisify } from "util";
import { parseString } from "xml2js";
const ps = promisify(parseString);
/**
* Atomist SDM Sample
* @description SDM to create a new Spring Boot project showing promptFor from generators
* @tag sdm,generator
* @instructions <p>Now that the SDM is up and running, create a new Spring Boot
* project by running '@atomist create spring project'.</p>
*/
const SpringBootMavenVersions = "http://repo2.maven.org/maven2/org/springframework/boot/spring-boot/maven-metadata.xml";
const SimpleGenerator: GeneratorRegistration = {
name: "SimpleGenerator",
intent: "create spring project",
description: "Creates a new Spring Boot project",
autoSubmit: true,
startingPoint: async pi => {
// Obtain all Spring Boot versions from Maven Central
const mavenVersions = (await pi.configuration.http.client.factory.create(SpringBootMavenVersions)
.exchange<string>(SpringBootMavenVersions, { method: HttpMethod.Get })).body;
const versions = (await ps(mavenVersions) as any).metadata.versioning[0].versions[0].version;
// Ask for an additional version parameter
const params = await (pi as any as CommandListenerInvocation<any>)
.promptFor<{ version: string }>({
version: {
description: "Desired Spring Boot version",
type: { options: _.map(versions, v => ({ value: v, description: v })).reverse() },
},
});
// Store the version parameter with the command parameters for later access
(pi.parameters as any).version = params.version;
return GitCommandGitProject.cloned(
pi.credentials,
GitHubRepoRef.from({ owner: "atomist-seeds", repo: "spring-rest", branch: "master" }),
{ depth: 1 });
},
transform: [
// Code Transform to edit the Spring Boot version in the pom.xml file
async (p, papi) => {
const pomFile = await p.getFile("pom.xml");
const pom = (await pomFile.getContent())
.replace(/(<parent>[\s\S]*<version>)(.*)(<\/version>[\s\S]*<\/parent>)/gm, `$1${(papi.parameters as any).version}$3`);
await pomFile.setContent(pom);
return p;
},
],
};
export const configuration = configure(async sdm => {
// Register the generator with the SDM
sdm.addGeneratorCommand(SimpleGenerator);
});