views.py 3.1 KB

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