UNPKG

@atomist/sdm

Version:

Atomist Software Delivery Machine SDK

65 lines (58 loc) 2.04 kB
/* * 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 { SimpleProjectEditor } from "@atomist/automation-client/lib/operations/edit/projectEditor"; export interface AppendOrCreateCommand { /** * Path of file to create or append to */ path: string; /** * Content to append. Should include any whitespace * required before it */ toAppend: string; /** * Custom test as to whether we should create * @param {string} content * @return {boolean} */ leaveAlone?: (oldContent: string) => boolean; } /** * Return an editor to append the given content to the end of the file at the specified path, * creating the file with only this content if it doesn't exist. * Adds no whitespace. * @param command command * @return {SimpleProjectEditor} */ export function appendOrCreateFileContent(command: AppendOrCreateCommand): SimpleProjectEditor { const commandToUse: AppendOrCreateCommand = { leaveAlone: content => content.includes(command.toAppend), ...command, }; return async p => { const target = await p.getFile(commandToUse.path); if (!!target) { const oldContent = await target.getContent(); if (!commandToUse.leaveAlone(oldContent)) { await target.setContent(oldContent + commandToUse.toAppend); } } else { await p.addFile(commandToUse.path, commandToUse.toAppend); } return p; }; }