blob: 076026c814464107cc61b5deb6ccb860c58abb70 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.sling.cli.impl.release;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;
import javax.mail.internet.InternetAddress;
import org.apache.commons.io.IOUtils;
import org.apache.sling.cli.impl.Command;
import org.apache.sling.cli.impl.DateProvider;
import org.apache.sling.cli.impl.InputOption;
import org.apache.sling.cli.impl.UserInput;
import org.apache.sling.cli.impl.jira.Issue;
import org.apache.sling.cli.impl.jira.Version;
import org.apache.sling.cli.impl.jira.VersionClient;
import org.apache.sling.cli.impl.mail.Mailer;
import org.apache.sling.cli.impl.nexus.StagingRepository;
import org.apache.sling.cli.impl.nexus.RepositoryService;
import org.apache.sling.cli.impl.people.Member;
import org.apache.sling.cli.impl.people.MembersFinder;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import picocli.CommandLine;
@Component(service = Command.class,
property = {
Command.PROPERTY_NAME_COMMAND_GROUP + "=" + PrepareVoteEmailCommand.GROUP,
Command.PROPERTY_NAME_COMMAND_NAME + "=" + PrepareVoteEmailCommand.NAME
}
)
@CommandLine.Command(
name = PrepareVoteEmailCommand.NAME,
description = "Prepares an email vote for the releases found in the Nexus staged repository",
subcommands = CommandLine.HelpCommand.class
)
public class PrepareVoteEmailCommand implements Command {
static final String GROUP = "release";
static final String NAME = "prepare-email";
private static final Logger LOGGER = LoggerFactory.getLogger(PrepareVoteEmailCommand.class);
@Reference
private MembersFinder membersFinder;
@Reference
private RepositoryService repoFinder;
@Reference
private VersionClient versionClient;
@Reference
private Mailer mailer;
@Reference
private DateProvider dateProvider;
@CommandLine.Option(names = {"-r", "--repository"}, description = "Nexus repository id", required = true)
private Integer repositoryId;
@CommandLine.Mixin
private ReusableCLIOptions reusableCLIOptions;
@CommandLine.Spec
private CommandLine.Model.CommandSpec spec;
private static final String EMAIL_TEMPLATE;
static {
try {
EMAIL_TEMPLATE = IOUtils.toString(
PrepareVoteEmailCommand.class.getClassLoader().getResourceAsStream("templates/release.email"),
StandardCharsets.UTF_8
);
} catch (IOException e) {
throw new IllegalStateException("Unable to read embedded email template.", e);
}
}
private static final String RELEASE_TEMPLATE =
"https://issues.apache.org/jira/browse/SLING/fixforversion/##VERSION_ID##";
@Override
public void run() {
try {
CommandLine commandLine = spec.commandLine();
if (commandLine.isUsageHelpRequested()) {
commandLine.usage(commandLine.getOut());
} else {
StagingRepository repo = repoFinder.find(repositoryId);
List<Release> releases = Release.fromString(repo.getDescription());
List<Version> versions = releases.stream()
.map(r -> versionClient.find(r))
.collect(Collectors.toList());
String releaseName = releases.stream()
.map(Release::getFullName)
.collect(Collectors.joining(", "));
Set<Issue> fixedIssues = new HashSet<>();
for (Release release : releases) {
fixedIssues.addAll(versionClient.findFixedIssues(release));
}
int fixedIssuesCount = fixedIssues.size();
String issueOrIssues = fixedIssuesCount > 1 ? "issues" : "issue";
String releaseOrReleases = versions.size() > 1 ?
"these releases" : "this release";
String releaseJiraLinks = versions.stream()
.map(v -> RELEASE_TEMPLATE.replace("##VERSION_ID##", String.valueOf(v.getId())))
.collect(Collectors.joining("\n"));
Member currentMember = membersFinder.getCurrentMember();
String emailContents = EMAIL_TEMPLATE
.replace("##FROM##", new InternetAddress(currentMember.getEmail(), currentMember.getName()).toString())
.replace("##DATE##", dateProvider.getCurrentDateForEmailHeader())
.replace("##RELEASE_NAME##", releaseName)
.replace("##RELEASE_ID##", String.valueOf(repositoryId))
.replace("##RELEASE_OR_RELEASES##", releaseOrReleases)
.replace("##RELEASE_JIRA_LINKS##", releaseJiraLinks)
.replace("##FIXED_ISSUES_COUNT##", String.valueOf(fixedIssuesCount))
.replace("##ISSUE_OR_ISSUES##", issueOrIssues)
.replace("##USER_NAME##", currentMember.getName());
switch (reusableCLIOptions.executionMode) {
case DRY_RUN:
LOGGER.info("The following email would be sent from your @apache.org address (see the \"From:\" header):\n");
LOGGER.info(emailContents);
break;
case INTERACTIVE:
String question = "Should the following email be sent from your @apache.org address (see the" +
" \"From:\" header)?\n\n" + emailContents;
InputOption answer = UserInput.yesNo(question, InputOption.YES);
if (InputOption.YES.equals(answer)) {
LOGGER.info("Sending email...");
mailer.send(emailContents);
LOGGER.info("Done!");
} else if (InputOption.NO.equals(answer)) {
LOGGER.info("Aborted.");
}
break;
case AUTO:
LOGGER.info(emailContents);
LOGGER.info("Sending email...");
mailer.send(emailContents);
LOGGER.info("Done!");
break;
}
}
} catch (IOException e) {
LOGGER.warn("Failed executing command", e);
}
}
}