@atomist/sdm-core
Version:
Atomist Software Delivery Machine - Implementation
104 lines (91 loc) • 3.8 kB
text/typescript
/*
* 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 {
descriptionFromState,
ExecuteGoalResult,
GoalInvocation,
GoalScheduler,
minimalClone,
SdmGoalState,
} from "@atomist/sdm";
import { SdmGoalFulfillmentMethod } from "@atomist/sdm/lib/api/goal/SdmGoalMessage";
import * as _ from "lodash";
import {
Container,
ContainerRegistration,
ContainerRegistrationGoalDataKey,
} from "../../goal/container/container";
export interface KubernetesFulfillmentOptions {
registration?: string | ((gi: GoalInvocation) => Promise<string>);
name?: string | ((gi: GoalInvocation) => Promise<string>);
}
export const DefaultKubernetesFulfillmentOptions = {
registration: "@atomist/k8s-sdm",
name: "kubernetes-container-fulfill",
};
/**
* GoalScheduler implementation that redirects goals to a registered k8s-sdm for
* fulfillment.
*
* This is useful in runtimes that don't support launching container goals such as
* FaaS environments like Google Cloud Functions.
*/
export class KubernetesFulfillmentGoalScheduler implements GoalScheduler {
constructor(private readonly options: KubernetesFulfillmentOptions = DefaultKubernetesFulfillmentOptions) {
}
public async schedule(gi: GoalInvocation): Promise<ExecuteGoalResult> {
const { goalEvent, goal, configuration } = gi;
const containerGoal = goal as Container;
let registration: ContainerRegistration = _.cloneDeep(containerGoal.registrations[0]);
const fulfillment = _.get(registration, "fulfillment");
if (!!fulfillment) {
goalEvent.fulfillment.registration = fulfillment.registration;
goalEvent.fulfillment.name = fulfillment.name;
} else {
goalEvent.fulfillment.registration =
typeof this.options.registration === "string" ? this.options.registration : await this.options.registration(gi);
goalEvent.fulfillment.name =
typeof this.options.name === "string" ? this.options.name : await this.options.name(gi);
}
goalEvent.fulfillment.method = SdmGoalFulfillmentMethod.Sdm;
if (registration.callback) {
registration = await configuration.sdm.projectLoader.doWithProject({
...gi,
readOnly: true,
cloneOptions: minimalClone(goalEvent.push, { detachHead: true }),
}, async p => {
return {
...registration,
...(await registration.callback(_.cloneDeep(registration), p, containerGoal, goalEvent, gi)) || {},
};
});
}
const data: any = JSON.parse(goalEvent.data || "{}");
const newData: any = {};
delete registration.callback;
_.set<any>(newData, ContainerRegistrationGoalDataKey, registration);
goalEvent.data = JSON.stringify(_.merge(data, newData));
return {
state: SdmGoalState.requested,
description: descriptionFromState(goal, SdmGoalState.requested),
phase: "scheduled",
};
}
public async supports(gi: GoalInvocation): Promise<boolean> {
const { goal } = gi;
return goal instanceof Container;
}
}