/usr/share/pyshared/advancedcaching/geocaching.py is in agtl 0.8.0.3-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 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 | #!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright (C) 2010 Daniel Fett
# This program 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, 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 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/>.
#
# Author: Daniel Fett agtl@danielfett.de
# Jabber: fett.daniel@jaber.ccc.de
# Bugtracker and GIT Repository: http://github.com/webhamster/advancedcaching
#
try:
from simplejson import dumps, loads
except (ImportError, AttributeError):
from json import loads, dumps
from datetime import datetime
import logging
import time
import geo
logger = logging.getLogger('geocaching')
class GeocacheCoordinate(geo.Coordinate):
LOG_NO_LOG = 0
LOG_AS_FOUND = 1
LOG_AS_NOTFOUND = 2
LOG_AS_NOTE = 3
TYPE_REGULAR = 'regular'
TYPE_MULTI = 'multi'
TYPE_VIRTUAL = 'virtual'
TYPE_EVENT = 'event'
TYPE_MYSTERY = 'mystery'
TYPE_WEBCAM = 'webcam'
TYPE_UNKNOWN = 'unknown'
TYPE_EARTH = 'earth'
TYPES = [
TYPE_REGULAR,
TYPE_MULTI,
TYPE_VIRTUAL,
TYPE_EVENT,
TYPE_MYSTERY,
TYPE_WEBCAM,
TYPE_UNKNOWN,
TYPE_EARTH
]
STATUS_NORMAL = 0
STATUS_DISABLED = 1
STATUS_ARCHIVED = 2
STATUS_TEXT = ['normal', 'not available!']
LOG_TYPE_FOUND = 'smile'
LOG_TYPE_NOTFOUND = 'sad'
LOG_TYPE_NOTE = 'note'
LOG_TYPE_MAINTENANCE = 'maint'
LOG_TYPE_PUBLISHED = 'greenlight'
LOG_TYPE_DISABLED = 'disabled'
LOG_TYPE_NEEDS_MAINTENANCE = 'needsmaint'
LOG_TYPE_WILLATTEND = 'rsvp'
LOG_TYPE_ATTENDED = 'attended'
LOG_TYPE_UPDATE = 'coord_update'
SIZES = ['other', 'micro', 'small', 'regular', 'big', 'other']
TYPE_MAPPING = {
TYPE_MULTI: 'Multi-cache',
TYPE_REGULAR: 'Traditional Cache',
TYPE_EARTH: 'Earthcache',
TYPE_UNKNOWN: 'Unknown Cache',
TYPE_EVENT: 'Event Cache',
TYPE_WEBCAM: 'Webcam Cache',
TYPE_VIRTUAL: 'Virtual Cache'
}
USER_TYPE_COORDINATE = 0
USER_TYPE_CALC_STRING = 1
USER_TYPE_CALC_STRING_OVERRIDE = 2
ATTRS = ('lat', 'lon', 'title', 'name', 'shortdesc', 'desc', 'hints', 'type', \
'size', 'difficulty', 'terrain', 'owner', 'found', 'waypoints', \
'images', 'notes', 'fieldnotes', 'logas', 'logdate', 'marked', \
'logs', 'status', 'vars', 'alter_lat', 'alter_lon', 'updated', 'user_coordinates')
SQLROW = {
'lat': 'REAL',
'lon': 'REAL',
'name': 'TEXT PRIMARY KEY',
'title': 'TEXT',
'shortdesc': 'TEXT',
'desc': 'TEXT',
'hints': 'TEXT',
'type': 'TEXT',
'size': 'INTEGER',
'difficulty': 'INTEGER',
'terrain': 'INTEGER',
'owner': 'TEXT',
'found': 'INTEGER',
'waypoints': 'text',
'images': 'text',
'notes': 'TEXT',
'fieldnotes': 'TEXT',
'logas': 'INTEGER',
'logdate': 'TEXT',
'marked': 'INTEGER',
'logs': 'TEXT',
'status': 'INTEGER',
'vars': 'TEXT',
'alter_lat': 'REAL',
'alter_lon': 'REAL',
'updated' : 'INTEGER',
'user_coordinates' : 'TEXT',
}
def __init__(self, lat, lon=None, name='', data=None):
geo.Coordinate.__init__(self, lat, lon, name)
if data != None:
self.unserialize(data)
self.calc = None
return
self.calc = None
# NAME = GC-ID
self.title = ''
self.shortdesc = ''
self.desc = ''
self.hints = ''
self.type = '' # regular, multi, virtual, webcam,...
self.size = -1
self.difficulty = -1
self.terrain = -1
self.owner = ''
self.found = False
self.waypoints = ''
self.images = ''
self.notes = ''
self.fieldnotes = ''
self.logas = self.LOG_NO_LOG
self.logdate = ''
self.marked = False
self.logs = ''
self.status = self.STATUS_NORMAL
self.vars = ''
self.alter_lat = 0
self.alter_lon = 0
self.updated = 0
self.user_coordinates = ''
def clone(self):
n = GeocacheCoordinate(self.lat, self.lon)
for k in self.ATTRS:
setattr(n, k, getattr(self, k))
return n
def updated(self):
self.updated = int(time.mktime(datetime.now().timetuple()))
def get_updated(self):
return datetime.fromtimestamp(self.updated)
def get_difficulty(self):
return "%.1f" % (self.difficulty / 10.0) if self.difficulty != -1 else '?'
def get_terrain(self):
return "%.1f" % (self.terrain / 10.0) if self.difficulty != -1 else '?'
def get_status(self):
return self.STATUS_TEXT[self.status] if self.status != None else ''
def serialize(self):
ret = {}
for key in self.ATTRS:
ret[key] = self.serialize_one(key)
return ret
def serialize_one(self, attribute):
if attribute == 'found':
return 1 if self.found else 0
elif attribute == 'marked':
return 1 if self.marked else 0
elif attribute == 'vars':
return dumps(self.calc.get_vars()) if self.calc != None else ''
elif attribute == 'user_coordinates':
try:
return dumps(self.saved_user_coordinates)
except AttributeError:
return self.user_coordinates
elif attribute == 'waypoints':
try:
return dumps(self.saved_waypoints)
except AttributeError:
return self.waypoints
else:
return getattr(self, attribute)
def unserialize(self, data):
ret = {}
for key in self.ATTRS:
ret[key] = data[key]
if ret['notes'] == None:
self.notes = ''
if ret['fieldnotes'] == None:
self.fieldnotes = ''
if ret['logs'] == None:
self.logs = ''
if ret['vars'] == None:
self.vars = ''
ret['found'] = (ret['found'] == 1)
self.__dict__ = ret
def get_waypoints(self):
try:
return self.saved_waypoints
except (AttributeError):
if self.waypoints in (None, '{}', ''):
self.saved_waypoints = []
else:
self.saved_waypoints = loads(self.waypoints)
return self.saved_waypoints
def get_user_coordinates(self, ctype):
try:
self.saved_user_coordinates
except (AttributeError):
if self.user_coordinates in (None, '{}', ''):
self.saved_user_coordinates = []
else:
self.saved_user_coordinates = loads(self.user_coordinates)
if type(self.saved_user_coordinates) != list:
logger.debug('Creating new list!')
self.saved_user_coordinates = []
return [(id, point) for id, point in zip(range(len(self.saved_user_coordinates)), self.saved_user_coordinates) if point['type'] == ctype]
def get_user_coordinate(self, id):
try:
return self.saved_user_coordinates[id]
except AttributeError:
logger.exception("Call get_user_coordinates first!")
except KeyError:
raise Exception("No user coordinate with id %d" % id)
def get_logs(self):
if self.logs == None or self.logs == '':
return []
return loads(self.logs)
def get_images(self):
if self.images == None or self.images == '':
return []
try:
return self.saved_images
except (AttributeError):
self.saved_images = loads(self.images)
return self.saved_images
def set_waypoints(self, wps):
self.saved_waypoints = wps
def set_logs(self, ls):
self.logs = dumps(ls)
def set_images(self, imgs):
self.images = dumps(imgs)
try:
del self.saved_images
except:
pass
def was_downloaded(self):
return (self.shortdesc != '' or self.desc != '')
def get_bounds(self):
minlat = maxlat = self.lat
minlon = maxlon = self.lon
for wpt in self.get_waypoints():
if wpt['lat'] != -1 and wpt['lon'] != -1:
minlat = min(minlat, wpt['lat'])
maxlat = max(maxlat, wpt['lat'])
minlon = min(minlon, wpt['lon'])
maxlon = max(maxlon, wpt['lon'])
return {'minlat': "%.5f" % minlat, 'maxlat': "%.5f" % maxlat, 'minlon': "%.5f" % minlon, 'maxlon': "%.5f" % maxlon}
def get_size_string(self):
if self.size == -1:
return '?'
else:
return self.SIZES[self.size]
def get_gs_type(self):
if self.TYPE_MAPPING.has_key(self.type):
return self.TYPE_MAPPING[self.type]
else:
return self.TYPE_MAPPING[self.TYPE_UNKNOWN]
def set_alternative_position(self, coord):
self.alter_lat = coord.lat
self.alter_lon = coord.lon
def start_calc(self, stripped_desc):
from coordfinder import CalcCoordinateManager
if self.vars == None or self.vars == '':
vars = {}
else:
vars = loads(self.vars)
self.calc = CalcCoordinateManager(vars)
self.calc.add_text(stripped_desc, 'Description')
for id, local in self.get_user_coordinates(self.USER_TYPE_CALC_STRING_OVERRIDE):
signature, replacement_text = local['value']
self.calc.add_replacement(signature, replacement_text, id)
for id, local in self.get_user_coordinates(self.USER_TYPE_CALC_STRING):
self.calc.add_text(local['value'], id)
for w in self.get_waypoints():
self.calc.add_text(w['comment'], "Waypoint %s" % w['name'])
self.calc.update()
def set_user_coordinate(self, type, value, name, id = None):
d = {'value': value, 'type' : type, 'name' : name}
try:
if id == None:
new_id = len(self.saved_user_coordinates)
self.saved_user_coordinates.append(d)
return new_id
else:
self.saved_user_coordinates[id] = d
return id
except AttributeError:
raise Exception("get_user_coordinates has to be called first!")
def delete_user_coordinate(self, id):
try:
del self.saved_user_coordinates[id]
except AttributeError:
raise Exception("get_user_coordinates has to be called first!")
def get_collected_coordinates(self, format, include_unknown = True, htmlcallback = lambda x: x, shorten_callback = lambda x: x):
cache = self
cache.display_text = "Geocache: %s" % cache.get_latlon(format)
cache.comment = "Original coordinate given in the cache description."
cache.user_coordinate_id = None
clist = {0: cache}
i = 1
# waypoints
for w in self.get_waypoints():
if not (w['lat'] == -1 and w['lon'] == -1):
coord = geo.Coordinate(w['lat'], w['lon'], w['name'])
coord.comment = htmlcallback(w['comment'])
latlon = coord.get_latlon(format)
elif not include_unknown:
continue
else:
coord = geo.Coordinate(None, None, w['name'])
coord.comment = htmlcallback(w['comment'])
latlon = '???'
coord.user_coordinate_id = None
coord.display_text = "%s - %s - %s\n%s" % (w['name'], latlon, w['id'], shorten_callback(htmlcallback(w['comment'])))
clist[i] = coord
i += 1
# read from local user_coordinates
for id, local in self.get_user_coordinates(self.USER_TYPE_COORDINATE):
coord = geo.Coordinate(* local['value'])
text = local['name'] if local['name'] != '' else 'manually entered'
coord.display_text = "%s: %s" % (text, coord.get_latlon(format))
coord.comment = "This coordinate was manually entered."
coord.user_coordinate_id = id
clist[i] = coord
i += 1
# cache calc
if self.calc != None:
for coord, source in self.calc.get_solutions():
if coord == False:
continue
if type(source) == int:
source_string = self.get_user_coordinate(source)['name']
coord.user_coordinate_id = source
else:
source_string = source
coord.user_coordinate_id = None
coord.display_text = "%s: %s = %s" % (source_string, coord.name, coord.get_latlon(format))
coord.comment = "From %s:\n%s = %s" % (source_string, coord.name, coord.get_latlon(format))
clist[i] = coord
i += 1
for coord, source in self.calc.get_plain_coordinates():
if coord == False:
continue
if type(source) == int:
source_string = self.get_user_coordinate(source)['name']
coord.user_coordinate_id = source
else:
source_string = source
coord.user_coordinate_id = None
coord.display_text = "%s: %s" % (source_string, coord.get_latlon(format))
coord.comment = "Found in %s." % source_string
clist[i] = coord
i += 1
# parsed from notes
for coord in geo.search_coordinates(self.notes):
coord.display_text = "from notes: %s" % coord.get_latlon(format)
coord.comment = "This coordinate was manually entered in the notes field."
coord.user_coordinate_id = None
clist[i] = coord
i += 1
return clist
|