|
@@ -5,6 +5,9 @@ import cn.rankin.common.utils.api.model.APIResult;
|
|
|
import cn.rankin.common.utils.api.page.Page;
|
|
|
import cn.rankin.common.utils.constant.ResourceType;
|
|
|
import cn.rankin.common.utils.dto.resource.ResourceSearchDTO;
|
|
|
+import cn.rankin.common.utils.exception.DuplicateValueException;
|
|
|
+import cn.rankin.common.utils.exception.NotFoundException;
|
|
|
+import cn.rankin.common.utils.exception.UnsupportedOperationException;
|
|
|
import cn.rankin.resourceservice.dto.ResourceDetail;
|
|
|
import cn.rankin.resourceservice.dto.ResourceRemote;
|
|
|
import cn.rankin.data.api.resource.entity.Resource;
|
|
@@ -21,6 +24,7 @@ import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
+
|
|
|
@Slf4j
|
|
|
@Service
|
|
|
public class ResourceService {
|
|
@@ -171,4 +175,64 @@ public class ResourceService {
|
|
|
return domain + "/" + path;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ * @param resource
|
|
|
+ * @throws DuplicateValueException
|
|
|
+ * @throws NotFoundException
|
|
|
+ */
|
|
|
+ public void update(Resource resource) throws DuplicateValueException, NotFoundException, UnsupportedOperationException {
|
|
|
+ if (null == resource){
|
|
|
+ log.error("Resource is null");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (ResourceType.IMG == resource.getType()){
|
|
|
+ updateImg(resource);
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ log.error("Not-Supported-Resource-Type, id={}, type={}", resource.getId(), resource.getType());
|
|
|
+ throw new UnsupportedOperationException("Not-Supported-Resource-Type");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * update Img
|
|
|
+ * @param resource
|
|
|
+ * @throws DuplicateValueException
|
|
|
+ * @throws NotFoundException
|
|
|
+ */
|
|
|
+ private void updateImg(Resource resource) throws DuplicateValueException, NotFoundException {
|
|
|
+
|
|
|
+ if (ResourceType.IMG != resource.getType()){
|
|
|
+ log.error("Not-Img-Resource");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ //find target resource
|
|
|
+ Resource targetResouce = resourceRepository.find(resource.getId());
|
|
|
+
|
|
|
+ if(null == targetResouce){
|
|
|
+ log.error("Cannot Find Resource, id={}", resource.getId());
|
|
|
+ throw new NotFoundException("Resource-Not-Found");
|
|
|
+ }
|
|
|
+
|
|
|
+ //only support code,title,path
|
|
|
+ //first, make sure code is not duplicated
|
|
|
+ List<Resource> foundedResource = resourceRepository.findByCode(resource.getCode());
|
|
|
+ foundedResource.forEach( (each) -> {
|
|
|
+ if ( !resource.getId().equals(each.getId()) ){
|
|
|
+ log.error("Code-Already-Exist, code={}", resource.getCode());
|
|
|
+ throw new DuplicateValueException("Code-Already-Exist");
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ //set and save
|
|
|
+ targetResouce.setCode(resource.getCode());
|
|
|
+ targetResouce.setName(resource.getName());
|
|
|
+ targetResouce.setPath(resource.getPath());
|
|
|
+ resourceRepository.save(targetResouce);
|
|
|
+ }
|
|
|
}
|
|
|
+
|