com.openkm.dao.MimeTypeDAO.java Source code

Java tutorial

Introduction

Here is the source code for com.openkm.dao.MimeTypeDAO.java

Source

/**
 * OpenKM, Open Document Management System (http://www.openkm.com)
 * Copyright (c) 2006-2017  Paco Avila & Josep Llort
 * <p>
 * No bytes were intentionally harmed during the development of this application.
 * <p>
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 * <p>
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * <p>
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

package com.openkm.dao;

import com.openkm.core.DatabaseException;
import com.openkm.dao.bean.MimeType;
import org.hibernate.*;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.List;

public class MimeTypeDAO {
    private static Logger log = LoggerFactory.getLogger(MimeTypeDAO.class);

    private MimeTypeDAO() {
    }

    /**
     * Create
     */
    public static long create(MimeType mt) throws DatabaseException {
        log.debug("create({})", mt);
        Session session = null;
        Transaction tx = null;

        try {
            session = HibernateUtil.getSessionFactory().openSession();
            tx = session.beginTransaction();
            Long id = (Long) session.save(mt);
            MimeType mtTmp = (MimeType) session.load(MimeType.class, id);

            for (String extensions : mt.getExtensions()) {
                mtTmp.getExtensions().add(extensions);
            }

            HibernateUtil.commit(tx);
            log.debug("create: {}", id);
            return id;
        } catch (HibernateException e) {
            HibernateUtil.rollback(tx);
            throw new DatabaseException(e.getMessage(), e);
        } finally {
            HibernateUtil.close(session);
        }
    }

    /**
     * Update
     */
    public static void update(MimeType mt) throws DatabaseException {
        log.debug("update({})", mt);
        String qs = "select mt.imageContent, mt.imageMime from MimeType mt where mt.id=:id";
        Session session = null;
        Transaction tx = null;

        try {
            session = HibernateUtil.getSessionFactory().openSession();
            tx = session.beginTransaction();

            if (mt.getImageContent() == null || mt.getImageContent().length() == 0) {
                Query q = session.createQuery(qs);
                q.setParameter("id", mt.getId());
                Object[] data = (Object[]) q.setMaxResults(1).uniqueResult();
                mt.setImageContent((String) data[0]);
                mt.setImageMime((String) data[1]);
            }

            session.update(mt);
            HibernateUtil.commit(tx);
        } catch (HibernateException e) {
            HibernateUtil.rollback(tx);
            throw new DatabaseException(e.getMessage(), e);
        } finally {
            HibernateUtil.close(session);
        }

        log.debug("update: void");
    }

    /**
     * Delete
     */
    public static void delete(long mtId) throws DatabaseException {
        log.debug("delete({})", mtId);
        Session session = null;
        Transaction tx = null;

        try {
            session = HibernateUtil.getSessionFactory().openSession();
            tx = session.beginTransaction();
            MimeType mt = (MimeType) session.load(MimeType.class, mtId);
            session.delete(mt);
            HibernateUtil.commit(tx);
        } catch (HibernateException e) {
            HibernateUtil.rollback(tx);
            throw new DatabaseException(e.getMessage(), e);
        } finally {
            HibernateUtil.close(session);
        }

        log.debug("delete: void");
    }

    /**
     * Delete all
     */
    @SuppressWarnings("unchecked")
    public static void deleteAll() throws DatabaseException {
        log.debug("deleteAll()");
        String qs = "from MimeType";
        Session session = null;
        Transaction tx = null;

        try {
            session = HibernateUtil.getSessionFactory().openSession();
            tx = session.beginTransaction();
            List<MimeType> ret = session.createQuery(qs).list();

            for (MimeType mt : ret) {
                session.delete(mt);
            }

            HibernateUtil.commit(tx);
        } catch (HibernateException e) {
            HibernateUtil.rollback(tx);
            throw new DatabaseException(e.getMessage(), e);
        } finally {
            HibernateUtil.close(session);
        }

        log.debug("deleteAll: void");
    }

    /**
     * Find by pk
     */
    public static MimeType findByPk(long mtId) throws DatabaseException {
        log.debug("findByPk({})", mtId);
        Session session = null;
        Transaction tx = null;

        try {
            session = HibernateUtil.getSessionFactory().openSession();
            tx = session.beginTransaction();
            MimeType ret = (MimeType) session.load(MimeType.class, mtId);
            Hibernate.initialize(ret);
            HibernateUtil.commit(tx);
            log.debug("findByPk: {}", ret);
            return ret;
        } catch (HibernateException e) {
            HibernateUtil.rollback(tx);
            throw new DatabaseException(e.getMessage(), e);
        } finally {
            HibernateUtil.close(session);
        }
    }

    /**
     * Find by pk
     *
     * @param sort Can be "mt.id" or "mt.name".
     */
    @SuppressWarnings("unchecked")
    public static List<MimeType> findAll(String sort) throws DatabaseException {
        log.debug("findAll()");
        String qs = "from MimeType mt order by " + sort;
        Session session = null;
        Transaction tx = null;

        try {
            session = HibernateUtil.getSessionFactory().openSession();
            tx = session.beginTransaction();
            Query q = session.createQuery(qs).setCacheable(true);
            List<MimeType> ret = q.list();
            HibernateUtil.commit(tx);
            log.debug("findAll: {}", ret);
            return ret;
        } catch (HibernateException e) {
            HibernateUtil.rollback(tx);
            throw new DatabaseException(e.getMessage(), e);
        } finally {
            HibernateUtil.close(session);
        }
    }

    /**
     * Find by search.
     */
    @SuppressWarnings("unchecked")
    public static List<MimeType> findBySearch() throws DatabaseException {
        log.debug("findAll()");
        String qs = "from MimeType mt where mt.search=:search order by mt.description";
        Session session = null;
        Transaction tx = null;

        try {
            session = HibernateUtil.getSessionFactory().openSession();
            tx = session.beginTransaction();
            Query q = session.createQuery(qs).setCacheable(true);
            q.setBoolean("search", true);
            List<MimeType> ret = q.list();
            HibernateUtil.commit(tx);
            log.debug("findAll: {}", ret);
            return ret;
        } catch (HibernateException e) {
            HibernateUtil.rollback(tx);
            throw new DatabaseException(e.getMessage(), e);
        } finally {
            HibernateUtil.close(session);
        }
    }

    /**
     * Find by name
     */
    public static MimeType findByName(String name) throws DatabaseException {
        log.debug("findByName({})", name);
        String qs = "from MimeType mt where mt.name=:name";
        Session session = null;
        Transaction tx = null;

        try {
            session = HibernateUtil.getSessionFactory().openSession();
            tx = session.beginTransaction();
            Query q = session.createQuery(qs);
            q.setString("name", name);
            MimeType ret = (MimeType) q.setMaxResults(1).uniqueResult();
            HibernateUtil.commit(tx);
            log.debug("findByName: {}", ret);
            return ret;
        } catch (HibernateException e) {
            HibernateUtil.rollback(tx);
            throw new DatabaseException(e.getMessage(), e);
        } finally {
            HibernateUtil.close(session);
        }
    }
}