net.sourceforge.subsonic.service.sonos.SonosServiceRegistration.java Source code

Java tutorial

Introduction

Here is the source code for net.sourceforge.subsonic.service.sonos.SonosServiceRegistration.java

Source

/*
 * This file is part of Subsonic.
 *
 *  Subsonic 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.
 *
 *  Subsonic 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 Subsonic.  If not, see <http://www.gnu.org/licenses/>.
 *
 *  Copyright 2015 (C) Sindre Mehus
 */

package net.sourceforge.subsonic.service.sonos;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

import org.apache.http.NameValuePair;
import org.apache.http.client.HttpClient;
import org.apache.http.client.ResponseHandler;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.client.methods.HttpUriRequest;
import org.apache.http.impl.client.BasicResponseHandler;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.params.HttpConnectionParams;

import net.sourceforge.subsonic.Logger;
import net.sourceforge.subsonic.util.Pair;
import net.sourceforge.subsonic.util.StringUtil;

/**
 * @author Sindre Mehus
 * @version $Id$
 */
public class SonosServiceRegistration {

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

    public void setEnabled(String subsonicBaseUrl, String sonosControllerIp, boolean enabled,
            String sonosServiceName, int sonosServiceId) throws IOException {
        String localUrl = subsonicBaseUrl + "ws/Sonos";
        String controllerUrl = String.format("http://%s:1400/customsd", sonosControllerIp);

        LOG.info((enabled ? "Enabling" : "Disabling") + " Sonos music service, using Sonos controller IP "
                + sonosControllerIp + ", SID " + sonosServiceId + ", and Subsonic URL " + localUrl);

        List<Pair<String, String>> params = new ArrayList<Pair<String, String>>();
        params.add(Pair.create("sid", String.valueOf(sonosServiceId)));
        if (enabled) {
            params.add(Pair.create("name", sonosServiceName));
            params.add(Pair.create("uri", localUrl));
            params.add(Pair.create("secureUri", localUrl));
            params.add(Pair.create("pollInterval", "1200"));
            params.add(Pair.create("authType", "UserId"));
            params.add(Pair.create("containerType", "MService"));
            params.add(Pair.create("caps", "search"));
            params.add(Pair.create("caps", "trFavorites"));
            params.add(Pair.create("caps", "alFavorites"));
            params.add(Pair.create("caps", "ucPlaylists"));
            params.add(Pair.create("caps", "extendedMD"));
            params.add(Pair.create("presentationMapVersion", "2"));
            params.add(Pair.create("presentationMapUri", subsonicBaseUrl + "sonos/presentationMap.xml"));
            params.add(Pair.create("stringsVersion", "6"));
            params.add(Pair.create("stringsUri", subsonicBaseUrl + "sonos/strings.xml"));
        }

        String result = execute(controllerUrl, params);
        LOG.info("Sonos controller returned: " + result);
    }

    private String execute(String url, List<Pair<String, String>> parameters) throws IOException {
        List<NameValuePair> params = new ArrayList<NameValuePair>();
        for (Pair<String, String> parameter : parameters) {
            params.add(new BasicNameValuePair(parameter.getFirst(), parameter.getSecond()));
        }

        HttpPost request = new HttpPost(url);
        request.setEntity(new UrlEncodedFormEntity(params, StringUtil.ENCODING_UTF8));

        return executeRequest(request);
    }

    private String executeRequest(HttpUriRequest request) throws IOException {
        HttpClient client = new DefaultHttpClient();
        HttpConnectionParams.setConnectionTimeout(client.getParams(), 10000);
        HttpConnectionParams.setSoTimeout(client.getParams(), 10000);

        try {
            ResponseHandler<String> responseHandler = new BasicResponseHandler();
            return client.execute(request, responseHandler);

        } finally {
            client.getConnectionManager().shutdown();
        }
    }
}