28 protected int $id = 0;
42 $this->resource_storage = $DIC->resourceStorage();
43 $this->upload_service = $DIC->upload();
44 $this->main_template = $DIC->ui()->mainTemplate();
45 $this->db = $DIC->database();
58 $ilDB = $DIC->database();
63 $set =
$ilDB->query(
"SELECT * FROM badge_image_templ_type");
64 while ($row =
$ilDB->fetchAssoc($set)) {
65 $types[$row[
"tmpl_id"]][] = $row[
"type_id"];
68 $set =
$ilDB->query(
"SELECT * FROM badge_image_template" .
70 while ($row =
$ilDB->fetchAssoc($set)) {
71 $row[
"types"] = (array) ($types[$row[
"id"]] ??
null);
74 $obj->importDBRow($row);
88 foreach (self::getInstances() as $tmpl) {
89 if (!count($tmpl->getTypes()) || in_array($a_type_unique_id, $tmpl->getTypes(),
true)) {
102 protected function setId(
int $a_id): void
114 $this->title = trim($a_value);
122 protected function setImage(?
string $a_value): void
124 if ($a_value !==
null) {
125 $this->image = trim($a_value);
139 $this->types = is_array($types)
140 ? array_unique($types)
155 if ($this->
getId() &&
156 $a_upload_meta[
"tmp_name"]) {
162 $suffix = strtolower(array_pop($exp));
163 $tgt =
$path .
"img" . $this->
getId() .
"." . $suffix;
175 if (!$this->upload_service->hasBeenProcessed()) {
176 $this->upload_service->process();
178 if ($this->upload_service->hasUploads()) {
179 $array_result = $this->upload_service->getResults();
180 $array_result = array_pop($array_result);
181 if ($array_result->getName() !==
'') {
184 $identification = $this->resource_storage->manage()->upload($array_result, $stakeholder);
191 $this->main_template->setOnScreenMessage(
'failure', $e->getMessage(),
true);
197 if ($this->
getId()) {
202 $exp = explode(
".", $this->
getImage());
203 $suffix = strtolower(array_pop($exp));
214 ?
string $a_subdir =
null 219 $path = $storage->getAbsolutePath() .
"/";
222 $path .= $a_subdir .
"/";
224 if (!is_dir(
$path)) {
237 protected function read(
int $a_id): void
241 $set =
$ilDB->query(
"SELECT * FROM badge_image_template" .
242 " WHERE id = " .
$ilDB->quote($a_id,
"integer"));
243 if (
$ilDB->numRows($set)) {
244 $row =
$ilDB->fetchAssoc($set);
256 $set =
$ilDB->query(
"SELECT * FROM badge_image_templ_type WHERE tmpl_id = " .
$ilDB->quote($a_id,
"integer"));
257 while ($row =
$ilDB->fetchAssoc($set)) {
258 $res[] = $row[
"type_id"];
270 $this->
setId($a_row[
"id"]);
272 if (isset($a_row[
"image"])) {
275 if (isset($a_row[
"image_rid"])) {
285 if ($this->
getId()) {
290 $id =
$ilDB->nextId(
"badge_image_template");
294 $fields[
"id"] = array(
"integer", $id);
296 $ilDB->insert(
"badge_image_template", $fields);
305 if (!$this->
getId()) {
313 "badge_image_template",
315 array(
"id" => array(
"integer", $this->
getId()))
321 public function delete():
void 325 if (!$this->
getId()) {
332 $ilDB->manipulate(
"DELETE FROM badge_image_template" .
333 " WHERE id = " .
$ilDB->quote($this->getId(),
"integer"));
342 "title" => [
"text", $this->
getTitle()],
343 "image" => [
"text", $this->
getImage()],
352 if ($this->
getId()) {
353 $ilDB->manipulate(
"DELETE FROM badge_image_templ_type" .
354 " WHERE tmpl_id = " .
$ilDB->quote($this->getId(),
"integer"));
357 foreach ($this->
getTypes() as $type) {
359 "tmpl_id" => array(
"integer", $this->
getId()),
360 "type_id" => array(
"text", $type)
362 $ilDB->insert(
"badge_image_templ_type", $fields);
379 int $size = ilBadgeImage::IMAGE_SIZE_XS
384 $identification = $this->resource_storage->manage()->find($this->
getImageRid());
385 if ($identification !==
null) {
387 $urls = $this->resource_storage->consume()->flavourUrls($flavour)->getURLsAsArray();
388 if (count($urls) === ilBadgeImage::IMAGE_URL_COUNT && isset($urls[$size])) {
389 $image_src = $urls[$size];
__construct(?int $a_id=null)
uploadImage(array $a_upload_meta)
static getInstancesByType(string $a_type_unique_id)
getPropertiesForStorage()
importDBRow(array $a_row)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setImage(?string $a_value)
static getValidFilename(string $a_filename)
setImageRid(?string $image_rid=null)
Class IllegalStateException.
getImageFromResourceId(int $size=ilBadgeImage::IMAGE_SIZE_XS)
Services $resource_storage
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ResourceIdentification.
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
ilGlobalTemplateInterface $main_template
FileUpload $upload_service
processImageUpload(ilBadgeImageTemplate $badge)
static moveUploadedFile(string $a_file, string $a_name, string $a_target, bool $a_raise_errors=true, string $a_mode="move_uploaded")
move uploaded file
setTitle(string $a_value)
setTypes(?array $types=null)
static signFile(string $path_to_file)
getFilePath(int $a_id, ?string $a_subdir=null)
Init file system storage.