19 declare(strict_types=1);
37 protected array $upload_policies,
47 $largest_limit_in_bytes =
null;
48 foreach ($this->upload_policies as $policy) {
53 $policy_limit_in_bytes = ($policy->getUploadLimitInMB() * self::MB_TO_BYTES);
56 (
null === $largest_limit_in_bytes || $policy_limit_in_bytes > $largest_limit_in_bytes)
58 $largest_limit_in_bytes = $policy_limit_in_bytes;
63 $this->rbac_review->isAssignedToAtLeastOneGivenRole(
64 $this->current_user->getId(),
68 $policy->getAudience()[
'global_roles'] ?? [],
69 $policy->getAudience()[
'local_roles'] ?? []
73 (
null === $largest_limit_in_bytes || $policy_limit_in_bytes > $largest_limit_in_bytes)
75 $largest_limit_in_bytes = $policy_limit_in_bytes;
79 return $largest_limit_in_bytes;
87 if (
null === $valid_from &&
null === $valid_until) {
91 $today = new \DateTimeImmutable(
'today midnight');
93 if (
null !== $valid_from &&
null !== $valid_until) {
94 return $policy->
isActive() && $valid_from >= $today && $today < $valid_until;
97 if (
null !== $valid_until &&
null === $valid_from) {
98 return $policy->
isActive() && $today <= $valid_until;
101 if (
null !== $valid_from &&
null === $valid_until) {
102 return $policy->
isActive() && $today >= $valid_from;
__construct(protected ilRbacReview $rbac_review, protected ilObjUser $current_user, protected array $upload_policies,)
const AUDIENCE_TYPE_GLOBAL_ROLE
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
isPolicyActiveAndValid(UploadPolicy $policy)
const MB_TO_BYTES
Multiply for MB to Bytes, divide for Bytes to MB.
const AUDIENCE_TYPE_ALL_USERS
getUserUploadSizeLimitInBytes()
Returns the upload-size limit of the current user if customized by any upload policy.