com.salesforce.dockerfileimageupdate.subcommands.impl.Parent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dockerfile-image-update Show documentation
Show all versions of dockerfile-image-update Show documentation
This tool provides a mechanism to make security updates to docker images at scale.
The tool searches github for declared docker images and sends pull requests to projects that are not using
the desired version of the requested docker image.
/*
* Copyright (c) 2018, salesforce.com, inc.
* All rights reserved.
* Licensed under the BSD 3-Clause license.
* For full license text, see LICENSE.txt file in the repo root or
* https://opensource.org/licenses/BSD-3-Clause
*/
package com.salesforce.dockerfileimageupdate.subcommands.impl;
import com.salesforce.dockerfileimageupdate.SubCommand;
import com.salesforce.dockerfileimageupdate.model.GitForkBranch;
import com.salesforce.dockerfileimageupdate.process.ForkableRepoValidator;
import com.salesforce.dockerfileimageupdate.process.GitHubPullRequestSender;
import com.salesforce.dockerfileimageupdate.storage.ImageTagStore;
import com.salesforce.dockerfileimageupdate.subcommands.ExecutableWithNamespace;
import com.salesforce.dockerfileimageupdate.utils.Constants;
import com.salesforce.dockerfileimageupdate.utils.DockerfileGitHubUtil;
import com.salesforce.dockerfileimageupdate.utils.ImageStoreUtil;
import com.salesforce.dockerfileimageupdate.utils.PullRequests;
import com.salesforce.dockerfileimageupdate.utils.RateLimiter;
import net.sourceforge.argparse4j.inf.Namespace;
import org.kohsuke.github.GHContent;
import org.kohsuke.github.PagedSearchIterable;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.util.List;
import java.util.Optional;
@SubCommand(help="updates all repositories' Dockerfiles with given base image",
requiredParams = {Constants.IMG, Constants.TAG, Constants.STORE})
public class Parent implements ExecutableWithNamespace {
private static final Logger log = LoggerFactory.getLogger(Parent.class);
DockerfileGitHubUtil dockerfileGitHubUtil;
@Override
public void execute(final Namespace ns, DockerfileGitHubUtil dockerfileGitHubUtil)
throws IOException, InterruptedException {
loadDockerfileGithubUtil(dockerfileGitHubUtil);
String store = ns.get(Constants.STORE);
String img = ns.get(Constants.IMG);
String tag = ns.get(Constants.TAG);
String filenamesToSearch = ns.getString(Constants.FILE_NAMES_TO_SEARCH);
log.info("Updating store...");
try {
ImageTagStore imageTagStore = ImageStoreUtil.initializeImageTagStore(this.dockerfileGitHubUtil, store);
imageTagStore.updateStore(img, tag);
} catch (Exception e) {
log.error("Could not initialize the Image tage store. Exception: ", e);
}
if (ns.get(Constants.SKIP_PR_CREATION)) {
log.info("Since the flag {} is set to True, the PR creation steps will "
+ "be skipped.", Constants.SKIP_PR_CREATION);
return;
}
PullRequests pullRequests = getPullRequests();
GitHubPullRequestSender pullRequestSender = getPullRequestSender(dockerfileGitHubUtil, ns);
GitForkBranch gitForkBranch = getGitForkBranch(ns);
RateLimiter rateLimiter = RateLimiter.getInstance(ns);
log.info("Finding Dockerfiles with the given image...");
Integer gitApiSearchLimit = ns.get(Constants.GIT_API_SEARCH_LIMIT);
Optional>> contentsWithImage = dockerfileGitHubUtil.getGHContents(ns.get(Constants.GIT_ORG), img, gitApiSearchLimit, filenamesToSearch);
if (contentsWithImage.isPresent()) {
List> contentsFoundWithImage = contentsWithImage.get();
for (int i = 0; i < contentsFoundWithImage.size(); i++ ) {
try {
pullRequests.prepareToCreate(ns, pullRequestSender,
contentsFoundWithImage.get(i), gitForkBranch,
dockerfileGitHubUtil, rateLimiter);
} catch (IOException e) {
log.error("Could not send pull request.", e);
}
}
}
}
protected PullRequests getPullRequests(){
return new PullRequests();
}
protected GitForkBranch getGitForkBranch(Namespace ns){
return new GitForkBranch(ns.get(Constants.IMG), ns.get(Constants.TAG), ns.get(Constants.GIT_BRANCH), ns.get(Constants.FILE_NAMES_TO_SEARCH));
}
protected GitHubPullRequestSender getPullRequestSender(DockerfileGitHubUtil dockerfileGitHubUtil, Namespace ns){
return new GitHubPullRequestSender(dockerfileGitHubUtil, new ForkableRepoValidator(dockerfileGitHubUtil),
ns.get(Constants.GIT_REPO_EXCLUDES));
}
protected void loadDockerfileGithubUtil(DockerfileGitHubUtil _dockerfileGitHubUtil) {
dockerfileGitHubUtil = _dockerfileGitHubUtil;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy