summaryrefslogtreecommitdiffstats
path: root/java/com/android/voicemail/impl/mail/internet/MimeHeader.java
blob: d41cdb3e4e52a2edce84c80f2fde1c16bf90b8e2 (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/*
 * Copyright (C) 2015 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.voicemail.impl.mail.internet;

import com.android.voicemail.impl.mail.MessagingException;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.util.ArrayList;

public class MimeHeader {
  /**
   * Application specific header that contains Store specific information about an attachment. In
   * IMAP this contains the IMAP BODYSTRUCTURE part id so that the ImapStore can later retrieve the
   * attachment at will from the server. The info is recorded from this header on
   * LocalStore.appendMessage and is put back into the MIME data by LocalStore.fetch.
   */
  public static final String HEADER_ANDROID_ATTACHMENT_STORE_DATA =
      "X-Android-Attachment-StoreData";

  public static final String HEADER_CONTENT_TYPE = "Content-Type";
  public static final String HEADER_CONTENT_TRANSFER_ENCODING = "Content-Transfer-Encoding";
  public static final String HEADER_CONTENT_DISPOSITION = "Content-Disposition";
  public static final String HEADER_CONTENT_ID = "Content-ID";

  /** Fields that should be omitted when writing the header using writeTo() */
  private static final String[] WRITE_OMIT_FIELDS = {
    //        HEADER_ANDROID_ATTACHMENT_DOWNLOADED,
    //        HEADER_ANDROID_ATTACHMENT_ID,
    HEADER_ANDROID_ATTACHMENT_STORE_DATA
  };

  protected final ArrayList<Field> mFields = new ArrayList<Field>();

  public void clear() {
    mFields.clear();
  }

  public String getFirstHeader(String name) throws MessagingException {
    String[] header = getHeader(name);
    if (header == null) {
      return null;
    }
    return header[0];
  }

  public void addHeader(String name, String value) throws MessagingException {
    mFields.add(new Field(name, value));
  }

  public void setHeader(String name, String value) throws MessagingException {
    if (name == null || value == null) {
      return;
    }
    removeHeader(name);
    addHeader(name, value);
  }

  public String[] getHeader(String name) throws MessagingException {
    ArrayList<String> values = new ArrayList<String>();
    for (Field field : mFields) {
      if (field.name.equalsIgnoreCase(name)) {
        values.add(field.value);
      }
    }
    if (values.size() == 0) {
      return null;
    }
    return values.toArray(new String[] {});
  }

  public void removeHeader(String name) throws MessagingException {
    ArrayList<Field> removeFields = new ArrayList<Field>();
    for (Field field : mFields) {
      if (field.name.equalsIgnoreCase(name)) {
        removeFields.add(field);
      }
    }
    mFields.removeAll(removeFields);
  }

  /**
   * Write header into String
   *
   * @return CR-NL separated header string except the headers in writeOmitFields null if header is
   *     empty
   */
  public String writeToString() {
    if (mFields.size() == 0) {
      return null;
    }
    StringBuilder builder = new StringBuilder();
    for (Field field : mFields) {
      if (!arrayContains(WRITE_OMIT_FIELDS, field.name)) {
        builder.append(field.name + ": " + field.value + "\r\n");
      }
    }
    return builder.toString();
  }

  public void writeTo(OutputStream out) throws IOException, MessagingException {
    BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(out), 1024);
    for (Field field : mFields) {
      if (!arrayContains(WRITE_OMIT_FIELDS, field.name)) {
        writer.write(field.name + ": " + field.value + "\r\n");
      }
    }
    writer.flush();
  }

  private static class Field {
    final String name;
    final String value;

    public Field(String name, String value) {
      this.name = name;
      this.value = value;
    }

    @Override
    public String toString() {
      return name + "=" + value;
    }
  }

  @Override
  public String toString() {
    return (mFields == null) ? null : mFields.toString();
  }

  public static final boolean arrayContains(Object[] a, Object o) {
    int index = arrayIndex(a, o);
    return (index >= 0);
  }

  public static final int arrayIndex(Object[] a, Object o) {
    for (int i = 0, count = a.length; i < count; i++) {
      if (a[i].equals(o)) {
        return i;
      }
    }
    return -1;
  }
}