2010-11-26 15:07:24 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
|
|
from django.db.models import Q, Manager
|
2011-01-01 11:44:42 +00:00
|
|
|
|
2010-11-26 15:07:24 +00:00
|
|
|
|
|
|
|
class PlaceManager(Manager):
|
2011-01-01 11:44:42 +00:00
|
|
|
|
2010-11-26 15:07:24 +00:00
|
|
|
def get_query_set(self):
|
|
|
|
return super(PlaceManager, self).get_query_set()
|
|
|
|
|
|
|
|
def find(self, q='', f="globe", sw_lat=-180.0, sw_lng=-180.0, ne_lat=180.0, ne_lng=180.0):
|
|
|
|
qs = self.get_query_set()
|
|
|
|
qs = qs.filter(Q(
|
2011-01-01 11:44:42 +00:00
|
|
|
Q(Q(sw_lat__gt=sw_lat)|Q(sw_lat__lt=ne_lat)|Q(sw_lng__gt=sw_lng)|Q(sw_lng__lt=ne_lng)) &
|
2010-11-26 15:07:24 +00:00
|
|
|
Q(Q(sw_lat__gt=sw_lat)|Q(sw_lat__lt=ne_lat)|Q(sw_lng__lt=ne_lng)|Q(ne_lng__gt=ne_lng)) &
|
|
|
|
Q(Q(ne_lat__gt=sw_lat)|Q(ne_lat__lt=ne_lat)|Q(sw_lng__gt=sw_lng)|Q(sw_lng__lt=ne_lng)) &
|
|
|
|
Q(Q(ne_lat__gt=sw_lat)|Q(ne_lat__lt=ne_lat)|Q(ne_lng__gt=sw_lng)|Q(ne_lng__lt=ne_lng))
|
|
|
|
))
|
|
|
|
if q:
|
2011-01-01 11:44:42 +00:00
|
|
|
qs = qs.filter(name_find__icontains=q)
|
2010-11-26 15:07:24 +00:00
|
|
|
return qs
|
|
|
|
'''
|
|
|
|
#only return locations that have layers of videos visible to current user
|
|
|
|
if not identity.current.anonymous:
|
|
|
|
user = identity.current.user
|
|
|
|
if not user.in_group('admin'):
|
|
|
|
query = AND(query,
|
|
|
|
id == Layer.q.locationID, Layer.q.videoID == Video.q.id,
|
|
|
|
OR(Video.q.public == True, Video.q.creatorID == user.id)
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
query = AND(query,
|
|
|
|
id == Layer.q.locationID, Layer.q.videoID == Video.q.id,
|
|
|
|
Video.q.public == True)
|
|
|
|
'''
|