-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathimagefinder.js
225 lines (198 loc) · 6.93 KB
/
imagefinder.js
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
function ImageFinder() {
this.mutationObserver = null;
this.styleMutationObserver = null;
this.images = $();
this.sources = {};
//the things to find
this.selectorImages = "img, object, video, embed[type^='application/x-google-chrome-pdf']";
//style tags and CSS in links can add images to other tags. watch the "load" events on these tags
this.selectorStyles = "style, link";
//css background-image values without images
this.backgroundNoImage = ["none", "initial", "inherit"];
//what to look for in css background-image properties
this.urlRegex = /url\(["'\t ]*([^\)]+?)["'\t ]*\)/;
this.imageAdded = null;
this.imageRemoved = null;
this.sourceAdded = null;
this.sourceRemoved = null;
}
ImageFinder.tempAnchor = document.createElement('a');
ImageFinder.prototype.absoluteUrl = function(url) {
ImageFinder.tempAnchor.href = url;
return ImageFinder.tempAnchor.href;
}
ImageFinder.prototype.addImages = function(elements, url) {
var that = this;
elements = $.unique($(elements));
//remove images with changed sources
var modifiedElements = $(this.images).filter(elements).filter(function(){
var eurl = url || this.src || this.currentSrc;
return $(this).attr('data-imagefilter-src') != eurl;
});
if (modifiedElements.length)
{
console.log(modifiedElements.length + " images have changed source.");
this.removeImages(modifiedElements);
}
//add everything not already added
elements = elements.not(this.images);
elements.each(function() {
var eurl = url || this.src || this.currentSrc;
if (!eurl)
console.error("ImageFilter: Missing image url for " + this)
$(this).attr('data-imagefilter-src', eurl);
if (!(eurl in that.sources))
{
that.sources[eurl] = [];
if (that.sourceAdded)
that.sourceAdded(eurl, this);
}
that.sources[eurl].push(this);
if (that.imageAdded)
that.imageAdded(this, eurl);
});
$.merge(this.images, elements);
}
ImageFinder.prototype.removeImages = function(elements, removedFrom) {
var that = this;
var removed = this.images.filter(elements);
if (!removed.length)
return;
$(removed).each(function() {
var eurl = $(this).attr('data-imagefilter-src');
that.sources[eurl].splice(that.sources[eurl].indexOf(this), 1);
if (that.imageRemoved)
that.imageRemoved(this, eurl, removedFrom);
if (that.sources[eurl].length == 0 && that.sourceRemoved)
{
delete that.sources[eurl];
that.sourceRemoved(eurl);
}
$(this).removeAttr('data-imagefilter-src')
});
this.images = this.images.not(removed);
}
//check if a css style includes a background image and return it
ImageFinder.prototype.getCSSBackgroundImage = function(style) {
if (style && style.backgroundImage && this.backgroundNoImage.indexOf(style.backgroundImage) === -1)
{
var url = style.backgroundImage.match(this.urlRegex);
if (url)
return this.absoluteUrl(url[1]);
}
return null;
};
ImageFinder.prototype.getImageURL = function(element) {
var url = element.src || element.currentSrc;
if (!url)
{
var computedStyle = element.currentStyle || getComputedStyle(element, null);
url = this.getCSSBackgroundImage(computedStyle);
}
return url;
}
//look for CSS rules with background images
ImageFinder.prototype.parseStyle = function(rules) {
var that = this;
$(rules).each(function(){
var url = that.getCSSBackgroundImage(this.style);
if (url)
{
//remove and add, just in case the CSS style tag was modified
var images = $(this.selectorText);
that.addImages(images, url);
}
});
};
//catch loading of stylenodes and parse all new rules
//see my post: http://stackoverflow.com/questions/20364687/mutationobserver-and-current-computed-css-styles
ImageFinder.prototype.styleLoaded = function(event) {
if (event.target.sheet)
this.parseStyle(event.target.sheet.cssRules);
};
//every node on the document ever created will come through this function
ImageFinder.prototype.processElements = function(elements) {
var that = this;
elements = $(elements);
//catch stylesheet load events
var styleElements = elements.filter(this.selectorStyles);
styleElements.on('load', this.styleLoaded.bind(this));
styleElements.filter('style').each(function(){
that.styleMutationObserver.observe(this, that.styleMutationObserverOptions);
});
//directly add all found images
var imageElements = $(elements).filter(this.selectorImages);
if (imageElements.length)
this.addImages(imageElements);
//find elements with style attriutes with images
var styledElements = elements.filter('*[style]').not(imageElements).not(imageElements);
styledElements.each(function(){
var computedStyle = this.currentStyle || getComputedStyle(this, null);
var url = that.getCSSBackgroundImage(computedStyle);
if (url)
that.addImages([this], url);
});
};
//mutation observer handler
ImageFinder.prototype.parseMutations = function(mutations) {
var that = this;
mutations.forEach(function(mutation) {
if (mutation.addedNodes.length)
that.processElements($(mutation.addedNodes).find('*').addBack())
if (mutation.removedNodes.length)
that.removeImages($(mutation.removedNodes).find('*').addBack(), mutation.target)
if (mutation.attributeName == "style")
that.processElements([mutation.target]);
if (mutation.attributeName == "src")
that.processElements([mutation.target]);
//images applied via class names are handled by parseStyle. this handles changes to class names specifically
if (mutation.attributeName == "class" && $(mutation.target).attr('data-imagefilter-src'))
{
var url = that.getImageURL(mutation.target);
if (url)
that.addImages([mutation.target], url);
else
that.removeImages([mutation.target]);
}
});
};
ImageFinder.prototype.parseStyleMutations = function(mutations) {
var that = this;
mutations.forEach(function(mutation) {
var target = mutation.target;
if (target.nodeType == 3 && target.parentNode.nodeName == 'STYLE')
target = target.parentNode;
if (target.nodeName == 'STYLE')
{
if (target.parentNode.sheet)
that.parseStyle(target.parentNode.sheet.cssRules);
}
else
console.error("ImageFilter: Failed assertion when handling dynamic CSS.");
});
};
ImageFinder.prototype.start = function(elements) {
var that = this;
//set up observer to catch modifications to style node contents
this.styleMutationObserver = new MutationObserver(this.parseStyleMutations.bind(this));
this.styleMutationObserverOptions = {
childList: true, //would make sense as its the text node that changes, not the style
subtree: true, //no idea why this is needed, but since styles don't really have nested children its ok
characterData: true,
};
//parse all nodes currently loaded
this.processElements($('*'));
//parse all styles currently loaded
$(document.styleSheets).each(function(){
that.parseStyle(this.cssRules);
});
//catch future node injections
this.mutationObserver = new MutationObserver(this.parseMutations.bind(this));
this.mutationObserver.observe(document, {
childList: true,
subtree: true,
attributes: true,
characterData: false,
attributeFilter: ["style", "class", "src"]
});
};