mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-01 01:53:31 +00:00
226 lines
8.1 KiB
Java
226 lines
8.1 KiB
Java
package com.cappielloantonio.tempo.util;
|
|
|
|
import android.content.Context;
|
|
import android.net.ConnectivityManager;
|
|
import android.net.Network;
|
|
import android.net.NetworkCapabilities;
|
|
import android.net.Uri;
|
|
import android.text.Html;
|
|
import android.util.Log;
|
|
|
|
import com.cappielloantonio.tempo.App;
|
|
import com.cappielloantonio.tempo.R;
|
|
import com.cappielloantonio.tempo.subsonic.models.Child;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.Locale;
|
|
import java.util.Map;
|
|
import java.util.stream.Collectors;
|
|
|
|
public class MusicUtil {
|
|
private static final String TAG = "MusicUtil";
|
|
|
|
public static Uri getStreamUri(String id) {
|
|
Map<String, String> params = App.getSubsonicClientInstance(false).getParams();
|
|
|
|
StringBuilder uri = new StringBuilder();
|
|
|
|
uri.append(App.getSubsonicClientInstance(false).getUrl());
|
|
uri.append("stream");
|
|
|
|
if (params.containsKey("u") && params.get("u") != null)
|
|
uri.append("?u=").append(params.get("u"));
|
|
if (params.containsKey("p") && params.get("p") != null)
|
|
uri.append("&p=").append(params.get("p"));
|
|
if (params.containsKey("s") && params.get("s") != null)
|
|
uri.append("&s=").append(params.get("s"));
|
|
if (params.containsKey("t") && params.get("t") != null)
|
|
uri.append("&t=").append(params.get("t"));
|
|
if (params.containsKey("v") && params.get("v") != null)
|
|
uri.append("&v=").append(params.get("v"));
|
|
if (params.containsKey("c") && params.get("c") != null)
|
|
uri.append("&c=").append(params.get("c"));
|
|
|
|
if (!Preferences.isServerPrioritized())
|
|
uri.append("&maxBitRate=").append(getBitratePreference());
|
|
if (!Preferences.isServerPrioritized())
|
|
uri.append("&format=").append(getTranscodingFormatPreference());
|
|
|
|
uri.append("&id=").append(id);
|
|
|
|
Log.d(TAG, "getStreamUri: " + uri);
|
|
|
|
return Uri.parse(uri.toString());
|
|
}
|
|
|
|
public static Uri getDownloadUri(String id) {
|
|
Map<String, String> params = App.getSubsonicClientInstance(false).getParams();
|
|
|
|
StringBuilder uri = new StringBuilder();
|
|
|
|
uri.append(App.getSubsonicClientInstance(false).getUrl());
|
|
uri.append("download");
|
|
|
|
if (params.containsKey("u") && params.get("u") != null)
|
|
uri.append("?u=").append(params.get("u"));
|
|
if (params.containsKey("p") && params.get("p") != null)
|
|
uri.append("&p=").append(params.get("p"));
|
|
if (params.containsKey("s") && params.get("s") != null)
|
|
uri.append("&s=").append(params.get("s"));
|
|
if (params.containsKey("t") && params.get("t") != null)
|
|
uri.append("&t=").append(params.get("t"));
|
|
if (params.containsKey("v") && params.get("v") != null)
|
|
uri.append("&v=").append(params.get("v"));
|
|
if (params.containsKey("c") && params.get("c") != null)
|
|
uri.append("&c=").append(params.get("c"));
|
|
|
|
uri.append("&id=").append(id);
|
|
|
|
Log.d(TAG, "getDownloadUri: " + uri);
|
|
|
|
return Uri.parse(uri.toString());
|
|
}
|
|
|
|
public static String getReadableDurationString(long duration, boolean millis) {
|
|
long minutes;
|
|
long seconds;
|
|
|
|
if (millis) {
|
|
minutes = (duration / 1000) / 60;
|
|
seconds = (duration / 1000) % 60;
|
|
} else {
|
|
minutes = duration / 60;
|
|
seconds = duration % 60;
|
|
}
|
|
|
|
if (minutes < 60) {
|
|
return String.format(Locale.getDefault(), "%01d:%02d", minutes, seconds);
|
|
} else {
|
|
long hours = minutes / 60;
|
|
minutes = minutes % 60;
|
|
return String.format(Locale.getDefault(), "%d:%02d:%02d", hours, minutes, seconds);
|
|
}
|
|
}
|
|
|
|
public static String getReadablePodcastDurationString(long duration) {
|
|
long minutes = duration / 60;
|
|
|
|
if (minutes < 60) {
|
|
return String.format(Locale.getDefault(), "%01d min", minutes);
|
|
} else {
|
|
long hours = minutes / 60;
|
|
minutes = minutes % 60;
|
|
return String.format(Locale.getDefault(), "%d h %02d min", hours, minutes);
|
|
}
|
|
}
|
|
|
|
public static String getReadableString(String string) {
|
|
if (string != null) {
|
|
return Html.fromHtml(string, Html.FROM_HTML_MODE_COMPACT).toString();
|
|
}
|
|
|
|
return "";
|
|
}
|
|
|
|
public static String getReadableTrackNumber(Context context, Integer trackNumber) {
|
|
if (trackNumber != null) {
|
|
return String.valueOf(trackNumber);
|
|
}
|
|
|
|
return context.getString(R.string.label_placeholder);
|
|
}
|
|
|
|
public static String forceReadableString(String string) {
|
|
if (string != null) {
|
|
return getReadableString(string)
|
|
.replaceAll(""", "\"")
|
|
.replaceAll("'", "'")
|
|
.replaceAll("&", "'")
|
|
.replaceAll("<a\\s+([^>]+)>((?:.(?!</a>))*.)</a>", "");
|
|
}
|
|
|
|
return "";
|
|
}
|
|
|
|
public static String getReadableLyrics(String string) {
|
|
if (string != null) {
|
|
return string
|
|
.replaceAll(""", "\"")
|
|
.replaceAll("'", "'")
|
|
.replaceAll("&", "'")
|
|
.replaceAll("
", "\n");
|
|
}
|
|
|
|
return "";
|
|
}
|
|
|
|
public static List<String> getReadableStrings(List<String> strings) {
|
|
List<String> readableStrings = new ArrayList<>();
|
|
|
|
if (strings.size() > 0) {
|
|
for (String string : strings) {
|
|
if (string != null) {
|
|
readableStrings.add(Html.fromHtml(string, Html.FROM_HTML_MODE_COMPACT).toString());
|
|
}
|
|
}
|
|
}
|
|
|
|
return readableStrings;
|
|
}
|
|
|
|
public static String passwordHexEncoding(String plainPassword) {
|
|
return "enc:" + plainPassword.chars().mapToObj(Integer::toHexString).collect(Collectors.joining());
|
|
}
|
|
|
|
public static String getBitratePreference() {
|
|
Network network = getConnectivityManager().getActiveNetwork();
|
|
NetworkCapabilities networkCapabilities = getConnectivityManager().getNetworkCapabilities(network);
|
|
String audioTranscodeFormat = getTranscodingFormatPreference();
|
|
|
|
if (audioTranscodeFormat.equals("raw") || network == null || networkCapabilities == null)
|
|
return "0";
|
|
|
|
if (networkCapabilities.hasTransport(NetworkCapabilities.TRANSPORT_WIFI)) {
|
|
return Preferences.getMaxBitrateWifi();
|
|
} else if (networkCapabilities.hasTransport(NetworkCapabilities.TRANSPORT_CELLULAR)) {
|
|
return Preferences.getMaxBitrateMobile();
|
|
} else {
|
|
return Preferences.getMaxBitrateWifi();
|
|
}
|
|
}
|
|
|
|
public static String getTranscodingFormatPreference() {
|
|
Network network = getConnectivityManager().getActiveNetwork();
|
|
NetworkCapabilities networkCapabilities = getConnectivityManager().getNetworkCapabilities(network);
|
|
|
|
if (network == null || networkCapabilities == null) return "raw";
|
|
|
|
if (networkCapabilities.hasTransport(NetworkCapabilities.TRANSPORT_WIFI)) {
|
|
return Preferences.getAudioTranscodeFormatWifi();
|
|
} else if (networkCapabilities.hasTransport(NetworkCapabilities.TRANSPORT_CELLULAR)) {
|
|
return Preferences.getAudioTranscodeFormatMobile();
|
|
} else {
|
|
return Preferences.getAudioTranscodeFormatWifi();
|
|
}
|
|
}
|
|
|
|
public static List<Child> limitPlayableMedia(List<Child> toLimit, int position) {
|
|
if (!toLimit.isEmpty() && toLimit.size() > Constants.PLAYABLE_MEDIA_LIMIT) {
|
|
int from = position < Constants.PRE_PLAYABLE_MEDIA ? 0 : position - Constants.PRE_PLAYABLE_MEDIA;
|
|
int to = Math.min(from + Constants.PLAYABLE_MEDIA_LIMIT, toLimit.size());
|
|
|
|
return toLimit.subList(from, to);
|
|
}
|
|
|
|
return toLimit;
|
|
}
|
|
|
|
public static int getPlayableMediaPosition(int initialPosition) {
|
|
return initialPosition > Constants.PLAYABLE_MEDIA_LIMIT ? Constants.PRE_PLAYABLE_MEDIA : initialPosition;
|
|
}
|
|
|
|
private static ConnectivityManager getConnectivityManager() {
|
|
return (ConnectivityManager) App.getContext().getSystemService(Context.CONNECTIVITY_SERVICE);
|
|
}
|
|
}
|