use of org.jreleaser.sdk.gitlab.api.LinkRequest in project jreleaser by jreleaser.
the class GitlabReleaser method createRelease.
private void createRelease(Gitlab api, String tagName, String changelog, boolean deleteTags) throws IOException {
org.jreleaser.model.Gitlab gitlab = context.getModel().getRelease().getGitlab();
Collection<LinkRequest> links = collectUploadLinks(gitlab);
if (context.isDryrun()) {
if (!assets.isEmpty()) {
for (Asset asset : assets) {
if (0 == Files.size(asset.getPath()) || !Files.exists(asset.getPath())) {
// do not upload empty or non existent files
continue;
}
context.getLogger().info(" " + RB.$("git.upload.asset"), asset.getFilename());
}
}
if (!links.isEmpty()) {
for (LinkRequest link : links) {
context.getLogger().info(" " + RB.$("git.upload.asset"), link.getName());
}
}
return;
}
if (deleteTags) {
deleteTags(api, gitlab.getOwner(), gitlab.getName(), gitlab.getIdentifier(), tagName);
}
// local tag
if (deleteTags || !gitlab.isSkipTag()) {
context.getLogger().debug(RB.$("git.releaser.repository.tag"), tagName);
GitSdk.of(context).tag(tagName, true, context);
}
Release release = new Release();
release.setName(gitlab.getEffectiveReleaseName());
release.setTagName(tagName);
release.setRef(gitlab.getBranch());
release.setDescription(changelog);
// remote tag/release
api.createRelease(gitlab.getOwner(), gitlab.getName(), gitlab.getIdentifier(), release);
if (!assets.isEmpty()) {
Collection<FileUpload> uploads = api.uploadAssets(gitlab.getOwner(), gitlab.getName(), gitlab.getIdentifier(), assets);
api.linkReleaseAssets(gitlab.getOwner(), gitlab.getName(), release, gitlab.getIdentifier(), uploads);
}
if (!links.isEmpty()) {
api.linkAssets(gitlab.getOwner(), gitlab.getName(), release, gitlab.getIdentifier(), links);
}
if (gitlab.getMilestone().isClose() && !context.getModel().getProject().isSnapshot()) {
Optional<Milestone> milestone = api.findMilestoneByName(gitlab.getOwner(), gitlab.getName(), gitlab.getIdentifier(), gitlab.getMilestone().getEffectiveName());
if (milestone.isPresent()) {
api.closeMilestone(gitlab.getOwner(), gitlab.getName(), gitlab.getIdentifier(), milestone.get());
}
}
}
use of org.jreleaser.sdk.gitlab.api.LinkRequest in project jreleaser by jreleaser.
the class GitlabReleaser method toLinkRequest.
private static LinkRequest toLinkRequest(Path path, String url) {
LinkRequest link = new LinkRequest();
link.setName(path.getFileName().toString());
link.setUrl(url);
link.setFilepath("/" + link.getName());
return link;
}
use of org.jreleaser.sdk.gitlab.api.LinkRequest in project jreleaser by jreleaser.
the class Gitlab method linkAssets.
void linkAssets(String owner, String repoName, Release release, String identifier, Collection<LinkRequest> links) throws IOException, RestAPIException {
logger.debug(RB.$("git.upload.asset.links"), owner, repoName, release.getTagName());
Project project = getProject(repoName, identifier);
for (LinkRequest link : links) {
logger.info(" " + RB.$("git.upload.asset.link"), link.getName());
try {
api.linkAsset(link, project.getId(), release.getTagName());
} catch (RestAPIException e) {
logger.error(" " + RB.$("git.upload.asset.link.failure"), link.getName());
throw e;
}
}
}
Aggregations