summaryrefslogtreecommitdiffstats
path: root/comm/calendar/base/src/CalAttachment.jsm
blob: df21188c8ed5bae12f60df87022d9ee7e6ccf08d (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
159
160
161
162
163
164
165
166
167
168
169
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

var EXPORTED_SYMBOLS = ["CalAttachment"];

var { cal } = ChromeUtils.import("resource:///modules/calendar/calUtils.jsm");

/**
 * Constructor for `calIAttachment` objects.
 *
 * @class
 * @implements {calIAttachment}
 * @param {string} [icalString] - Optional iCal string for initializing existing attachments.
 */
function CalAttachment(icalString) {
  this.wrappedJSObject = this;
  this.mProperties = new Map();
  if (icalString) {
    this.icalString = icalString;
  }
}

CalAttachment.prototype = {
  QueryInterface: ChromeUtils.generateQI(["calIAttachment"]),
  classID: Components.ID("{5f76b352-ab75-4c2b-82c9-9206dbbf8571}"),

  mData: null,
  mHashId: null,

  get hashId() {
    if (!this.mHashId) {
      let cryptoHash = Cc["@mozilla.org/security/hash;1"].createInstance(Ci.nsICryptoHash);
      let data = new TextEncoder().encode(this.rawData);
      cryptoHash.init(cryptoHash.MD5);
      cryptoHash.update(data, data.length);
      this.mHashId = cryptoHash.finish(true);
    }
    return this.mHashId;
  },

  /**
   * calIAttachment
   */

  get uri() {
    let uri = null;
    if (this.getParameter("VALUE") != "BINARY") {
      // If this is not binary data, its likely an uri. Attempt to convert
      // and throw otherwise.
      try {
        uri = Services.io.newURI(this.mData);
      } catch (e) {
        // Its possible that the uri contains malformed data. Often
        // callers don't expect an exception here, so we just catch
        // it and return null.
      }
    }

    return uri;
  },
  set uri(aUri) {
    // An uri is the default format, remove any value type parameters
    this.deleteParameter("VALUE");
    this.setData(aUri.spec);
  },

  get rawData() {
    return this.mData;
  },
  set rawData(aData) {
    // Setting the raw data lets us assume this is binary data. Make sure
    // the value parameter is set
    this.setParameter("VALUE", "BINARY");
    this.setData(aData);
  },

  get formatType() {
    return this.getParameter("FMTTYPE");
  },
  set formatType(aType) {
    this.setParameter("FMTTYPE", aType);
  },

  get encoding() {
    return this.getParameter("ENCODING");
  },
  set encoding(aValue) {
    this.setParameter("ENCODING", aValue);
  },

  get icalProperty() {
    let icalatt = cal.icsService.createIcalProperty("ATTACH");

    for (let [key, value] of this.mProperties.entries()) {
      try {
        icalatt.setParameter(key, value);
      } catch (e) {
        if (e.result == Cr.NS_ERROR_ILLEGAL_VALUE) {
          // Illegal values should be ignored, but we could log them if
          // the user has enabled logging.
          cal.LOG("Warning: Invalid attachment parameter value " + key + "=" + value);
        } else {
          throw e;
        }
      }
    }

    if (this.mData) {
      icalatt.value = this.mData;
    }
    return icalatt;
  },

  set icalProperty(attProp) {
    // Reset the property bag for the parameters, it will be re-initialized
    // from the ical property.
    this.mProperties = new Map();
    this.setData(attProp.value);

    for (let [name, value] of cal.iterate.icalParameter(attProp)) {
      this.setParameter(name, value);
    }
  },

  get icalString() {
    let comp = this.icalProperty;
    return comp ? comp.icalString : "";
  },
  set icalString(val) {
    let prop = cal.icsService.createIcalPropertyFromString(val);
    if (prop.propertyName != "ATTACH") {
      throw Components.Exception("", Cr.NS_ERROR_ILLEGAL_VALUE);
    }
    this.icalProperty = prop;
  },

  getParameter(aName) {
    return this.mProperties.get(aName);
  },

  setParameter(aName, aValue) {
    if (aValue || aValue === 0) {
      return this.mProperties.set(aName, aValue);
    }
    return this.mProperties.delete(aName);
  },

  deleteParameter(aName) {
    this.mProperties.delete(aName);
  },

  clone() {
    let newAttachment = new CalAttachment();
    newAttachment.mData = this.mData;
    newAttachment.mHashId = this.mHashId;
    for (let [name, value] of this.mProperties.entries()) {
      newAttachment.mProperties.set(name, value);
    }
    return newAttachment;
  },

  setData(aData) {
    // Sets the data and invalidates the hash so it will be recalculated
    this.mHashId = null;
    this.mData = aData;
    return this.mData;
  },
};