Package com.github.hakko.musiccabinet.ws.lastfm

Source Code of com.github.hakko.musiccabinet.ws.lastfm.ScrobbleClient

package com.github.hakko.musiccabinet.ws.lastfm;

import java.util.List;

import org.apache.http.NameValuePair;
import org.apache.http.message.BasicNameValuePair;

import com.github.hakko.musiccabinet.domain.model.aggr.Scrobble;
import com.github.hakko.musiccabinet.exception.ApplicationException;

public class ScrobbleClient extends AbstractWSPostClient {

  public static final String METHOD = "track.scrobble";
 
  public WSResponse scrobble(Scrobble scrobble) throws ApplicationException {
    List<NameValuePair> params = getDefaultParameterList();
    params.add(new BasicNameValuePair(PARAM_METHOD, METHOD));
    params.add(new BasicNameValuePair(PARAM_ARTIST, scrobble.getTrack().getMetaData().getArtist()));
    params.add(new BasicNameValuePair(PARAM_TRACK, scrobble.getTrack().getName()));
    params.add(new BasicNameValuePair(PARAM_TIMESTAMP, ""+(scrobble.getStartTime().getMillis()/1000)));
    params.add(new BasicNameValuePair(PARAM_ALBUM, scrobble.getTrack().getMetaData().getAlbum()));
    params.add(new BasicNameValuePair(PARAM_SK, scrobble.getLastFmUser().getSessionKey()));
   
    return executeWSRequest(params);
  }
 
}
TOP

Related Classes of com.github.hakko.musiccabinet.ws.lastfm.ScrobbleClient

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.