All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netflix.spinnaker.halyard.cli.command.v1.plugins.PluginDownloadingEnableDisableCommandBuilder Maven / Gradle / Ivy

/*
 * Copyright 2019 Armory, 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.
 */

package com.netflix.spinnaker.halyard.cli.command.v1.plugins;

import com.netflix.spinnaker.halyard.cli.command.v1.AbstractEnableDisableCommand;
import com.netflix.spinnaker.halyard.cli.command.v1.CommandBuilder;
import com.netflix.spinnaker.halyard.cli.command.v1.NestableCommand;
import com.netflix.spinnaker.halyard.cli.services.v1.Daemon;
import java.util.function.Supplier;
import lombok.AccessLevel;
import lombok.Getter;
import lombok.Setter;

public class PluginDownloadingEnableDisableCommandBuilder implements CommandBuilder {
  @Setter boolean enable;

  @Override
  public NestableCommand build() {
    return new PluginDownloadingEnableDisableCommand(enable);
  }

  private static class PluginDownloadingEnableDisableCommand extends AbstractEnableDisableCommand {
    @Override
    public String getTargetName() {
      return "Plugins";
    }

    @Override
    public String getCommandName() {
      return isEnable() ? "enable-downloading" : "disable-downloading";
    }

    private PluginDownloadingEnableDisableCommand(boolean enable) {
      this.enable = enable;
    }

    @Getter(AccessLevel.PROTECTED)
    boolean enable;

    @Override
    public String getShortDescription() {
      return "Enable or disable the ability for Spinnaker services to download jars for plugins";
    }

    @Override
    protected Supplier getOperationSupplier() {
      String currentDeployment = getCurrentDeployment();
      boolean enabled = this.isEnable();
      return Daemon.setPluginDownloadingEnableDisable(currentDeployment, !noValidate, enabled);
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy