Fixed health check issue
[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.SequenceGenerator;
62 import javax.persistence.SqlResultSetMapping;
63 import javax.persistence.Table;
64 import javax.persistence.UniqueConstraint;
65 import javax.validation.Valid;
66 import javax.validation.constraints.Digits;
67 import lombok.AllArgsConstructor;
68 import lombok.Builder;
69 import lombok.Getter;
70 import lombok.NoArgsConstructor;
71 import lombok.Setter;
72 import org.onap.portal.domain.dto.ecomp.UserRole;
73
74 /*
75 CREATE TABLE `fn_user_role` (
76         `user_id` int(10) NOT NULL,
77         `role_id` int(10) NOT NULL,
78         `priority` decimal(4,0) DEFAULT NULL,
79         `app_id` int(11) NOT NULL DEFAULT 2,
80         PRIMARY KEY (`user_id`,`role_id`,`app_id`),
81         KEY `fn_user_role_role_id` (`role_id`) USING BTREE,
82         KEY `fn_user_role_user_id` (`user_id`) USING BTREE,
83         KEY `fk_fn_user__ref_178_fn_app_idx` (`app_id`),
84         CONSTRAINT `fk_fn_user__ref_172_fn_user` FOREIGN KEY (`user_id`) REFERENCES `fn_user` (`user_id`),
85         CONSTRAINT `fk_fn_user__ref_175_fn_role` FOREIGN KEY (`role_id`) REFERENCES `fn_role` (`role_id`),
86         CONSTRAINT `fk_fn_user__ref_178_fn_app` FOREIGN KEY (`app_id`) REFERENCES `fn_app` (`app_id`)
87         )
88 */
89
90 @NamedNativeQueries({
91     @NamedNativeQuery(
92         name = "FnUserRole.retrieveUserRoleOnUserIdAndRoleIdAndAppId",
93         query = "FROM FnUserRole where userId= :userId"
94             + " and role_id= :roleId"
95             + " and app_id= :appId"),
96     @NamedNativeQuery(
97         name = "FnUserRole.retrieveCachedAppRolesForUser",
98         query = "FROM FnUserRole where userId= :userId"
99             + " and userId= :userId"
100             + " and app_id= :appId"),
101     @NamedNativeQuery(
102         name = "FnUserRole.isSuperAdmin",
103         query = "SELECT"
104             + "  userId.id as userId,"
105             + "  userId.org_user_id as orgUserId,"
106             + "  userrole.ROLE_ID as roleId,"
107             + "  userrole.APP_ID as appId"
108             + " FROM"
109             + "  fn_user_role userrole"
110             + "  INNER JOIN fn_user user ON user.USER_ID = userrole.USER_ID"
111             + " WHERE"
112             + "  user.org_user_id = :orgUserId"
113             + "  AND userrole.ROLE_ID =:roleId"
114             + "  AND userrole.APP_ID =:appId",
115         resultSetMapping = "UserRole",
116         resultClass = UserRole.class
117     )
118 })
119
120 @SqlResultSetMapping(
121     name = "UserRole",
122     classes = {
123         @ConstructorResult(
124             targetClass = UserRole.class,
125             columns = {
126                 @ColumnResult(name = "userId", type = Long.class),
127                 @ColumnResult(name = "orgUserId", type = String.class),
128                 @ColumnResult(name = "roleId", type = Long.class),
129                 @ColumnResult(name = "appId", type = Long.class)
130             }
131         )
132     }
133 )
134
135 @NamedQueries({
136     @NamedQuery(
137         name = "FnUserRole.getAdminUserRoles",
138         query = "FROM FnUserRole "
139             + " WHERE  userId.id = :userId "
140             + " AND roleId.id = :roleId "
141             + " AND fnAppId.id = :appId"),
142     @NamedQuery(
143         name = "FnUserRole.retrieveByAppIdAndUserId",
144         query = "from FnUserRole where fnAppId.id =:appId and userId.id =:userId"
145     ),
146     @NamedQuery(
147         name = "FnUserRole.retrieveByAppIdAndRoleId",
148         query = "from FnUserRole where fnAppId.id =:appId and roleId.id =:roleId"
149     ),
150     @NamedQuery(
151         name = "FnUserRole.retrieveByUserIdAndRoleId",
152         query = "from FnUserRole where userId.id =:userId and roleId.id =:roleId"
153     )
154 })
155
156 @Table(
157     name = "fn_user_role",
158     indexes = {
159         @Index(name = "fn_user_role_role_id", columnList = "role_id"),
160         @Index(name = "fn_user_role_user_id", columnList = "user_id"),
161         @Index(name = "fk_fn_user__ref_178_fn_app_idx", columnList = "fn_App_Id")},
162     uniqueConstraints = {
163         @UniqueConstraint(name = "fn_user_role_id", columnNames = {"role_id", "user_id", "fn_App_Id"})
164     })
165 @NoArgsConstructor
166 @AllArgsConstructor
167 @Builder
168 @Getter
169 @Setter
170 @Entity
171 public class FnUserRole implements Serializable {
172   @Id
173   @SequenceGenerator(name = "portal_generator", sequenceName = "portal_generator", initialValue = 1000)
174   @GeneratedValue(strategy = GenerationType.AUTO)
175   @Column(name = "id", columnDefinition = "int(11) auto_increment")
176   private Long id;
177   @ManyToOne(fetch = FetchType.LAZY, cascade = CascadeType.MERGE)
178   @JoinColumn(name = "user_id", columnDefinition = "bigint")
179   @Valid
180   private FnUser userId;
181   @OneToOne(fetch = FetchType.LAZY, cascade = CascadeType.MERGE)
182   @JoinColumn(name = "role_id", columnDefinition = "bigint")
183   @Valid
184   private FnRole roleId;
185   @Column(name = "priority", length = 4, columnDefinition = "decimal(4,0) DEFAULT NULL")
186   @Digits(integer = 4, fraction = 0)
187   private Long priority;
188   @ManyToOne(cascade = CascadeType.MERGE, fetch = FetchType.LAZY)
189   @JoinColumn(name = "fn_app_id", columnDefinition = "bigint")
190   @Valid
191   private FnApp fnAppId;
192 }