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

org.cricketmsf.microsite.auth.Exchange Maven / Gradle / Ivy

/*
 * Copyright 2017 Grzegorz Skorupa .
 * 
 * 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.
 */
package org.cricketmsf.microsite.auth;

import com.sun.net.httpserver.Headers;
import com.sun.net.httpserver.HttpContext;
import com.sun.net.httpserver.HttpExchange;
import com.sun.net.httpserver.HttpPrincipal;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.InetSocketAddress;
import java.net.URI;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.cricketmsf.microsite.user.User;

public class Exchange extends HttpExchange {

    private HttpExchange httpExchange;
    private Map> headers;
    private Map attributes;

    public Exchange(HttpExchange httpExchange, User user, User issuer) {
        this.httpExchange = httpExchange;
        attributes = new HashMap();
        attributes.put("parameters", httpExchange.getAttribute("parameters"));
        attributes.put("body", httpExchange.getAttribute("body"));
        headers = httpExchange.getRequestHeaders();
        if (null != user) {
            ArrayList al = new ArrayList<>();
            al.add(user.getUid());
            headers.put("X-user-id", al);
            List roles = new ArrayList<>();
            List types = new ArrayList<>();
            List tokens = new ArrayList<>();
            types.add("" + user.getType());
            String sessionToken=user.getSessionToken();
            if(null!=sessionToken){
                tokens.add(sessionToken);
            }
            if (issuer != null) {
                ArrayList al2 = new ArrayList<>();
                al2.add(issuer.getUid());
                headers.put("X-issuer-id", al2);
                headers.put("X-issuer-organization", Arrays.asList(("" + issuer.getOrganization()).split(";")));
                roles.add("guest");
            } else {
                try {
                    roles = Arrays.asList(user.getRole().split(","));
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
            headers.put("X-user-role", roles);
            headers.put("X-user-type", types);
            headers.put("X-user-organization", Arrays.asList(("" + user.getOrganization()).split(";")));
            headers.put("X-user-token",tokens);
        }
    }

    @Override
    public Headers getRequestHeaders() {
        return (Headers) headers;
    }

    @Override
    public Headers getResponseHeaders() {
        return httpExchange.getResponseHeaders();
    }

    @Override
    public URI getRequestURI() {
        return httpExchange.getRequestURI();
    }

    @Override
    public String getRequestMethod() {
        return httpExchange.getRequestMethod();
    }

    @Override
    public HttpContext getHttpContext() {
        return httpExchange.getHttpContext();
    }

    @Override
    public void close() {
        httpExchange.close();
        // httpExchange = null;
        headers = null;
        attributes = null;
    }

    @Override
    public InputStream getRequestBody() {
        return httpExchange.getRequestBody();
    }

    @Override
    public OutputStream getResponseBody() {
        return httpExchange.getResponseBody();
    }

    @Override
    public void sendResponseHeaders(int i, long l) throws IOException {
        httpExchange.sendResponseHeaders(i, l);
    }

    @Override
    public InetSocketAddress getRemoteAddress() {
        return httpExchange.getRemoteAddress();
    }

    @Override
    public int getResponseCode() {
        return httpExchange.getResponseCode();
    }

    @Override
    public InetSocketAddress getLocalAddress() {
        return httpExchange.getLocalAddress();
    }

    @Override
    public String getProtocol() {
        return httpExchange.getProtocol();
    }

    @Override
    public Object getAttribute(String string) {
        // return httpExchange.getAttribute(string);
        return attributes.get(string);
    }

    @Override
    public void setAttribute(String string, Object o) {
        // httpExchange.setAttribute(string, o);
        attributes.put(string, o);
    }

    @Override
    public void setStreams(InputStream in, OutputStream out) {
        httpExchange.setStreams(in, out);
    }

    @Override
    public HttpPrincipal getPrincipal() {
        return httpExchange.getPrincipal();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy