views.py 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. import os
  4. import urllib2
  5. from django.http import StreamingHttpResponse, HttpResponseServerError
  6. from django.shortcuts import get_object_or_404
  7. from django.views.generic.detail import DetailView
  8. from django.shortcuts import get_object_or_404
  9. from django.views.generic.edit import UpdateView
  10. from django.conf import settings
  11. from django.contrib.messages.views import SuccessMessageMixin
  12. from django.contrib.auth.decorators import login_required
  13. from django.utils.decorators import method_decorator
  14. from coin.members.models import Member
  15. from .models import VPNConfiguration
  16. class VPNView(SuccessMessageMixin, UpdateView):
  17. model = VPNConfiguration
  18. fields = ['ipv4_endpoint', 'ipv6_endpoint', 'comment']
  19. success_message = "Configuration enregistrée avec succès !"
  20. @method_decorator(login_required)
  21. def dispatch(self, *args, **kwargs):
  22. return super(VPNView, self).dispatch(*args, **kwargs)
  23. def get_form(self, form_class=None):
  24. if settings.MEMBER_CAN_EDIT_VPN_CONF:
  25. return super(VPNView, self).get_form(form_class)
  26. return None
  27. def get_object(self):
  28. if self.request.user.is_superuser:
  29. return get_object_or_404(VPNConfiguration, pk=self.kwargs.get("pk"))
  30. # For normal users, ensure the VPN belongs to them.
  31. return get_object_or_404(VPNConfiguration, pk=self.kwargs.get("pk"),
  32. offersubscription__member=self.request.user)
  33. class VPNGeneratePasswordView(VPNView):
  34. """This generates a random password, saves it in hashed form, and returns
  35. it to the user in cleartext.
  36. """
  37. def get_context_data(self, **kwargs):
  38. context = super(VPNGeneratePasswordView, self).get_context_data(**kwargs)
  39. # Generate a new random password and save it
  40. password = Member.objects.make_random_password()
  41. self.object.password = password
  42. # This will hash the password automatically
  43. self.object.full_clean()
  44. self.object.save()
  45. context['password'] = password
  46. return context
  47. @login_required
  48. def get_graph(request, vpn_id, period="daily"):
  49. """ This get the graph for the associated vpn_id and time period
  50. """
  51. if request.user.is_superuser:
  52. vpn = get_object_or_404(VPNConfiguration, pk=vpn_id)
  53. else:
  54. # For normal users, ensure the VPN belongs to them
  55. vpn = get_object_or_404(VPNConfiguration, pk=vpn_id,
  56. offersubscription__member=request.user)
  57. time_periods = { 'hourly': '-1hour', 'daily': '-24hours', 'weekly': '-8days', 'monthly': '-32days', 'yearly': '-13months', }
  58. if period not in time_periods:
  59. period = 'daily'
  60. graph_url = os.path.join(settings.GRAPHITE_SERVER,
  61. "render/?width=586&height=308&from=%(period)s&" \
  62. "target=alias%%28scaleToSeconds%%28vpn1.%(login)s.downrxbytes%%2C1%%29%%2C%%20%%22Download%%22%%29&" \
  63. "target=alias%%28scaleToSeconds%%28vpn1.%(login)s.uptxbytes%%2C1%%29%%2C%%20%%22Upload%%22%%29&" \
  64. "title=VPN%%20Usage%%20%(login)s" % \
  65. { 'period': time_periods[period], 'login': vpn.login })
  66. try:
  67. return StreamingHttpResponse(urllib2.urlopen(graph_url), content_type="image/png")
  68. except urllib2.URLError:
  69. return HttpResponseServerError()