summaryrefslogtreecommitdiff
path: root/web-ui/app/js/helpers/view_helper.js
blob: 3fa9edc164aab30cfed5525e9feb5f53b030135b (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
define(
  [
    'helpers/contenttype',
    'lib/html_whitelister',
    'views/i18n',
    'quoted-printable/quoted-printable'
  ],
  function(contentType, htmlWhitelister, i18n_lib, quotedPrintable) {
  'use strict';

  function formatStatusClasses(ss) {
    return _.map(ss, function(s) {
      return 'status-' + s;
    }).join(' ');
  }

  function addParagraphsToPlainText(plainTextBodyPart) {
    return _.map(plainTextBodyPart.split('\n'), function (paragraph) {
      return '<p>' + paragraph + '</p>';
    }).join('');
  }

  function isQuotedPrintableBodyPart (bodyPart) {
    return bodyPart.headers['Content-Transfer-Encoding'] && bodyPart.headers['Content-Transfer-Encoding'] === 'quoted-printable';
  }

  function getHtmlContentType (mail) {
    return _.find(mail.availableBodyPartsContentType(), function (contentType) {
      return contentType.indexOf('text/html') >= 0;
    });
  }

  function getSanitizedAndDecodedMailBody (bodyPart) {
    var body;

    if (isQuotedPrintableBodyPart(bodyPart)) {
      body = quotedPrintable.decode(bodyPart.body);
    } else {
      body = bodyPart.body;
    }

    return htmlWhitelister.sanitize(body, htmlWhitelister.tagPolicy);
  }

  function formatMailBody (mail) {
    if (mail.isMailMultipartAlternative()) {
      var htmlContentType;

      htmlContentType = getHtmlContentType(mail);

      if (htmlContentType) {
        return $(getSanitizedAndDecodedMailBody(mail.getMailPartByContentType(htmlContentType)));
      }

      return $(addParagraphsToPlainText(mail.getMailMultiParts[0]));
    }

    return $(addParagraphsToPlainText(mail.body));

    /*
    var body;
    // probably parse MIME parts and ugliness here
    // content_type: "multipart/alternative;  boundary="----=_Part_1115_17865397.1370312509342""
    var mediaType = new contentType.MediaType(mail.header.content_type);
    if(mediaType.type === 'multipart/alternative') {
      var parsedBodyParts = getMailMultiParts(mail.body, mediaType);
      var selectedBodyPart = getHtmlMailPart(parsedBodyParts) || getPlainTextMailPart(parsedBodyParts) || parsedBodyParts[0];
      body = selectedBodyPart.body;

      if (isQuotedPrintableBodyPart(selectedBodyPart)) {
        body = quotedPrintable.decode(body);
      }
    } else {
      body = addParagraphsToPlainText(mail.body);
    }
    return $(htmlWhitelister.sanitize(body, htmlWhitelister.tagPolicy));
    */
  }

  function moveCaretToEnd(el) {
    if (typeof el.selectionStart == "number") {
      el.selectionStart = el.selectionEnd = el.value.length;
    } else if (typeof el.createTextRange != "undefined") {
      el.focus();
      var range = el.createTextRange();
      range.collapse(false);
      range.select();
    }
  }

  function fixedSizeNumber(num, size) {
    var res = num.toString();
    while(res.length < size) {
      res = "0" + res;
    }
    return res;
  }

  function getFormattedDate(date){
    var today = createTodayDate();
    if (date.getTime() > today.getTime()) {
      return fixedSizeNumber(date.getHours(), 2) + ":" + fixedSizeNumber(date.getMinutes(), 2);
    } else {
      return "" + date.getFullYear() + "-" + fixedSizeNumber(date.getMonth() + 1, 2) + "-" + fixedSizeNumber(date.getDate(), 2);
    }
  }

  function createTodayDate() {
    var today = new Date();
    today.setHours(0);
    today.setMinutes(0);
    today.setSeconds(0);
    return today;
  }

  function moveCaretToEndOfText() {
    var self = this;

    moveCaretToEnd(self);
    window.setTimeout(function() {
      moveCaretToEnd(self);
    }, 1);
  }

  function quoteMail(mail) {
    var quotedLines = _.map(mail.body.split('\n'), function (line) {
      return '> ' + line;
    });

    return '\n\n' + quotedLines.join('\n');
  }

  function i18n(text) {
    return i18n_lib.get(text);
  }

  return {
    formatStatusClasses: formatStatusClasses,
    formatMailBody: formatMailBody,
    moveCaretToEndOfText: moveCaretToEndOfText,
    getFormattedDate: getFormattedDate,
    quoteMail: quoteMail,
    i18n: i18n
  };
});