use of org.commonjava.atlas.maven.ident.util.JoinString in project indy by Commonjava.
the class ImpliedRepositoryDetector method addImpliedRepositories.
private void addImpliedRepositories(final ImplicationsJob job) {
job.implied = new ArrayList<>();
logger.debug("Retrieving repository/pluginRepository declarations from:\n {}", new JoinString("\n ", job.pomView.getDocRefStack()));
final List<List<RepositoryView>> repoLists = Arrays.asList(job.pomView.getNonProfileRepositories(), job.pomView.getAllPluginRepositories());
final ImpliedRepositoryCreator creator = createRepoCreator();
if (creator == null) {
logger.error("Cannot proceed without a valid ImpliedRepositoryCreator instance. Aborting detection.");
return;
}
for (final List<RepositoryView> repos : repoLists) {
if (repos == null || repos.isEmpty()) {
continue;
}
for (final RepositoryView repo : repos) {
final ProjectVersionRef gav = job.pathInfo.getProjectId();
try {
if (config.isBlacklisted(repo.getUrl())) {
logger.debug("Discarding blacklisted repository: {}", repo);
continue;
} else if (!config.isIncludeSnapshotRepos() && !repo.isReleasesEnabled()) {
logger.debug("Discarding snapshot repository: {}", repo);
continue;
}
} catch (final MalformedURLException e) {
logger.error(String.format("Cannot add implied remote repo: %s from: %s (transfer: %s). Failed to check if repository is blacklisted.", repo.getUrl(), gav, job.transfer), e);
}
logger.debug("Detected POM-declared repository: {}", repo);
List<RemoteRepository> rrs = null;
try {
rrs = storeManager.query().getRemoteRepositoryByUrl(MAVEN_PKG_KEY, repo.getUrl());
} catch (IndyDataException e) {
logger.error(String.format("Cannot lookup remote repositories by URL: %s. Reason: %s", e.getMessage()), e);
}
final RemoteRepository ref = creator.createFrom(gav, repo, LoggerFactory.getLogger(creator.getClass()));
if (ref == null) {
logger.warn("ImpliedRepositoryCreator didn't create anything for repo: {}, specified in: {}. Skipping.", repo.getId(), gav);
continue;
}
if (rrs != null && !rrs.isEmpty()) {
rrs = rrs.stream().filter(rr -> rr.isAllowReleases() == ref.isAllowReleases()).filter(rr -> rr.isAllowSnapshots() == ref.isAllowSnapshots()).filter(rr -> (isEmpty(rr.getPathMaskPatterns()) && isEmpty(ref.getPathMaskPatterns())) || rr.getPathMaskPatterns().equals(ref.getPathMaskPatterns())).collect(Collectors.toList());
}
if (rrs == null || rrs.isEmpty()) {
logger.debug("Creating new RemoteRepository for: {}", repo);
final RemoteRepository rr = ref.copyOf();
rr.setMetadata(METADATA_ORIGIN, IMPLIED_REPO_ORIGIN);
try {
rr.setMetadata(IMPLIED_BY_STORES, mapper.writeValueAsString(new ImpliedRepoMetadataManager.ImpliedRemotesWrapper(Collections.singletonList(job.store.getKey()))));
} catch (JsonProcessingException e) {
logger.error("Failed to set {}", IMPLIED_BY_STORES);
continue;
}
if (!remoteValidator.isValid(rr)) {
logger.warn("Implied repository to: {} is invalid! Repository created was: {}", repo.getUrl(), rr);
continue;
}
final String changelog = String.format("Adding remote repository: %s (url: %s, name: %s), which is implied by the POM: %s (at: %s/%s)", repo.getId(), repo.getUrl(), repo.getName(), gav, job.transfer.getLocation().getUri(), job.transfer.getPath());
final ChangeSummary summary = new ChangeSummary(ChangeSummary.SYSTEM_USER, changelog);
try {
final boolean result = storeManager.storeArtifactStore(rr, summary, true, false, new EventMetadata().set(StoreDataManager.EVENT_ORIGIN, IMPLIED_REPOS_DETECTION).set(IMPLIED_BY_POM_TRANSFER, job.transfer));
logger.debug("Stored new RemoteRepository: {}. (successful? {})", rr, result);
job.implied.add(rr);
} catch (final IndyDataException e) {
logger.error(String.format("Cannot add implied remote repo: %s from: %s (transfer: %s). Failed to store new remote repository.", repo.getUrl(), gav, job.transfer), e);
}
} else {
logger.debug("Found existing RemoteRepositories: {}", rrs);
for (final RemoteRepository rr : rrs) {
rr.setMetadata(METADATA_ORIGIN, IMPLIED_REPO_ORIGIN);
try {
metadataManager.updateImpliedBy(rr, job.store);
} catch (ImpliedReposException e) {
logger.error("Failed to set {}", IMPLIED_BY_STORES);
continue;
}
final String changelog = String.format("Updating the existing remote repository: %s (url: %s, name: %s), which is implied by the POM: %s (at: %s/%s)", repo.getId(), repo.getUrl(), repo.getName(), gav, job.transfer.getLocation().getUri(), job.transfer.getPath());
final ChangeSummary summary = new ChangeSummary(ChangeSummary.SYSTEM_USER, changelog);
try {
final boolean result = storeManager.storeArtifactStore(rr, summary, false, false, null);
logger.debug("Updated the RemoteRepository: {}. (successful? {})", rr, result);
job.implied.add(rr);
} catch (final IndyDataException e) {
logger.error(String.format("Cannot add implied remote repo: %s from: %s (transfer: %s). Failed to update the remote repository.", repo.getUrl(), gav, job.transfer), e);
}
}
}
}
}
}
use of org.commonjava.atlas.maven.ident.util.JoinString in project indy by Commonjava.
the class StoreAdminHandler method getAll.
@ApiOperation("Retrieve the definitions of all artifact stores of a given type on the system")
@ApiResponses({ @ApiResponse(code = 200, response = StoreListingDTO.class, message = "The store definitions") })
@GET
@Produces(ApplicationContent.application_json)
public Response getAll(@ApiParam("Filter only stores that support the package type (eg. maven, npm). NOTE: '_all' returns all.") @PathParam("packageType") final String packageType, @ApiParam(allowableValues = "hosted,group,remote", required = true) @PathParam("type") final String type) {
final StoreType st = StoreType.get(type);
Response response;
try {
final List<ArtifactStore> stores = adminController.getAllOfType(packageType, st);
logger.info("Returning listing containing stores:\n\t{}", new JoinString("\n\t", stores));
final StoreListingDTO<ArtifactStore> dto = new StoreListingDTO<>(stores);
response = responseHelper.formatOkResponseWithJsonEntity(dto);
} catch (final IndyWorkflowException e) {
logger.error(e.getMessage(), e);
response = responseHelper.formatResponse(e);
}
return response;
}
use of org.commonjava.atlas.maven.ident.util.JoinString in project indy by Commonjava.
the class IndyLocationExpander method expand.
/**
* For group references, expand into a list of concrete repository locations (hosted or remote). For remote repository references that are
* specified as cache-only locations (see: {@link CacheOnlyLocation}), lookup the corresponding {@link RemoteRepository} and use it to create a
* {@link RepositoryLocation} that contains any relevant SSL, authentication, proxy, etc. attbributes.
*/
@Override
public <T extends Location> List<Location> expand(final Collection<T> locations) throws TransferException {
final List<Location> result = new ArrayList<Location>();
for (final Location location : locations) {
if (location instanceof GroupLocation) {
final GroupLocation gl = (GroupLocation) location;
try {
logger.debug("Expanding group: {}", gl.getKey());
final List<ArtifactStore> members = data.query().getOrderedConcreteStoresInGroup(gl.getKey().getPackageType(), gl.getKey().getName());
if (members != null) {
for (final ArtifactStore member : members) {
if (!result.contains(member)) {
logger.debug("expansion += {}", member.getKey());
result.add(LocationUtils.toLocation(member));
}
}
logger.debug("Expanded group: {} to:\n {}", gl.getKey(), new JoinString("\n ", result));
}
} catch (final IndyDataException e) {
throw new TransferException("Failed to lookup ordered concrete artifact stores contained in group: {}. Reason: {}", e, gl, e.getMessage());
}
} else if (location instanceof CacheOnlyLocation && !((CacheOnlyLocation) location).isHostedRepository()) {
final StoreKey key = ((KeyedLocation) location).getKey();
try {
final ArtifactStore store = data.getArtifactStore(key);
if (store == null) {
throw new TransferException("Cannot find ArtifactStore to match key: %s.", key);
}
logger.debug("Adding single store: {} for location: {}", store, location);
result.add(LocationUtils.toLocation(store));
} catch (final IndyDataException e) {
throw new TransferException("Failed to lookup store for key: {}. Reason: {}", e, key, e.getMessage());
}
} else {
logger.debug("No expansion available for location: {}", location);
result.add(location);
}
}
return result;
}
use of org.commonjava.atlas.maven.ident.util.JoinString in project indy by Commonjava.
the class JaxRsUriFormatter method formatAbsolutePathTo.
@Override
public String formatAbsolutePathTo(final String base, final String... parts) {
logger.debug("Formatting URL from base: '{}' and parts: {}", base, new JoinString(", ", parts));
String url = null;
try {
url = UrlUtils.buildUrl(base, parts);
} catch (final MalformedURLException e) {
logger.warn("Failed to use UrlUtils to build URL from base: {} and parts: {}", base, join(parts, ", "));
url = PathUtils.normalize(base, PathUtils.normalize(parts));
}
if (url.length() > 0 && !url.matches("[a-zA-Z0-9]+\\:\\/\\/.+") && url.charAt(0) != '/') {
url = "/" + url;
}
logger.debug("Resulting URL: '{}'", url);
return url;
}
Aggregations