summaryrefslogtreecommitdiffstats
path: root/mobile/android/android-components/components/browser/icons/src/main/assets/extensions/browser-icons/icons.js
blob: 20eada9a1986168b2c1ec8be31d6c42648f96098 (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

 /*
  * This web extension looks for known icon tags, collects URLs and available
  * meta data (e.g. sizes) and passes that to the app code.
  */

/**
 * Takes a DOMTokenList and returns a String array.
 */
function sizesToList(sizes) {
    if (sizes == null) {
        return []
    }

    if (!(sizes instanceof DOMTokenList)) {
        return []
    }

    return Array.from(sizes)
}

function collect_link_icons(icons, rel) {
    document.querySelectorAll('link[rel="' + rel + '"]').forEach(
        function(currentValue, currentIndex, listObj) {
            icons.push({
                'type': rel,
                'href': currentValue.href,
                'sizes': sizesToList(currentValue.sizes),
                'mimeType': currentValue.type
            });
    })
}

function collect_meta_property_icons(icons, property) {
    document.querySelectorAll('meta[property="' + property + '"]').forEach(
        function(currentValue, currentIndex, listObj) {
            icons.push({
                'type': property,
                'href': currentValue.content
            })
        }
    )
}

function collect_meta_name_icons(icons, name) {
    document.querySelectorAll('meta[name="' + name + '"]').forEach(
        function(currentValue, currentIndex, listObj) {
            icons.push({
                'type': name,
                'href': currentValue.content
            })
        }
    )
}

let icons = [];

collect_link_icons(icons, 'icon');
collect_link_icons(icons, 'shortcut icon');
collect_link_icons(icons, 'fluid-icon')
collect_link_icons(icons, 'apple-touch-icon')
collect_link_icons(icons, 'image_src')
collect_link_icons(icons, 'apple-touch-icon image_src')
collect_link_icons(icons, 'apple-touch-icon-precomposed')

collect_meta_property_icons(icons, 'og:image')
collect_meta_property_icons(icons, 'og:image:url')
collect_meta_property_icons(icons, 'og:image:secure_url')

collect_meta_name_icons(icons, 'twitter:image')
collect_meta_name_icons(icons, 'msapplication-TileImage')

let message = {
    'url': document.location.href,
    'icons': icons
}

browser.runtime.sendNativeMessage("MozacBrowserIcons", message);