View Javadoc

1   /*
2    * Copyright 2004-2008 the Seasar Foundation and the Others.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *     http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
13   * either express or implied. See the License for the specific language
14   * governing permissions and limitations under the License.
15   */
16  package org.seasar.cubby.validator.validators;
17  
18  import java.util.regex.Matcher;
19  import java.util.regex.Pattern;
20  
21  import org.apache.commons.fileupload.FileItem;
22  import org.seasar.cubby.validator.MessageHelper;
23  import org.seasar.cubby.validator.ScalarFieldValidator;
24  import org.seasar.cubby.validator.ValidationContext;
25  
26  /**
27   * ファイルアップロードのファイル名が指定された正規表現にマッチするか検証します。
28  * <p>
29   * 正規表現についての詳細は {@link Pattern}を参照してください。
30   * </p>
31    * <p>
32   * デフォルトエラーメッセージキー:valid.fileRegexp
33   * </p>
34   * 
35   * @see Pattern
36   * @see Matcher
37   * @author baba
38   */
39  public class FileRegexpValidator implements ScalarFieldValidator {
40  
41  	/**
42  	 * メッセージヘルパ。
43  	 */
44  	private final MessageHelper messageHelper;
45  
46  	/**
47  	 * 正規表現パターン
48  	 */
49  	private final Pattern pattern;
50  
51  	/**
52  	 * コンストラクタ
53  	 * 
54  	 * @param regex
55  	 *            正規表現(例:".+\\.(?i)(png|jpg)")・・・「(?i)」は大文字小文字を区別しないフラグ
56  	 */
57  	public FileRegexpValidator(final String regex) {
58  		this(regex, "valid.fileRegexp");
59  	}
60  
61  	/**
62  	 * エラーメッセージキーを指定するコンストラクタ
63  	 * 
64  	 * @param regex
65  	 *            正規表現(例:".+\\.(?i)(png|jpg)")・・・「(?i)」は大文字小文字を区別しないフラグ
66  	 * @param messageKey
67  	 *            エラーメッセージキー
68  	 */
69  	public FileRegexpValidator(final String regex, final String messageKey) {
70  		this(Pattern.compile(regex), messageKey);
71  	}
72  
73  	/**
74  	 * コンストラクタ
75  	 * 
76  	 * @param pattern 正規表現パターン
77  	 */
78  	public FileRegexpValidator(Pattern pattern) {
79  		this(pattern, "valid.fileRegexp");
80  	}
81  	
82  	/**
83  	 * エラーメッセージキーを指定するコンストラクタ
84  	 * 
85  	 * @param pattern 正規表現パターン
86  	 * @param messageKey
87  	 *            エラーメッセージキー
88  	 */
89  	public FileRegexpValidator(Pattern pattern, String messageKey) {
90  		this.pattern = pattern;
91  		this.messageHelper = new MessageHelper(messageKey);
92  	}
93  
94  	public void validate(final ValidationContext context, final Object value) {
95  		if (value instanceof FileItem) {
96  			final FileItem fileItem = (FileItem) value;
97  			final Matcher matcher = pattern.matcher(fileItem.getName());
98  			if (!matcher.matches()) {
99  				context.addMessageInfo(this.messageHelper.createMessageInfo());
100 			}
101 		}
102 	}
103 }