com.bt.download.android.gui.httpserver.BrowseHandler.java Source code

Java tutorial

Introduction

Here is the source code for com.bt.download.android.gui.httpserver.BrowseHandler.java

Source

/*
 * Created by Angel Leon (@gubatron), Alden Torres (aldenml)
 * Copyright (c) 2011, 2012, FrostWire(TM). All rights reserved.
 *
 * 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 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package com.bt.download.android.gui.httpserver;

import java.io.IOException;
import java.util.List;
import java.util.logging.Logger;
import java.util.zip.GZIPOutputStream;

import org.apache.http.NameValuePair;
import org.apache.http.client.utils.URLEncodedUtils;

import sun.net.httpserver.Code;

import com.bt.download.android.core.FileDescriptor;
import com.bt.download.android.gui.Librarian;
import com.frostwire.util.JsonUtils;
import com.sun.net.httpserver.HttpExchange;

/**
 * @author gubatron
 * @author aldenml
 *
 */
class BrowseHandler extends AbstractHandler {

    private static final Logger LOG = Logger.getLogger(BrowseHandler.class.getName());

    @Override
    public void handle(HttpExchange exchange) throws IOException {
        assertUPnPActive();

        GZIPOutputStream os = null;

        byte type = -1;

        try {

            List<NameValuePair> query = URLEncodedUtils.parse(exchange.getRequestURI(), "UTF-8");

            for (NameValuePair item : query) {
                if (item.getName().equals("type")) {
                    type = Byte.parseByte(item.getValue());
                }
            }

            if (type == -1) {
                exchange.sendResponseHeaders(Code.HTTP_BAD_REQUEST, 0);
                return;
            }

            String response = getResponse(exchange, type);

            exchange.getResponseHeaders().set("Content-Encoding", "gzip");
            exchange.getResponseHeaders().set("Content-Type", "text/json; charset=UTF-8");
            exchange.sendResponseHeaders(Code.HTTP_OK, 0);

            os = new GZIPOutputStream(exchange.getResponseBody());

            os.write(response.getBytes("UTF-8"));
            os.finish();

        } catch (IOException e) {
            LOG.warning("Error browsing files type=" + type);
            throw e;
        } finally {
            if (os != null) {
                os.close();
            }
            exchange.close();
        }
    }

    private String getResponse(HttpExchange exchange, byte fileType) {
        List<FileDescriptor> fileDescriptors = Librarian.instance().getFiles(fileType, 0, Integer.MAX_VALUE, true);

        FileDescriptorList list = new FileDescriptorList();
        list.files = fileDescriptors;

        return JsonUtils.toJson(list);
    }

    static final class FileDescriptorList {
        public List<FileDescriptor> files;
    }
}