use of org.wso2.carbon.apimgt.rest.api.publisher.v1.dto.APICategoryDTO in project carbon-apimgt by wso2.
the class APICategoryMappingUtil method fromCategoryListToCategoryDTOList.
/**
* Converts api category List to CategoryDTO List.
*
* @param categories List of api categories
* @return CategoryDTO list
*/
private static List<APICategoryDTO> fromCategoryListToCategoryDTOList(List<APICategory> categories) {
List<APICategoryDTO> categoryDTOs = new ArrayList<>();
for (APICategory category : categories) {
APICategoryDTO categoryDTO = new APICategoryDTO();
categoryDTO.setId(category.getId());
categoryDTO.setName(category.getName());
categoryDTO.setDescription(category.getDescription());
categoryDTO.setNumberOfAPIs(category.getNumberOfAPIs());
categoryDTOs.add(categoryDTO);
}
return categoryDTOs;
}
use of org.wso2.carbon.apimgt.rest.api.publisher.v1.dto.APICategoryDTO in project carbon-apimgt by wso2.
the class APICategoryMappingUtil method fromCategoryToCategoryDTO.
/**
* Converts a Category to CategoryDTO
*
* @param category
* @return categoryDTO
*/
public static APICategoryDTO fromCategoryToCategoryDTO(APICategory category) {
APICategoryDTO categoryDTO = new APICategoryDTO();
categoryDTO.setId(category.getId());
categoryDTO.setName(category.getName());
categoryDTO.setDescription(category.getDescription());
return categoryDTO;
}
use of org.wso2.carbon.apimgt.rest.api.publisher.v1.dto.APICategoryDTO in project carbon-apimgt by wso2.
the class APICategoryMappingUtil method fromCategoryDTOToCategory.
/**
* Converts a CategoryDTO to APICategory
*
* @param categoryDTO
* @return APICategoty
*/
public static APICategory fromCategoryDTOToCategory(APICategoryDTO categoryDTO) {
APICategory category = new APICategory();
category.setId(categoryDTO.getId());
category.setName(categoryDTO.getName());
category.setDescription(categoryDTO.getDescription());
return category;
}
use of org.wso2.carbon.apimgt.rest.api.publisher.v1.dto.APICategoryDTO in project carbon-apimgt by wso2.
the class ApiCategoriesApiServiceImpl method apiCategoriesPost.
@Override
public Response apiCategoriesPost(APICategoryDTO body, MessageContext messageContext) {
APICategory apiCategory = null;
try {
APIAdmin apiAdmin = new APIAdminImpl();
String userName = RestApiCommonUtil.getLoggedInUsername();
apiCategory = APICategoryMappingUtil.fromCategoryDTOToCategory(body);
if (!org.apache.commons.lang3.StringUtils.isEmpty(apiCategory.getName())) {
String regExSpecialChars = "!@#$%^&*(),?\"{}[\\]|<>";
String regExSpecialCharsReplaced = regExSpecialChars.replaceAll(".", "\\\\$0");
// include \n,\t, space
Pattern pattern = Pattern.compile("[" + regExSpecialCharsReplaced + "\\s" + "]");
Matcher matcher = pattern.matcher(apiCategory.getName());
if (matcher.find()) {
RestApiUtil.handleBadRequest("Name field contains special characters.", log);
}
if (apiCategory.getName().length() > 255) {
RestApiUtil.handleBadRequest("API Category name is too long.", log);
}
} else {
RestApiUtil.handleBadRequest("API Category name is empty.", log);
}
String organization = RestApiUtil.getOrganization(messageContext);
APICategoryDTO categoryDTO = APICategoryMappingUtil.fromCategoryToCategoryDTO(apiAdmin.addCategory(apiCategory, userName, organization));
URI location = new URI(RestApiConstants.RESOURCE_PATH_CATEGORY + "/" + categoryDTO.getId());
return Response.created(location).entity(categoryDTO).build();
} catch (APIManagementException | URISyntaxException e) {
String errorMessage = "Error while adding new API Category '" + body.getName() + "' - " + e.getMessage();
RestApiUtil.handleInternalServerError(errorMessage, e, log);
}
return null;
}
use of org.wso2.carbon.apimgt.rest.api.publisher.v1.dto.APICategoryDTO in project carbon-apimgt by wso2.
the class APICategoryMappingUtilTestCase method testCategoryDescription.
@Test
public void testCategoryDescription() throws Exception {
APICategory category = new APICategory();
String description = "sample description";
category.setDescription(description);
category.setName("test");
List<APICategory> categories = new ArrayList<APICategory>();
categories.add(category);
APICategoryListDTO ListDto = APICategoryMappingUtil.fromCategoryListToCategoryListDTO(categories);
APICategoryDTO dto = ListDto.getList().get(0);
Assert.assertEquals("Category description mismatch", description, dto.getDescription());
}
Aggregations