This file is indexed.

/usr/share/maas/web/static/js/angular/factories/fabrics.js is in maas-region-api 2.4.0~beta2-6865-gec43e47e6-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
/* Copyright 2015-2016 Canonical Ltd.  This software is licensed under the
 * GNU Affero General Public License version 3 (see the file LICENSE).
 *
 * MAAS Fabric Manager
 *
 * Manages all of the fabrics in the browser. The manager uses the
 * RegionConnection to load the fabrics, update the fabrics, and listen for
 * notification events about fabrics.
 */

angular.module('MAAS').factory(
    'FabricsManager',
    ['$q', '$rootScope', 'RegionConnection', 'Manager', 'VLANsManager',
    function(
    $q, $rootScope, RegionConnection, Manager, VLANsManager) {

        function FabricsManager() {
            Manager.call(this);

            this._pk = "id";
            this._handler = "fabric";

            // Listen for notify events for the fabric object.
            var self = this;
            RegionConnection.registerNotifier("fabric",
                function(action, data) {
                    self.onNotify(action, data);
                });
        }

        FabricsManager.prototype = new Manager();

        // Given a Fabric object, returns its display name.
        FabricsManager.prototype.getName = function(fabric) {
            if(!angular.isObject(fabric)) {
                return;
            }
            if(angular.isString(fabric.name)) {
                return fabric.name;
            } else {
                return this._handler + "-" + fabric[this._pk];
            }
        };

        // Delete the Fabric.
        FabricsManager.prototype.deleteFabric = function(fabric) {
            return RegionConnection.callMethod(
                "fabric.delete", { "id": fabric.id }, true);
        };

        // Create a Fabric.
        FabricsManager.prototype.create = function(fabric) {
            // We don't add the item to the list because a NOTIFY event will
            // add the domain to the list. Adding it here will cause angular to
            // complain because the same object exist in the list.
            return RegionConnection.callMethod("fabric.create", fabric);
        };


        return new FabricsManager();
    }]);