diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-04-16 16:53:08 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-04-16 16:53:08 +0000 |
commit | 7dc024b48f8d9757a5c43cb5048df2e021f1ad06 (patch) | |
tree | 843bc56c42572afa67bb0b38fbd9ecc8d9fc514c /src/booking | |
parent | d8e9f0e33648426a95ae50bf27fa089036f6a1fd (diff) | |
parent | b3a44b5d833b0d02735bc2c42d5981c0368da7a6 (diff) |
Merge "Limit total number of active bookings per user"
Diffstat (limited to 'src/booking')
-rw-r--r-- | src/booking/quick_deployer.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/booking/quick_deployer.py b/src/booking/quick_deployer.py index cc593fa..640ded9 100644 --- a/src/booking/quick_deployer.py +++ b/src/booking/quick_deployer.py @@ -92,6 +92,10 @@ class NoRemainingPublicNetwork(Exception): pass +class BookingPermissionException(Exception): + pass + + def parse_host_field(host_field_contents): host_json = json.loads(host_field_contents) lab_dict = host_json['labs'][0] @@ -262,6 +266,10 @@ def create_from_form(form, request): data['host_profile'] = host_profile check_invariants(request, **data) + # check booking privileges + if Booking.objects.filter(owner=request.user, end__gt=timezone.now()).count() >= 3 and not request.user.userprofile.booking_privledge: + raise BookingPermissionException("You do not have permission to have more than 3 bookings at a time.") + check_available_matching_host(lab, host_profile) # requires cleanup if failure after this point grbundle = generate_grb(request.user, lab, quick_booking_id) |