use of org.apache.airavata.registry.core.app.catalog.model.UserResourceProfile in project airavata by apache.
the class UserResourceProfileResource method get.
public List<AppCatalogResource> get(String fieldName, Object value) throws AppCatalogException {
List<AppCatalogResource> userResourceProfileResources = new ArrayList<AppCatalogResource>();
EntityManager em = null;
CompositeIdentifier ids;
if (value instanceof CompositeIdentifier) {
ids = (CompositeIdentifier) value;
} else {
logger.error("Identifier should be a instance of CompositeIdentifier class");
throw new AppCatalogException("Identifier should be a instance of CompositeIdentifier class");
}
try {
em = AppCatalogJPAUtils.getEntityManager();
em.getTransaction().begin();
Query q;
AppCatalogQueryGenerator generator = new AppCatalogQueryGenerator(USER_RESOURCE_PROFILE);
List results;
if (fieldName.equals(UserResourceProfileConstants.USER_ID)) {
generator.setParameter(UserStoragePreferenceConstants.USER_ID, ids.getTopLevelIdentifier().toString());
generator.setParameter(UserStoragePreferenceConstants.GATEWAY_ID, ids.getSecondLevelIdentifier().toString());
q = generator.selectQuery(em);
results = q.getResultList();
if (results.size() != 0) {
for (Object result : results) {
UserResourceProfile userResourceProfile = (UserResourceProfile) result;
UserResourceProfileResource userResourceProfileResource = (UserResourceProfileResource) AppCatalogJPAUtils.getResource(AppCatalogResourceType.USER_RESOURCE_PROFILE, userResourceProfile);
userResourceProfileResources.add(userResourceProfileResource);
}
}
} else {
em.getTransaction().commit();
if (em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
logger.error("Unsupported field name for User Resource Profile resource.", new IllegalArgumentException());
throw new IllegalArgumentException("Unsupported field name for User Resource Profile resource.");
}
em.getTransaction().commit();
if (em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
} catch (Exception e) {
logger.error(e.getMessage(), e);
throw new AppCatalogException(e);
} finally {
if (em != null && em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
}
return userResourceProfileResources;
}
use of org.apache.airavata.registry.core.app.catalog.model.UserResourceProfile in project airavata by apache.
the class UserResourceProfileResource method get.
public AppCatalogResource get(Object identifier) throws AppCatalogException {
EntityManager em = null;
CompositeIdentifier ids;
if (identifier instanceof CompositeIdentifier) {
ids = (CompositeIdentifier) identifier;
} else {
logger.error("Identifier should be a instance of CompositeIdentifier class");
throw new AppCatalogException("Identifier should be a instance of CompositeIdentifier class");
}
try {
em = AppCatalogJPAUtils.getEntityManager();
em.getTransaction().begin();
AppCatalogQueryGenerator generator = new AppCatalogQueryGenerator(USER_RESOURCE_PROFILE);
generator.setParameter(UserResourceProfileConstants.USER_ID, ids.getTopLevelIdentifier().toString());
generator.setParameter(UserResourceProfileConstants.GATEWAY_ID, ids.getSecondLevelIdentifier().toString());
Query q = generator.selectQuery(em);
if (q.getResultList().size() != 0) {
UserResourceProfile userResourceProfile = (UserResourceProfile) q.getSingleResult();
UserResourceProfileResource userResourceProfileResource = (UserResourceProfileResource) AppCatalogJPAUtils.getResource(AppCatalogResourceType.USER_RESOURCE_PROFILE, userResourceProfile);
em.getTransaction().commit();
if (em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
userResourceProfileResource.setUserId(ids.getTopLevelIdentifier().toString());
return userResourceProfileResource;
} else {
return null;
}
} catch (ApplicationSettingsException e) {
logger.error(e.getMessage(), e);
throw new AppCatalogException(e);
} finally {
if (em != null && em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
}
}
use of org.apache.airavata.registry.core.app.catalog.model.UserResourceProfile in project airavata by apache.
the class UserResourceProfileResource method getAll.
@Override
public List<AppCatalogResource> getAll() throws AppCatalogException {
List<AppCatalogResource> resourceList = new ArrayList<AppCatalogResource>();
EntityManager em = null;
try {
em = AppCatalogJPAUtils.getEntityManager();
em.getTransaction().begin();
AppCatalogQueryGenerator generator = new AppCatalogQueryGenerator(USER_RESOURCE_PROFILE);
Query q = generator.selectQuery(em);
List results = q.getResultList();
if (results.size() != 0) {
for (Object result : results) {
UserResourceProfile userResourceProfile = (UserResourceProfile) result;
UserResourceProfileResource userResourceProfileResource = (UserResourceProfileResource) AppCatalogJPAUtils.getResource(AppCatalogResourceType.USER_RESOURCE_PROFILE, userResourceProfile);
resourceList.add(userResourceProfileResource);
}
}
em.getTransaction().commit();
if (em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
} catch (Exception e) {
logger.error(e.getMessage(), e);
throw new AppCatalogException(e);
} finally {
if (em != null && em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
}
return resourceList;
}
use of org.apache.airavata.registry.core.app.catalog.model.UserResourceProfile in project airavata by apache.
the class UserResourceProfileResource method save.
public void save() throws AppCatalogException {
EntityManager em = null;
try {
em = AppCatalogJPAUtils.getEntityManager();
UserResourceProfile existingUserResourceProfile = em.find(UserResourceProfile.class, new UserResourceProfilePK(userId, gatewayID));
if (em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
em = AppCatalogJPAUtils.getEntityManager();
em.getTransaction().begin();
if (existingUserResourceProfile != null) {
existingUserResourceProfile.setUpdateTime(AiravataUtils.getCurrentTimestamp());
if (credentialStoreToken != null) {
existingUserResourceProfile.setCredentialStoreToken(credentialStoreToken);
}
if (identityServerTenant != null) {
existingUserResourceProfile.setIdentityServerTenant(identityServerTenant);
}
if (identityServerPwdCredToken != null) {
existingUserResourceProfile.setIdentityServerPwdCredToken(identityServerPwdCredToken);
}
em.merge(existingUserResourceProfile);
} else {
UserResourceProfile userResourceProfile = new UserResourceProfile();
userResourceProfile.setGatewayID(gatewayID);
userResourceProfile.setUserId(userId);
userResourceProfile.setCreationTime(AiravataUtils.getCurrentTimestamp());
if (credentialStoreToken != null) {
userResourceProfile.setCredentialStoreToken(credentialStoreToken);
}
if (identityServerTenant != null) {
userResourceProfile.setIdentityServerTenant(identityServerTenant);
}
if (identityServerPwdCredToken != null) {
userResourceProfile.setIdentityServerPwdCredToken(identityServerPwdCredToken);
}
em.persist(userResourceProfile);
}
em.getTransaction().commit();
if (em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
} catch (Exception e) {
logger.error(e.getMessage(), e);
throw new AppCatalogException(e);
} finally {
if (em != null && em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
}
}
use of org.apache.airavata.registry.core.app.catalog.model.UserResourceProfile in project airavata by apache.
the class UserResourceProfileResource method getIds.
public List<String> getIds(String userId, Object value) throws AppCatalogException {
List<String> userResourceProfileResourceIDs = new ArrayList<String>();
EntityManager em = null;
HashMap<String, String> ids;
if (value instanceof Map) {
ids = (HashMap) value;
} else {
logger.error("Identifier should be a map with the field name and it's value");
throw new AppCatalogException("Identifier should be a map with the field name and it's value");
}
try {
em = AppCatalogJPAUtils.getEntityManager();
em.getTransaction().begin();
Query q;
AppCatalogQueryGenerator generator = new AppCatalogQueryGenerator(USER_RESOURCE_PROFILE);
List results;
if (userId.equals(UserResourceProfileConstants.USER_ID)) {
generator.setParameter(UserResourceProfileConstants.USER_ID, ids.get(UserResourceProfileConstants.USER_ID));
q = generator.selectQuery(em);
results = q.getResultList();
if (results.size() != 0) {
for (Object result : results) {
UserResourceProfile userResourceProfile = (UserResourceProfile) result;
userResourceProfileResourceIDs.add(userResourceProfile.getUserID());
}
}
} else {
em.getTransaction().commit();
if (em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
logger.error("Unsupported field name for User Resource Profile resource.", new IllegalArgumentException());
throw new IllegalArgumentException("Unsupported field name for User Resource Profile resource.");
}
em.getTransaction().commit();
if (em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
} catch (Exception e) {
logger.error(e.getMessage(), e);
throw new AppCatalogException(e);
} finally {
if (em != null && em.isOpen()) {
if (em.getTransaction().isActive()) {
em.getTransaction().rollback();
}
em.close();
}
}
return userResourceProfileResourceIDs;
}
Aggregations