19 declare(strict_types=1);
36 "title" => [
'text', $policy->
getTitle()],
38 "audience" => [
'text', json_encode($policy->
getAudience(), JSON_THROW_ON_ERROR)],
41 "active" => [
'integer', $policy->
isActive()],
56 [
"policy_id" => [
'integer', $policy_id]]
60 $data_for_storage[
"policy_id"] = [
'integer', $this->db->nextId(
"il_upload_policy")];
63 $this->db->insert(
"il_upload_policy", $data_for_storage);
69 $query =
"SELECT * FROM il_upload_policy WHERE policy_id = %s";
70 $result = $this->db->queryF($query, [
'integer'], [$policy_id]);
71 if (
null !== ($dataset = $this->db->fetchObject($result))) {
83 $query =
"SELECT * FROM il_upload_policy";
84 $result = $this->db->query($query);
86 $upload_policies = [];
87 while (
null !== ($dataset = $this->db->fetchObject($result))) {
91 return $upload_policies;
96 if (
null === ($policy_id = $policy->getPolicyId())) {
100 $query =
"DELETE FROM il_upload_policy WHERE policy_id = %s";
101 $this->db->manipulateF($query, [
'integer'], [$policy_id]);
111 $valid_from = (
null !== ($from = $dataset?->valid_from)) ? $this->
getDateObject((
string) $from) :
null;
112 $valid_until = (
null !== ($until = $dataset?->valid_until)) ? $this->
getDateObject((
string) $until) :
null;
117 $dataset->upload_limit_in_mb ?? $this->missingRequiredField(
'upload_limit_in_mb'),
118 json_decode((
string) $audience_json,
true, 512, JSON_THROW_ON_ERROR),
136 return $date->format(self::MYSQL_DATE_FORMAT);
146 (DateTimeImmutable::createFromFormat(self::MYSQL_DATETIME_FORMAT, $date_string .
' 00:00:00')) ?:
147 throw new LogicException(
"Could not create DateTimeImmutable from '$date_string'.");
152 return $date_time->format(self::MYSQL_DATETIME_FORMAT);
158 (DateTimeImmutable::createFromFormat(self::MYSQL_DATETIME_FORMAT, $date_time_string)) ?:
159 throw new LogicException(
"Could not create DateTimeImmutable from '$date_time_string'.");
167 throw new LogicException(
"Could not retrieve data for required field '$field_name'.");
transformToDtoOrAbort(stdClass $dataset)
getDateTimeString(DateTimeImmutable $date_time)
getDateString(DateTimeImmutable $date)
__construct(protected readonly ilDBInterface $db)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getDateObject(string $date_string)
Returns a datetime object with '00:00:00' as H:i:s to avoid comparison errors because PHP will use th...
getDateTimeObject(string $date_time_string)
const MYSQL_DATETIME_FORMAT
store(UploadPolicy $policy)
missingRequiredField(string $field_name)