Java tutorial
/******************************************************************************* * Copyright 2018 Johns Hopkins University * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * This software was produced as part of the RMap Project (http://rmap-project.info), * The RMap Project was funded by the Alfred P. Sloan Foundation and is a * collaboration between Data Conservancy, Portico, and IEEE. *******************************************************************************/ package info.rmapproject.auth.dao; import java.util.List; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.query.Query; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Repository; import info.rmapproject.auth.exception.RMapAuthException; import info.rmapproject.auth.model.UserIdentityProvider; /** * Implementation of UserIdProviderDao used to interact with data in the UserIdProvider table * @author khanson * */ @Repository("userIdProviderDao") public class UserIdProviderDaoImpl implements UserIdProviderDao { private static final Logger LOG = LoggerFactory.getLogger(UserIdProviderDaoImpl.class); /** * Data base session factory instance */ @Autowired private SessionFactory sessionFactory; /* (non-Javadoc) * @see info.rmapproject.auth.dao.UserIdProviderDao#addUserIdProvider(UserIdentityProvider) */ @Override public int addUserIdProvider(UserIdentityProvider userIdProvider) throws RMapAuthException { Session session = this.sessionFactory.getCurrentSession(); session.persist(userIdProvider); LOG.info("User ID Provider record saved successfully. Details={}", userIdProvider); return userIdProvider.getUserIdentityProviderId(); } /* (non-Javadoc) * @see info.rmapproject.auth.dao.UserIdProviderDao#updateUserIdProvider(UserIdentityProvider) */ @Override public void updateUserIdProvider(UserIdentityProvider userIdProvider) throws RMapAuthException { Session session = this.sessionFactory.getCurrentSession(); session.update(userIdProvider); LOG.info("User record updated successfully, Details={}", userIdProvider); } /* (non-Javadoc) * @see info.rmapproject.auth.dao.UserIdProviderDao#getUserIdProvider(String,String) */ @Override @SuppressWarnings("unchecked") public UserIdentityProvider getUserIdProvider(String idProviderUrl, String providerAccountId) throws RMapAuthException { Session session = this.sessionFactory.getCurrentSession(); Query<UserIdentityProvider> query = session.createQuery("from UserIdentityProvider " + " where identityProvider=:providerUrl " + " and providerAccountId=:accountId"); query.setParameter("providerUrl", idProviderUrl); query.setParameter("accountId", providerAccountId); List<UserIdentityProvider> userIdProvider = query.list(); if (userIdProvider != null && !userIdProvider.isEmpty()) { LOG.info("User Identity Provider loaded successfully"); return userIdProvider.get(0); } else { return null; } } /* (non-Javadoc) * @see info.rmapproject.auth.dao.UserIdProviderDao#getUserIdProviders(int) */ @Override @SuppressWarnings("unchecked") public List<UserIdentityProvider> getUserIdProviders(int userId) throws RMapAuthException { Session session = this.sessionFactory.getCurrentSession(); Query<UserIdentityProvider> query = session.createQuery("from UserIdentityProvider where userId=:userId"); query.setParameter("userId", userId); List<UserIdentityProvider> userIdProviders = query.list(); LOG.info("User identity provider list loaded successfully"); return userIdProviders; } }