This file is indexed.

/usr/lib/x86_64-linux-gnu/qt5/qml/Ubuntu/UnityWebApps/bindings/tools/backend/tools.js is in unity-webapps-qml 0.1+16.04.20160114-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
/*
 * Copyright 20145 Canonical Ltd.
 *
 * This file is part of unity-webapps-qml.
 *
 * unity-webapps-qml 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; version 3.
 *
 * unity-webapps-qml 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 <http://www.gnu.org/licenses/>.
 */

.import Ubuntu.UnityWebApps 0.2 as UnityWebAppsBridge


/**
 *
 * Tools API backend binding
 *
 */
function createToolsApi(backendDelegate) {
    var PLUGIN_URI = 'Ubuntu.UnityWebApps';
    var VERSION = 0.2;

    var toolsApiInstance = UnityWebAppsBridge.ToolsApi;

    function isValidAlgorithm(algorithm) {
        var algos = ["MD5", "SHA1", "SHA256", "SHA512"]
        return algos.some(function(e) { return e === algorithm; })
    };

    function stringToCryptoAlgorithm(algorithm) {
        var assoc = {
            "MD5": toolsApiInstance.MD5
            , "SHA1": toolsApiInstance.SHA1
            , "SHA256": toolsApiInstance.SHA256
            , "SHA512": toolsApiInstance.SHA512
        };
        return assoc[algorithm]
    };

    return {
        getHmacHash: function(message, algorithm, key, callback) {
            if ( ! isValidAlgorithm(algorithm)) {
                callback({errorMsg: "Invalid algorithm",
                             result: null});
                return;
            }
            callback({errorMsg: "",
                 result: toolsApiInstance.getHmacHash(
                             message, stringToCryptoAlgorithm(algorithm), key)});
        },
        sendHttpRequest: function(url, location, request, payload, callback) {
            if ( ! toolsApiInstance.areCompatibleCorsUrl(url, location)) {
                console.error('sendHttpRequest: incompatible CORS request urls')
                return;
            }

            var xmlrequest = new XMLHttpRequest();

            var verb = payload && payload.length !== 0
                    ? "POST" : "GET"

            xmlrequest.open(verb, url, true);

            xmlrequest.onreadystatechange = function() {
                if (xmlrequest.readyState === XMLHttpRequest.DONE) {
                    callback({
                        errorMsg: xmlrequest.statusText,
                        success: xmlrequest.status == 200,
                        response: xmlrequest.responseText
                    });
                }
            };

            for (var header in request.headers) {
                if (request.headers.hasOwnProperty(header)) {
                    xmlrequest.setRequestHeader(header, request.headers[header])
                }
            }

            xmlrequest.setRequestHeader(
                "Content-Length",
                String(payload.length));

            xmlrequest.send(payload);
        }
    };
}