-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ae8de2a
commit ae06dab
Showing
9 changed files
with
160 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
src/main/java/nl/knaw/dans/validatedansbag/resources/ValidateLocalDirApiResource.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
* Copyright (C) 2022 DANS - Data Archiving and Networked Services ([email protected]) | ||
* | ||
* Licensed 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 nl.knaw.dans.validatedansbag.resources; | ||
|
||
import lombok.AllArgsConstructor; | ||
import nl.knaw.dans.validatedansbag.api.ValidateCommandDto; | ||
import nl.knaw.dans.validatedansbag.core.engine.DepositType; | ||
import nl.knaw.dans.validatedansbag.core.service.RuleEngineService; | ||
|
||
import javax.ws.rs.core.Response; | ||
import java.nio.file.Path; | ||
|
||
@AllArgsConstructor | ||
public class ValidateLocalDirApiResource implements ValidateLocalDirApi { | ||
private final RuleEngineService ruleEngineService; | ||
|
||
@Override | ||
public Response validateLocalDirPost(ValidateCommandDto validateCommandDto) { | ||
try { | ||
var result = ruleEngineService.validateBag(Path.of(validateCommandDto.getBagLocation()), | ||
DepositType.valueOf(validateCommandDto.getPackageType().toString()), | ||
validateCommandDto.getBagLocation()); | ||
return Response.ok(result).build(); | ||
} | ||
catch (Exception e) { | ||
throw new RuntimeException(e); | ||
} | ||
} | ||
} |
50 changes: 0 additions & 50 deletions
50
src/main/java/nl/knaw/dans/validatedansbag/resources/ValidateOkYamlMessageBodyWriter.java
This file was deleted.
Oops, something went wrong.
47 changes: 47 additions & 0 deletions
47
src/main/java/nl/knaw/dans/validatedansbag/resources/ValidateZipApiResource.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Copyright (C) 2022 DANS - Data Archiving and Networked Services ([email protected]) | ||
* | ||
* Licensed 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 nl.knaw.dans.validatedansbag.resources; | ||
|
||
import lombok.AllArgsConstructor; | ||
import nl.knaw.dans.validatedansbag.core.engine.DepositType; | ||
import nl.knaw.dans.validatedansbag.core.service.FileService; | ||
import nl.knaw.dans.validatedansbag.core.service.RuleEngineService; | ||
|
||
import javax.ws.rs.core.Response; | ||
import java.io.File; | ||
import java.io.FileInputStream; | ||
|
||
@AllArgsConstructor | ||
public class ValidateZipApiResource implements ValidateZipApi { | ||
private final RuleEngineService ruleEngineService; | ||
private final FileService fileService; | ||
|
||
@Override | ||
public Response validateZipPost(File body) { | ||
try (var inputStream = new FileInputStream(body)) { | ||
var dir = fileService.extractZipFile(inputStream); | ||
var bagDir = fileService.getFirstDirectory(dir); | ||
if (bagDir.isEmpty()) { | ||
return Response.status(Response.Status.BAD_REQUEST).entity("No bag directory found in zip file").build(); | ||
} | ||
var result = ruleEngineService.validateBag(bagDir.get(), DepositType.DEPOSIT, "ZIP"); | ||
return Response.ok(result).build(); | ||
} | ||
catch (Exception e) { | ||
throw new RuntimeException(e); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters