2015-08-02 11:08:31 -05:00
|
|
|
|
import json
|
2023-02-27 05:04:09 -06:00
|
|
|
|
import mimetypes
|
2018-05-19 04:12:19 -05:00
|
|
|
|
import os
|
2017-05-10 04:12:10 -05:00
|
|
|
|
import re
|
2014-04-19 10:54:51 -05:00
|
|
|
|
import socket
|
2023-02-27 05:04:09 -06:00
|
|
|
|
from pathlib import Path
|
2014-04-19 10:54:51 -05:00
|
|
|
|
|
2018-05-19 04:12:19 -05:00
|
|
|
|
from django.conf import settings
|
|
|
|
|
from django.contrib import messages
|
|
|
|
|
from django.contrib.auth import logout as do_logout
|
|
|
|
|
from django.contrib.auth import get_user_model
|
|
|
|
|
from django.contrib.gis.measure import D
|
|
|
|
|
from django.core.paginator import EmptyPage, PageNotAnInteger, Paginator
|
|
|
|
|
from django.core.signing import BadSignature, Signer
|
|
|
|
|
from django.core.validators import URLValidator, ValidationError
|
|
|
|
|
from django.db.models import Q
|
2023-02-27 04:38:59 -06:00
|
|
|
|
from django.http import (
|
|
|
|
|
HttpResponse,
|
|
|
|
|
HttpResponseBadRequest,
|
|
|
|
|
HttpResponseForbidden,
|
|
|
|
|
HttpResponsePermanentRedirect,
|
|
|
|
|
HttpResponseRedirect,
|
|
|
|
|
)
|
2018-05-19 04:12:19 -05:00
|
|
|
|
from django.middleware.gzip import re_accepts_gzip
|
|
|
|
|
from django.shortcuts import get_object_or_404
|
|
|
|
|
from django.template.loader import render_to_string
|
|
|
|
|
from django.urls import reverse, reverse_lazy
|
|
|
|
|
from django.utils.encoding import force_bytes, smart_bytes
|
|
|
|
|
from django.utils.http import http_date
|
2021-05-17 03:51:24 -05:00
|
|
|
|
from django.utils.translation import gettext as _
|
2018-05-19 04:12:19 -05:00
|
|
|
|
from django.utils.translation import to_locale
|
|
|
|
|
from django.views.generic import DetailView, TemplateView, View
|
|
|
|
|
from django.views.generic.base import RedirectView
|
|
|
|
|
from django.views.generic.detail import BaseDetailView
|
|
|
|
|
from django.views.generic.edit import CreateView, DeleteView, UpdateView
|
|
|
|
|
from django.views.generic.list import ListView
|
|
|
|
|
|
2023-02-27 04:38:59 -06:00
|
|
|
|
from .forms import (
|
|
|
|
|
DEFAULT_LATITUDE,
|
|
|
|
|
DEFAULT_LONGITUDE,
|
|
|
|
|
DEFAULT_CENTER,
|
|
|
|
|
AnonymousMapPermissionsForm,
|
|
|
|
|
DataLayerForm,
|
|
|
|
|
FlatErrorList,
|
|
|
|
|
MapSettingsForm,
|
|
|
|
|
UpdateMapPermissionsForm,
|
|
|
|
|
)
|
2018-05-19 04:12:19 -05:00
|
|
|
|
from .models import DataLayer, Licence, Map, Pictogram, TileLayer
|
2021-05-17 03:51:24 -05:00
|
|
|
|
from .utils import get_uri_template, gzip_file, is_ajax
|
2018-05-19 04:12:19 -05:00
|
|
|
|
|
2015-08-02 11:08:31 -05:00
|
|
|
|
try:
|
|
|
|
|
# python3
|
|
|
|
|
from urllib.parse import urlparse
|
|
|
|
|
from urllib.request import Request, build_opener
|
|
|
|
|
from urllib.error import HTTPError
|
|
|
|
|
except ImportError:
|
|
|
|
|
from urlparse import urlparse
|
|
|
|
|
from urllib2 import Request, HTTPError, build_opener
|
2014-02-07 15:00:50 -06:00
|
|
|
|
|
2012-11-20 03:47:19 -06:00
|
|
|
|
|
2014-06-19 07:39:45 -05:00
|
|
|
|
User = get_user_model()
|
|
|
|
|
|
2012-11-20 03:47:19 -06:00
|
|
|
|
|
2023-02-27 04:00:33 -06:00
|
|
|
|
PRIVATE_IP = re.compile(
|
|
|
|
|
r"((^127\.)|(^10\.)"
|
|
|
|
|
r"|(^172\.1[6-9]\.)"
|
|
|
|
|
r"|(^172\.2[0-9]\.)"
|
|
|
|
|
r"|(^172\.3[0-1]\.)"
|
|
|
|
|
r"|(^192\.168\.))"
|
|
|
|
|
)
|
2018-05-19 04:12:19 -05:00
|
|
|
|
ANONYMOUS_COOKIE_MAX_AGE = 60 * 60 * 24 * 30 # One month
|
2017-05-10 04:12:10 -05:00
|
|
|
|
|
|
|
|
|
|
2013-02-12 10:34:33 -06:00
|
|
|
|
class PaginatorMixin(object):
|
|
|
|
|
per_page = 5
|
|
|
|
|
|
2015-10-11 15:19:51 -05:00
|
|
|
|
def paginate(self, qs, per_page=None):
|
|
|
|
|
paginator = Paginator(qs, per_page or self.per_page)
|
2023-02-27 04:00:33 -06:00
|
|
|
|
page = self.request.GET.get("p")
|
2013-02-12 10:34:33 -06:00
|
|
|
|
try:
|
|
|
|
|
qs = paginator.page(page)
|
|
|
|
|
except PageNotAnInteger:
|
|
|
|
|
# If page is not an integer, deliver first page.
|
|
|
|
|
qs = paginator.page(1)
|
|
|
|
|
except EmptyPage:
|
2015-08-02 11:08:31 -05:00
|
|
|
|
# If page is out of range (e.g. 9999), deliver last page of
|
|
|
|
|
# results.
|
2013-02-12 10:34:33 -06:00
|
|
|
|
qs = paginator.page(paginator.num_pages)
|
|
|
|
|
return qs
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Home(TemplateView, PaginatorMixin):
|
2013-01-02 08:49:20 -06:00
|
|
|
|
template_name = "umap/home.html"
|
2018-05-19 04:12:19 -05:00
|
|
|
|
list_template_name = "umap/map_list.html"
|
2012-11-20 03:47:19 -06:00
|
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
2014-09-09 10:43:28 -05:00
|
|
|
|
qs = Map.public
|
2023-02-27 04:00:33 -06:00
|
|
|
|
if (
|
|
|
|
|
settings.UMAP_EXCLUDE_DEFAULT_MAPS
|
|
|
|
|
and "spatialite" not in settings.DATABASES["default"]["ENGINE"]
|
|
|
|
|
):
|
|
|
|
|
# Unsupported query type for sqlite.
|
2014-09-09 10:43:28 -05:00
|
|
|
|
qs = qs.filter(center__distance_gt=(DEFAULT_CENTER, D(km=1)))
|
2013-02-12 10:34:33 -06:00
|
|
|
|
demo_map = None
|
|
|
|
|
if hasattr(settings, "UMAP_DEMO_PK"):
|
|
|
|
|
try:
|
2014-01-09 16:49:53 -06:00
|
|
|
|
demo_map = Map.public.get(pk=settings.UMAP_DEMO_PK)
|
2013-02-12 10:34:33 -06:00
|
|
|
|
except Map.DoesNotExist:
|
|
|
|
|
pass
|
|
|
|
|
else:
|
|
|
|
|
qs = qs.exclude(id=demo_map.pk)
|
2014-02-07 15:00:50 -06:00
|
|
|
|
showcase_map = None
|
|
|
|
|
if hasattr(settings, "UMAP_SHOWCASE_PK"):
|
|
|
|
|
try:
|
|
|
|
|
showcase_map = Map.public.get(pk=settings.UMAP_SHOWCASE_PK)
|
|
|
|
|
except Map.DoesNotExist:
|
|
|
|
|
pass
|
|
|
|
|
else:
|
|
|
|
|
qs = qs.exclude(id=showcase_map.pk)
|
2023-02-27 04:00:33 -06:00
|
|
|
|
maps = qs.order_by("-modified_at")[:50]
|
2016-01-02 06:42:57 -06:00
|
|
|
|
maps = self.paginate(maps, settings.UMAP_MAPS_PER_PAGE)
|
2013-02-12 10:34:33 -06:00
|
|
|
|
|
2012-11-20 03:47:19 -06:00
|
|
|
|
return {
|
2012-12-12 06:13:14 -06:00
|
|
|
|
"maps": maps,
|
2013-05-01 17:54:40 -05:00
|
|
|
|
"demo_map": demo_map,
|
2014-02-07 15:00:50 -06:00
|
|
|
|
"showcase_map": showcase_map,
|
2023-02-27 04:00:33 -06:00
|
|
|
|
"DEMO_SITE": settings.UMAP_DEMO_SITE,
|
2012-11-20 03:47:19 -06:00
|
|
|
|
}
|
|
|
|
|
|
2012-12-07 06:40:57 -06:00
|
|
|
|
def get_template_names(self):
|
|
|
|
|
"""
|
|
|
|
|
Dispatch template according to the kind of request: ajax or normal.
|
|
|
|
|
"""
|
2021-05-17 03:51:24 -05:00
|
|
|
|
if is_ajax(self.request):
|
2012-12-07 06:40:57 -06:00
|
|
|
|
return [self.list_template_name]
|
|
|
|
|
else:
|
|
|
|
|
return [self.template_name]
|
|
|
|
|
|
2023-02-27 04:00:33 -06:00
|
|
|
|
|
2012-11-20 03:47:19 -06:00
|
|
|
|
home = Home.as_view()
|
2012-12-11 13:04:03 -06:00
|
|
|
|
|
|
|
|
|
|
2013-02-12 10:34:33 -06:00
|
|
|
|
class About(Home):
|
|
|
|
|
|
|
|
|
|
template_name = "umap/about.html"
|
|
|
|
|
|
2023-02-27 04:00:33 -06:00
|
|
|
|
|
2013-02-12 10:34:33 -06:00
|
|
|
|
about = About.as_view()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class UserMaps(DetailView, PaginatorMixin):
|
2012-12-11 13:04:03 -06:00
|
|
|
|
model = User
|
2023-02-27 04:00:33 -06:00
|
|
|
|
slug_url_kwarg = "username"
|
|
|
|
|
slug_field = "username"
|
2018-05-19 04:12:19 -05:00
|
|
|
|
list_template_name = "umap/map_list.html"
|
2012-12-11 13:04:03 -06:00
|
|
|
|
context_object_name = "current_user"
|
|
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
2015-10-11 15:19:51 -05:00
|
|
|
|
owner = self.request.user == self.object
|
|
|
|
|
manager = Map.objects if owner else Map.public
|
2015-08-02 11:08:31 -05:00
|
|
|
|
maps = manager.filter(Q(owner=self.object) | Q(editors=self.object))
|
2016-01-02 06:42:57 -06:00
|
|
|
|
if owner:
|
|
|
|
|
per_page = settings.UMAP_MAPS_PER_PAGE_OWNER
|
2019-01-30 05:07:35 -06:00
|
|
|
|
limit = 100
|
2016-01-02 06:42:57 -06:00
|
|
|
|
else:
|
|
|
|
|
per_page = settings.UMAP_MAPS_PER_PAGE
|
2019-01-30 05:07:35 -06:00
|
|
|
|
limit = 50
|
2023-02-27 04:00:33 -06:00
|
|
|
|
maps = maps.distinct().order_by("-modified_at")[:limit]
|
2015-10-11 15:19:51 -05:00
|
|
|
|
maps = self.paginate(maps, per_page)
|
2023-02-27 04:00:33 -06:00
|
|
|
|
kwargs.update({"maps": maps})
|
2012-12-11 13:04:03 -06:00
|
|
|
|
return super(UserMaps, self).get_context_data(**kwargs)
|
|
|
|
|
|
|
|
|
|
def get_template_names(self):
|
|
|
|
|
"""
|
|
|
|
|
Dispatch template according to the kind of request: ajax or normal.
|
|
|
|
|
"""
|
2021-05-17 03:51:24 -05:00
|
|
|
|
if is_ajax(self.request):
|
2012-12-11 13:04:03 -06:00
|
|
|
|
return [self.list_template_name]
|
|
|
|
|
else:
|
|
|
|
|
return super(UserMaps, self).get_template_names()
|
|
|
|
|
|
2023-02-27 04:00:33 -06:00
|
|
|
|
|
2012-12-11 13:04:03 -06:00
|
|
|
|
user_maps = UserMaps.as_view()
|
2012-12-16 08:10:00 -06:00
|
|
|
|
|
|
|
|
|
|
2013-02-12 10:34:33 -06:00
|
|
|
|
class Search(TemplateView, PaginatorMixin):
|
2013-01-02 08:49:20 -06:00
|
|
|
|
template_name = "umap/search.html"
|
2018-05-19 04:12:19 -05:00
|
|
|
|
list_template_name = "umap/map_list.html"
|
2012-12-16 08:10:00 -06:00
|
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
2023-02-27 04:00:33 -06:00
|
|
|
|
q = self.request.GET.get("q")
|
2014-05-01 16:51:38 -05:00
|
|
|
|
results = []
|
2013-02-12 10:34:33 -06:00
|
|
|
|
if q:
|
2015-12-23 15:03:09 -06:00
|
|
|
|
where = "to_tsvector(name) @@ plainto_tsquery(%s)"
|
2023-02-27 04:00:33 -06:00
|
|
|
|
if getattr(settings, "UMAP_USE_UNACCENT", False):
|
2016-03-10 15:47:28 -06:00
|
|
|
|
where = "to_tsvector(unaccent(name)) @@ plainto_tsquery(unaccent(%s))" # noqa
|
2015-08-02 11:08:31 -05:00
|
|
|
|
results = Map.objects.filter(share_status=Map.PUBLIC)
|
|
|
|
|
results = results.extra(where=[where], params=[q])
|
2023-02-27 04:00:33 -06:00
|
|
|
|
results = results.order_by("-modified_at")
|
2014-05-01 16:51:38 -05:00
|
|
|
|
results = self.paginate(results)
|
2023-02-27 04:00:33 -06:00
|
|
|
|
kwargs.update({"maps": results, "q": q})
|
2012-12-16 08:10:00 -06:00
|
|
|
|
return kwargs
|
|
|
|
|
|
|
|
|
|
def get_template_names(self):
|
|
|
|
|
"""
|
|
|
|
|
Dispatch template according to the kind of request: ajax or normal.
|
|
|
|
|
"""
|
2021-05-17 03:51:24 -05:00
|
|
|
|
if is_ajax(self.request):
|
2012-12-16 08:10:00 -06:00
|
|
|
|
return [self.list_template_name]
|
|
|
|
|
else:
|
|
|
|
|
return super(Search, self).get_template_names()
|
|
|
|
|
|
2023-02-27 04:00:33 -06:00
|
|
|
|
|
2012-12-16 08:10:00 -06:00
|
|
|
|
search = Search.as_view()
|
2014-02-07 15:00:50 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MapsShowCase(View):
|
2014-04-19 04:48:54 -05:00
|
|
|
|
def get(self, *args, **kwargs):
|
2015-08-02 11:08:31 -05:00
|
|
|
|
maps = Map.public.filter(center__distance_gt=(DEFAULT_CENTER, D(km=1)))
|
2023-02-27 04:00:33 -06:00
|
|
|
|
maps = maps.order_by("-modified_at")[:2500]
|
2014-02-07 15:00:50 -06:00
|
|
|
|
|
|
|
|
|
def make(m):
|
2014-02-10 14:37:12 -06:00
|
|
|
|
description = m.description or ""
|
|
|
|
|
if m.owner:
|
2023-02-27 04:00:33 -06:00
|
|
|
|
description = "{description}\n{by} [[{url}|{name}]]".format(
|
2014-02-10 14:37:12 -06:00
|
|
|
|
description=description,
|
|
|
|
|
by=_("by"),
|
2023-02-27 04:00:33 -06:00
|
|
|
|
url=reverse("user_maps", kwargs={"username": m.owner.username}),
|
2014-02-10 14:37:12 -06:00
|
|
|
|
name=m.owner,
|
|
|
|
|
)
|
2023-02-27 04:00:33 -06:00
|
|
|
|
description = "{}\n[[{}|{}]]".format(
|
|
|
|
|
description, m.get_absolute_url(), _("View the map")
|
|
|
|
|
)
|
|
|
|
|
geometry = m.settings.get("geometry", json.loads(m.center.geojson))
|
2014-02-07 15:00:50 -06:00
|
|
|
|
return {
|
|
|
|
|
"type": "Feature",
|
|
|
|
|
"geometry": geometry,
|
2023-02-27 04:00:33 -06:00
|
|
|
|
"properties": {"name": m.name, "description": description},
|
2014-02-07 15:00:50 -06:00
|
|
|
|
}
|
|
|
|
|
|
2023-02-27 04:00:33 -06:00
|
|
|
|
geojson = {"type": "FeatureCollection", "features": [make(m) for m in maps]}
|
2015-10-17 06:09:58 -05:00
|
|
|
|
return HttpResponse(smart_bytes(json.dumps(geojson)))
|
2014-02-07 15:00:50 -06:00
|
|
|
|
|
2023-02-27 04:00:33 -06:00
|
|
|
|
|
2014-02-07 15:00:50 -06:00
|
|
|
|
showcase = MapsShowCase.as_view()
|
2014-04-19 04:48:54 -05:00
|
|
|
|
|
|
|
|
|
|
2014-04-19 10:54:51 -05:00
|
|
|
|
def validate_url(request):
|
|
|
|
|
assert request.method == "GET"
|
2021-05-17 03:51:24 -05:00
|
|
|
|
assert is_ajax(request)
|
2023-02-27 04:00:33 -06:00
|
|
|
|
url = request.GET.get("url")
|
2014-04-19 10:54:51 -05:00
|
|
|
|
assert url
|
|
|
|
|
try:
|
|
|
|
|
URLValidator(url)
|
|
|
|
|
except ValidationError:
|
|
|
|
|
raise AssertionError()
|
2023-02-27 04:00:33 -06:00
|
|
|
|
assert "HTTP_REFERER" in request.META
|
|
|
|
|
referer = urlparse(request.META.get("HTTP_REFERER"))
|
2014-04-19 10:54:51 -05:00
|
|
|
|
toproxy = urlparse(url)
|
|
|
|
|
local = urlparse(settings.SITE_URL)
|
|
|
|
|
assert toproxy.hostname
|
|
|
|
|
assert referer.hostname == local.hostname
|
|
|
|
|
assert toproxy.hostname != "localhost"
|
|
|
|
|
assert toproxy.netloc != local.netloc
|
2014-07-18 16:26:16 -05:00
|
|
|
|
try:
|
|
|
|
|
# clean this when in python 3.4
|
|
|
|
|
ipaddress = socket.gethostbyname(toproxy.hostname)
|
|
|
|
|
except:
|
|
|
|
|
raise AssertionError()
|
2017-05-10 04:12:10 -05:00
|
|
|
|
assert not PRIVATE_IP.match(ipaddress)
|
2014-04-19 10:54:51 -05:00
|
|
|
|
return url
|
|
|
|
|
|
|
|
|
|
|
2014-04-19 04:48:54 -05:00
|
|
|
|
class AjaxProxy(View):
|
|
|
|
|
def get(self, *args, **kwargs):
|
|
|
|
|
# You should not use this in production (use Nginx or so)
|
2014-04-19 10:54:51 -05:00
|
|
|
|
try:
|
|
|
|
|
url = validate_url(self.request)
|
2018-08-04 13:50:03 -05:00
|
|
|
|
except AssertionError:
|
2014-04-19 10:54:51 -05:00
|
|
|
|
return HttpResponseBadRequest()
|
2023-02-27 04:00:33 -06:00
|
|
|
|
headers = {"User-Agent": "uMapProxy +http://wiki.openstreetmap.org/wiki/UMap"}
|
2015-08-02 11:08:31 -05:00
|
|
|
|
request = Request(url, headers=headers)
|
|
|
|
|
opener = build_opener()
|
2014-04-19 04:48:54 -05:00
|
|
|
|
try:
|
2014-04-19 12:44:56 -05:00
|
|
|
|
proxied_request = opener.open(request)
|
2015-08-02 11:08:31 -05:00
|
|
|
|
except HTTPError as e:
|
2023-02-27 04:00:33 -06:00
|
|
|
|
return HttpResponse(e.msg, status=e.code, content_type="text/plain")
|
2014-04-19 04:48:54 -05:00
|
|
|
|
else:
|
2014-04-19 12:44:56 -05:00
|
|
|
|
status_code = proxied_request.code
|
2023-02-27 04:00:33 -06:00
|
|
|
|
mimetype = proxied_request.headers.get(
|
|
|
|
|
"Content-Type"
|
|
|
|
|
) or mimetypes.guess_type(
|
|
|
|
|
url
|
|
|
|
|
) # noqa
|
2014-04-19 12:44:56 -05:00
|
|
|
|
content = proxied_request.read()
|
2014-04-20 05:24:13 -05:00
|
|
|
|
# Quick hack to prevent Django from adding a Vary: Cookie header
|
|
|
|
|
self.request.session.accessed = False
|
2023-02-27 04:00:33 -06:00
|
|
|
|
response = HttpResponse(content, status=status_code, content_type=mimetype)
|
2018-08-04 13:50:03 -05:00
|
|
|
|
try:
|
2023-02-27 04:00:33 -06:00
|
|
|
|
ttl = int(self.request.GET.get("ttl"))
|
2018-08-04 13:50:03 -05:00
|
|
|
|
except (TypeError, ValueError):
|
|
|
|
|
pass
|
|
|
|
|
else:
|
2023-02-27 04:00:33 -06:00
|
|
|
|
response["X-Accel-Expires"] = ttl
|
2018-08-04 13:50:03 -05:00
|
|
|
|
return response
|
2023-02-27 04:00:33 -06:00
|
|
|
|
|
|
|
|
|
|
2014-04-19 04:48:54 -05:00
|
|
|
|
ajax_proxy = AjaxProxy.as_view()
|
2018-05-19 04:12:19 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ############## #
|
|
|
|
|
# Utils #
|
|
|
|
|
# ############## #
|
|
|
|
|
|
2023-02-27 04:00:33 -06:00
|
|
|
|
|
2018-05-19 04:12:19 -05:00
|
|
|
|
def _urls_for_js(urls=None):
|
|
|
|
|
"""
|
|
|
|
|
Return templated URLs prepared for javascript.
|
|
|
|
|
"""
|
|
|
|
|
if urls is None:
|
|
|
|
|
# prevent circular import
|
|
|
|
|
from .urls import urlpatterns, i18n_urls
|
2023-02-27 04:00:33 -06:00
|
|
|
|
|
|
|
|
|
urls = [
|
|
|
|
|
url.name for url in urlpatterns + i18n_urls if getattr(url, "name", None)
|
|
|
|
|
]
|
2018-05-19 04:12:19 -05:00
|
|
|
|
urls = dict(zip(urls, [get_uri_template(url) for url in urls]))
|
2023-02-27 04:00:33 -06:00
|
|
|
|
urls.update(getattr(settings, "UMAP_EXTRA_URLS", {}))
|
2018-05-19 04:12:19 -05:00
|
|
|
|
return urls
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def render_to_json(templates, context, request):
|
|
|
|
|
"""
|
|
|
|
|
Generate a JSON HttpResponse with rendered template HTML.
|
|
|
|
|
"""
|
2023-02-27 04:00:33 -06:00
|
|
|
|
html = render_to_string(templates, context=context, request=request)
|
|
|
|
|
_json = json.dumps({"html": html})
|
2018-05-19 04:12:19 -05:00
|
|
|
|
return HttpResponse(_json)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def simple_json_response(**kwargs):
|
|
|
|
|
return HttpResponse(json.dumps(kwargs))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ############## #
|
|
|
|
|
# Map #
|
|
|
|
|
# ############## #
|
|
|
|
|
|
|
|
|
|
|
2018-07-07 09:44:40 -05:00
|
|
|
|
class FormLessEditMixin:
|
2023-02-27 04:00:33 -06:00
|
|
|
|
http_method_names = [
|
|
|
|
|
"post",
|
|
|
|
|
]
|
2018-05-19 04:12:19 -05:00
|
|
|
|
|
|
|
|
|
def form_invalid(self, form):
|
2023-02-27 04:00:33 -06:00
|
|
|
|
return simple_json_response(errors=form.errors, error=str(form.errors))
|
2018-05-19 04:12:19 -05:00
|
|
|
|
|
2018-06-15 16:25:38 -05:00
|
|
|
|
def get_form(self, form_class=None):
|
2018-05-19 04:12:19 -05:00
|
|
|
|
kwargs = self.get_form_kwargs()
|
2023-02-27 04:00:33 -06:00
|
|
|
|
kwargs["error_class"] = FlatErrorList
|
2018-05-19 04:12:19 -05:00
|
|
|
|
return self.get_form_class()(**kwargs)
|
|
|
|
|
|
|
|
|
|
|
2018-07-07 09:44:40 -05:00
|
|
|
|
class MapDetailMixin:
|
2018-05-19 04:12:19 -05:00
|
|
|
|
|
|
|
|
|
model = Map
|
|
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
2018-08-04 08:26:12 -05:00
|
|
|
|
context = super().get_context_data(**kwargs)
|
2018-05-19 04:12:19 -05:00
|
|
|
|
properties = {
|
2023-02-27 04:00:33 -06:00
|
|
|
|
"urls": _urls_for_js(),
|
|
|
|
|
"tilelayers": TileLayer.get_list(),
|
|
|
|
|
"allowEdit": self.is_edit_allowed(),
|
|
|
|
|
"default_iconUrl": "%sumap/img/marker.png" % settings.STATIC_URL, # noqa
|
|
|
|
|
"umap_id": self.get_umap_id(),
|
|
|
|
|
"licences": dict((l.name, l.json) for l in Licence.objects.all()),
|
|
|
|
|
"edit_statuses": [(i, str(label)) for i, label in Map.EDIT_STATUS],
|
|
|
|
|
"share_statuses": [
|
|
|
|
|
(i, str(label)) for i, label in Map.SHARE_STATUS if i != Map.BLOCKED
|
|
|
|
|
],
|
|
|
|
|
"anonymous_edit_statuses": [
|
|
|
|
|
(i, str(label)) for i, label in AnonymousMapPermissionsForm.STATUS
|
|
|
|
|
],
|
2018-05-19 04:12:19 -05:00
|
|
|
|
}
|
|
|
|
|
if self.get_short_url():
|
2023-02-27 04:00:33 -06:00
|
|
|
|
properties["shortUrl"] = self.get_short_url()
|
2018-05-19 04:12:19 -05:00
|
|
|
|
|
|
|
|
|
if settings.USE_I18N:
|
|
|
|
|
locale = settings.LANGUAGE_CODE
|
|
|
|
|
# Check attr in case the middleware is not active
|
|
|
|
|
if hasattr(self.request, "LANGUAGE_CODE"):
|
|
|
|
|
locale = self.request.LANGUAGE_CODE
|
|
|
|
|
locale = to_locale(locale)
|
2023-02-27 04:00:33 -06:00
|
|
|
|
properties["locale"] = locale
|
|
|
|
|
context["locale"] = locale
|
2018-09-23 02:56:30 -05:00
|
|
|
|
user = self.request.user
|
|
|
|
|
if not user.is_anonymous:
|
2023-02-27 04:00:33 -06:00
|
|
|
|
properties["user"] = {
|
|
|
|
|
"id": user.pk,
|
|
|
|
|
"name": user.get_username(),
|
|
|
|
|
"url": reverse(settings.USER_MAPS_URL, args=(user.get_username(),)),
|
2018-09-23 02:56:30 -05:00
|
|
|
|
}
|
2018-05-19 04:12:19 -05:00
|
|
|
|
map_settings = self.get_geojson()
|
|
|
|
|
if "properties" not in map_settings:
|
2023-02-27 04:00:33 -06:00
|
|
|
|
map_settings["properties"] = {}
|
|
|
|
|
map_settings["properties"].update(properties)
|
|
|
|
|
map_settings["properties"]["datalayers"] = self.get_datalayers()
|
|
|
|
|
context["map_settings"] = json.dumps(map_settings, indent=settings.DEBUG)
|
2018-05-19 04:12:19 -05:00
|
|
|
|
return context
|
|
|
|
|
|
|
|
|
|
def get_datalayers(self):
|
|
|
|
|
return []
|
|
|
|
|
|
|
|
|
|
def is_edit_allowed(self):
|
|
|
|
|
return True
|
|
|
|
|
|
2018-06-02 08:43:22 -05:00
|
|
|
|
def get_umap_id(self):
|
2018-05-19 04:12:19 -05:00
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
def get_geojson(self):
|
|
|
|
|
return {
|
|
|
|
|
"geometry": {
|
|
|
|
|
"coordinates": [DEFAULT_LONGITUDE, DEFAULT_LATITUDE],
|
2023-02-27 04:00:33 -06:00
|
|
|
|
"type": "Point",
|
2018-05-19 04:12:19 -05:00
|
|
|
|
},
|
|
|
|
|
"properties": {
|
2023-02-27 04:00:33 -06:00
|
|
|
|
"zoom": getattr(settings, "LEAFLET_ZOOM", 6),
|
2018-05-19 04:12:19 -05:00
|
|
|
|
"datalayers": [],
|
2023-02-27 04:00:33 -06:00
|
|
|
|
},
|
2018-05-19 04:12:19 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def get_short_url(self):
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
2018-09-23 02:56:30 -05:00
|
|
|
|
class PermissionsMixin:
|
|
|
|
|
def get_permissions(self):
|
|
|
|
|
permissions = {}
|
2023-02-27 04:00:33 -06:00
|
|
|
|
permissions["edit_status"] = self.object.edit_status
|
|
|
|
|
permissions["share_status"] = self.object.share_status
|
2018-09-23 02:56:30 -05:00
|
|
|
|
if self.object.owner:
|
2023-02-27 04:00:33 -06:00
|
|
|
|
permissions["owner"] = {
|
|
|
|
|
"id": self.object.owner.pk,
|
|
|
|
|
"name": self.object.owner.get_username(),
|
|
|
|
|
"url": reverse(
|
|
|
|
|
settings.USER_MAPS_URL, args=(self.object.owner.get_username(),)
|
|
|
|
|
),
|
2018-09-23 02:56:30 -05:00
|
|
|
|
}
|
2023-02-27 04:00:33 -06:00
|
|
|
|
permissions["editors"] = [
|
|
|
|
|
{
|
|
|
|
|
"id": editor.pk,
|
|
|
|
|
"name": editor.get_username(),
|
|
|
|
|
}
|
|
|
|
|
for editor in self.object.editors.all()
|
|
|
|
|
]
|
|
|
|
|
if not self.object.owner and self.object.is_anonymous_owner(self.request):
|
|
|
|
|
permissions["anonymous_edit_url"] = self.get_anonymous_edit_url()
|
2018-09-23 02:56:30 -05:00
|
|
|
|
return permissions
|
|
|
|
|
|
|
|
|
|
def get_anonymous_edit_url(self):
|
|
|
|
|
anonymous_url = self.object.get_anonymous_edit_url()
|
2018-09-23 04:02:36 -05:00
|
|
|
|
return settings.SITE_URL + anonymous_url
|
2018-09-23 02:56:30 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MapView(MapDetailMixin, PermissionsMixin, DetailView):
|
2018-05-19 04:12:19 -05:00
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
|
self.object = self.get_object()
|
|
|
|
|
canonical = self.get_canonical_url()
|
|
|
|
|
if not request.path == canonical:
|
2023-02-27 04:00:33 -06:00
|
|
|
|
if request.META.get("QUERY_STRING"):
|
|
|
|
|
canonical = "?".join([canonical, request.META["QUERY_STRING"]])
|
2018-05-19 04:12:19 -05:00
|
|
|
|
return HttpResponsePermanentRedirect(canonical)
|
|
|
|
|
if not self.object.can_view(request):
|
2018-09-08 09:49:25 -05:00
|
|
|
|
return HttpResponseForbidden()
|
2018-05-19 04:12:19 -05:00
|
|
|
|
return super(MapView, self).get(request, *args, **kwargs)
|
|
|
|
|
|
|
|
|
|
def get_canonical_url(self):
|
|
|
|
|
return self.object.get_absolute_url()
|
|
|
|
|
|
|
|
|
|
def get_datalayers(self):
|
|
|
|
|
datalayers = DataLayer.objects.filter(map=self.object)
|
|
|
|
|
return [l.metadata for l in datalayers]
|
|
|
|
|
|
|
|
|
|
def is_edit_allowed(self):
|
|
|
|
|
return self.object.can_edit(self.request.user, self.request)
|
|
|
|
|
|
2018-06-02 08:43:22 -05:00
|
|
|
|
def get_umap_id(self):
|
2018-05-19 04:12:19 -05:00
|
|
|
|
return self.object.pk
|
|
|
|
|
|
|
|
|
|
def get_short_url(self):
|
|
|
|
|
shortUrl = None
|
2023-02-27 04:00:33 -06:00
|
|
|
|
if hasattr(settings, "SHORT_SITE_URL"):
|
|
|
|
|
short_path = reverse_lazy("map_short_url", kwargs={"pk": self.object.pk})
|
2018-05-19 04:12:19 -05:00
|
|
|
|
shortUrl = "%s%s" % (settings.SHORT_SITE_URL, short_path)
|
|
|
|
|
return shortUrl
|
|
|
|
|
|
|
|
|
|
def get_geojson(self):
|
|
|
|
|
map_settings = self.object.settings
|
|
|
|
|
if "properties" not in map_settings:
|
2023-02-27 04:00:33 -06:00
|
|
|
|
map_settings["properties"] = {}
|
|
|
|
|
map_settings["properties"]["name"] = self.object.name
|
|
|
|
|
map_settings["properties"]["permissions"] = self.get_permissions()
|
2018-05-19 04:12:19 -05:00
|
|
|
|
return map_settings
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MapViewGeoJSON(MapView):
|
|
|
|
|
def get_canonical_url(self):
|
2023-02-27 04:00:33 -06:00
|
|
|
|
return reverse("map_geojson", args=(self.object.pk,))
|
2018-05-19 04:12:19 -05:00
|
|
|
|
|
|
|
|
|
def render_to_response(self, context, *args, **kwargs):
|
2023-02-27 04:00:33 -06:00
|
|
|
|
return HttpResponse(context["map_settings"], content_type="application/json")
|
2018-05-19 04:12:19 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MapNew(MapDetailMixin, TemplateView):
|
|
|
|
|
template_name = "umap/map_detail.html"
|
|
|
|
|
|
|
|
|
|
|
2018-09-23 02:56:30 -05:00
|
|
|
|
class MapCreate(FormLessEditMixin, PermissionsMixin, CreateView):
|
2018-05-19 04:12:19 -05:00
|
|
|
|
model = Map
|
|
|
|
|
form_class = MapSettingsForm
|
|
|
|
|
|
|
|
|
|
def form_valid(self, form):
|
|
|
|
|
if self.request.user.is_authenticated:
|
|
|
|
|
form.instance.owner = self.request.user
|
|
|
|
|
self.object = form.save()
|
2018-09-23 02:56:30 -05:00
|
|
|
|
anonymous_url = self.get_anonymous_edit_url()
|
2018-05-19 04:12:19 -05:00
|
|
|
|
if not self.request.user.is_authenticated:
|
|
|
|
|
msg = _(
|
|
|
|
|
"Your map has been created! If you want to edit this map from "
|
|
|
|
|
"another computer, please use this link: %(anonymous_url)s"
|
|
|
|
|
% {"anonymous_url": anonymous_url}
|
|
|
|
|
)
|
|
|
|
|
else:
|
|
|
|
|
msg = _("Congratulations, your map has been created!")
|
2018-09-23 02:56:30 -05:00
|
|
|
|
permissions = self.get_permissions()
|
|
|
|
|
# User does not have the cookie yet.
|
2023-02-27 04:00:33 -06:00
|
|
|
|
permissions["anonymous_edit_url"] = anonymous_url
|
2018-05-19 04:12:19 -05:00
|
|
|
|
response = simple_json_response(
|
|
|
|
|
id=self.object.pk,
|
|
|
|
|
url=self.object.get_absolute_url(),
|
2018-09-23 02:56:30 -05:00
|
|
|
|
permissions=permissions,
|
2023-02-27 04:00:33 -06:00
|
|
|
|
info=msg,
|
2018-05-19 04:12:19 -05:00
|
|
|
|
)
|
|
|
|
|
if not self.request.user.is_authenticated:
|
|
|
|
|
key, value = self.object.signed_cookie_elements
|
|
|
|
|
response.set_signed_cookie(
|
2023-02-27 04:00:33 -06:00
|
|
|
|
key=key, value=value, max_age=ANONYMOUS_COOKIE_MAX_AGE
|
2018-05-19 04:12:19 -05:00
|
|
|
|
)
|
|
|
|
|
return response
|
|
|
|
|
|
|
|
|
|
|
2018-09-23 02:56:30 -05:00
|
|
|
|
class MapUpdate(FormLessEditMixin, PermissionsMixin, UpdateView):
|
2018-05-19 04:12:19 -05:00
|
|
|
|
model = Map
|
|
|
|
|
form_class = MapSettingsForm
|
2023-02-27 04:00:33 -06:00
|
|
|
|
pk_url_kwarg = "map_id"
|
2018-05-19 04:12:19 -05:00
|
|
|
|
|
|
|
|
|
def form_valid(self, form):
|
|
|
|
|
self.object.settings = form.cleaned_data["settings"]
|
|
|
|
|
self.object.save()
|
|
|
|
|
return simple_json_response(
|
|
|
|
|
id=self.object.pk,
|
|
|
|
|
url=self.object.get_absolute_url(),
|
2018-09-23 02:56:30 -05:00
|
|
|
|
permissions=self.get_permissions(),
|
|
|
|
|
info=_("Map has been updated!"),
|
2018-05-19 04:12:19 -05:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
2018-06-15 16:25:38 -05:00
|
|
|
|
class UpdateMapPermissions(FormLessEditMixin, UpdateView):
|
2018-05-19 04:12:19 -05:00
|
|
|
|
model = Map
|
2023-02-27 04:00:33 -06:00
|
|
|
|
pk_url_kwarg = "map_id"
|
2018-05-19 04:12:19 -05:00
|
|
|
|
|
|
|
|
|
def get_form_class(self):
|
|
|
|
|
if self.object.owner:
|
|
|
|
|
return UpdateMapPermissionsForm
|
|
|
|
|
else:
|
|
|
|
|
return AnonymousMapPermissionsForm
|
|
|
|
|
|
|
|
|
|
def get_form(self, form_class=None):
|
2018-06-15 16:25:38 -05:00
|
|
|
|
form = super().get_form(form_class)
|
2018-05-19 04:12:19 -05:00
|
|
|
|
user = self.request.user
|
|
|
|
|
if self.object.owner and not user == self.object.owner:
|
2023-02-27 04:00:33 -06:00
|
|
|
|
del form.fields["edit_status"]
|
|
|
|
|
del form.fields["share_status"]
|
|
|
|
|
del form.fields["owner"]
|
2018-05-19 04:12:19 -05:00
|
|
|
|
return form
|
|
|
|
|
|
|
|
|
|
def form_valid(self, form):
|
|
|
|
|
self.object = form.save()
|
2023-02-27 04:00:33 -06:00
|
|
|
|
return simple_json_response(info=_("Map editors updated with success!"))
|
2018-05-19 04:12:19 -05:00
|
|
|
|
|
|
|
|
|
|
2018-07-07 09:44:40 -05:00
|
|
|
|
class AttachAnonymousMap(View):
|
|
|
|
|
def post(self, *args, **kwargs):
|
2023-02-27 04:00:33 -06:00
|
|
|
|
self.object = kwargs["map_inst"]
|
|
|
|
|
if (
|
|
|
|
|
self.object.owner
|
|
|
|
|
or not self.object.is_anonymous_owner(self.request)
|
|
|
|
|
or not self.object.can_edit(self.request.user, self.request)
|
|
|
|
|
or not self.request.user.is_authenticated
|
|
|
|
|
):
|
2018-09-08 09:49:25 -05:00
|
|
|
|
return HttpResponseForbidden()
|
2018-07-07 09:44:40 -05:00
|
|
|
|
self.object.owner = self.request.user
|
|
|
|
|
self.object.save()
|
|
|
|
|
return simple_json_response()
|
|
|
|
|
|
|
|
|
|
|
2018-05-19 04:12:19 -05:00
|
|
|
|
class MapDelete(DeleteView):
|
|
|
|
|
model = Map
|
|
|
|
|
pk_url_kwarg = "map_id"
|
|
|
|
|
|
2023-02-22 08:19:38 -06:00
|
|
|
|
def form_valid(self, form):
|
2018-05-19 04:12:19 -05:00
|
|
|
|
self.object = self.get_object()
|
|
|
|
|
if self.object.owner and self.request.user != self.object.owner:
|
2023-02-27 04:00:33 -06:00
|
|
|
|
return HttpResponseForbidden(_("Only its owner can delete the map."))
|
|
|
|
|
if not self.object.owner and not self.object.is_anonymous_owner(self.request):
|
2018-09-08 09:49:25 -05:00
|
|
|
|
return HttpResponseForbidden()
|
2018-05-19 04:12:19 -05:00
|
|
|
|
self.object.delete()
|
|
|
|
|
return simple_json_response(redirect="/")
|
|
|
|
|
|
|
|
|
|
|
2018-09-23 02:56:30 -05:00
|
|
|
|
class MapClone(PermissionsMixin, View):
|
2018-05-19 04:12:19 -05:00
|
|
|
|
def post(self, *args, **kwargs):
|
2023-02-27 04:00:33 -06:00
|
|
|
|
if (
|
|
|
|
|
not getattr(settings, "UMAP_ALLOW_ANONYMOUS", False)
|
|
|
|
|
and not self.request.user.is_authenticated
|
|
|
|
|
):
|
2018-09-08 09:49:25 -05:00
|
|
|
|
return HttpResponseForbidden()
|
2018-05-19 04:12:19 -05:00
|
|
|
|
owner = self.request.user if self.request.user.is_authenticated else None
|
2023-02-27 04:00:33 -06:00
|
|
|
|
self.object = kwargs["map_inst"].clone(owner=owner)
|
2018-05-19 04:12:19 -05:00
|
|
|
|
response = simple_json_response(redirect=self.object.get_absolute_url())
|
|
|
|
|
if not self.request.user.is_authenticated:
|
|
|
|
|
key, value = self.object.signed_cookie_elements
|
|
|
|
|
response.set_signed_cookie(
|
2023-02-27 04:00:33 -06:00
|
|
|
|
key=key, value=value, max_age=ANONYMOUS_COOKIE_MAX_AGE
|
2018-05-19 04:12:19 -05:00
|
|
|
|
)
|
|
|
|
|
msg = _(
|
|
|
|
|
"Your map has been cloned! If you want to edit this map from "
|
|
|
|
|
"another computer, please use this link: %(anonymous_url)s"
|
2018-09-23 02:56:30 -05:00
|
|
|
|
% {"anonymous_url": self.get_anonymous_edit_url()}
|
2018-05-19 04:12:19 -05:00
|
|
|
|
)
|
|
|
|
|
else:
|
|
|
|
|
msg = _("Congratulations, your map has been cloned!")
|
|
|
|
|
messages.info(self.request, msg)
|
|
|
|
|
return response
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MapShortUrl(RedirectView):
|
|
|
|
|
query_string = True
|
|
|
|
|
permanent = True
|
|
|
|
|
|
|
|
|
|
def get_redirect_url(self, **kwargs):
|
2023-02-27 04:00:33 -06:00
|
|
|
|
map_inst = get_object_or_404(Map, pk=kwargs["pk"])
|
2018-05-19 04:12:19 -05:00
|
|
|
|
url = map_inst.get_absolute_url()
|
|
|
|
|
if self.query_string:
|
2023-02-27 04:00:33 -06:00
|
|
|
|
args = self.request.META.get("QUERY_STRING", "")
|
2018-05-19 04:12:19 -05:00
|
|
|
|
if args:
|
|
|
|
|
url = "%s?%s" % (url, args)
|
|
|
|
|
return url
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MapAnonymousEditUrl(RedirectView):
|
|
|
|
|
|
|
|
|
|
permanent = False
|
|
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
|
signer = Signer()
|
|
|
|
|
try:
|
2023-02-27 04:00:33 -06:00
|
|
|
|
pk = signer.unsign(self.kwargs["signature"])
|
2018-05-19 04:12:19 -05:00
|
|
|
|
except BadSignature:
|
2018-09-08 09:49:25 -05:00
|
|
|
|
return HttpResponseForbidden()
|
2018-05-19 04:12:19 -05:00
|
|
|
|
else:
|
|
|
|
|
map_inst = get_object_or_404(Map, pk=pk)
|
|
|
|
|
url = map_inst.get_absolute_url()
|
|
|
|
|
response = HttpResponseRedirect(url)
|
|
|
|
|
if not map_inst.owner:
|
|
|
|
|
key, value = map_inst.signed_cookie_elements
|
|
|
|
|
response.set_signed_cookie(
|
2023-02-27 04:00:33 -06:00
|
|
|
|
key=key, value=value, max_age=ANONYMOUS_COOKIE_MAX_AGE
|
2018-05-19 04:12:19 -05:00
|
|
|
|
)
|
|
|
|
|
return response
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ############## #
|
|
|
|
|
# DataLayer #
|
|
|
|
|
# ############## #
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class GZipMixin(object):
|
|
|
|
|
|
2023-02-27 04:38:59 -06:00
|
|
|
|
EXT = ".gz"
|
2018-05-19 04:12:19 -05:00
|
|
|
|
|
2023-02-27 05:04:09 -06:00
|
|
|
|
@property
|
2018-05-19 04:12:19 -05:00
|
|
|
|
def path(self):
|
2023-02-27 05:04:09 -06:00
|
|
|
|
return self.object.geojson.path
|
2018-05-19 04:12:19 -05:00
|
|
|
|
|
2023-02-27 06:45:15 -06:00
|
|
|
|
@property
|
|
|
|
|
def last_modified(self):
|
|
|
|
|
stat = os.stat(self.path)
|
|
|
|
|
return http_date(stat.st_mtime)
|
2018-05-19 04:12:19 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class DataLayerView(GZipMixin, BaseDetailView):
|
|
|
|
|
model = DataLayer
|
|
|
|
|
|
|
|
|
|
def render_to_response(self, context, **response_kwargs):
|
|
|
|
|
response = None
|
2023-02-27 05:04:09 -06:00
|
|
|
|
path = self.path
|
|
|
|
|
# Generate gzip if needed
|
|
|
|
|
accepts_gzip = re_accepts_gzip.search(
|
|
|
|
|
self.request.META.get("HTTP_ACCEPT_ENCODING", "")
|
|
|
|
|
)
|
|
|
|
|
if accepts_gzip and settings.UMAP_GZIP:
|
|
|
|
|
gzip_path = Path(f"{path}{self.EXT}")
|
|
|
|
|
if not gzip_path.exists():
|
|
|
|
|
gzip_file(path, gzip_path)
|
2018-05-19 04:12:19 -05:00
|
|
|
|
|
2023-02-27 04:38:59 -06:00
|
|
|
|
if getattr(settings, "UMAP_XSENDFILE_HEADER", None):
|
2018-05-19 04:12:19 -05:00
|
|
|
|
response = HttpResponse()
|
2023-02-27 04:00:33 -06:00
|
|
|
|
path = path.replace(settings.MEDIA_ROOT, "/internal")
|
2018-05-19 10:16:34 -05:00
|
|
|
|
response[settings.UMAP_XSENDFILE_HEADER] = path
|
2018-05-19 04:12:19 -05:00
|
|
|
|
else:
|
2023-02-27 05:04:09 -06:00
|
|
|
|
# Do not use in production
|
|
|
|
|
# (no cache-control/If-Modified-Since/If-None-Match)
|
2018-05-19 04:12:19 -05:00
|
|
|
|
statobj = os.stat(path)
|
2023-02-27 04:00:33 -06:00
|
|
|
|
with open(path, "rb") as f:
|
|
|
|
|
# Should not be used in production!
|
2023-02-27 05:04:09 -06:00
|
|
|
|
response = HttpResponse(f.read(), content_type="application/geo+json")
|
2023-02-27 06:45:15 -06:00
|
|
|
|
response["Last-Modified"] = self.last_modified
|
2023-02-27 04:38:59 -06:00
|
|
|
|
response["Content-Length"] = statobj.st_size
|
|
|
|
|
response["Vary"] = "Accept-Encoding"
|
2023-02-27 05:04:09 -06:00
|
|
|
|
if accepts_gzip and settings.UMAP_GZIP:
|
|
|
|
|
response["Content-Encoding"] = "gzip"
|
2018-05-19 04:12:19 -05:00
|
|
|
|
return response
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class DataLayerVersion(DataLayerView):
|
2023-02-27 05:04:09 -06:00
|
|
|
|
@property
|
|
|
|
|
def path(self):
|
2023-02-27 04:00:33 -06:00
|
|
|
|
return "{root}/{path}".format(
|
2018-05-19 04:12:19 -05:00
|
|
|
|
root=settings.MEDIA_ROOT,
|
2023-02-27 04:00:33 -06:00
|
|
|
|
path=self.object.get_version_path(self.kwargs["name"]),
|
|
|
|
|
)
|
2018-05-19 04:12:19 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class DataLayerCreate(FormLessEditMixin, GZipMixin, CreateView):
|
|
|
|
|
model = DataLayer
|
|
|
|
|
form_class = DataLayerForm
|
|
|
|
|
|
|
|
|
|
def form_valid(self, form):
|
2023-02-27 04:38:59 -06:00
|
|
|
|
form.instance.map = self.kwargs["map_inst"]
|
2018-05-19 04:12:19 -05:00
|
|
|
|
self.object = form.save()
|
2023-02-25 14:50:39 -06:00
|
|
|
|
# Simple response with only metadatas (including new id)
|
2018-05-19 04:12:19 -05:00
|
|
|
|
response = simple_json_response(**self.object.metadata)
|
2023-02-27 06:45:15 -06:00
|
|
|
|
response["Last-Modified"] = self.last_modified
|
2018-05-19 04:12:19 -05:00
|
|
|
|
return response
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class DataLayerUpdate(FormLessEditMixin, GZipMixin, UpdateView):
|
|
|
|
|
model = DataLayer
|
|
|
|
|
form_class = DataLayerForm
|
|
|
|
|
|
|
|
|
|
def form_valid(self, form):
|
|
|
|
|
self.object = form.save()
|
2023-02-25 14:50:39 -06:00
|
|
|
|
# Simple response with only metadatas (client should not reload all data
|
|
|
|
|
# on save)
|
2018-05-19 04:12:19 -05:00
|
|
|
|
response = simple_json_response(**self.object.metadata)
|
2023-02-27 06:45:15 -06:00
|
|
|
|
response["Last-Modified"] = self.last_modified
|
2018-05-19 04:12:19 -05:00
|
|
|
|
return response
|
|
|
|
|
|
2023-02-27 06:45:15 -06:00
|
|
|
|
def is_unmodified(self):
|
2018-05-19 04:12:19 -05:00
|
|
|
|
"""Optimistic concurrency control."""
|
2023-02-27 06:45:15 -06:00
|
|
|
|
modified = True
|
|
|
|
|
if_unmodified = self.request.META.get("HTTP_IF_UNMODIFIED_SINCE")
|
|
|
|
|
if if_unmodified:
|
|
|
|
|
if self.last_modified != if_unmodified:
|
|
|
|
|
modified = False
|
|
|
|
|
return modified
|
2018-05-19 04:12:19 -05:00
|
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
|
self.object = self.get_object()
|
2023-02-27 04:00:33 -06:00
|
|
|
|
if self.object.map != self.kwargs["map_inst"]:
|
2018-09-08 09:49:25 -05:00
|
|
|
|
return HttpResponseForbidden()
|
2023-02-27 06:45:15 -06:00
|
|
|
|
if not self.is_unmodified():
|
2018-05-19 04:12:19 -05:00
|
|
|
|
return HttpResponse(status=412)
|
|
|
|
|
return super(DataLayerUpdate, self).post(request, *args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class DataLayerDelete(DeleteView):
|
|
|
|
|
model = DataLayer
|
|
|
|
|
|
2023-02-22 08:19:38 -06:00
|
|
|
|
def form_valid(self, form):
|
2018-05-19 04:12:19 -05:00
|
|
|
|
self.object = self.get_object()
|
2023-02-27 04:00:33 -06:00
|
|
|
|
if self.object.map != self.kwargs["map_inst"]:
|
2018-09-08 09:49:25 -05:00
|
|
|
|
return HttpResponseForbidden()
|
2018-05-19 04:12:19 -05:00
|
|
|
|
self.object.delete()
|
|
|
|
|
return simple_json_response(info=_("Layer successfully deleted."))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class DataLayerVersions(BaseDetailView):
|
|
|
|
|
model = DataLayer
|
|
|
|
|
|
|
|
|
|
def render_to_response(self, context, **response_kwargs):
|
|
|
|
|
return simple_json_response(versions=self.object.versions)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ############## #
|
|
|
|
|
# Picto #
|
|
|
|
|
# ############## #
|
|
|
|
|
|
2023-02-27 04:00:33 -06:00
|
|
|
|
|
2018-05-19 04:12:19 -05:00
|
|
|
|
class PictogramJSONList(ListView):
|
|
|
|
|
model = Pictogram
|
|
|
|
|
|
|
|
|
|
def render_to_response(self, context, **response_kwargs):
|
|
|
|
|
content = [p.json for p in Pictogram.objects.all()]
|
|
|
|
|
return simple_json_response(pictogram_list=content)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ############## #
|
|
|
|
|
# Generic #
|
|
|
|
|
# ############## #
|
|
|
|
|
|
2023-02-27 04:00:33 -06:00
|
|
|
|
|
2018-05-19 04:12:19 -05:00
|
|
|
|
def logout(request):
|
|
|
|
|
do_logout(request)
|
|
|
|
|
return simple_json_response(redirect="/")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class LoginPopupEnd(TemplateView):
|
|
|
|
|
"""
|
|
|
|
|
End of a loggin process in popup.
|
|
|
|
|
Basically close the popup.
|
|
|
|
|
"""
|
2023-02-27 04:00:33 -06:00
|
|
|
|
|
2018-05-19 04:12:19 -05:00
|
|
|
|
template_name = "umap/login_popup_end.html"
|