aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/github/daneren2005/dsub/activity/QueryReceiverActivity.java
blob: 68f46599de0f7a76f911497e727d99e21ace1f15 (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
/*
 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
 */

package github.daneren2005.dsub.activity;

import android.app.Activity;
import android.app.SearchManager;
import android.content.Intent;
import android.os.Bundle;
import android.provider.SearchRecentSuggestions;
import android.util.Log;

import github.daneren2005.dsub.fragments.SubsonicFragment;
import github.daneren2005.dsub.util.Constants;
import github.daneren2005.dsub.util.Util;
import github.daneren2005.dsub.provider.DSubSearchProvider;

/**
 * Receives search queries and forwards to the SearchFragment.
 *
 * @author Sindre Mehus
 */
public class QueryReceiverActivity extends Activity {

	private static final String TAG = QueryReceiverActivity.class.getSimpleName();

	@Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

		Intent intent = getIntent();
		if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
			doSearch();
		} else if(Intent.ACTION_VIEW.equals(intent.getAction())) {
			showResult(intent.getDataString(), intent.getStringExtra(SearchManager.EXTRA_DATA_KEY));
		}
        finish();
        Util.disablePendingTransition(this);
    }

	private void doSearch() {
		String query = getIntent().getStringExtra(SearchManager.QUERY);
		if (query != null) {
			Intent intent = new Intent(QueryReceiverActivity.this, SubsonicFragmentActivity.class);
			intent.putExtra(Constants.INTENT_EXTRA_NAME_QUERY, query);
			intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_CLEAR_TOP);
			Util.startActivityWithoutTransition(QueryReceiverActivity.this, intent);
		}
	}
	private void showResult(String albumId, String name) {
		if (albumId != null) {
			Intent intent = new Intent(this, SubsonicFragmentActivity.class);
			intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_CLEAR_TOP);
			intent.putExtra(Constants.INTENT_EXTRA_VIEW_ALBUM, true);
			if(albumId.indexOf("dsub-ar-") == 0) {
				intent.putExtra(Constants.INTENT_EXTRA_NAME_ARTIST, true);
				albumId = albumId.replace("dsub-ar-", "");
			} else if(albumId.indexOf("dsub-so-") == 0) {
				intent.putExtra(Constants.INTENT_EXTRA_SEARCH_SONG, name);
				albumId = albumId.replace("dsub-so-", "");
			}
			intent.putExtra(Constants.INTENT_EXTRA_NAME_ID, albumId);
			if (name != null) {
				intent.putExtra(Constants.INTENT_EXTRA_NAME_NAME, name);
			}
			Util.startActivityWithoutTransition(this, intent);
		}
	}
}