|
|
|
@ -583,16 +583,20 @@ class HomeActivity : PassphraseRequiredActionBarActivity(),
|
|
|
|
|
val recipient = thread.recipient
|
|
|
|
|
val title: String
|
|
|
|
|
val message: CharSequence
|
|
|
|
|
var positiveButtonId: Int = R.string.yes
|
|
|
|
|
var negativeButtonId: Int = R.string.no
|
|
|
|
|
|
|
|
|
|
if (recipient.isGroupRecipient) {
|
|
|
|
|
val group = groupDatabase.getGroup(recipient.address.toString()).orNull()
|
|
|
|
|
|
|
|
|
|
// If you are an admin of this group you can delete it
|
|
|
|
|
if (group != null && group.admins.map { it.toString() }.contains(textSecurePreferences.getLocalNumber())) {
|
|
|
|
|
title = getString(R.string.groupDelete)
|
|
|
|
|
title = getString(R.string.groupLeave)
|
|
|
|
|
message = Phrase.from(this.applicationContext, R.string.groupDeleteDescription)
|
|
|
|
|
.put(GROUP_NAME_KEY, group.title)
|
|
|
|
|
.format()
|
|
|
|
|
positiveButtonId = R.string.leave
|
|
|
|
|
negativeButtonId = R.string.cancel
|
|
|
|
|
} else {
|
|
|
|
|
// Otherwise this is either a community, or it's a group you're not an admin of
|
|
|
|
|
title = if (recipient.isCommunityRecipient) getString(R.string.communityLeave) else getString(R.string.groupLeave)
|
|
|
|
@ -610,15 +614,17 @@ class HomeActivity : PassphraseRequiredActionBarActivity(),
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
// If not group-related and we don't have a recipient name then this must be our Note to Self conversation
|
|
|
|
|
title = getString(R.string.noteToSelf)
|
|
|
|
|
title = getString(R.string.clearMessages)
|
|
|
|
|
message = getString(R.string.clearMessagesNoteToSelfDescription)
|
|
|
|
|
positiveButtonId = R.string.clear
|
|
|
|
|
negativeButtonId = R.string.cancel
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
showSessionDialog {
|
|
|
|
|
title(title)
|
|
|
|
|
text(message)
|
|
|
|
|
button(R.string.yes) {
|
|
|
|
|
dangerButton(positiveButtonId) {
|
|
|
|
|
lifecycleScope.launch(Dispatchers.Main) {
|
|
|
|
|
val context = this@HomeActivity
|
|
|
|
|
// Cancel any outstanding jobs
|
|
|
|
@ -650,7 +656,7 @@ class HomeActivity : PassphraseRequiredActionBarActivity(),
|
|
|
|
|
Toast.makeText(context, toastMessage, Toast.LENGTH_LONG).show()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
button(R.string.no)
|
|
|
|
|
button(negativeButtonId)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|