All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.restcomm.connect.dao.mybatis.MybatisHttpCookiesDao Maven / Gradle / Ivy

There is a newer version: 8.4.0-227
Show newest version
/*
 * TeleStax, Open Source Cloud Communications
 * Copyright 2011-2014, Telestax Inc and individual contributors
 * by the @authors tag.
 *
 * This program is free software: you can redistribute it and/or modify
 * under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation; either version 3 of
 * the License, or (at your option) any later version.
 *
 * 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see 
 *
 */
package org.restcomm.connect.dao.mybatis;

import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.apache.http.cookie.Cookie;
import org.apache.http.impl.cookie.BasicClientCookie;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;

import org.restcomm.connect.dao.DaoUtils;
import org.restcomm.connect.dao.HttpCookiesDao;
import org.restcomm.connect.commons.dao.Sid;

/**
 * @author [email protected] (Thomas Quintana)
 */
public final class MybatisHttpCookiesDao implements HttpCookiesDao {
    private static final String namespace = "org.mobicents.servlet.sip.restcomm.dao.HttpCookiesDao.";

    private final SqlSessionFactory sessions;

    public MybatisHttpCookiesDao(final SqlSessionFactory sessions) {
        super();
        this.sessions = sessions;
    }

    @Override
    public void addCookie(final Sid sid, final Cookie cookie) {
        final SqlSession session = sessions.openSession();
        try {
            session.insert(namespace + "addCookie", toMap(sid, cookie));
            session.commit();
        } finally {
            session.close();
        }
    }

    @Override
    public List getCookies(final Sid sid) {
        final SqlSession session = sessions.openSession();
        try {
            final List> results = session.selectList(namespace + "getCookies", sid.toString());
            final List cookies = new ArrayList();
            if (results != null && !results.isEmpty()) {
                for (final Map result : results) {
                    cookies.add(toCookie(result));
                }
            }
            return cookies;
        } finally {
            session.close();
        }
    }

    @Override
    public boolean hasCookie(final Sid sid, final Cookie cookie) {
        final SqlSession session = sessions.openSession();
        try {
            final Integer result = session.selectOne(namespace + "hasCookie", toMap(sid, cookie));
            if (result > 0) {
                return true;
            } else {
                return false;
            }
        } finally {
            session.close();
        }
    }

    @Override
    public boolean hasExpiredCookies(final Sid sid) {
        final SqlSession session = sessions.openSession();
        try {
            final Integer result = session.selectOne(namespace + "hasExpiredCookies", sid.toString());
            if (result > 0) {
                return true;
            } else {
                return false;
            }
        } finally {
            session.close();
        }
    }

    @Override
    public void removeCookies(final Sid sid) {
        final SqlSession session = sessions.openSession();
        try {
            session.delete(namespace + "removeCookies", sid.toString());
            session.commit();
        } finally {
            session.close();
        }
    }

    @Override
    public void removeExpiredCookies(final Sid sid) {
        final SqlSession session = sessions.openSession();
        try {
            session.delete(namespace + "removeExpiredCookies", sid.toString());
            session.commit();
        } finally {
            session.close();
        }
    }

    @Override
    public void updateCookie(final Sid sid, final Cookie cookie) {
        final SqlSession session = sessions.openSession();
        try {
            session.update(namespace + "updateCookie", toMap(sid, cookie));
            session.commit();
        } finally {
            session.close();
        }
    }

    private Cookie toCookie(final Map map) {
        final String comment = DaoUtils.readString(map.get("comment"));
        final String domain = DaoUtils.readString(map.get("domain"));
        final Date expirationDate = (Date) map.get("expiration_date");
        final String name = DaoUtils.readString(map.get("name"));
        final String path = DaoUtils.readString(map.get("path"));
        final String value = DaoUtils.readString(map.get("value"));
        final int version = DaoUtils.readInteger(map.get("version"));
        final BasicClientCookie cookie = new BasicClientCookie(name, value);
        cookie.setComment(comment);
        cookie.setDomain(domain);
        cookie.setExpiryDate(expirationDate);
        cookie.setPath(path);
        cookie.setVersion(version);
        return cookie;
    }

    private Map toMap(final Sid sid, final Cookie cookie) {
        final Map map = new HashMap();
        map.put("sid", DaoUtils.writeSid(sid));
        map.put("comment", cookie.getComment());
        map.put("domain", cookie.getDomain());
        map.put("expiration_date", cookie.getExpiryDate());
        map.put("name", cookie.getName());
        map.put("path", cookie.getPath());
        map.put("value", cookie.getValue());
        map.put("version", cookie.getVersion());
        return map;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy