06320c4c82b707df77d2838693a80250c5053e7d
[portal.git] / portal-BE / src / main / java / org / onap / portal / domain / db / fn / FnUserRole.java
1 /*
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ===================================================================
9  *
10  * Unless otherwise specified, all software contained herein is licensed
11  * under the Apache License, Version 2.0 (the "License");
12  * you may not use this software except in compliance with the License.
13  * You may obtain a copy of the License at
14  *
15  *             http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  *
23  * Unless otherwise specified, all documentation contained herein is licensed
24  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
25  * you may not use this documentation except in compliance with the License.
26  * You may obtain a copy of the License at
27  *
28  *             https://creativecommons.org/licenses/by/4.0/
29  *
30  * Unless required by applicable law or agreed to in writing, documentation
31  * distributed under the License is distributed on an "AS IS" BASIS,
32  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33  * See the License for the specific language governing permissions and
34  * limitations under the License.
35  *
36  * ============LICENSE_END============================================
37  *
38  *
39  */
40
41 package org.onap.portal.domain.db.fn;
42
43 import java.io.Serializable;
44 import javax.persistence.CascadeType;
45 import javax.persistence.Column;
46 import javax.persistence.ColumnResult;
47 import javax.persistence.ConstructorResult;
48 import javax.persistence.Entity;
49 import javax.persistence.FetchType;
50 import javax.persistence.GeneratedValue;
51 import javax.persistence.GenerationType;
52 import javax.persistence.Id;
53 import javax.persistence.Index;
54 import javax.persistence.JoinColumn;
55 import javax.persistence.ManyToOne;
56 import javax.persistence.NamedNativeQueries;
57 import javax.persistence.NamedNativeQuery;
58 import javax.persistence.NamedQueries;
59 import javax.persistence.NamedQuery;
60 import javax.persistence.OneToOne;
61 import javax.persistence.SqlResultSetMapping;
62 import javax.persistence.Table;
63 import javax.persistence.UniqueConstraint;
64 import javax.validation.Valid;
65 import javax.validation.constraints.Digits;
66 import lombok.AllArgsConstructor;
67 import lombok.Builder;
68 import lombok.Getter;
69 import lombok.NoArgsConstructor;
70 import lombok.Setter;
71 import org.onap.portal.domain.dto.ecomp.UserRole;
72
73 /*
74 CREATE TABLE `fn_user_role` (
75         `user_id` int(10) NOT NULL,
76         `role_id` int(10) NOT NULL,
77         `priority` decimal(4,0) DEFAULT NULL,
78         `app_id` int(11) NOT NULL DEFAULT 2,
79         PRIMARY KEY (`user_id`,`role_id`,`app_id`),
80         KEY `fn_user_role_role_id` (`role_id`) USING BTREE,
81         KEY `fn_user_role_user_id` (`user_id`) USING BTREE,
82         KEY `fk_fn_user__ref_178_fn_app_idx` (`app_id`),
83         CONSTRAINT `fk_fn_user__ref_172_fn_user` FOREIGN KEY (`user_id`) REFERENCES `fn_user` (`user_id`),
84         CONSTRAINT `fk_fn_user__ref_175_fn_role` FOREIGN KEY (`role_id`) REFERENCES `fn_role` (`role_id`),
85         CONSTRAINT `fk_fn_user__ref_178_fn_app` FOREIGN KEY (`app_id`) REFERENCES `fn_app` (`app_id`)
86         )
87 */
88
89 @NamedNativeQueries({
90         @NamedNativeQuery(
91                 name = "FnUserRole.retrieveUserRoleOnUserIdAndRoleIdAndAppId",
92                 query = "FROM FnUserRole where user_id= :userId"
93                         + " and role_id= :roleId"
94                         + " and app_id= :appId"),
95         @NamedNativeQuery(
96                 name = "FnUserRole.retrieveCachedAppRolesForUser",
97                 query = "FROM FnUserRole where user_id= :userId"
98                         + " and user_id= :userId"
99                         + " and app_id= :appId"),
100         @NamedNativeQuery(
101                 name = "FnUserRole.isSuperAdmin",
102                 query = "SELECT"
103                         + "  user.USER_ID as userId,"
104                         + "  user.org_user_id as orgUserId,"
105                         + "  userrole.ROLE_ID as roleId,"
106                         + "  userrole.APP_ID as appId"
107                         + " FROM"
108                         + "  fn_user_role userrole"
109                         + "  INNER JOIN fn_user user ON user.USER_ID = userrole.USER_ID"
110                         + " WHERE"
111                         + "  user.org_user_id = :orgUserId"
112                         + "  AND userrole.ROLE_ID =:roleId"
113                         + "  AND userrole.APP_ID =:appId",
114                 resultSetMapping = "UserRole",
115                 resultClass = UserRole.class
116         )
117 })
118
119 @SqlResultSetMapping(
120         name = "UserRole",
121         classes = {
122                 @ConstructorResult(
123                         targetClass = UserRole.class,
124                         columns = {
125                                 @ColumnResult(name = "userId", type = Long.class),
126                                 @ColumnResult(name = "orgUserId", type = String.class),
127                                 @ColumnResult(name = "roleId", type = Long.class),
128                                 @ColumnResult(name = "appId", type = Long.class)
129                         }
130                 )
131         }
132 )
133
134 @NamedQueries({
135         @NamedQuery(
136                 name = "FnUserRole.getAdminUserRoles",
137                 query = "FROM FnUserRole fn "
138                         + "WHERE  fn.userId.userId = :userId "
139                         + "AND fn.roleId.roleId = :roleId "
140                         + "AND fn.appId.appId = :appId"),
141         @NamedQuery(
142                 name = "FnUserRole.getUserRolesForRoleIdAndAppId",
143                 query = "FROM\n"
144                         + "  FnUserRole userrole\n"
145                         + "WHERE\n"
146                         + "  userrole.roleId.roleId = :roleId\n"
147                         + "  AND userrole.appId.appId = :appId"
148         )
149 })
150
151 @Table(
152         name = "fn_user_role",
153         indexes = {
154                 @Index(name = "fn_user_role_role_id", columnList = "role_id"),
155                 @Index(name = "fn_user_role_user_id", columnList = "user_id"),
156                 @Index(name = "fk_fn_user__ref_178_fn_app_idx", columnList = "app_id")},
157         uniqueConstraints = {
158                 @UniqueConstraint(name = "fn_user_role_id", columnNames = {"role_id", "user_id", "app_id"})
159         })
160 @NoArgsConstructor
161 @AllArgsConstructor
162 @Builder
163 @Getter
164 @Setter
165 @Entity
166 public class FnUserRole implements Serializable {
167
168        @Id
169        @GeneratedValue(strategy = GenerationType.AUTO)
170        @Column(name = "id", columnDefinition = "int(11) auto_increment")
171        private Long id;
172        @ManyToOne(fetch = FetchType.LAZY, cascade = CascadeType.ALL)
173        @JoinColumn(name = "user_id")
174        @Valid
175        private FnUser userId;
176        @OneToOne(fetch = FetchType.LAZY, cascade = CascadeType.ALL)
177        @JoinColumn(name = "role_id")
178        @Valid
179        private FnRole roleId;
180        @Column(name = "priority", length = 4, columnDefinition = "decimal(4,0) DEFAULT NULL")
181        @Digits(integer = 4, fraction = 0)
182        private Long priority;
183        @ManyToOne(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
184        @JoinColumn(name = "app_Id")
185        @Valid
186        private FnApp appId;
187 }