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   * @since 1.0.0
39   */
40  public class FileRegexpValidator implements ScalarFieldValidator {
41  
42  	/**
43  	 * メッセージヘルパ。
44  	 */
45  	private final MessageHelper messageHelper;
46  
47  	/**
48  	 * 正規表現パターン
49  	 */
50  	private final Pattern pattern;
51  
52  	/**
53  	 * コンストラクタ
54  	 * 
55  	 * @param regex
56  	 *            正規表現(例:".+\\.(?i)(png|jpg)")・・・「(?i)」は大文字小文字を区別しないフラグ
57  	 */
58  	public FileRegexpValidator(final String regex) {
59  		this(regex, "valid.fileRegexp");
60  	}
61  
62  	/**
63  	 * エラーメッセージキーを指定するコンストラクタ
64  	 * 
65  	 * @param regex
66  	 *            正規表現(例:".+\\.(?i)(png|jpg)")・・・「(?i)」は大文字小文字を区別しないフラグ
67  	 * @param messageKey
68  	 *            エラーメッセージキー
69  	 */
70  	public FileRegexpValidator(final String regex, final String messageKey) {
71  		this(Pattern.compile(regex), messageKey);
72  	}
73  
74  	/**
75  	 * コンストラクタ
76  	 * 
77  	 * @param pattern
78  	 *            正規表現パターン
79  	 */
80  	public FileRegexpValidator(final Pattern pattern) {
81  		this(pattern, "valid.fileRegexp");
82  	}
83  
84  	/**
85  	 * エラーメッセージキーを指定するコンストラクタ
86  	 * 
87  	 * @param pattern
88  	 *            正規表現パターン
89  	 * @param messageKey
90  	 *            エラーメッセージキー
91  	 */
92  	public FileRegexpValidator(final Pattern pattern, final String messageKey) {
93  		this.pattern = pattern;
94  		this.messageHelper = new MessageHelper(messageKey);
95  	}
96  
97  	/**
98  	 * {@inheritDoc}
99  	 */
100 	public void validate(final ValidationContext context, final Object value) {
101 		if (value instanceof FileItem) {
102 			final FileItem fileItem = (FileItem) value;
103 			final Matcher matcher = pattern.matcher(fileItem.getName());
104 			if (!matcher.matches()) {
105 				context.addMessageInfo(this.messageHelper.createMessageInfo());
106 			}
107 		}
108 	}
109 }