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

org.restcomm.connect.http.GatewaysEndpoint Maven / Gradle / Ivy

There is a newer version: 8.4.0-227
Show newest version
package org.restcomm.connect.http;

import static javax.ws.rs.core.MediaType.APPLICATION_JSON;
import static javax.ws.rs.core.MediaType.APPLICATION_JSON_TYPE;
import static javax.ws.rs.core.MediaType.APPLICATION_XML;
import static javax.ws.rs.core.MediaType.APPLICATION_XML_TYPE;
import static javax.ws.rs.core.Response.ok;
import static javax.ws.rs.core.Response.status;
import static javax.ws.rs.core.Response.Status.BAD_REQUEST;
import static javax.ws.rs.core.Response.Status.NOT_FOUND;

import java.net.URI;
import java.util.List;

import javax.annotation.PostConstruct;
import javax.servlet.ServletContext;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.MultivaluedMap;
import javax.ws.rs.core.Response;

import org.apache.commons.configuration.Configuration;
import org.restcomm.connect.commons.annotations.concurrency.ThreadSafe;
import org.restcomm.connect.http.converter.GatewayConverter;
import org.restcomm.connect.http.converter.RestCommResponseConverter;
import org.restcomm.connect.dao.DaoManager;
import org.restcomm.connect.dao.GatewaysDao;
import org.restcomm.connect.dao.entities.Gateway;
import org.restcomm.connect.dao.entities.GatewayList;
import org.restcomm.connect.dao.entities.RestCommResponse;
import org.restcomm.connect.commons.dao.Sid;
import org.restcomm.connect.http.converter.GatewayListConverter;
import org.restcomm.connect.telephony.api.RegisterGateway;
import org.restcomm.connect.commons.util.StringUtils;

import akka.actor.ActorRef;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.thoughtworks.xstream.XStream;

@ThreadSafe
public class GatewaysEndpoint extends SecuredEndpoint {
    @Context
    protected ServletContext context;
    protected Configuration configuration;
    protected GatewaysDao dao;
    protected Gson gson;
    protected XStream xstream;
    private ActorRef proxyManager;

    public GatewaysEndpoint() {
        super();
    }

    @PostConstruct
    public void init() {
        final DaoManager storage = (DaoManager) context.getAttribute(DaoManager.class.getName());
        configuration = (Configuration) context.getAttribute(Configuration.class.getName());
        configuration = configuration.subset("runtime-settings");
        super.init(configuration);
        dao = storage.getGatewaysDao();
        final GatewayConverter converter = new GatewayConverter(configuration);
        final GsonBuilder builder = new GsonBuilder();
        builder.registerTypeAdapter(Gateway.class, converter);
        builder.setPrettyPrinting();
        gson = builder.create();
        xstream = new XStream();
        xstream.alias("RestcommResponse", RestCommResponse.class);
        xstream.registerConverter(converter);
        xstream.registerConverter(new GatewayListConverter(configuration));
        xstream.registerConverter(new RestCommResponseConverter(configuration));
        proxyManager = (ActorRef) context.getAttribute("org.restcomm.connect.telephony.proxy.ProxyManager");
    }

    private Gateway createFrom(final MultivaluedMap data) {
        final Gateway.Builder builder = Gateway.builder();
        final Sid sid = Sid.generate(Sid.Type.GATEWAY);
        builder.setSid(sid);
        String friendlyName = data.getFirst("FriendlyName");
        if (friendlyName == null || friendlyName.isEmpty()) {
            friendlyName = data.getFirst("UserName");
        }
        builder.setFriendlyName(friendlyName);
        builder.setPassword(data.getFirst("Password"));
        builder.setProxy(data.getFirst("Proxy"));
        final boolean register = Boolean.parseBoolean(data.getFirst("Register"));
        builder.setRegister(register);
        builder.setUserName(data.getFirst("UserName"));
        final int ttl = Integer.parseInt(data.getFirst("TTL"));
        builder.setTimeToLive(ttl);
        String rootUri = configuration.getString("root-uri");
        rootUri = StringUtils.addSuffixIfNotPresent(rootUri, "/");
        final StringBuilder buffer = new StringBuilder();
        buffer.append(rootUri).append(getApiVersion(data)).append("/Management/").append("Gateways/").append(sid.toString());
        builder.setUri(URI.create(buffer.toString()));
        return builder.build();
    }

