views.py 3.3 KB

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