aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/github/daneren2005/dsub/service/Scrobbler.java
blob: c7ad639ecb906c5b2cfa4d74efbfdb8d93888b45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package github.daneren2005.dsub.service;

import android.content.Context;
import android.util.Log;

import github.daneren2005.dsub.domain.InternetRadioStation;
import github.daneren2005.dsub.domain.MusicDirectory;
import github.daneren2005.dsub.domain.PodcastEpisode;
import github.daneren2005.dsub.util.SilentBackgroundTask;
import github.daneren2005.dsub.util.SongDBHandler;
import github.daneren2005.dsub.util.Util;

/**
 * Scrobbles played songs to Last.fm.
 *
 * @author Sindre Mehus
 * @version $Id$
 */
public class Scrobbler {
	private static final String TAG = Scrobbler.class.getSimpleName();
	private static final int FOUR_MINUTES = 4 * 60 * 1000;

	private String lastSubmission;
	private String lastNowPlaying;

	public void conditionalScrobble(Context context, DownloadFile song, int playerPosition, int duration, boolean isPastCutoff) {
		// More than 4 minutes
		if(playerPosition > FOUR_MINUTES) {
			scrobble(context, song, true, isPastCutoff);
		}
		// More than 50% played
		else if(duration > 0 && playerPosition > (duration / 2)) {
			scrobble(context, song, true, isPastCutoff);
		}
	}

	public void scrobble(final Context context, final DownloadFile song, final boolean submission, final boolean isPastCutoff) {
		if(song == null) {
			return;
		}

		final String id = song.getSong().getId();
		// Avoid duplicate registrations.
		if (submission && id.equals(lastSubmission)) {
			return;
		}
		if (!submission && id.equals(lastNowPlaying)) {
			return;
		}

		if (submission) {
			lastSubmission = id;
		} else {
			lastNowPlaying = id;
		}

		new SilentBackgroundTask<Void>(context) {
			@Override
			protected Void doInBackground() {
				if(isPastCutoff) {
					SongDBHandler.getHandler(context).setSongPlayed(song, submission);
				}

				// Scrobbling disabled
				if (!Util.isScrobblingEnabled(context)) {
					return null;
				}
				// Ignore if online with no network access
				else if(!Util.isOffline(context) && !Util.isNetworkConnected(context)) {
					return null;
				}
				// Ignore podcasts
				else if(song.getSong() instanceof PodcastEpisode || song.getSong() instanceof InternetRadioStation) {
					return null;
				}

				// Ignore songs which are under 30 seconds per Last.FM guidelines
				Integer duration = song.getSong().getDuration();
				if(duration != null && duration > 0 && duration < 30) {
					return null;
				}

				MusicService service = MusicServiceFactory.getMusicService(context);
				try {
					service.scrobble(id, submission, context, null);
					Log.i(TAG, "Scrobbled '" + (submission ? "submission" : "now playing") + "' for " + song);
				} catch (Exception x) {
					Log.i(TAG, "Failed to scrobble'" + (submission ? "submission" : "now playing") + "' for " + song, x);
				}
				return null;
			}
		}.execute();
	}
}