This file is indexed.

/usr/share/mopidy/mopidy/frontends/http/__init__.py is in mopidy 0.17.0-3.

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
from __future__ import unicode_literals

import os

import mopidy
from mopidy import config, exceptions, ext


class Extension(ext.Extension):

    dist_name = 'Mopidy-HTTP'
    ext_name = 'http'
    version = mopidy.__version__

    def get_default_config(self):
        conf_file = os.path.join(os.path.dirname(__file__), 'ext.conf')
        return config.read(conf_file)

    def get_config_schema(self):
        schema = super(Extension, self).get_config_schema()
        schema['hostname'] = config.Hostname()
        schema['port'] = config.Port()
        schema['static_dir'] = config.Path(optional=True)
        schema['zeroconf'] = config.String(optional=True)
        return schema

    def validate_environment(self):
        try:
            import cherrypy  # noqa
        except ImportError as e:
            raise exceptions.ExtensionError('cherrypy library not found', e)

        try:
            import ws4py  # noqa
        except ImportError as e:
            raise exceptions.ExtensionError('ws4py library not found', e)

    def get_frontend_classes(self):
        from .actor import HttpFrontend
        return [HttpFrontend]