summaryrefslogtreecommitdiffstats
path: root/src/com/android/mail/EmailAddress.java
blob: 67e08405d5c5db239197472bf62b701f89bde9fe (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
86
87
88
89
90
91
92
93
94
/*
 * Copyright (C) 2013 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.android.mail;

import android.text.Html;
import android.text.util.Rfc822Token;
import android.text.util.Rfc822Tokenizer;
import com.android.mail.utils.LogTag;
import com.android.mail.utils.LogUtils;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/**
 * Class representing a single email address.  Thread-safe, immutable value class suitable for
 * caching.
 * TODO(pwestbro): move to provider
 */
public class EmailAddress {
    public static final String LOG_TAG = LogTag.getLogTag();

    private final String mName;

    private final String mAddress;

    private static final Matcher sEmailMatcher =
            Pattern.compile("\\\"?([^\"<]*?)\\\"?\\s*<(.*)>").matcher("");

    private EmailAddress(String name, String address) {
        mName = name;
        mAddress = address;
    }

    public String getName() {
        return mName;
    }

    /**
     * @return either the parsed out e-mail address, or the full raw address if it is not in
     *     an expected format. This is not guaranteed to be HTML safe.
     */
    public String getAddress() {
        return mAddress;
    }

    // TODO (pwestbro): move to provider
    public static synchronized EmailAddress getEmailAddress(String rawAddress) {
        String name, address;
        if (rawAddress == null) {
            LogUtils.e(LOG_TAG, "null rawAddress in EmailAddress#getEmailAddress");
            rawAddress = "";
        }
        Matcher m = sEmailMatcher.reset(rawAddress);
        if (m.matches()) {
            name = m.group(1);
            address = m.group(2);
            if (name == null) {
                name = "";
            } else {
                name = Html.fromHtml(name.trim()).toString();
            }
            if (address == null) {
                address = "";
            } else {
                address = Html.fromHtml(address).toString();
            }
        } else {
            // Try and tokenize the string
            final Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(rawAddress);
            if (tokens.length > 0) {
                final String tokenizedName = tokens[0].getName();
                name = tokenizedName != null ? Html.fromHtml(tokenizedName.trim()).toString() : "";
                address = Html.fromHtml(tokens[0].getAddress()).toString();
            } else {
                name = "";
                address = Html.fromHtml(rawAddress).toString();
            }
        }
        return new EmailAddress(name, address);
    }
}