Rename Role's subscriberId field
[vid.git] / vid-app-common / src / main / java / org / onap / vid / roles / RoleValidatorBySubscriberAndServiceType.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.vid.roles;
22
23 import java.util.List;
24
25 public class RoleValidatorBySubscriberAndServiceType implements RoleValidator {
26
27     private final List<Role> userRoles;
28
29     RoleValidatorBySubscriberAndServiceType(List<Role> roles) {
30         this.userRoles = roles;
31     }
32
33     @Override
34     public boolean isSubscriberPermitted(String subscriberId) {
35         for (Role role : userRoles) {
36             if (role.getSubscriberId().equals(subscriberId)) {
37                 return true;
38             }
39         }
40         return false;
41     }
42
43     @Override
44     public boolean isServicePermitted(WithPermissionProperties permissionProperties) {
45         for (Role role : userRoles) {
46             if (role.getSubscriberId().equals(permissionProperties.getSubscriberId()) && role.getServiceType().equals(permissionProperties.getServiceType())) {
47                 return true;
48             }
49         }
50         return false;
51     }
52
53     @Override
54     public boolean isTenantPermitted(String subscriberId, String serviceType, String tenantName) {
55         for (Role role : userRoles) {
56             if (role.getSubscriberId().equals(subscriberId)
57                 && role.getServiceType().equals(serviceType)
58                 && (role.getTenant() == null || role.getTenant().equalsIgnoreCase(tenantName))) {
59                 return true;
60             }
61         }
62         return false;
63     }
64
65 }