2018-04-25 18:25:28 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018, Daniel Gultsch All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
* are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation and/or
|
|
|
|
* other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* 3. Neither the name of the copyright holder nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software without
|
|
|
|
* specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
|
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package eu.siacs.conversations.ui;
|
|
|
|
|
|
|
|
import android.databinding.DataBindingUtil;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.support.v7.widget.Toolbar;
|
|
|
|
import android.text.Editable;
|
2018-04-26 15:02:31 +00:00
|
|
|
import android.text.InputType;
|
2018-04-25 18:25:28 +00:00
|
|
|
import android.text.TextWatcher;
|
|
|
|
import android.util.Log;
|
2018-04-28 14:32:23 +00:00
|
|
|
import android.view.ContextMenu;
|
2018-04-25 18:25:28 +00:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuItem;
|
2018-04-28 14:32:23 +00:00
|
|
|
import android.view.View;
|
|
|
|
import android.widget.AdapterView;
|
2018-04-25 18:25:28 +00:00
|
|
|
import android.widget.EditText;
|
|
|
|
|
2018-04-28 14:32:23 +00:00
|
|
|
import java.lang.ref.WeakReference;
|
2018-04-25 18:25:28 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.Config;
|
|
|
|
import eu.siacs.conversations.R;
|
|
|
|
import eu.siacs.conversations.databinding.ActivitySearchBinding;
|
2018-04-26 16:53:09 +00:00
|
|
|
import eu.siacs.conversations.entities.Contact;
|
2018-04-28 14:32:23 +00:00
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
|
|
|
import eu.siacs.conversations.entities.Conversational;
|
2018-04-25 18:25:28 +00:00
|
|
|
import eu.siacs.conversations.entities.Message;
|
2018-04-28 14:32:23 +00:00
|
|
|
import eu.siacs.conversations.entities.StubConversation;
|
2018-04-26 15:02:31 +00:00
|
|
|
import eu.siacs.conversations.services.MessageSearchTask;
|
2018-04-25 18:25:28 +00:00
|
|
|
import eu.siacs.conversations.ui.adapter.MessageAdapter;
|
2018-04-26 11:22:31 +00:00
|
|
|
import eu.siacs.conversations.ui.interfaces.OnSearchResultsAvailable;
|
2018-04-28 14:32:23 +00:00
|
|
|
import eu.siacs.conversations.ui.util.ChangeWatcher;
|
2018-04-26 08:40:29 +00:00
|
|
|
import eu.siacs.conversations.ui.util.Color;
|
2018-04-28 14:32:23 +00:00
|
|
|
import eu.siacs.conversations.ui.util.DateSeparator;
|
2018-04-26 08:40:29 +00:00
|
|
|
import eu.siacs.conversations.ui.util.Drawable;
|
2018-04-26 15:02:31 +00:00
|
|
|
import eu.siacs.conversations.ui.util.ListViewUtils;
|
2018-04-28 14:32:23 +00:00
|
|
|
import eu.siacs.conversations.ui.util.ShareUtil;
|
|
|
|
import eu.siacs.conversations.utils.MessageUtils;
|
2018-04-25 18:25:28 +00:00
|
|
|
|
|
|
|
import static eu.siacs.conversations.ui.util.SoftKeyboardUtils.hideSoftKeyboard;
|
|
|
|
import static eu.siacs.conversations.ui.util.SoftKeyboardUtils.showKeyboard;
|
|
|
|
|
2018-04-26 16:53:09 +00:00
|
|
|
public class SearchActivity extends XmppActivity implements TextWatcher, OnSearchResultsAvailable, MessageAdapter.OnContactPictureClicked {
|
2018-04-25 18:25:28 +00:00
|
|
|
|
|
|
|
private ActivitySearchBinding binding;
|
|
|
|
private MessageAdapter messageListAdapter;
|
|
|
|
private final List<Message> messages = new ArrayList<>();
|
2018-04-28 14:32:23 +00:00
|
|
|
private WeakReference<Message> selectedMessageReference = new WeakReference<>(null);
|
|
|
|
private final ChangeWatcher<String> currentSearch = new ChangeWatcher<>();
|
2018-04-25 18:25:28 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreate(final Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
this.binding = DataBindingUtil.setContentView(this, R.layout.activity_search);
|
|
|
|
setSupportActionBar((Toolbar) this.binding.toolbar);
|
|
|
|
configureActionBar(getSupportActionBar());
|
|
|
|
this.messageListAdapter = new MessageAdapter(this, this.messages);
|
2018-04-26 16:53:09 +00:00
|
|
|
this.messageListAdapter.setOnContactPictureClicked(this);
|
2018-04-25 18:25:28 +00:00
|
|
|
this.binding.searchResults.setAdapter(messageListAdapter);
|
2018-04-28 14:32:23 +00:00
|
|
|
registerForContextMenu(this.binding.searchResults);
|
2018-04-25 18:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(final Menu menu) {
|
|
|
|
getMenuInflater().inflate(R.menu.activity_search, menu);
|
|
|
|
MenuItem searchActionMenuItem = menu.findItem(R.id.action_search);
|
|
|
|
EditText searchField = searchActionMenuItem.getActionView().findViewById(R.id.search_field);
|
|
|
|
searchField.addTextChangedListener(this);
|
|
|
|
searchField.setHint(R.string.search_messages);
|
2018-04-28 14:32:23 +00:00
|
|
|
searchField.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE);
|
2018-04-25 18:25:28 +00:00
|
|
|
showKeyboard(searchField);
|
|
|
|
return super.onCreateOptionsMenu(menu);
|
|
|
|
}
|
|
|
|
|
2018-04-28 14:32:23 +00:00
|
|
|
@Override
|
|
|
|
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) {
|
|
|
|
AdapterView.AdapterContextMenuInfo acmi = (AdapterView.AdapterContextMenuInfo) menuInfo;
|
|
|
|
final Message message = this.messages.get(acmi.position);
|
|
|
|
this.selectedMessageReference = new WeakReference<>(message);
|
|
|
|
getMenuInflater().inflate(R.menu.search_result_context, menu);
|
|
|
|
MenuItem copy = menu.findItem(R.id.copy_message);
|
|
|
|
MenuItem quote = menu.findItem(R.id.quote_message);
|
|
|
|
MenuItem copyUrl = menu.findItem(R.id.copy_url);
|
|
|
|
if (message.isGeoUri()) {
|
|
|
|
copy.setVisible(false);
|
|
|
|
quote.setVisible(false);
|
|
|
|
} else {
|
|
|
|
copyUrl.setVisible(false);
|
|
|
|
}
|
|
|
|
super.onCreateContextMenu(menu, v, menuInfo);
|
|
|
|
}
|
|
|
|
|
2018-04-25 18:25:28 +00:00
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
if (item.getItemId() == android.R.id.home) {
|
|
|
|
hideSoftKeyboard(this);
|
|
|
|
}
|
|
|
|
return super.onOptionsItemSelected(item);
|
|
|
|
}
|
|
|
|
|
2018-04-28 14:32:23 +00:00
|
|
|
@Override
|
|
|
|
public boolean onContextItemSelected(MenuItem item) {
|
|
|
|
final Message message = selectedMessageReference.get();
|
|
|
|
if (message != null) {
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case R.id.share_with:
|
|
|
|
ShareUtil.share(this, message);
|
|
|
|
break;
|
|
|
|
case R.id.copy_message:
|
|
|
|
ShareUtil.copyToClipboard(this, message);
|
|
|
|
break;
|
|
|
|
case R.id.copy_url:
|
|
|
|
ShareUtil.copyUrlToClipboard(this, message);
|
|
|
|
break;
|
|
|
|
case R.id.quote_message:
|
|
|
|
quote(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return super.onContextItemSelected(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void quote(Message message) {
|
|
|
|
String text = MessageUtils.prepareQuote(message);
|
|
|
|
final Conversational conversational = message.getConversation();
|
|
|
|
final Conversation conversation;
|
|
|
|
if (conversational instanceof Conversation) {
|
|
|
|
conversation = (Conversation) conversational;
|
|
|
|
} else {
|
|
|
|
conversation = xmppConnectionService.findOrCreateConversation(conversational.getAccount(),
|
|
|
|
conversational.getJid(),
|
|
|
|
conversational.getMode() == Conversational.MODE_MULTI,
|
|
|
|
true,
|
|
|
|
true);
|
|
|
|
}
|
|
|
|
switchToConversationAndQuote(conversation, text);
|
|
|
|
}
|
|
|
|
|
2018-04-25 18:25:28 +00:00
|
|
|
@Override
|
|
|
|
protected void refreshUiReal() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
void onBackendConnected() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-04-26 08:40:29 +00:00
|
|
|
private void changeBackground(boolean hasSearch, boolean hasResults) {
|
|
|
|
if (hasSearch) {
|
|
|
|
if (hasResults) {
|
2018-04-28 14:32:23 +00:00
|
|
|
binding.searchResults.setBackgroundColor(Color.get(this, R.attr.color_background_secondary));
|
2018-04-26 08:40:29 +00:00
|
|
|
} else {
|
2018-04-28 14:32:23 +00:00
|
|
|
binding.searchResults.setBackground(Drawable.get(this, R.attr.activity_background_no_results));
|
2018-04-26 08:40:29 +00:00
|
|
|
}
|
|
|
|
} else {
|
2018-04-28 14:32:23 +00:00
|
|
|
binding.searchResults.setBackground(Drawable.get(this, R.attr.activity_background_search));
|
2018-04-26 08:40:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-25 18:25:28 +00:00
|
|
|
@Override
|
|
|
|
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTextChanged(CharSequence s, int start, int before, int count) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void afterTextChanged(Editable s) {
|
2018-04-28 14:32:23 +00:00
|
|
|
final String term = s.toString().trim();
|
|
|
|
if (!currentSearch.watch(term)) {
|
|
|
|
return;
|
|
|
|
}
|
2018-04-26 11:22:31 +00:00
|
|
|
if (term.length() > 0) {
|
|
|
|
xmppConnectionService.search(s.toString().trim(), this);
|
|
|
|
} else {
|
2018-04-26 15:02:31 +00:00
|
|
|
MessageSearchTask.cancelRunningTasks();
|
2018-04-26 11:22:31 +00:00
|
|
|
this.messages.clear();
|
|
|
|
messageListAdapter.notifyDataSetChanged();
|
|
|
|
changeBackground(false, false);
|
|
|
|
}
|
2018-04-25 18:25:28 +00:00
|
|
|
}
|
|
|
|
|
2018-04-26 11:22:31 +00:00
|
|
|
@Override
|
|
|
|
public void onSearchResultsAvailable(String term, List<Message> messages) {
|
|
|
|
runOnUiThread(() -> {
|
2018-04-26 15:02:31 +00:00
|
|
|
this.messages.clear();
|
2018-04-28 14:32:23 +00:00
|
|
|
DateSeparator.addAll(messages);
|
2018-04-26 15:02:31 +00:00
|
|
|
this.messages.addAll(messages);
|
2018-04-26 11:22:31 +00:00
|
|
|
messageListAdapter.notifyDataSetChanged();
|
|
|
|
changeBackground(true, messages.size() > 0);
|
2018-04-26 15:02:31 +00:00
|
|
|
ListViewUtils.scrollToBottom(this.binding.searchResults);
|
2018-04-26 11:22:31 +00:00
|
|
|
});
|
|
|
|
}
|
2018-04-26 16:53:09 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onContactPictureClicked(Message message) {
|
|
|
|
String fingerprint;
|
|
|
|
if (message.getEncryption() == Message.ENCRYPTION_PGP || message.getEncryption() == Message.ENCRYPTION_DECRYPTED) {
|
|
|
|
fingerprint = "pgp";
|
|
|
|
} else {
|
|
|
|
fingerprint = message.getFingerprint();
|
|
|
|
}
|
|
|
|
if (message.getStatus() == Message.STATUS_RECEIVED) {
|
|
|
|
final Contact contact = message.getContact();
|
|
|
|
if (contact != null) {
|
|
|
|
if (contact.isSelf()) {
|
|
|
|
switchToAccount(message.getConversation().getAccount(), fingerprint);
|
|
|
|
} else {
|
|
|
|
switchToContactDetails(contact, fingerprint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switchToAccount(message.getConversation().getAccount(), fingerprint);
|
|
|
|
}
|
|
|
|
}
|
2018-04-25 18:25:28 +00:00
|
|
|
}
|