2014-03-04 01:51:01 +00:00
|
|
|
package eu.siacs.conversations.ui;
|
|
|
|
|
2014-06-01 08:22:42 +00:00
|
|
|
import android.app.PendingIntent;
|
2014-03-04 01:51:01 +00:00
|
|
|
import android.content.Context;
|
2018-06-18 12:15:19 +00:00
|
|
|
import android.content.Intent;
|
2018-03-18 22:32:30 +00:00
|
|
|
import android.databinding.DataBindingUtil;
|
2014-03-04 01:51:01 +00:00
|
|
|
import android.os.Bundle;
|
2018-03-18 22:32:30 +00:00
|
|
|
import android.support.v7.app.AlertDialog;
|
2018-03-18 08:30:22 +00:00
|
|
|
import android.support.v7.widget.Toolbar;
|
2018-06-23 07:29:29 +00:00
|
|
|
import android.text.Editable;
|
2018-06-20 13:12:02 +00:00
|
|
|
import android.text.SpannableStringBuilder;
|
2018-06-23 07:29:29 +00:00
|
|
|
import android.text.TextWatcher;
|
2014-03-05 14:41:14 +00:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuItem;
|
2014-03-04 01:51:01 +00:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.View.OnClickListener;
|
2014-07-16 10:34:09 +00:00
|
|
|
import android.widget.Toast;
|
2014-03-04 01:51:01 +00:00
|
|
|
|
2015-02-07 11:29:32 +00:00
|
|
|
import java.util.Collections;
|
2018-09-15 17:38:45 +00:00
|
|
|
import java.util.List;
|
2016-01-08 20:30:46 +00:00
|
|
|
import java.util.concurrent.atomic.AtomicInteger;
|
2014-11-17 00:54:01 +00:00
|
|
|
|
2015-08-03 20:58:17 +00:00
|
|
|
import eu.siacs.conversations.Config;
|
2014-11-17 00:54:01 +00:00
|
|
|
import eu.siacs.conversations.R;
|
2018-03-13 11:26:26 +00:00
|
|
|
import eu.siacs.conversations.databinding.ActivityMucDetailsBinding;
|
2014-11-23 20:36:44 +00:00
|
|
|
import eu.siacs.conversations.entities.Account;
|
|
|
|
import eu.siacs.conversations.entities.Bookmark;
|
2014-11-17 00:54:01 +00:00
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
2015-01-05 14:06:39 +00:00
|
|
|
import eu.siacs.conversations.entities.MucOptions;
|
2014-11-17 00:54:01 +00:00
|
|
|
import eu.siacs.conversations.entities.MucOptions.User;
|
2015-01-07 14:03:29 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService;
|
2014-11-17 00:54:01 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService.OnConversationUpdate;
|
2015-07-20 12:26:29 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService.OnMucRosterUpdate;
|
2018-09-15 17:38:45 +00:00
|
|
|
import eu.siacs.conversations.ui.adapter.MediaAdapter;
|
2019-01-25 16:58:23 +00:00
|
|
|
import eu.siacs.conversations.ui.adapter.UserPreviewAdapter;
|
2018-09-15 17:38:45 +00:00
|
|
|
import eu.siacs.conversations.ui.interfaces.OnMediaLoaded;
|
|
|
|
import eu.siacs.conversations.ui.util.Attachment;
|
2019-01-25 09:07:02 +00:00
|
|
|
import eu.siacs.conversations.ui.util.AvatarWorkerTask;
|
2018-09-15 17:38:45 +00:00
|
|
|
import eu.siacs.conversations.ui.util.GridManager;
|
2018-03-18 22:32:30 +00:00
|
|
|
import eu.siacs.conversations.ui.util.MenuDoubleTabUtil;
|
2019-02-06 17:29:07 +00:00
|
|
|
import eu.siacs.conversations.ui.util.MucConfiguration;
|
2019-01-26 19:31:52 +00:00
|
|
|
import eu.siacs.conversations.ui.util.MucDetailsContextMenuHelper;
|
2018-06-20 13:12:02 +00:00
|
|
|
import eu.siacs.conversations.ui.util.MyLinkify;
|
2018-06-23 07:29:29 +00:00
|
|
|
import eu.siacs.conversations.ui.util.SoftKeyboardUtils;
|
2018-10-17 20:50:34 +00:00
|
|
|
import eu.siacs.conversations.utils.AccountUtils;
|
2018-09-17 19:24:25 +00:00
|
|
|
import eu.siacs.conversations.utils.Compatibility;
|
2018-06-23 11:14:12 +00:00
|
|
|
import eu.siacs.conversations.utils.EmojiWrapper;
|
2018-06-24 14:33:15 +00:00
|
|
|
import eu.siacs.conversations.utils.StringUtils;
|
2018-06-23 11:14:12 +00:00
|
|
|
import eu.siacs.conversations.utils.StylingHelper;
|
2018-05-04 10:18:31 +00:00
|
|
|
import eu.siacs.conversations.utils.XmppUri;
|
2018-11-20 16:17:14 +00:00
|
|
|
import me.drakeet.support.toast.ToastCompat;
|
2020-05-15 15:06:16 +00:00
|
|
|
import eu.siacs.conversations.xmpp.Jid;
|
2014-11-17 00:54:01 +00:00
|
|
|
|
2018-06-18 20:17:10 +00:00
|
|
|
import static eu.siacs.conversations.entities.Bookmark.printableValue;
|
2018-06-24 14:17:20 +00:00
|
|
|
import static eu.siacs.conversations.utils.StringUtils.changed;
|
2018-06-18 20:17:10 +00:00
|
|
|
|
2019-01-28 09:52:35 +00:00
|
|
|
public class ConferenceDetailsActivity extends XmppActivity implements OnConversationUpdate, OnMucRosterUpdate, XmppConnectionService.OnAffiliationChanged, XmppConnectionService.OnConfigurationPushed, XmppConnectionService.OnRoomDestroy, TextWatcher, OnMediaLoaded {
|
2018-06-22 19:55:54 +00:00
|
|
|
public static final String ACTION_VIEW_MUC = "view_muc";
|
|
|
|
|
|
|
|
private Conversation mConversation;
|
|
|
|
private ActivityMucDetailsBinding binding;
|
2018-09-15 17:38:45 +00:00
|
|
|
private MediaAdapter mMediaAdapter;
|
2019-01-25 16:58:23 +00:00
|
|
|
private UserPreviewAdapter mUserPreviewAdapter;
|
2018-06-22 19:55:54 +00:00
|
|
|
private String uuid = null;
|
|
|
|
|
|
|
|
private boolean mAdvancedMode = false;
|
|
|
|
|
|
|
|
private UiCallback<Conversation> renameCallback = new UiCallback<Conversation>() {
|
|
|
|
@Override
|
|
|
|
public void success(Conversation object) {
|
2018-11-18 10:21:52 +00:00
|
|
|
displayToast(getString(R.string.your_nick_has_been_changed));
|
2018-06-22 19:55:54 +00:00
|
|
|
runOnUiThread(() -> {
|
|
|
|
updateView();
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void error(final int errorCode, Conversation object) {
|
2018-11-18 10:21:52 +00:00
|
|
|
displayToast(getString(errorCode));
|
2018-06-22 19:55:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-06-26 15:40:05 +00:00
|
|
|
public void userInputRequired(PendingIntent pi, Conversation object) {
|
2018-06-22 19:55:54 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
private OnClickListener mNotifyStatusClickListener = new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(ConferenceDetailsActivity.this);
|
|
|
|
builder.setTitle(R.string.pref_notification_settings);
|
|
|
|
String[] choices = {
|
|
|
|
getString(R.string.notify_on_all_messages),
|
|
|
|
getString(R.string.notify_only_when_highlighted),
|
|
|
|
getString(R.string.notify_never)
|
|
|
|
};
|
|
|
|
final AtomicInteger choice;
|
|
|
|
if (mConversation.getLongAttribute(Conversation.ATTRIBUTE_MUTED_TILL, 0) == Long.MAX_VALUE) {
|
|
|
|
choice = new AtomicInteger(2);
|
|
|
|
} else {
|
|
|
|
choice = new AtomicInteger(mConversation.alwaysNotify() ? 0 : 1);
|
|
|
|
}
|
|
|
|
builder.setSingleChoiceItems(choices, choice.get(), (dialog, which) -> choice.set(which));
|
|
|
|
builder.setNegativeButton(R.string.cancel, null);
|
|
|
|
builder.setPositiveButton(R.string.ok, (dialog, which) -> {
|
|
|
|
if (choice.get() == 2) {
|
|
|
|
mConversation.setMutedTill(Long.MAX_VALUE);
|
|
|
|
} else {
|
|
|
|
mConversation.setMutedTill(0);
|
|
|
|
mConversation.setAttribute(Conversation.ATTRIBUTE_ALWAYS_NOTIFY, String.valueOf(choice.get() == 0));
|
|
|
|
}
|
|
|
|
xmppConnectionService.updateConversation(mConversation);
|
|
|
|
updateView();
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
private OnClickListener mChangeConferenceSettings = new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
final MucOptions mucOptions = mConversation.getMucOptions();
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(ConferenceDetailsActivity.this);
|
2019-02-07 17:11:21 +00:00
|
|
|
MucConfiguration configuration = MucConfiguration.get(ConferenceDetailsActivity.this, mAdvancedMode, mucOptions);
|
2019-02-06 17:29:07 +00:00
|
|
|
builder.setTitle(configuration.title);
|
|
|
|
final boolean[] values = configuration.values;
|
|
|
|
builder.setMultiChoiceItems(configuration.names, values, (dialog, which, isChecked) -> values[which] = isChecked);
|
2018-06-22 19:55:54 +00:00
|
|
|
builder.setNegativeButton(R.string.cancel, null);
|
|
|
|
builder.setPositiveButton(R.string.confirm, (dialog, which) -> {
|
2019-02-06 17:29:07 +00:00
|
|
|
Bundle options = configuration.toBundle(values);
|
|
|
|
options.putString("muc#roomconfig_persistentroom", "1");
|
2018-06-22 19:55:54 +00:00
|
|
|
xmppConnectionService.pushConferenceConfiguration(mConversation,
|
2019-02-06 17:29:07 +00:00
|
|
|
options,
|
2018-06-22 19:55:54 +00:00
|
|
|
ConferenceDetailsActivity.this);
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-08-26 15:32:30 +00:00
|
|
|
|
2018-06-22 19:55:54 +00:00
|
|
|
@Override
|
|
|
|
public void onConversationUpdate() {
|
|
|
|
refreshUi();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onMucRosterUpdate() {
|
|
|
|
refreshUi();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void refreshUiReal() {
|
|
|
|
updateView();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
this.binding = DataBindingUtil.setContentView(this, R.layout.activity_muc_details);
|
|
|
|
this.binding.changeConferenceButton.setOnClickListener(this.mChangeConferenceSettings);
|
|
|
|
setSupportActionBar((Toolbar) binding.toolbar);
|
|
|
|
configureActionBar(getSupportActionBar());
|
|
|
|
this.binding.editNickButton.setOnClickListener(v -> quickEdit(mConversation.getMucOptions().getActualNick(),
|
|
|
|
R.string.nickname,
|
|
|
|
value -> {
|
|
|
|
if (xmppConnectionService.renameInMuc(mConversation, value, renameCallback)) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return getString(R.string.invalid_muc_nick);
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
this.mAdvancedMode = getPreferences().getBoolean("advanced_muc_mode", false);
|
|
|
|
this.binding.mucInfoMore.setVisibility(this.mAdvancedMode ? View.VISIBLE : View.GONE);
|
|
|
|
this.binding.notificationStatusButton.setOnClickListener(this.mNotifyStatusClickListener);
|
|
|
|
this.binding.yourPhoto.setOnClickListener(v -> {
|
|
|
|
final MucOptions mucOptions = mConversation.getMucOptions();
|
|
|
|
if (!mucOptions.hasVCards()) {
|
|
|
|
Toast.makeText(this, R.string.host_does_not_support_group_chat_avatars, Toast.LENGTH_SHORT).show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!mucOptions.getSelf().getAffiliation().ranks(MucOptions.Affiliation.OWNER)) {
|
|
|
|
Toast.makeText(this, R.string.only_the_owner_can_change_group_chat_avatar, Toast.LENGTH_SHORT).show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
final Intent intent = new Intent(this, PublishGroupChatProfilePictureActivity.class);
|
|
|
|
intent.putExtra("uuid", mConversation.getUuid());
|
|
|
|
startActivity(intent);
|
|
|
|
});
|
|
|
|
this.binding.editMucNameButton.setOnClickListener(this::onMucEditButtonClicked);
|
2018-06-23 07:29:29 +00:00
|
|
|
this.binding.mucEditTitle.addTextChangedListener(this);
|
|
|
|
this.binding.mucEditSubject.addTextChangedListener(this);
|
2018-06-23 11:14:12 +00:00
|
|
|
this.binding.mucEditSubject.addTextChangedListener(new StylingHelper.MessageEditorStyler(this.binding.mucEditSubject));
|
2019-01-25 16:58:23 +00:00
|
|
|
this.mMediaAdapter = new MediaAdapter(this, R.dimen.media_size);
|
|
|
|
this.mUserPreviewAdapter = new UserPreviewAdapter();
|
2018-09-15 17:38:45 +00:00
|
|
|
this.binding.media.setAdapter(mMediaAdapter);
|
2019-01-25 16:58:23 +00:00
|
|
|
this.binding.users.setAdapter(mUserPreviewAdapter);
|
2018-09-15 17:38:45 +00:00
|
|
|
GridManager.setupLayoutManager(this, this.binding.media, R.dimen.media_size);
|
2019-01-25 16:58:23 +00:00
|
|
|
GridManager.setupLayoutManager(this, this.binding.users, R.dimen.media_size);
|
|
|
|
this.binding.invite.setOnClickListener(v -> inviteToConversation(mConversation));
|
|
|
|
this.binding.showUsers.setOnClickListener(v -> {
|
|
|
|
Intent intent = new Intent(this, MucUsersActivity.class);
|
|
|
|
intent.putExtra("uuid", mConversation.getUuid());
|
|
|
|
startActivity(intent);
|
|
|
|
});
|
2018-06-22 19:55:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onStart() {
|
|
|
|
super.onStart();
|
|
|
|
final int theme = findTheme();
|
|
|
|
if (this.mTheme != theme) {
|
|
|
|
recreate();
|
|
|
|
}
|
2018-09-17 19:24:25 +00:00
|
|
|
binding.mediaWrapper.setVisibility(Compatibility.hasStoragePermission(this) ? View.VISIBLE : View.GONE);
|
2018-06-22 19:55:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem menuItem) {
|
|
|
|
if (MenuDoubleTabUtil.shouldIgnoreTap()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
switch (menuItem.getItemId()) {
|
|
|
|
case android.R.id.home:
|
|
|
|
finish();
|
|
|
|
break;
|
|
|
|
case R.id.action_share_http:
|
|
|
|
shareLink(true);
|
|
|
|
break;
|
|
|
|
case R.id.action_share_uri:
|
|
|
|
shareLink(false);
|
|
|
|
break;
|
|
|
|
case R.id.action_save_as_bookmark:
|
|
|
|
saveAsBookmark();
|
|
|
|
break;
|
|
|
|
case R.id.action_delete_bookmark:
|
|
|
|
deleteBookmark();
|
|
|
|
break;
|
2018-12-30 15:57:37 +00:00
|
|
|
case R.id.action_destroy_room:
|
|
|
|
destroyRoom();
|
|
|
|
break;
|
2018-06-22 19:55:54 +00:00
|
|
|
case R.id.action_advanced_mode:
|
|
|
|
this.mAdvancedMode = !menuItem.isChecked();
|
|
|
|
menuItem.setChecked(this.mAdvancedMode);
|
|
|
|
getPreferences().edit().putBoolean("advanced_muc_mode", mAdvancedMode).apply();
|
|
|
|
final boolean online = mConversation != null && mConversation.getMucOptions().online();
|
|
|
|
this.binding.mucInfoMore.setVisibility(this.mAdvancedMode && online ? View.VISIBLE : View.GONE);
|
|
|
|
invalidateOptionsMenu();
|
|
|
|
updateView();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return super.onOptionsItemSelected(menuItem);
|
|
|
|
}
|
|
|
|
|
2019-01-26 19:31:52 +00:00
|
|
|
@Override
|
|
|
|
public boolean onContextItemSelected(MenuItem item) {
|
2019-08-14 15:04:31 +00:00
|
|
|
final User user = mUserPreviewAdapter.getSelectedUser();
|
|
|
|
if (user == null) {
|
|
|
|
Toast.makeText(this, R.string.unable_to_perform_this_action, Toast.LENGTH_SHORT).show();
|
|
|
|
return true;
|
|
|
|
}
|
2019-01-26 19:31:52 +00:00
|
|
|
if (!MucDetailsContextMenuHelper.onContextItemSelected(item, mUserPreviewAdapter.getSelectedUser(), this)) {
|
|
|
|
return super.onContextItemSelected(item);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-06-22 19:55:54 +00:00
|
|
|
public void onMucEditButtonClicked(View v) {
|
|
|
|
if (this.binding.mucEditor.getVisibility() == View.GONE) {
|
|
|
|
final MucOptions mucOptions = mConversation.getMucOptions();
|
|
|
|
this.binding.mucEditor.setVisibility(View.VISIBLE);
|
|
|
|
this.binding.mucDisplay.setVisibility(View.GONE);
|
2018-06-23 07:29:29 +00:00
|
|
|
this.binding.editMucNameButton.setImageResource(getThemeResource(R.attr.icon_cancel, R.drawable.ic_cancel_black_24dp));
|
2018-06-22 19:55:54 +00:00
|
|
|
final String name = mucOptions.getName();
|
|
|
|
this.binding.mucEditTitle.setText("");
|
|
|
|
final boolean owner = mucOptions.getSelf().getAffiliation().ranks(MucOptions.Affiliation.OWNER);
|
|
|
|
if (owner || printableValue(name)) {
|
|
|
|
this.binding.mucEditTitle.setVisibility(View.VISIBLE);
|
|
|
|
if (name != null) {
|
|
|
|
this.binding.mucEditTitle.append(name);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.binding.mucEditTitle.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
this.binding.mucEditTitle.setEnabled(owner);
|
|
|
|
final String subject = mucOptions.getSubject();
|
|
|
|
this.binding.mucEditSubject.setText("");
|
|
|
|
if (subject != null) {
|
|
|
|
this.binding.mucEditSubject.append(subject);
|
|
|
|
}
|
|
|
|
this.binding.mucEditSubject.setEnabled(mucOptions.canChangeSubject());
|
|
|
|
if (!owner) {
|
|
|
|
this.binding.mucEditSubject.requestFocus();
|
|
|
|
}
|
|
|
|
} else {
|
2018-06-22 22:58:20 +00:00
|
|
|
String subject = this.binding.mucEditSubject.isEnabled() ? this.binding.mucEditSubject.getEditableText().toString().trim() : null;
|
|
|
|
String name = this.binding.mucEditTitle.isEnabled() ? this.binding.mucEditTitle.getEditableText().toString().trim() : null;
|
|
|
|
onMucInfoUpdated(subject, name);
|
2018-06-23 07:29:29 +00:00
|
|
|
SoftKeyboardUtils.hideSoftKeyboard(this);
|
2018-06-22 22:58:20 +00:00
|
|
|
hideEditor();
|
2018-06-22 19:55:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-22 22:58:20 +00:00
|
|
|
private void hideEditor() {
|
|
|
|
this.binding.mucEditor.setVisibility(View.GONE);
|
|
|
|
this.binding.mucDisplay.setVisibility(View.VISIBLE);
|
|
|
|
this.binding.editMucNameButton.setImageResource(getThemeResource(R.attr.icon_edit_body, R.drawable.ic_edit_black_24dp));
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onMucInfoUpdated(String subject, String name) {
|
|
|
|
final MucOptions mucOptions = mConversation.getMucOptions();
|
2018-06-23 07:29:29 +00:00
|
|
|
if (mucOptions.canChangeSubject() && changed(mucOptions.getSubject(), subject)) {
|
2018-06-22 22:58:20 +00:00
|
|
|
xmppConnectionService.pushSubjectToConference(mConversation, subject);
|
|
|
|
}
|
2018-06-23 07:29:29 +00:00
|
|
|
if (mucOptions.getSelf().getAffiliation().ranks(MucOptions.Affiliation.OWNER) && changed(mucOptions.getName(), name)) {
|
2018-06-22 22:58:20 +00:00
|
|
|
Bundle options = new Bundle();
|
|
|
|
options.putString("muc#roomconfig_persistentroom", "1");
|
2018-06-24 14:33:15 +00:00
|
|
|
options.putString("muc#roomconfig_roomname", StringUtils.nullOnEmpty(name));
|
2018-06-23 07:29:29 +00:00
|
|
|
xmppConnectionService.pushConferenceConfiguration(mConversation, options, this);
|
2018-06-22 22:58:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-23 07:29:29 +00:00
|
|
|
|
2018-06-22 19:55:54 +00:00
|
|
|
@Override
|
|
|
|
protected String getShareableUri(boolean http) {
|
|
|
|
if (mConversation != null) {
|
|
|
|
if (http) {
|
|
|
|
return "https://conversations.im/j/" + XmppUri.lameUrlEncode(mConversation.getJid().asBareJid().toEscapedString());
|
|
|
|
} else {
|
|
|
|
return "xmpp:" + mConversation.getJid().asBareJid() + "?join";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onPrepareOptionsMenu(Menu menu) {
|
|
|
|
MenuItem menuItemSaveBookmark = menu.findItem(R.id.action_save_as_bookmark);
|
|
|
|
MenuItem menuItemDeleteBookmark = menu.findItem(R.id.action_delete_bookmark);
|
|
|
|
MenuItem menuItemAdvancedMode = menu.findItem(R.id.action_advanced_mode);
|
2018-12-30 15:57:37 +00:00
|
|
|
MenuItem menuItemDestroyRoom = menu.findItem(R.id.action_destroy_room);
|
2018-06-22 19:55:54 +00:00
|
|
|
menuItemAdvancedMode.setChecked(mAdvancedMode);
|
|
|
|
if (mConversation == null) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (mConversation.getBookmark() != null) {
|
|
|
|
menuItemSaveBookmark.setVisible(false);
|
|
|
|
menuItemDeleteBookmark.setVisible(true);
|
|
|
|
} else {
|
|
|
|
menuItemDeleteBookmark.setVisible(false);
|
|
|
|
menuItemSaveBookmark.setVisible(true);
|
|
|
|
}
|
2018-12-30 15:57:37 +00:00
|
|
|
menuItemDestroyRoom.setVisible(mConversation.getMucOptions().getSelf().getAffiliation().ranks(MucOptions.Affiliation.OWNER));
|
2018-06-22 19:55:54 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
2019-02-08 12:46:33 +00:00
|
|
|
final boolean groupChat = mConversation != null && mConversation.isPrivateAndNonAnonymous();
|
2018-06-22 19:55:54 +00:00
|
|
|
getMenuInflater().inflate(R.menu.muc_details, menu);
|
2019-02-07 12:18:42 +00:00
|
|
|
final MenuItem share = menu.findItem(R.id.action_share);
|
2019-02-09 19:21:29 +00:00
|
|
|
share.setVisible(!groupChat);
|
2019-02-08 12:46:33 +00:00
|
|
|
final MenuItem destroy = menu.findItem(R.id.action_destroy_room);
|
|
|
|
destroy.setTitle(groupChat ? R.string.destroy_room : R.string.destroy_channel);
|
2018-10-17 20:50:34 +00:00
|
|
|
AccountUtils.showHideMenuItems(menu);
|
2018-06-22 19:55:54 +00:00
|
|
|
return super.onCreateOptionsMenu(menu);
|
|
|
|
}
|
|
|
|
|
2018-09-15 17:38:45 +00:00
|
|
|
@Override
|
|
|
|
public void onMediaLoaded(List<Attachment> attachments) {
|
|
|
|
runOnUiThread(() -> {
|
|
|
|
int limit = GridManager.getCurrentColumnCount(binding.media);
|
2019-01-25 16:58:23 +00:00
|
|
|
mMediaAdapter.setAttachments(attachments.subList(0, Math.min(limit, attachments.size())));
|
2018-09-15 17:38:45 +00:00
|
|
|
binding.mediaWrapper.setVisibility(attachments.size() > 0 ? View.VISIBLE : View.GONE);
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-06-22 19:55:54 +00:00
|
|
|
|
|
|
|
protected void saveAsBookmark() {
|
2018-06-24 14:17:20 +00:00
|
|
|
xmppConnectionService.saveConversationAsBookmark(mConversation, mConversation.getMucOptions().getName());
|
2018-06-22 19:55:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected void deleteBookmark() {
|
2019-09-28 00:23:15 +00:00
|
|
|
final Account account = mConversation.getAccount();
|
|
|
|
final Bookmark bookmark = mConversation.getBookmark();
|
2018-06-22 19:55:54 +00:00
|
|
|
bookmark.setConversation(null);
|
2019-09-27 22:32:29 +00:00
|
|
|
xmppConnectionService.deleteBookmark(account, bookmark);
|
2018-06-22 19:55:54 +00:00
|
|
|
updateView();
|
|
|
|
}
|
|
|
|
|
2018-12-30 15:57:37 +00:00
|
|
|
protected void destroyRoom() {
|
2019-02-08 12:46:33 +00:00
|
|
|
final boolean groupChat = mConversation != null && mConversation.isPrivateAndNonAnonymous();
|
2018-12-30 15:57:37 +00:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
2019-02-08 12:46:33 +00:00
|
|
|
builder.setTitle(groupChat ? R.string.destroy_room : R.string.destroy_channel);
|
|
|
|
builder.setMessage(groupChat ? R.string.destroy_room_dialog : R.string.destroy_channel_dialog);
|
2018-12-30 15:57:37 +00:00
|
|
|
builder.setPositiveButton(R.string.ok, (dialog, which) -> {
|
|
|
|
xmppConnectionService.destroyRoom(mConversation, ConferenceDetailsActivity.this);
|
|
|
|
});
|
|
|
|
builder.setNegativeButton(R.string.cancel, null);
|
|
|
|
final AlertDialog dialog = builder.create();
|
|
|
|
dialog.setCanceledOnTouchOutside(false);
|
|
|
|
dialog.show();
|
|
|
|
}
|
|
|
|
|
2018-06-22 19:55:54 +00:00
|
|
|
@Override
|
|
|
|
void onBackendConnected() {
|
|
|
|
if (mPendingConferenceInvite != null) {
|
|
|
|
mPendingConferenceInvite.execute(this);
|
|
|
|
mPendingConferenceInvite = null;
|
|
|
|
}
|
|
|
|
if (getIntent().getAction().equals(ACTION_VIEW_MUC)) {
|
|
|
|
this.uuid = getIntent().getExtras().getString("uuid");
|
|
|
|
}
|
|
|
|
if (uuid != null) {
|
|
|
|
this.mConversation = xmppConnectionService.findConversationByUuid(uuid);
|
|
|
|
if (this.mConversation != null) {
|
2018-09-17 19:24:25 +00:00
|
|
|
if (Compatibility.hasStoragePermission(this)) {
|
|
|
|
final int limit = GridManager.getCurrentColumnCount(this.binding.media);
|
|
|
|
xmppConnectionService.getAttachments(this.mConversation, limit, this);
|
|
|
|
this.binding.showMedia.setOnClickListener((v) -> MediaBrowserActivity.launch(this, mConversation));
|
|
|
|
}
|
2018-06-22 19:55:54 +00:00
|
|
|
updateView();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-22 22:58:20 +00:00
|
|
|
@Override
|
|
|
|
public void onBackPressed() {
|
|
|
|
if (this.binding.mucEditor.getVisibility() == View.VISIBLE) {
|
|
|
|
hideEditor();
|
|
|
|
} else {
|
|
|
|
super.onBackPressed();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-22 19:55:54 +00:00
|
|
|
private void updateView() {
|
|
|
|
invalidateOptionsMenu();
|
2019-05-22 21:58:39 +00:00
|
|
|
if (mConversation == null) {
|
|
|
|
return;
|
|
|
|
}
|
2018-06-22 19:55:54 +00:00
|
|
|
final MucOptions mucOptions = mConversation.getMucOptions();
|
|
|
|
final User self = mucOptions.getSelf();
|
|
|
|
String account;
|
|
|
|
if (Config.DOMAIN_LOCK != null) {
|
|
|
|
account = mConversation.getAccount().getJid().getLocal();
|
|
|
|
} else {
|
|
|
|
account = mConversation.getAccount().getJid().asBareJid().toString();
|
|
|
|
}
|
2019-02-06 13:45:51 +00:00
|
|
|
setTitle(mucOptions.isPrivateAndNonAnonymous() ? R.string.action_muc_details : R.string.channel_details);
|
2018-06-22 19:55:54 +00:00
|
|
|
this.binding.editMucNameButton.setVisibility((self.getAffiliation().ranks(MucOptions.Affiliation.OWNER) || mucOptions.canChangeSubject()) ? View.VISIBLE : View.GONE);
|
|
|
|
this.binding.detailsAccount.setText(getString(R.string.using_account, account));
|
2020-02-17 10:10:41 +00:00
|
|
|
if (mConversation.isPrivateAndNonAnonymous()) {
|
|
|
|
this.binding.jid.setText(getString(R.string.hosted_on, mConversation.getJid().getDomain()));
|
|
|
|
} else {
|
|
|
|
this.binding.jid.setText(mConversation.getJid().asBareJid().toEscapedString());
|
|
|
|
}
|
2019-01-25 16:58:23 +00:00
|
|
|
AvatarWorkerTask.loadAvatar(mConversation, binding.yourPhoto, R.dimen.avatar_on_details_screen_size);
|
2018-06-22 19:55:54 +00:00
|
|
|
String roomName = mucOptions.getName();
|
|
|
|
String subject = mucOptions.getSubject();
|
2018-06-23 17:00:23 +00:00
|
|
|
final boolean hasTitle;
|
2018-06-22 19:55:54 +00:00
|
|
|
if (printableValue(roomName)) {
|
2018-06-25 07:25:55 +00:00
|
|
|
this.binding.mucTitle.setText(EmojiWrapper.transform(roomName));
|
2018-06-22 19:55:54 +00:00
|
|
|
this.binding.mucTitle.setVisibility(View.VISIBLE);
|
2018-06-23 17:00:23 +00:00
|
|
|
hasTitle = true;
|
2018-06-22 19:55:54 +00:00
|
|
|
} else if (!printableValue(subject)) {
|
2018-06-23 11:14:12 +00:00
|
|
|
this.binding.mucTitle.setText(EmojiWrapper.transform(mConversation.getName()));
|
2018-06-23 17:00:23 +00:00
|
|
|
hasTitle = true;
|
2018-06-22 19:55:54 +00:00
|
|
|
this.binding.mucTitle.setVisibility(View.VISIBLE);
|
|
|
|
} else {
|
2018-06-23 17:00:23 +00:00
|
|
|
hasTitle = false;
|
2018-06-22 19:55:54 +00:00
|
|
|
this.binding.mucTitle.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
if (printableValue(subject)) {
|
|
|
|
SpannableStringBuilder spannable = new SpannableStringBuilder(subject);
|
2018-06-23 11:14:12 +00:00
|
|
|
StylingHelper.format(spannable, this.binding.mucSubject.getCurrentTextColor());
|
2018-06-22 19:55:54 +00:00
|
|
|
MyLinkify.addLinks(spannable, false);
|
2018-06-23 11:14:12 +00:00
|
|
|
this.binding.mucSubject.setText(EmojiWrapper.transform(spannable));
|
2019-01-25 16:58:23 +00:00
|
|
|
this.binding.mucSubject.setTextAppearance(this, subject.length() > (hasTitle ? 128 : 196) ? R.style.TextAppearance_Conversations_Body1_Linkified : R.style.TextAppearance_Conversations_Subhead);
|
2018-06-22 19:55:54 +00:00
|
|
|
this.binding.mucSubject.setAutoLinkMask(0);
|
|
|
|
this.binding.mucSubject.setVisibility(View.VISIBLE);
|
|
|
|
} else {
|
|
|
|
this.binding.mucSubject.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
this.binding.mucYourNick.setText(mucOptions.getActualNick());
|
|
|
|
if (mucOptions.online()) {
|
2019-01-25 16:58:23 +00:00
|
|
|
this.binding.usersWrapper.setVisibility(View.VISIBLE);
|
2018-06-22 19:55:54 +00:00
|
|
|
this.binding.mucInfoMore.setVisibility(this.mAdvancedMode ? View.VISIBLE : View.GONE);
|
|
|
|
this.binding.mucRole.setVisibility(View.VISIBLE);
|
|
|
|
this.binding.mucRole.setText(getStatus(self));
|
2019-02-06 17:29:07 +00:00
|
|
|
if (mucOptions.getSelf().getAffiliation().ranks(MucOptions.Affiliation.OWNER)) {
|
|
|
|
this.binding.mucSettings.setVisibility(View.VISIBLE);
|
2020-02-17 10:10:41 +00:00
|
|
|
this.binding.mucConferenceType.setText(MucConfiguration.describe(this, mucOptions));
|
2019-02-06 17:29:07 +00:00
|
|
|
} else if (!mucOptions.isPrivateAndNonAnonymous() && mucOptions.nonanonymous()) {
|
|
|
|
this.binding.mucSettings.setVisibility(View.VISIBLE);
|
|
|
|
this.binding.mucConferenceType.setText(R.string.group_chat_will_make_your_jabber_id_public);
|
2018-06-22 19:55:54 +00:00
|
|
|
} else {
|
2019-02-06 17:29:07 +00:00
|
|
|
this.binding.mucSettings.setVisibility(View.GONE);
|
2018-06-22 19:55:54 +00:00
|
|
|
}
|
|
|
|
if (mucOptions.mamSupport()) {
|
|
|
|
this.binding.mucInfoMam.setText(R.string.server_info_available);
|
|
|
|
} else {
|
|
|
|
this.binding.mucInfoMam.setText(R.string.server_info_unavailable);
|
|
|
|
}
|
|
|
|
if (self.getAffiliation().ranks(MucOptions.Affiliation.OWNER)) {
|
|
|
|
this.binding.changeConferenceButton.setVisibility(View.VISIBLE);
|
|
|
|
} else {
|
|
|
|
this.binding.changeConferenceButton.setVisibility(View.INVISIBLE);
|
|
|
|
}
|
|
|
|
} else {
|
2019-01-25 16:58:23 +00:00
|
|
|
this.binding.usersWrapper.setVisibility(View.GONE);
|
2018-06-22 19:55:54 +00:00
|
|
|
this.binding.mucInfoMore.setVisibility(View.GONE);
|
|
|
|
this.binding.mucSettings.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ic_notifications = getThemeResource(R.attr.icon_notifications, R.drawable.ic_notifications_black_24dp);
|
|
|
|
int ic_notifications_off = getThemeResource(R.attr.icon_notifications_off, R.drawable.ic_notifications_off_black_24dp);
|
|
|
|
int ic_notifications_paused = getThemeResource(R.attr.icon_notifications_paused, R.drawable.ic_notifications_paused_black_24dp);
|
|
|
|
int ic_notifications_none = getThemeResource(R.attr.icon_notifications_none, R.drawable.ic_notifications_none_black_24dp);
|
|
|
|
|
|
|
|
long mutedTill = mConversation.getLongAttribute(Conversation.ATTRIBUTE_MUTED_TILL, 0);
|
|
|
|
if (mutedTill == Long.MAX_VALUE) {
|
|
|
|
this.binding.notificationStatusText.setText(R.string.notify_never);
|
|
|
|
this.binding.notificationStatusButton.setImageResource(ic_notifications_off);
|
|
|
|
} else if (System.currentTimeMillis() < mutedTill) {
|
|
|
|
this.binding.notificationStatusText.setText(R.string.notify_paused);
|
|
|
|
this.binding.notificationStatusButton.setImageResource(ic_notifications_paused);
|
|
|
|
} else if (mConversation.alwaysNotify()) {
|
|
|
|
this.binding.notificationStatusText.setText(R.string.notify_on_all_messages);
|
|
|
|
this.binding.notificationStatusButton.setImageResource(ic_notifications);
|
|
|
|
} else {
|
|
|
|
this.binding.notificationStatusText.setText(R.string.notify_only_when_highlighted);
|
|
|
|
this.binding.notificationStatusButton.setImageResource(ic_notifications_none);
|
|
|
|
}
|
2019-02-06 17:29:07 +00:00
|
|
|
final List<User> users = mucOptions.getUsers();
|
2019-01-25 16:58:23 +00:00
|
|
|
Collections.sort(users, (a, b) -> {
|
|
|
|
if (b.getAffiliation().outranks(a.getAffiliation())) {
|
|
|
|
return 1;
|
|
|
|
} else if (a.getAffiliation().outranks(b.getAffiliation())) {
|
|
|
|
return -1;
|
2018-06-22 19:55:54 +00:00
|
|
|
} else {
|
2019-01-25 16:58:23 +00:00
|
|
|
if (a.getAvatar() != null && b.getAvatar() == null) {
|
|
|
|
return -1;
|
|
|
|
} else if (a.getAvatar() == null && b.getAvatar() != null) {
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return a.getComparableName().compareToIgnoreCase(b.getComparableName());
|
|
|
|
}
|
2018-06-22 19:55:54 +00:00
|
|
|
}
|
2019-01-25 16:58:23 +00:00
|
|
|
});
|
2019-01-26 19:31:52 +00:00
|
|
|
this.mUserPreviewAdapter.submitList(MucOptions.sub(users, GridManager.getCurrentColumnCount(binding.users)));
|
2019-01-25 16:58:23 +00:00
|
|
|
this.binding.invite.setVisibility(mucOptions.canInvite() ? View.VISIBLE : View.GONE);
|
2019-02-06 17:29:07 +00:00
|
|
|
this.binding.showUsers.setVisibility(users.size() > 0 ? View.VISIBLE : View.GONE);
|
2020-01-05 10:22:39 +00:00
|
|
|
this.binding.showUsers.setText(getResources().getQuantityString(R.plurals.view_users, users.size(), users.size()));
|
2019-02-06 17:29:07 +00:00
|
|
|
this.binding.usersWrapper.setVisibility(users.size() > 0 || mucOptions.canInvite() ? View.VISIBLE : View.GONE);
|
|
|
|
if (users.size() == 0) {
|
|
|
|
this.binding.noUsersHints.setText(mucOptions.isPrivateAndNonAnonymous() ? R.string.no_users_hint_group_chat : R.string.no_users_hint_channel);
|
|
|
|
this.binding.noUsersHints.setVisibility(View.VISIBLE);
|
|
|
|
} else {
|
|
|
|
this.binding.noUsersHints.setVisibility(View.GONE);
|
|
|
|
}
|
2019-01-25 16:58:23 +00:00
|
|
|
|
2018-06-22 19:55:54 +00:00
|
|
|
}
|
|
|
|
|
2019-01-25 16:58:23 +00:00
|
|
|
public static String getStatus(Context context, User user, final boolean advanced) {
|
|
|
|
if (advanced) {
|
|
|
|
return String.format("%s (%s)", context.getString(user.getAffiliation().getResId()), context.getString(user.getRole().getResId()));
|
2018-06-22 19:55:54 +00:00
|
|
|
} else {
|
2019-01-25 16:58:23 +00:00
|
|
|
return context.getString(user.getAffiliation().getResId());
|
2018-06-22 19:55:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-25 16:58:23 +00:00
|
|
|
private String getStatus(User user) {
|
|
|
|
return getStatus(this, user, mAdvancedMode);
|
2018-06-22 19:55:54 +00:00
|
|
|
}
|
|
|
|
|
2019-01-25 16:58:23 +00:00
|
|
|
|
2018-06-22 19:55:54 +00:00
|
|
|
@Override
|
|
|
|
public void onAffiliationChangedSuccessful(Jid jid) {
|
|
|
|
refreshUi();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAffiliationChangeFailed(Jid jid, int resId) {
|
|
|
|
displayToast(getString(resId, jid.asBareJid().toString()));
|
|
|
|
}
|
|
|
|
|
2018-12-30 15:57:37 +00:00
|
|
|
@Override
|
|
|
|
public void onRoomDestroySucceeded() {
|
|
|
|
finish();
|
|
|
|
}
|
2019-01-25 16:58:23 +00:00
|
|
|
|
2018-12-30 15:57:37 +00:00
|
|
|
@Override
|
|
|
|
public void onRoomDestroyFailed() {
|
2019-02-08 12:46:33 +00:00
|
|
|
final boolean groupChat = mConversation != null && mConversation.isPrivateAndNonAnonymous();
|
|
|
|
displayToast(getString(groupChat ? R.string.could_not_destroy_room : R.string.could_not_destroy_channel));
|
2018-12-30 15:57:37 +00:00
|
|
|
}
|
|
|
|
|
2018-06-22 19:55:54 +00:00
|
|
|
@Override
|
|
|
|
public void onPushSucceeded() {
|
|
|
|
displayToast(getString(R.string.modified_conference_options));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPushFailed() {
|
|
|
|
displayToast(getString(R.string.could_not_modify_conference_options));
|
|
|
|
}
|
|
|
|
|
|
|
|
private void displayToast(final String msg) {
|
2018-11-18 10:21:52 +00:00
|
|
|
runOnUiThread(() -> {
|
2018-11-18 16:08:37 +00:00
|
|
|
if (isFinishing()) {
|
|
|
|
return;
|
2018-11-18 10:21:52 +00:00
|
|
|
}
|
2018-11-20 16:17:14 +00:00
|
|
|
ToastCompat.makeText(this, msg, Toast.LENGTH_SHORT).show();
|
2018-11-18 10:21:52 +00:00
|
|
|
});
|
2018-06-22 19:55:54 +00:00
|
|
|
}
|
|
|
|
|
2018-06-23 07:29:29 +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-06-23 17:00:23 +00:00
|
|
|
if (mConversation == null) {
|
|
|
|
return;
|
|
|
|
}
|
2018-06-23 07:29:29 +00:00
|
|
|
final MucOptions mucOptions = mConversation.getMucOptions();
|
|
|
|
if (this.binding.mucEditor.getVisibility() == View.VISIBLE) {
|
|
|
|
boolean subjectChanged = changed(binding.mucEditSubject.getEditableText().toString(), mucOptions.getSubject());
|
|
|
|
boolean nameChanged = changed(binding.mucEditTitle.getEditableText().toString(), mucOptions.getName());
|
|
|
|
if (subjectChanged || nameChanged) {
|
|
|
|
this.binding.editMucNameButton.setImageResource(getThemeResource(R.attr.icon_save, R.drawable.ic_save_black_24dp));
|
|
|
|
} else {
|
|
|
|
this.binding.editMucNameButton.setImageResource(getThemeResource(R.attr.icon_cancel, R.drawable.ic_cancel_black_24dp));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-04 01:51:01 +00:00
|
|
|
}
|