summaryrefslogtreecommitdiff
path: root/web-ui/app/js/helpers/view_helper.js
blob: 76e574bfe2c1ffd7918f7743e78cdea3c33e8289 (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
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 &&
      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 if (bodyPart.body) {
      body = bodyPart.body;
    } else {
      body = bodyPart;
    }

    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 $(getSanitizedAndDecodedMailBody(addParagraphsToPlainText(mail.getMailMultiParts[0])));
    }

    return $(getSanitizedAndDecodedMailBody(addParagraphsToPlainText(mail.body)));
  }

  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
  };
});