Audinaut-subsonic-app-android/app/src/main/java/net/nullsum/audinaut/util/MenuUtil.java

84 lines
3.5 KiB
Java
Raw Normal View History

2016-12-18 18:41:30 +01:00
/*
2018-03-24 20:25:12 +01:00
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) Scott Jackson
2016-12-18 18:41:30 +01:00
*/
2017-01-09 08:01:12 +01:00
package net.nullsum.audinaut.util;
2016-12-18 18:41:30 +01:00
import android.content.Context;
import android.content.SharedPreferences;
import android.util.Log;
import android.view.Menu;
import java.io.File;
2017-01-09 08:01:12 +01:00
import net.nullsum.audinaut.R;
import net.nullsum.audinaut.service.DownloadFile;
import net.nullsum.audinaut.view.AlbumView;
import net.nullsum.audinaut.view.ArtistEntryView;
import net.nullsum.audinaut.view.ArtistView;
import net.nullsum.audinaut.view.SongView;
import net.nullsum.audinaut.view.UpdateView;
2016-12-18 18:41:30 +01:00
public final class MenuUtil {
2018-03-24 20:25:12 +01:00
private final static String TAG = MenuUtil.class.getSimpleName();
2016-12-18 18:41:30 +01:00
2018-03-24 20:25:12 +01:00
public static void hideMenuItems(Context context, Menu menu, UpdateView updateView) {
if(!Util.isOffline(context)) {
// If we are looking at a standard song view, get downloadFile to cache what options to show
if(updateView instanceof SongView) {
SongView songView = (SongView) updateView;
DownloadFile downloadFile = songView.getDownloadFile();
2016-12-18 18:41:30 +01:00
2018-03-24 20:25:12 +01:00
try {
if(downloadFile != null) {
if(downloadFile.isWorkDone()) {
// Remove permanent cache menu if already perma cached
if(downloadFile.isSaved()) {
menu.setGroupVisible(R.id.hide_pin, false);
}
2016-12-18 18:41:30 +01:00
2018-03-24 20:25:12 +01:00
// Remove cache option no matter what if already downloaded
menu.setGroupVisible(R.id.hide_download, false);
} else {
// Remove delete option if nothing to delete
menu.setGroupVisible(R.id.hide_delete, false);
}
}
} catch(Exception e) {
Log.w(TAG, "Failed to lookup downloadFile info", e);
}
}
// Apply similar logic to album views
else if(updateView instanceof AlbumView || updateView instanceof ArtistView || updateView instanceof ArtistEntryView) {
File folder = null;
if(updateView instanceof AlbumView) {
folder = ((AlbumView) updateView).getFile();
} else if(updateView instanceof ArtistView) {
folder = ((ArtistView) updateView).getFile();
} else if(updateView instanceof ArtistEntryView) {
folder = ((ArtistEntryView) updateView).getFile();
}
2016-12-18 18:41:30 +01:00
2018-03-24 20:25:12 +01:00
try {
if(folder != null && !folder.exists()) {
menu.setGroupVisible(R.id.hide_delete, false);
}
} catch(Exception e) {
Log.w(TAG, "Failed to lookup album directory info", e);
}
}
}
}
2016-12-18 18:41:30 +01:00
}