Subversion Repositories XServices

Rev

Rev 198 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 198 Rev 199
1
/*
1
/*
2
 *   Copyright 2013 Brian Rosenberger (Brutex Network)
2
 *   Copyright 2013 Brian Rosenberger (Brutex Network)
3
 *
3
 *
4
 *   Licensed under the Apache License, Version 2.0 (the "License");
4
 *   Licensed under the Apache License, Version 2.0 (the "License");
5
 *   you may not use this file except in compliance with 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
6
 *   You may obtain a copy of the License at
7
 *
7
 *
8
 *       http://www.apache.org/licenses/LICENSE-2.0
8
 *       http://www.apache.org/licenses/LICENSE-2.0
9
 *
9
 *
10
 *   Unless required by applicable law or agreed to in writing, software
10
 *   Unless required by applicable law or agreed to in writing, software
11
 *   distributed under the License is distributed on an "AS IS" BASIS,
11
 *   distributed under the License is distributed on an "AS IS" BASIS,
12
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 *   See the License for the specific language governing permissions and
13
 *   See the License for the specific language governing permissions and
14
 *   limitations under the License.
14
 *   limitations under the License.
15
*/
15
*/
16
 
16
 
17
package net.brutex.xservices.security;
17
package net.brutex.xservices.security;
18
 
18
 
19
 
-
 
20
import org.apache.logging.log4j.LogManager;
19
 
21
import org.apache.logging.log4j.Logger;
20
import lombok.extern.slf4j.Slf4j;
22
import org.apache.shiro.authz.Permission;
21
import org.apache.shiro.authz.Permission;
23
import org.apache.shiro.util.AntPathMatcher;
22
import org.apache.shiro.util.AntPathMatcher;
24
 
23
 
25
/**
24
/**
26
 * @author Brian Rosenberger, bru(at)brutex.de
25
 * @author Brian Rosenberger, bru(at)brutex.de
27
 *
26
 *
28
 */
27
 */
-
 
28
@Slf4j
29
public class DirectoryPermission implements Permission {
29
public class DirectoryPermission implements Permission {
30
 
-
 
31
	private final Logger logger = LogManager.getLogger();
-
 
32
 
30
 
33
	private final String path;
31
	private final String path;
34
 
32
 
35
	public DirectoryPermission(String antlikepath) {
33
	public DirectoryPermission(String antlikepath) {
36
		logger.debug(String.format("Creating permission for path '%s'", antlikepath));
34
		log.debug(String.format("Creating permission for path '{}'", antlikepath));
37
		path = antlikepath;
35
		path = antlikepath;
38
	}
36
	}
39
	
37
	
40
	@Override
38
	@Override
41
	public boolean implies(Permission p) {
39
	public boolean implies(Permission p) {
42
		boolean result = false;
40
		boolean result = false;
43
		
41
		
44
		/* is of same type */
42
		/* is of same type */
45
		if(! (p instanceof DirectoryPermission)) {			
43
		if(! (p instanceof DirectoryPermission)) {			
46
			logger.debug(String.format("Testing if permission of type '%s' implies permission of type '%s'. Result was '%s'"  , this.getClass(), p.getClass(), result));
44
			log.debug(String.format("Testing if permission of type '{}' implies permission of type '{}'. Result was '{}'"  , this.getClass(), p.getClass(), result));
47
			return result;
45
			return result;
48
		}
46
		}
49
		
47
		
50
		/* comparing to non null directory */
48
		/* comparing to non null directory */
51
		if( ((DirectoryPermission)p).getPath() == null) {
49
		if( ((DirectoryPermission)p).getPath() == null) {
52
			logger.debug(String.format("Testing if DirectoryPermission '%s' implies permission to 'null'. Result was '%s'"  , this.getPath(), result));
50
			log.debug(String.format("Testing if DirectoryPermission '{}' implies permission to 'null'. Result was '{}'"  , this.getPath(), result));
53
			return result;
51
			return result;
54
		}
52
		}
55
		
53
		
56
		/* directory pattern implies other */
54
		/* directory pattern implies other */
57
		if( (new AntPathMatcher()).matches(path, ((DirectoryPermission)p).getPath()) ) {
55
		if( (new AntPathMatcher()).matches(path, ((DirectoryPermission)p).getPath()) ) {
58
			result = true;
56
			result = true;
59
		}
57
		}
60
		logger.debug(String.format("Testing if DirectoryPermission '%s' implies permission to '%s'. Result was '%s'"  , this.getPath(), ((DirectoryPermission) p).getPath(), result));
58
		log.debug(String.format("Testing if DirectoryPermission '{}' implies permission to '{}'. Result was '{}'"  , this.getPath(), ((DirectoryPermission) p).getPath(), result));
61
		
59
		
62
		return result;
60
		return result;
63
	}
61
	}
64
	
62
	
65
	public String getPath() {
63
	public String getPath() {
66
		return path;
64
		return path;
67
	}
65
	}
68
 
66
 
69
}
67
}