blob: 58b6d72c11c4cc400b00ab9742f706d2fbdf771c [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.ranger.service;
import java.util.ArrayList;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import org.apache.ranger.common.AppConstants;
import org.apache.ranger.common.MessageEnums;
import org.apache.ranger.common.PropertiesUtil;
import org.apache.ranger.common.RESTErrorUtil;
import org.apache.ranger.common.RangerCommonEnums;
import org.apache.ranger.common.SearchCriteria;
import org.apache.ranger.view.VXAsset;
import org.apache.ranger.view.VXAssetList;
import org.apache.ranger.view.VXRepository;
import org.apache.ranger.view.VXRepositoryList;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class XRepositoryService extends
PublicAPIServiceBase<VXAsset, VXRepository> {
@Autowired
RESTErrorUtil restErrorUtil;
String version;
public XRepositoryService() {
version = PropertiesUtil.getProperty("maven.project.version", "");
}
public VXRepository mapXAToPublicObject(VXAsset vXAsset) {
VXRepository vRepo = new VXRepository();
vRepo = super.mapBaseAttributesToPublicObject(vXAsset, vRepo);
vRepo.setName(vXAsset.getName());
vRepo.setDescription(vXAsset.getDescription());
vRepo.setRepositoryType(AppConstants.getLabelFor_AssetType(vXAsset
.getAssetType()));
vRepo.setConfig(vXAsset.getConfig());
int actStatus = vXAsset.getActiveStatus();
boolean isAct = (actStatus == RangerCommonEnums.STATUS_DISABLED) ? false
: true;
vRepo.setIsActive(isAct);
vRepo.setVersion(version);
return vRepo;
}
public VXAsset mapPublicToXAObject(VXRepository vXRepo) {
VXAsset vXAsset = new VXAsset();
vXAsset = super.mapBaseAttributesToXAObject(vXRepo, vXAsset);
vXAsset.setName(vXRepo.getName());
vXAsset.setDescription(vXRepo.getDescription());
vXAsset.setAssetType(AppConstants.getEnumFor_AssetType(vXRepo
.getRepositoryType()));
vXAsset.setConfig(vXRepo.getConfig());
int actStatus = (!vXRepo.getIsActive()) ? RangerCommonEnums.STATUS_DISABLED
: RangerCommonEnums.STATUS_ENABLED;
vXAsset.setActiveStatus(actStatus);
return vXAsset;
}
public SearchCriteria getMappedSearchParams(HttpServletRequest request,
SearchCriteria searchCriteria) {
Object typeObj = searchCriteria.getParamValue("type");
Object statusObj = searchCriteria.getParamValue("status");
ArrayList<Integer> statusList = new ArrayList<Integer>();
if (statusObj == null) {
statusList.add(RangerCommonEnums.STATUS_DISABLED);
statusList.add(RangerCommonEnums.STATUS_ENABLED);
} else {
Boolean status = restErrorUtil.parseBoolean(
request.getParameter("status"), "Invalid value for "
+ "status", MessageEnums.INVALID_INPUT_DATA, null,
"status");
int statusEnum = (status == null || status == false) ? AppConstants.STATUS_DISABLED
: AppConstants.STATUS_ENABLED;
statusList.add(statusEnum);
}
searchCriteria.addParam("status", statusList);
if (typeObj != null) {
String type = typeObj.toString();
int typeEnum = AppConstants.getEnumFor_AssetType(type);
searchCriteria.addParam("type", typeEnum);
}
return searchCriteria;
}
public VXRepositoryList mapToVXRepositoryList(VXAssetList vXAssetList) {
List<VXRepository> repoList = new ArrayList<VXRepository>();
for (VXAsset vXAsset : vXAssetList.getVXAssets()) {
VXRepository vXRepo = mapXAToPublicObject(vXAsset);
repoList.add(vXRepo);
}
VXRepositoryList vXRepositoryList = new VXRepositoryList(repoList);
return vXRepositoryList;
}
}