UNPKG

2.46 kBJavaScriptView Raw
1"use strict";
2/*
3 * Copyright © 2018 Atomist, Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17Object.defineProperty(exports, "__esModule", { value: true });
18const sdm_1 = require("@atomist/sdm");
19const addCloudFoundryManifest_1 = require("./handlers/addCloudFoundryManifest");
20const enableDeployOnCloudFoundryManifestAddition_1 = require("./listeners/enableDeployOnCloudFoundryManifestAddition");
21const suggestAddingCloudFoundryManifest_1 = require("./listeners/suggestAddingCloudFoundryManifest");
22function CloudFoundrySupport(options) {
23 return Object.assign({}, sdm_1.metadata("cloud-foundry"), { requiredConfigurationValues: [
24 "sdm.cloudfoundry.user",
25 "sdm.cloudfoundry.password",
26 "sdm.cloudfoundry.org",
27 "sdm.cloudfoundry.spaces.production",
28 "sdm.cloudfoundry.spaces.staging",
29 ], configure: sdm => {
30 sdm
31 .addCodeTransformCommand(addCloudFoundryManifest_1.AddCloudFoundryManifest)
32 .addChannelLinkListener(suggestAddingCloudFoundryManifest_1.SuggestAddingCloudFoundryManifest)
33 .addFirstPushListener(suggestAddingCloudFoundryManifest_1.suggestAddingCloudFoundryManifestOnNewRepo(sdm.configuration.sdm.projectLoader));
34 if (!!options.inspectGoal) {
35 if (options.reviewListeners) {
36 const listeners = Array.isArray(options.reviewListeners) ?
37 options.reviewListeners : [options.reviewListeners];
38 listeners.forEach(l => options.inspectGoal.withListener(l));
39 }
40 }
41 if (!!options.pushImpactGoal) {
42 options.pushImpactGoal
43 .with(enableDeployOnCloudFoundryManifestAddition_1.enableDeployOnCloudFoundryManifestAddition(sdm));
44 }
45 } });
46}
47exports.CloudFoundrySupport = CloudFoundrySupport;
48//# sourceMappingURL=CloudFoundrySupport.js.map
\No newline at end of file