    protected Response getGateway(final String accountSid, final String sid, final MediaType responseType) {
        secure(accountsDao.getAccount(accountSid), "RestComm:Read:Gateways");
        final Gateway gateway = dao.getGateway(new Sid(sid));
        if (gateway == null) {
            return status(NOT_FOUND).build();
        } else {
            if (APPLICATION_XML_TYPE == responseType) {
                final RestCommResponse response = new RestCommResponse(gateway);
                return ok(xstream.toXML(response), APPLICATION_XML).build();
            } else if (APPLICATION_JSON_TYPE == responseType) {
                return ok(gson.toJson(gateway), APPLICATION_JSON).build();
            } else {
                return null;
            }
        }
    }

    protected Response getGateways(final String accountSid, final MediaType responseType) {
        secure(accountsDao.getAccount(accountSid), "RestComm:Read:Gateways");
        final List gateways = dao.getGateways();
        if (APPLICATION_XML_TYPE == responseType) {
            final RestCommResponse response = new RestCommResponse(new GatewayList(gateways));
            return ok(xstream.toXML(response), APPLICATION_XML).build();
        } else if (APPLICATION_JSON_TYPE == responseType) {
            return ok(gson.toJson(gateways), APPLICATION_JSON).build();
        } else {
            return null;
        }
    }

    protected Response putGateway(final String accountSid, final MultivaluedMap data, final MediaType responseType) {
        secure(accountsDao.getAccount(accountSid), "RestComm:Create:Gateways");
        try {
            validate(data);
        } catch (final RuntimeException exception) {
            return status(BAD_REQUEST).entity(exception.getMessage()).build();
        }
        final Gateway gateway = createFrom(data);
        dao.addGateway(gateway);
        if (proxyManager == null) {
            proxyManager = (ActorRef) context.getAttribute("org.restcomm.connect.telephony.proxy.ProxyManager");
        }
        proxyManager.tell(new RegisterGateway(gateway), null);
        if (APPLICATION_XML_TYPE == responseType) {
            final RestCommResponse response = new RestCommResponse(gateway);
            return ok(xstream.toXML(response), APPLICATION_XML).build();
        } else if (APPLICATION_JSON_TYPE == responseType) {
            return ok(gson.toJson(gateway), APPLICATION_JSON).build();
        } else {
            return null;
        }
    }

    protected Response updateGateway(final String accountSid, final String sid, final MultivaluedMap data, final MediaType responseType) {
        secure(accountsDao.getAccount(accountSid), "RestComm:Modify:Gateways");
        Gateway gateway = dao.getGateway(new Sid(sid));
        if (gateway == null) {
            return status(NOT_FOUND).build();
        } else {
            dao.updateGateway(update(gateway, data));
            gateway = dao.getGateway(new Sid(sid));
            if (APPLICATION_XML_TYPE == responseType) {
                final RestCommResponse response = new RestCommResponse(gateway);
                return ok(xstream.toXML(response), APPLICATION_XML).build();
            } else if (APPLICATION_JSON_TYPE == responseType) {
                return ok(gson.toJson(gateway), APPLICATION_JSON).build();
            } else {
                return null;
            }
        }
    }

    private void validate(final MultivaluedMap data) {
        if (!data.containsKey("UserName")) {
            throw new NullPointerException("UserName can not be null.");
        } else if (!data.containsKey("Password")) {
            throw new NullPointerException("Password can not be null.");
        } else if (!data.containsKey("Proxy")) {
            throw new NullPointerException("The Proxy can not be null");
        } else if (!data.containsKey("Register")) {
            throw new NullPointerException("Register must be true or false");
        }
    }

    private Gateway update(final Gateway gateway, final MultivaluedMap data) {
        Gateway result = gateway;
        if (data.containsKey("FriendlyName")) {
            result = result.setFriendlyName(data.getFirst("FriendlyName"));
        }
        if (data.containsKey("UserName")) {
            result = result.setUserName(data.getFirst("UserName"));
        }
        if (data.containsKey("Password")) {
            result = result.setPassword(data.getFirst("Password"));
        }
        if (data.containsKey("Proxy")) {
            result = result.setProxy(data.getFirst("Proxy"));
        }
        if (data.containsKey("Register")) {
            result = result.setRegister(Boolean.parseBoolean("Register"));
        }
        if (data.containsKey("TTL")) {
            result = result.setTimeToLive(Integer.parseInt(data.getFirst("TTL")));
        }
        return result;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy