| Server IP : 85.214.239.14 / Your IP : 216.73.216.27 Web Server : Apache/2.4.65 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /srv/modoboa/env/lib/python3.5/site-packages/modoboa/limits/ |
Upload File : |
"""
:mod:`lib` --- public functions
-------------------------------
"""
from django.utils.translation import ugettext as _
from modoboa.lib.exceptions import ModoboaException
class LimitReached(ModoboaException):
http_code = 403
def __init__(self, limit):
self.limit = limit
def __str__(self):
return _("%s: limit reached") % self.limit.label
class UnsufficientResource(ModoboaException):
http_code = 424
def __init__(self, limit):
self.limit = limit
def __str__(self):
return _("Not enough resources")
class BadLimitValue(ModoboaException):
http_code = 400
def allocate_resources_from_user(limit, user, value):
"""Allocate resource using an existing user.
When a reseller creates a domain administrator, he generally
assigns him resource to create new objetcs. As a reseller may
also be limited, the resource he gives is taken from its own
pool.
"""
ol = user.userobjectlimit_set.get(name=limit.name)
if value == -1 and ol.max_value != -1:
raise BadLimitValue(
_("You're not allowed to define unlimited values")
)
if limit.max_value > -1:
value -= limit.max_value
if value == 0:
return
remain = ol.max_value - ol.current_value
if value > remain:
raise UnsufficientResource(ol)
ol.max_value -= value
ol.save()