This file is indexed.

/usr/share/pyshared/archipelagenthypervisorgeolocalization/geoloc.py is in archipel-agent-hypervisor-geolocalization 0.6.0-1.

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
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# -*- coding: utf-8 -*-
#
# geoloc.py
#
# Copyright (C) 2010 Antoine Mercadal <antoine.mercadal@inframonde.eu>
# Copyright, 2011 - Franck Villaume <franck.villaume@trivialdev.com>
# This file is part of ArchipelProject
# http://archipelproject.org
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

import httplib
import xmpp

from archipelcore.archipelPlugin import TNArchipelPlugin
from archipelcore.utils import build_error_iq


ARCHIPEL_NS_HYPERVISOR_GEOLOC           = "archipel:hypervisor:geolocalization"
ARCHIPEL_ERROR_CODE_LOCALIZATION_GET    = -9001


class TNHypervisorGeolocalization (TNArchipelPlugin):
    """
    This plugin allow to geolocalize the hypervisor.
    """

    def __init__(self, configuration, entity, entry_point_group):
        """
        Initialize the module.
        @type configuration: Configuration object
        @param configuration: the configuration
        @type entity: L{TNArchipelEntity}
        @param entity: the entity that owns the plugin
        @type entry_point_group: string
        @param entry_point_group: the group name of plugin entry_point
        """
        TNArchipelPlugin.__init__(self, configuration=configuration, entity=entity, entry_point_group=entry_point_group)
        self.plugin_deactivated = False
        try:
            mode    = self.configuration.get("GEOLOCALIZATION", "localization_mode")
            lat     = ""
            lon     = ""
            if mode == "auto":
                service         = self.configuration.get("GEOLOCALIZATION", "localization_service_url")
                request         = self.configuration.get("GEOLOCALIZATION", "localization_service_request")
                method          = self.configuration.get("GEOLOCALIZATION", "localization_service_method")
                conn = httplib.HTTPConnection(service)
                conn.request(method, request)
                data_node = xmpp.simplexml.NodeBuilder(data=str(conn.getresponse().read())).getDom()
                lat = data_node.getTagData("Latitude")
                lon = data_node.getTagData("Longitude")
            else:
                lat = self.configuration.getfloat("GEOLOCALIZATION", "localization_latitude")
                lon = self.configuration.getfloat("GEOLOCALIZATION", "localization_longitude")
            string = "<gelocalization><Latitude>"+str(lat)+"</Latitude>\n<Longitude>"+str(lon)+"</Longitude></gelocalization>"
            self.localization_information = xmpp.simplexml.NodeBuilder(data=string).getDom()
            registrar_item = {  "commands" : ["where are you", "localize"],
                                "parameters": {},
                                "method": self.message_get,
                                "permissions": ["geolocalization_get"],
                                "description": "give my the latitude and longitude." }
            self.entity.add_message_registrar_item(registrar_item)
            # permissions
            self.entity.permission_center.create_permission("geolocalization_get", "Authorizes user to get the entity location coordinates", False)
        except Exception as ex:
            self.plugin_deactivated = True;
            self.entity.log.error("Cannot initialize geolocalization. plugin deactivated. Exception: %s" % str(ex))

    ### Plugin interface

    def register_handlers(self):
        """
        This method will be called by the plugin user when it will be
        necessary to register module for listening to stanza.
        """
        if self.plugin_deactivated:
            return
        self.entity.xmppclient.RegisterHandler('iq', self.process_iq, ns=ARCHIPEL_NS_HYPERVISOR_GEOLOC)

    def unregister_handlers(self):
        """
        Unregister the handlers.
        """
        if self.plugin_deactivated:
            return
        self.entity.xmppclient.UnregisterHandler('iq', self.process_iq, ns=ARCHIPEL_NS_HYPERVISOR_GEOLOC)


    @staticmethod
    def plugin_info():
        """
        Return informations about the plugin.
        @rtype: dict
        @return: dictionary contaning plugin informations
        """
        plugin_friendly_name           = "Hypervisor Geolocalization"
        plugin_identifier              = "geolocalization"
        plugin_configuration_section   = "GEOLOCALIZATION"
        plugin_configuration_tokens    = [ "localization_mode",
                                            "localization_latitude",
                                            "localization_longitude",
                                            "localization_service_url",
                                            "localization_service_request",
                                            "localization_service_method",
                                            "localization_service_response_root_node"]
        return {    "common-name"               : plugin_friendly_name,
                    "identifier"                : plugin_identifier,
                    "configuration-section"     : plugin_configuration_section,
                    "configuration-tokens"      : plugin_configuration_tokens }


    ### XMPP Processing

    def process_iq(self, conn, iq):
        """
        This method is invoked when a ARCHIPEL_NS_HYPERVISOR_GEOLOC IQ is received.
        It understands IQ of type:
            - get
        @type conn: xmpp.Dispatcher
        @param conn: ths instance of the current connection that send the stanza
        @type iq: xmpp.Protocol.Iq
        @param iq: the received IQ
        """
        reply = None
        action = self.entity.check_acp(conn, iq)
        self.entity.check_perm(conn, iq, action, -1, prefix="geolocalization_")
        if action == "get":
            reply = self.iq_get(iq)
        if reply:
            conn.send(reply)
            raise xmpp.protocol.NodeProcessed

    def iq_get(self, iq):
        """
        Return the geolocalization information.
        @type iq: xmpp.Protocol.Iq
        @param iq: the received IQ
        """
        reply = iq.buildReply("result")
        try:
            reply.setQueryPayload([self.localization_information])
        except Exception as ex:
            reply = build_error_iq(self, ex, iq, ARCHIPEL_ERROR_CODE_LOCALIZATION_GET)
        return reply

    def message_get(self, msg):
        """
        Return the geolocalization information asked by message.
        @type msg: xmpp.Protocol.Message
        @param msg: the received message
        @rtype: string
        @return: string containing the answer to send
        """
        lat = self.localization_information.getTagData("Latitude")
        lon = self.localization_information.getTagData("Longitude")
        return "I'm localized at longitude: %s latitude: %s" % (lon, lat)