2020-03-19 15:46:05 +00:00
|
|
|
/*
|
2020-04-10 18:06:55 +00:00
|
|
|
* Copyright (C) 2020 Yomichan Authors
|
2020-03-19 15:46:05 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* global
|
2020-05-24 17:30:40 +00:00
|
|
|
* api
|
2020-03-19 15:46:05 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class FrameOffsetForwarder {
|
2020-07-11 02:13:11 +00:00
|
|
|
constructor(frameId) {
|
|
|
|
this._frameId = frameId;
|
2020-06-14 18:06:52 +00:00
|
|
|
this._isPrepared = false;
|
2020-04-18 19:26:11 +00:00
|
|
|
this._cacheMaxSize = 1000;
|
2020-04-18 13:48:49 +00:00
|
|
|
this._frameCache = new Set();
|
2020-04-18 14:54:49 +00:00
|
|
|
this._unreachableContentWindowCache = new Set();
|
2020-03-19 15:46:05 +00:00
|
|
|
this._windowMessageHandlers = new Map([
|
2020-07-11 02:13:11 +00:00
|
|
|
['getFrameOffset', this._onMessageGetFrameOffset.bind(this)]
|
2020-03-19 15:46:05 +00:00
|
|
|
]);
|
2020-03-22 01:29:09 +00:00
|
|
|
}
|
2020-03-19 15:46:05 +00:00
|
|
|
|
2020-06-14 18:06:52 +00:00
|
|
|
prepare() {
|
|
|
|
if (this._isPrepared) { return; }
|
|
|
|
window.addEventListener('message', this._onMessage.bind(this), false);
|
|
|
|
this._isPrepared = true;
|
2020-03-19 15:46:05 +00:00
|
|
|
}
|
|
|
|
|
2020-03-22 12:11:43 +00:00
|
|
|
async getOffset() {
|
2020-07-11 02:13:11 +00:00
|
|
|
if (window === window.parent) {
|
|
|
|
return [0, 0];
|
|
|
|
}
|
|
|
|
|
2020-03-19 15:46:05 +00:00
|
|
|
const uniqueId = yomichan.generateId(16);
|
|
|
|
|
2020-03-22 02:55:16 +00:00
|
|
|
const frameOffsetPromise = yomichan.getTemporaryListenerResult(
|
|
|
|
chrome.runtime.onMessage,
|
|
|
|
({action, params}, {resolve}) => {
|
|
|
|
if (action === 'frameOffset' && isObject(params) && params.uniqueId === uniqueId) {
|
|
|
|
resolve(params);
|
|
|
|
}
|
2020-03-22 10:45:58 +00:00
|
|
|
},
|
|
|
|
5000
|
2020-03-22 02:55:16 +00:00
|
|
|
);
|
2020-03-19 15:46:05 +00:00
|
|
|
|
2020-07-11 02:13:11 +00:00
|
|
|
this._getFrameOffsetParent([0, 0], uniqueId, this._frameId);
|
2020-03-19 15:46:05 +00:00
|
|
|
|
|
|
|
const {offset} = await frameOffsetPromise;
|
|
|
|
return offset;
|
|
|
|
}
|
|
|
|
|
2020-06-14 18:06:52 +00:00
|
|
|
// Private
|
|
|
|
|
|
|
|
_onMessage(event) {
|
|
|
|
const data = event.data;
|
|
|
|
if (data === null || typeof data !== 'object') { return; }
|
|
|
|
|
|
|
|
try {
|
|
|
|
const {action, params} = event.data;
|
|
|
|
const handler = this._windowMessageHandlers.get(action);
|
|
|
|
if (typeof handler !== 'function') { return; }
|
|
|
|
handler(params, event);
|
|
|
|
} catch (e) {
|
|
|
|
// NOP
|
|
|
|
}
|
2020-03-19 15:46:05 +00:00
|
|
|
}
|
|
|
|
|
2020-07-11 02:13:11 +00:00
|
|
|
_onMessageGetFrameOffset({offset, uniqueId, frameId}, e) {
|
2020-04-18 14:54:49 +00:00
|
|
|
let sourceFrame = null;
|
|
|
|
if (!this._unreachableContentWindowCache.has(e.source)) {
|
|
|
|
sourceFrame = this._findFrameWithContentWindow(e.source);
|
|
|
|
}
|
2020-04-04 13:48:35 +00:00
|
|
|
if (sourceFrame === null) {
|
2020-04-18 13:48:49 +00:00
|
|
|
// closed shadow root etc.
|
2020-04-18 19:26:11 +00:00
|
|
|
this._addToCache(this._unreachableContentWindowCache, e.source);
|
2020-07-11 02:13:11 +00:00
|
|
|
this._replyFrameOffset(null, uniqueId, frameId);
|
2020-04-18 13:48:49 +00:00
|
|
|
return;
|
2020-04-04 13:48:35 +00:00
|
|
|
}
|
2020-03-19 15:46:05 +00:00
|
|
|
|
|
|
|
const [forwardedX, forwardedY] = offset;
|
|
|
|
const {x, y} = sourceFrame.getBoundingClientRect();
|
|
|
|
offset = [forwardedX + x, forwardedY + y];
|
|
|
|
|
2020-07-11 02:13:11 +00:00
|
|
|
if (window === window.parent) {
|
|
|
|
this._replyFrameOffset(offset, uniqueId, frameId);
|
|
|
|
} else {
|
|
|
|
this._getFrameOffsetParent(offset, uniqueId, frameId);
|
|
|
|
}
|
2020-03-19 15:46:05 +00:00
|
|
|
}
|
|
|
|
|
2020-04-18 13:48:49 +00:00
|
|
|
_findFrameWithContentWindow(contentWindow) {
|
2020-04-18 19:08:38 +00:00
|
|
|
const ELEMENT_NODE = Node.ELEMENT_NODE;
|
|
|
|
for (const elements of this._getFrameElementSources()) {
|
|
|
|
while (elements.length > 0) {
|
|
|
|
const element = elements.shift();
|
|
|
|
if (element.contentWindow === contentWindow) {
|
2020-04-18 19:26:11 +00:00
|
|
|
this._addToCache(this._frameCache, element);
|
2020-04-18 19:08:38 +00:00
|
|
|
return element;
|
2020-04-18 14:18:33 +00:00
|
|
|
}
|
|
|
|
|
2020-05-10 18:10:02 +00:00
|
|
|
const shadowRoot = (
|
|
|
|
element.shadowRoot ||
|
|
|
|
element.openOrClosedShadowRoot // Available to Firefox 63+ for WebExtensions
|
|
|
|
);
|
2020-04-18 19:08:38 +00:00
|
|
|
if (shadowRoot) {
|
|
|
|
for (const child of shadowRoot.children) {
|
|
|
|
if (child.nodeType === ELEMENT_NODE) {
|
|
|
|
elements.push(child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-18 13:48:49 +00:00
|
|
|
|
2020-04-18 19:08:38 +00:00
|
|
|
for (const child of element.children) {
|
2020-04-18 13:48:49 +00:00
|
|
|
if (child.nodeType === ELEMENT_NODE) {
|
|
|
|
elements.push(child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
2020-04-17 21:55:16 +00:00
|
|
|
}
|
|
|
|
|
2020-04-18 19:08:38 +00:00
|
|
|
*_getFrameElementSources() {
|
2020-04-18 19:26:11 +00:00
|
|
|
const frameCache = [];
|
|
|
|
for (const frame of this._frameCache) {
|
|
|
|
// removed from DOM
|
|
|
|
if (!frame.isConnected) {
|
|
|
|
this._frameCache.delete(frame);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
frameCache.push(frame);
|
|
|
|
}
|
|
|
|
yield frameCache;
|
2020-04-18 19:08:38 +00:00
|
|
|
// will contain duplicates, but frame elements are cheap to handle
|
2020-07-11 02:13:11 +00:00
|
|
|
yield [...document.querySelectorAll('frame,iframe')];
|
2020-04-18 19:08:38 +00:00
|
|
|
yield [document.documentElement];
|
|
|
|
}
|
|
|
|
|
2020-04-18 19:26:11 +00:00
|
|
|
_addToCache(cache, value) {
|
|
|
|
let freeSlots = this._cacheMaxSize - cache.size;
|
|
|
|
if (freeSlots <= 0) {
|
|
|
|
for (const cachedValue of cache) {
|
|
|
|
cache.delete(cachedValue);
|
|
|
|
++freeSlots;
|
|
|
|
if (freeSlots > 0) { break; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cache.add(value);
|
|
|
|
}
|
|
|
|
|
2020-07-11 02:13:11 +00:00
|
|
|
_getFrameOffsetParent(offset, uniqueId, frameId) {
|
|
|
|
window.parent.postMessage({
|
|
|
|
action: 'getFrameOffset',
|
|
|
|
params: {
|
|
|
|
offset,
|
|
|
|
uniqueId,
|
|
|
|
frameId
|
|
|
|
}
|
|
|
|
}, '*');
|
2020-03-19 15:46:05 +00:00
|
|
|
}
|
|
|
|
|
2020-07-11 02:13:11 +00:00
|
|
|
_replyFrameOffset(offset, uniqueId, frameId) {
|
|
|
|
api.sendMessageToFrame(frameId, 'frameOffset', {offset, uniqueId});
|
2020-03-19 15:46:05 +00:00
|
|
|
}
|
|
|
|
}
|