]> source.dussan.org Git - archiva.git/blob
7c44f298eab03a2785c0d9b9a4af28085d773c58
[archiva.git] /
1 package org.apache.archiva.rest.api.services.v2;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  * KIND, either express or implied.  See the License for the
16  * specific language governing permissions and limitations
17  * under the License.
18  */
19
20 import org.apache.archiva.repository.Repository;
21 import org.apache.archiva.repository.validation.ValidationResponse;
22 import org.apache.archiva.rest.api.model.v2.ValidationError;
23
24 import java.util.ArrayList;
25 import java.util.Collections;
26 import java.util.List;
27 import java.util.Map;
28 import java.util.stream.Collectors;
29 import java.util.stream.Stream;
30
31 /**
32  * Exception is thrown
33  *
34  * @author Martin Stockhammer <martin_s@apache.org>
35  */
36 public class ValidationException extends ArchivaRestServiceException
37 {
38     public static final int DEFAULT_CODE = 422;
39
40     public static final ErrorMessage DEFAULT_MESSAGE = new ErrorMessage( ErrorKeys.VALIDATION_ERROR );
41
42     private List<ValidationError> validationErrors;
43
44     public ValidationException( )
45     {
46         super( DEFAULT_MESSAGE, DEFAULT_CODE );
47     }
48
49     public ValidationException( int errorCode )
50     {
51         super( DEFAULT_MESSAGE, errorCode );
52     }
53
54     public ValidationException( List<ValidationError> errors )
55     {
56         super( DEFAULT_MESSAGE, DEFAULT_CODE );
57         this.validationErrors = errors;
58     }
59
60     public static ValidationException of( List<org.apache.archiva.repository.validation.ValidationError> errorList )
61     {
62         return new ValidationException( errorList.stream( ).map( ValidationError::of ).collect( Collectors.toList( ) ) );
63     }
64
65     public static ValidationException of( Map<String, List<org.apache.archiva.repository.validation.ValidationError>> errorMap )
66     {
67         return new ValidationException( errorMap.entrySet( ).stream( )
68             .flatMap( v -> v.getValue( ).stream( ).map( k -> ValidationError.of(v.getKey(), k)))
69             .collect( Collectors.toList( ) ) );
70     }
71
72     public static <R extends Repository> ValidationException of( ValidationResponse<R> result )
73     {
74         if ( result.isValid( ) )
75         {
76             return new ValidationException( );
77         }
78         else
79         {
80             return new ValidationException( result.getResult( ).entrySet( ).stream( ).flatMap(
81                 v -> v.getValue( ).stream( ).map( e -> ValidationError.of( v.getKey( ), e ) ) ).collect( Collectors.toList( ) ) );
82         }
83     }
84
85     public List<ValidationError> getValidationErrors( )
86     {
87         return validationErrors == null ? Collections.emptyList( ) : validationErrors;
88     }
89
90     public void setValidationErrors( List<ValidationError> validationErrors )
91     {
92         this.validationErrors = validationErrors;
93     }
94
95     public void addValidationError( ValidationError error )
96     {
97         if ( this.validationErrors == null )
98         {
99             this.validationErrors = new ArrayList<>( );
100         }
101         this.validationErrors.add( error );
102     }
103 }