2013-02-11 05:30:46 +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 2009 (C) Sindre Mehus
|
|
|
|
*/
|
|
|
|
|
2013-04-06 21:47:24 +02:00
|
|
|
package com.thejoshwa.ultrasonic.androidapp.activity;
|
2013-02-11 05:30:46 +01:00
|
|
|
|
|
|
|
import android.content.Intent;
|
2013-04-27 11:52:25 +02:00
|
|
|
import android.os.AsyncTask;
|
2013-02-11 05:30:46 +01:00
|
|
|
import android.os.Bundle;
|
|
|
|
import android.view.ContextMenu;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuInflater;
|
|
|
|
import android.view.MenuItem;
|
|
|
|
import android.view.View;
|
|
|
|
import android.widget.AdapterView;
|
|
|
|
import android.widget.ListView;
|
|
|
|
import android.widget.TextView;
|
2013-04-27 11:52:25 +02:00
|
|
|
|
|
|
|
import com.handmark.pulltorefresh.library.PullToRefreshBase;
|
|
|
|
import com.handmark.pulltorefresh.library.PullToRefreshListView;
|
|
|
|
import com.handmark.pulltorefresh.library.PullToRefreshBase.OnRefreshListener;
|
2013-04-06 21:47:24 +02:00
|
|
|
import com.thejoshwa.ultrasonic.androidapp.R;
|
|
|
|
import com.thejoshwa.ultrasonic.androidapp.domain.Artist;
|
|
|
|
import com.thejoshwa.ultrasonic.androidapp.domain.Indexes;
|
|
|
|
import com.thejoshwa.ultrasonic.androidapp.domain.MusicFolder;
|
|
|
|
import com.thejoshwa.ultrasonic.androidapp.service.MusicService;
|
|
|
|
import com.thejoshwa.ultrasonic.androidapp.service.MusicServiceFactory;
|
|
|
|
import com.thejoshwa.ultrasonic.androidapp.util.BackgroundTask;
|
|
|
|
import com.thejoshwa.ultrasonic.androidapp.util.Constants;
|
|
|
|
import com.thejoshwa.ultrasonic.androidapp.util.TabActivityBackgroundTask;
|
|
|
|
import com.thejoshwa.ultrasonic.androidapp.util.Util;
|
2013-05-16 09:59:55 +02:00
|
|
|
import com.thejoshwa.ultrasonic.androidapp.view.ArtistAdapter;
|
2013-02-11 05:30:46 +01:00
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public class SelectArtistActivity extends SubsonicTabActivity implements AdapterView.OnItemClickListener {
|
|
|
|
|
|
|
|
private static final int MENU_GROUP_MUSIC_FOLDER = 10;
|
|
|
|
|
2013-04-27 11:52:25 +02:00
|
|
|
private PullToRefreshListView refreshArtistListView;
|
|
|
|
private ListView artistListView;
|
2013-02-11 05:30:46 +01:00
|
|
|
private View folderButton;
|
|
|
|
private TextView folderName;
|
|
|
|
private List<MusicFolder> musicFolders;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when the activity is first created.
|
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
setContentView(R.layout.select_artist);
|
|
|
|
|
2013-04-27 11:52:25 +02:00
|
|
|
refreshArtistListView = (PullToRefreshListView) findViewById(R.id.select_artist_list);
|
|
|
|
artistListView = refreshArtistListView.getRefreshableView();
|
|
|
|
|
|
|
|
refreshArtistListView.setOnRefreshListener(new OnRefreshListener<ListView>() {
|
|
|
|
@Override
|
|
|
|
public void onRefresh(PullToRefreshBase<ListView> refreshView) {
|
|
|
|
new GetDataTask().execute();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
artistListView.setOnItemClickListener(this);
|
2013-02-11 05:30:46 +01:00
|
|
|
|
2013-04-27 11:52:25 +02:00
|
|
|
folderButton = LayoutInflater.from(this).inflate(R.layout.select_artist_header, artistListView, false);
|
2013-02-11 05:30:46 +01:00
|
|
|
folderName = (TextView) folderButton.findViewById(R.id.select_artist_folder_2);
|
|
|
|
|
|
|
|
if (!Util.isOffline(this)) {
|
2013-04-27 11:52:25 +02:00
|
|
|
artistListView.addHeaderView(folderButton);
|
2013-02-11 05:30:46 +01:00
|
|
|
}
|
|
|
|
|
2013-04-27 11:52:25 +02:00
|
|
|
registerForContextMenu(artistListView);
|
2013-02-11 05:30:46 +01:00
|
|
|
|
2013-04-20 23:58:59 +02:00
|
|
|
String title = getIntent().getStringExtra(Constants.INTENT_EXTRA_NAME_ALBUM_LIST_TITLE);
|
|
|
|
if (title == null) {
|
2013-04-27 11:52:25 +02:00
|
|
|
getActionBar().setSubtitle(Util.isOffline(this) ? R.string.music_library_label_offline : R.string.music_library_label);
|
2013-04-20 23:58:59 +02:00
|
|
|
} else {
|
2013-04-27 11:52:25 +02:00
|
|
|
getActionBar().setSubtitle(title);
|
2013-04-20 23:58:59 +02:00
|
|
|
}
|
2013-04-27 11:52:25 +02:00
|
|
|
|
|
|
|
View browseMenuItem = findViewById(R.id.menu_browse);
|
|
|
|
menuDrawer.setActiveView(browseMenuItem);
|
2013-02-11 05:30:46 +01:00
|
|
|
|
|
|
|
musicFolders = null;
|
|
|
|
load();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
|
|
|
super.onCreateOptionsMenu(menu);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void refresh() {
|
|
|
|
finish();
|
|
|
|
Intent intent = getIntent();
|
2013-04-20 23:58:59 +02:00
|
|
|
String title = getIntent().getStringExtra(Constants.INTENT_EXTRA_NAME_ALBUM_LIST_TITLE);
|
|
|
|
intent.putExtra(Constants.INTENT_EXTRA_NAME_ALBUM_LIST_TITLE, title);
|
2013-02-11 05:30:46 +01:00
|
|
|
intent.putExtra(Constants.INTENT_EXTRA_NAME_REFRESH, true);
|
|
|
|
Util.startActivityWithoutTransition(this, intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void selectFolder() {
|
|
|
|
folderButton.showContextMenu();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void load() {
|
|
|
|
BackgroundTask<Indexes> task = new TabActivityBackgroundTask<Indexes>(this) {
|
|
|
|
@Override
|
|
|
|
protected Indexes doInBackground() throws Throwable {
|
|
|
|
boolean refresh = getIntent().getBooleanExtra(Constants.INTENT_EXTRA_NAME_REFRESH, false);
|
|
|
|
MusicService musicService = MusicServiceFactory.getMusicService(SelectArtistActivity.this);
|
2013-05-18 12:50:54 +02:00
|
|
|
boolean isOffline = Util.isOffline(SelectArtistActivity.this);
|
|
|
|
boolean useId3Tags = Util.getShouldUseId3Tags(SelectArtistActivity.this);
|
|
|
|
|
|
|
|
if (!isOffline && !useId3Tags) {
|
2013-05-16 09:59:55 +02:00
|
|
|
musicFolders = musicService.getMusicFolders(refresh, SelectArtistActivity.this, this);
|
2013-02-11 05:30:46 +01:00
|
|
|
}
|
2013-05-18 12:50:54 +02:00
|
|
|
|
2013-02-11 05:30:46 +01:00
|
|
|
String musicFolderId = Util.getSelectedMusicFolderId(SelectArtistActivity.this);
|
2013-05-18 12:50:54 +02:00
|
|
|
|
|
|
|
if (!isOffline && useId3Tags) {
|
|
|
|
return musicService.getArtists(refresh, SelectArtistActivity.this, this);
|
|
|
|
} else {
|
|
|
|
return musicService.getIndexes(musicFolderId, refresh, SelectArtistActivity.this, this);
|
|
|
|
}
|
2013-02-11 05:30:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void done(Indexes result) {
|
|
|
|
if (result != null) {
|
|
|
|
List<Artist> artists = new ArrayList<Artist>(result.getShortcuts().size() + result.getArtists().size());
|
|
|
|
artists.addAll(result.getShortcuts());
|
|
|
|
artists.addAll(result.getArtists());
|
2013-04-27 11:52:25 +02:00
|
|
|
artistListView.setAdapter(new ArtistAdapter(SelectArtistActivity.this, artists));
|
2013-02-11 05:30:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Display selected music folder
|
|
|
|
if (musicFolders != null) {
|
|
|
|
String musicFolderId = Util.getSelectedMusicFolderId(SelectArtistActivity.this);
|
|
|
|
if (musicFolderId == null) {
|
|
|
|
folderName.setText(R.string.select_artist_all_folders);
|
|
|
|
} else {
|
|
|
|
for (MusicFolder musicFolder : musicFolders) {
|
|
|
|
if (musicFolder.getId().equals(musicFolderId)) {
|
|
|
|
folderName.setText(musicFolder.getName());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
task.execute();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
|
|
|
|
if (view == folderButton) {
|
|
|
|
selectFolder();
|
|
|
|
} else {
|
|
|
|
Artist artist = (Artist) parent.getItemAtPosition(position);
|
|
|
|
Intent intent = new Intent(this, SelectAlbumActivity.class);
|
|
|
|
intent.putExtra(Constants.INTENT_EXTRA_NAME_ID, artist.getId());
|
|
|
|
intent.putExtra(Constants.INTENT_EXTRA_NAME_NAME, artist.getName());
|
|
|
|
Util.startActivityWithoutTransition(this, intent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreateContextMenu(ContextMenu menu, View view, ContextMenu.ContextMenuInfo menuInfo) {
|
|
|
|
super.onCreateContextMenu(menu, view, menuInfo);
|
|
|
|
|
|
|
|
AdapterView.AdapterContextMenuInfo info = (AdapterView.AdapterContextMenuInfo) menuInfo;
|
|
|
|
|
2013-04-27 11:52:25 +02:00
|
|
|
if (artistListView.getItemAtPosition(info.position) instanceof Artist) {
|
2013-02-11 05:30:46 +01:00
|
|
|
MenuInflater inflater = getMenuInflater();
|
|
|
|
inflater.inflate(R.menu.select_artist_context, menu);
|
2013-04-28 09:07:55 +02:00
|
|
|
} else if (info.position == 1) {
|
2013-02-11 05:30:46 +01:00
|
|
|
String musicFolderId = Util.getSelectedMusicFolderId(this);
|
|
|
|
MenuItem menuItem = menu.add(MENU_GROUP_MUSIC_FOLDER, -1, 0, R.string.select_artist_all_folders);
|
|
|
|
if (musicFolderId == null) {
|
|
|
|
menuItem.setChecked(true);
|
|
|
|
}
|
|
|
|
if (musicFolders != null) {
|
|
|
|
for (int i = 0; i < musicFolders.size(); i++) {
|
|
|
|
MusicFolder musicFolder = musicFolders.get(i);
|
|
|
|
menuItem = menu.add(MENU_GROUP_MUSIC_FOLDER, i, i + 1, musicFolder.getName());
|
|
|
|
if (musicFolder.getId().equals(musicFolderId)) {
|
|
|
|
menuItem.setChecked(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
menu.setGroupCheckable(MENU_GROUP_MUSIC_FOLDER, true, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onContextItemSelected(MenuItem menuItem) {
|
|
|
|
AdapterView.AdapterContextMenuInfo info = (AdapterView.AdapterContextMenuInfo) menuItem.getMenuInfo();
|
|
|
|
|
2013-04-27 11:52:25 +02:00
|
|
|
Artist artist = (Artist) artistListView.getItemAtPosition(info.position);
|
2013-02-11 05:30:46 +01:00
|
|
|
|
|
|
|
if (artist != null) {
|
|
|
|
switch (menuItem.getItemId()) {
|
|
|
|
case R.id.artist_menu_play_now:
|
2013-05-17 20:48:22 +02:00
|
|
|
downloadRecursively(artist.getId(), false, false, true, false, false, false);
|
2013-05-02 08:53:33 +02:00
|
|
|
break;
|
|
|
|
case R.id.artist_menu_play_next:
|
2013-05-17 20:48:22 +02:00
|
|
|
downloadRecursively(artist.getId(), false, false, true, true, false, true);
|
2013-02-11 05:30:46 +01:00
|
|
|
break;
|
|
|
|
case R.id.artist_menu_play_last:
|
2013-05-17 20:48:22 +02:00
|
|
|
downloadRecursively(artist.getId(), false, true, false, false, false, false);
|
2013-02-11 05:30:46 +01:00
|
|
|
break;
|
|
|
|
case R.id.artist_menu_pin:
|
2013-05-17 20:48:22 +02:00
|
|
|
downloadRecursively(artist.getId(), true, true, false, false, false, false);
|
2013-02-11 05:30:46 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return super.onContextItemSelected(menuItem);
|
|
|
|
}
|
2013-04-28 09:07:55 +02:00
|
|
|
} else if (info.position == 1) {
|
2013-02-11 05:30:46 +01:00
|
|
|
MusicFolder selectedFolder = menuItem.getItemId() == -1 ? null : musicFolders.get(menuItem.getItemId());
|
|
|
|
String musicFolderId = selectedFolder == null ? null : selectedFolder.getId();
|
|
|
|
String musicFolderName = selectedFolder == null ? getString(R.string.select_artist_all_folders)
|
|
|
|
: selectedFolder.getName();
|
|
|
|
Util.setSelectedMusicFolderId(this, musicFolderId);
|
|
|
|
folderName.setText(musicFolderName);
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
2013-04-24 18:31:42 +02:00
|
|
|
case android.R.id.home:
|
|
|
|
menuDrawer.toggleMenu();
|
|
|
|
return true;
|
2013-02-11 05:30:46 +01:00
|
|
|
case R.id.main_shuffle:
|
|
|
|
Intent intent = new Intent(this, DownloadActivity.class);
|
|
|
|
intent.putExtra(Constants.INTENT_EXTRA_NAME_SHUFFLE, true);
|
|
|
|
Util.startActivityWithoutTransition(this, intent);
|
2013-04-24 18:31:42 +02:00
|
|
|
return true;
|
2013-02-11 05:30:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2013-04-27 11:52:25 +02:00
|
|
|
|
|
|
|
private class GetDataTask extends AsyncTask<Void, Void, String[]> {
|
|
|
|
@Override
|
|
|
|
protected void onPostExecute(String[] result) {
|
|
|
|
refreshArtistListView.onRefreshComplete();
|
|
|
|
super.onPostExecute(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected String[] doInBackground(Void... params) {
|
|
|
|
refresh();
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2012-02-26 21:25:13 +01:00
|
|
|
}
|