use of io.gravitee.rest.api.model.Visibility.PUBLIC in project gravitee-management-rest-api by gravitee-io.
the class ApiRatingResource method getApiRating.
@GET
@ApiOperation(value = "List ratings for an API")
@Produces(MediaType.APPLICATION_JSON)
public Page<RatingEntity> getApiRating(@Min(1) @QueryParam("pageNumber") int pageNumber, @QueryParam("pageSize") int pageSize) {
final ApiEntity apiEntity = apiService.findById(api);
if (PUBLIC.equals(apiEntity.getVisibility()) || hasPermission(RolePermission.API_RATING, api, RolePermissionAction.READ)) {
final Page<RatingEntity> ratingEntityPage = ratingService.findByApi(api, new PageableBuilder().pageNumber(pageNumber).pageSize(pageSize).build());
final List<RatingEntity> filteredRatings = ratingEntityPage.getContent().stream().map(ratingEntity -> filterPermission(api, ratingEntity)).collect(toList());
return new Page<>(filteredRatings, ratingEntityPage.getPageNumber(), (int) ratingEntityPage.getPageElements(), ratingEntityPage.getTotalElements());
} else {
throw new UnauthorizedAccessException();
}
}
use of io.gravitee.rest.api.model.Visibility.PUBLIC in project gravitee-management-rest-api by gravitee-io.
the class ApisResource method getApis.
@GET
@Path("_paged")
@Produces(MediaType.APPLICATION_JSON)
@ApiOperation(value = "List APIs with pagination", notes = "List all the APIs accessible to the current user with pagination.", nickname = "getApisPaged")
@ApiResponses({ @ApiResponse(code = 200, message = "Page of APIs for current user", response = PagedResult.class), @ApiResponse(code = 500, message = "Internal server error") })
public PagedResult<ApiListItem> getApis(@BeanParam final ApisParam apisParam, @Valid @BeanParam Pageable pageable) {
final ApiQuery apiQuery = new ApiQuery();
if (apisParam.getGroup() != null) {
apiQuery.setGroups(singletonList(apisParam.getGroup()));
}
apiQuery.setContextPath(apisParam.getContextPath());
apiQuery.setLabel(apisParam.getLabel());
apiQuery.setVersion(apisParam.getVersion());
apiQuery.setName(apisParam.getName());
apiQuery.setTag(apisParam.getTag());
apiQuery.setState(apisParam.getState());
if (apisParam.getCategory() != null) {
apiQuery.setCategory(categoryService.findById(apisParam.getCategory()).getId());
}
Sortable sortable = null;
if (apisParam.getOrder() != null) {
sortable = new SortableImpl(apisParam.getOrder().getField(), apisParam.getOrder().isOrder());
}
io.gravitee.rest.api.model.common.Pageable commonPageable = null;
if (pageable != null) {
commonPageable = pageable.toPageable();
}
final Page<ApiEntity> apis;
if (isAdmin()) {
apis = apiService.search(apiQuery, sortable, commonPageable);
} else {
if (apisParam.isPortal() || apisParam.isTop()) {
apiQuery.setLifecycleStates(singletonList(PUBLISHED));
}
if (isAuthenticated()) {
apis = apiService.findByUser(getAuthenticatedUser(), apiQuery, sortable, commonPageable, apisParam.isPortal());
} else {
apiQuery.setVisibility(PUBLIC);
apis = apiService.search(apiQuery, sortable, commonPageable);
}
}
final boolean isRatingServiceEnabled = ratingService.isEnabled();
if (apisParam.isTop()) {
final List<String> visibleApis = apis.getContent().stream().map(ApiEntity::getId).collect(toList());
return new PagedResult<>(topApiService.findAll().stream().filter(topApi -> visibleApis.contains(topApi.getApi())).map(topApiEntity -> apiService.findById(topApiEntity.getApi())).map(apiEntity -> this.convert(apiEntity, isRatingServiceEnabled)).collect(toList()), apis.getPageNumber(), (int) apis.getPageElements(), (int) apis.getTotalElements());
}
return new PagedResult<>(apis.getContent().stream().map(apiEntity -> this.convert(apiEntity, isRatingServiceEnabled)).collect(toList()), apis.getPageNumber(), (int) apis.getPageElements(), (int) apis.getTotalElements());
}
Aggregations