aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/pixart/messenger/ui/BlockContactDialog.java
blob: d1c6b56d6bf3c39ed58ae7c67487e72f0b00fadb (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
package de.pixart.messenger.ui;

import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.text.SpannableString;
import android.text.Spanned;
import android.text.style.TypefaceSpan;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.CheckBox;
import android.widget.LinearLayout;
import android.widget.TextView;

import de.pixart.messenger.R;
import de.pixart.messenger.entities.Blockable;
import de.pixart.messenger.services.XmppConnectionService;

public final class BlockContactDialog {
    public static void show(final Context context,
                            final XmppConnectionService xmppConnectionService,
                            final Blockable blockable) {
        final AlertDialog.Builder builder = new AlertDialog.Builder(context);
        final boolean isBlocked = blockable.isBlocked();
        builder.setNegativeButton(R.string.cancel, null);
        LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        LinearLayout view = (LinearLayout) inflater.inflate(R.layout.dialog_block_contact, null);
        TextView message = (TextView) view.findViewById(R.id.text);
        final CheckBox report = (CheckBox) view.findViewById(R.id.report_spam);
        final boolean reporting = blockable.getAccount().getXmppConnection().getFeatures().spamReporting();
        report.setVisibility(!isBlocked && reporting ? View.VISIBLE : View.GONE);
        builder.setView(view);

        String value;
        SpannableString spannable;
        if (blockable.getJid().isDomainJid() || blockable.getAccount().isBlocked(blockable.getJid().toDomainJid())) {
            builder.setTitle(isBlocked ? R.string.action_unblock_domain : R.string.action_block_domain);
            value = blockable.getJid().toDomainJid().toString();
            spannable = new SpannableString(context.getString(isBlocked ? R.string.unblock_domain_text : R.string.block_domain_text, value));
            message.setText(spannable);
        } else {
            builder.setTitle(isBlocked ? R.string.action_unblock_contact : R.string.action_block_contact);
            value = blockable.getJid().toBareJid().toString();
            spannable = new SpannableString(context.getString(isBlocked ? R.string.unblock_contact_text : R.string.block_contact_text, value));
        }
        int start = spannable.toString().indexOf(value);
        if (start >= 0) {
            spannable.setSpan(new TypefaceSpan("monospace"), start, start + value.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
        }
        message.setText(spannable);
        builder.setPositiveButton(isBlocked ? R.string.unblock : R.string.block, new DialogInterface.OnClickListener() {

            @Override
            public void onClick(final DialogInterface dialog, final int which) {
                if (isBlocked) {
                    xmppConnectionService.sendUnblockRequest(blockable);
                } else {
                    xmppConnectionService.sendBlockRequest(blockable, report.isChecked());
                }
            }
        });
        builder.create().show();
    }
}