@atomist/sdm
Version:
Atomist Software Delivery Machine SDK
61 lines • 2.26 kB
JavaScript
;
/*
* 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.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.isDeployEnabled = exports.IsDeployEnabled = void 0;
const GraphClient_1 = require("@atomist/automation-client/lib/spi/graph/GraphClient");
const logger_1 = require("@atomist/automation-client/lib/util/logger");
const PushTest_1 = require("../PushTest");
// TODO once the ingester is defined elsewhere move this into a file and generate types
const DeployEnablementQuery = `
query DeployEnablementForRepo($owner: [String], $repo: [String]) {
SdmDeployEnablement(owner: $owner, repo: $repo) {
id
state
owner
repo
providerId
}
}`;
/**
* Is repo enabled for deployment
* @param {PushListenerInvocation} pi
*/
exports.IsDeployEnabled = PushTest_1.pushTest("Is Deploy Enabled", isDeployEnabled);
async function isDeployEnabled(parameters) {
const { context, id } = parameters;
try {
const enablement = await context.graphClient.query({
query: DeployEnablementQuery,
variables: {
owner: [id.owner],
repo: [id.repo],
},
options: GraphClient_1.QueryNoCacheOptions,
});
return enablement
&& enablement.SdmDeployEnablement
&& enablement.SdmDeployEnablement.length === 1
&& enablement.SdmDeployEnablement[0].state === "requested";
}
catch (e) {
logger_1.logger.error("Cannot determine whether deploy is enabled. Guessing `false`. " + e);
logger_1.logger.debug(e.stack);
return false;
}
}
exports.isDeployEnabled = isDeployEnabled;
//# sourceMappingURL=deployPushTests.js.map