aboutsummaryrefslogtreecommitdiff
path: root/node_modules/labs/rich-text-editor.reel/rich-text-sanitizer.js
blob: 3282d3e60a84030eedd21911f4fd1e95080cee92 (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
/* <copyright>
 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
 (c) Copyright 2011 Motorola Mobility, Inc.  All Rights Reserved.
 </copyright> */
/**
	@module "montage/ui/rich-text-sanitizer.js"
    @requires montage/core/core
*/
var Montage = require("montage").Montage;

/**
    @class module:"montage/ui/rich-text-sanitizer.js".Sanitizer
    @extends module:montage/core/core.Montage
*/
exports.Sanitizer = Montage.create(Montage,/** @lends module:"montage/ui/rich-text-sanitizer.js".Sanitizer# */ {

    willSetValue: {
        value: function(value, identifier)  {
            return this._scopeCSS(value, identifier);
        }
    },

    didGetValue: {
        value: function(value, identifier)  {
            return this._unscopeCSS(value, identifier);
        }
    },

    willInsertHTMLData: {
        value: function(data, identifier)  {
            return this._scopeCSS(this._removeScript(data), identifier);
        }
    },

    _scopeCSS: {
        enumerable: true,
        value: function(htmlFragment, identifier) {
            var identifierSelector = ".editor-" + identifier+ " ";

            if (typeof htmlFragment == "string") {
                // Extract the style tag and its content
                htmlFragment = htmlFragment.replace(/(<style ?[^>]*>)([^<]*)(<\/style>)/ig, function(match, pre, style, post) {
                    // Remove any newlines and tab for easier processing
                    style = style.replace(/\t|\n|\r/g, function(char) {if (char == "\t") return " "; return ""});

                    // Cleanup any potential leftover from a previous scoping
                    style = style.replace(/\*\.editor-[^ ] +/g, "body");
                    style = style.replace(/\.editor-[^ ]+ /g, "");

                    // Extract the selectors for each css block
                    style = style.replace(/([^{]+)({[^}]*})/ig, function(match, selectors, rules) {

                        // Split the selectors and add the identifierSelector
                        selectors = selectors.replace(/ *([^,]+)/g, function(match, selector) {
                            // convert body selector
                            if (selector.toLowerCase() == "body") {
                                return "*" + identifierSelector;
                            } else {
                                return identifierSelector + selector;
                            }
                        })
                        return selectors + rules;
                    })
                    return pre + style + post;
                });
            }

            return htmlFragment;
        }
    },

    _unscopeCSS: {
        enumerable: true,
        value: function(htmlFragment, identifier) {

            if (typeof htmlFragment == "string") {
                // Extract the style tag and its content
                htmlFragment = htmlFragment.replace(/(<style ?[^>]*>)([^<]*)(<\/style>)/ig, function(match, pre, style, post) {
                    style = style.replace(/\*\.editor-[^ ] +/g, "body");
                    style = style.replace(/\.editor-[^ ]+ /g, "");
                    return pre + style + post;
                });
            }
            return htmlFragment;
        }
    },

    _removeScript: {
        enumerable: true,
        value: function(htmlFragment) {
            /*
                Will remove any script tag, onXXX handlers and javascript URLs
             */
            var div = document.createElement("div"),
                _removeScript = function(element) {
                    var children = element.children,
                        child,
                        nbrChildren = children.length,
                        attributes = element.attributes,
                        attribute,
                        nbrAttributes = attributes.length,
                        i;

                for (i = 0; i < nbrAttributes; i ++) {
                    attribute = attributes[i];
                    if (attribute.name.match(/^on[a-z]+/i) || attribute.value.match(/^javascript:/)) {
                        element.removeAttribute(attribute.name);
                        i --;
                        nbrAttributes --;
                    }
                }

                for (i = 0; i < nbrChildren; i ++) {
                    child = children[i];
                    if (child.tagName == "SCRIPT") {
                        child.parentNode.removeChild(child);
                        i --;
                        nbrChildren --;
                    } else {
                        _removeScript(child);
                    }
                }
            };

            div.innerHTML = htmlFragment;
            _removeScript(div);

            return div.innerHTML;
        }
    }
});