ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMailTemplateService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
25 {
26  public function __construct(
27  protected ilMailTemplateRepository $repository,
28  protected ilMustacheFactory $mustacheFactory
29  ) {
30  }
31 
32  public function createNewTemplate(
33  string $contextId,
34  string $title,
35  string $subject,
36  string $message,
37  string $language
38  ): ilMailTemplate {
39  try {
40  $this->mustacheFactory->getBasicEngine()->render($subject, []);
41  } catch (Exception) {
42  throw new TemplateSubjectSyntaxException('Invalid mail template for subject');
43  }
44 
45  try {
46  $this->mustacheFactory->getBasicEngine()->render($message, []);
47  } catch (Exception) {
48  throw new TemplateMessageSyntaxException('Invalid mail template for message');
49  }
50 
51  $template = new ilMailTemplate();
52  $template->setContext($contextId);
53  $template->setTitle($title);
54  $template->setSubject($subject);
55  $template->setMessage($message);
56  $template->setLang($language);
57 
58  $this->repository->store($template);
59 
60  return $template;
61  }
62 
63  public function modifyExistingTemplate(
64  int $templateId,
65  string $contextId,
66  string $title,
67  string $subject,
68  string $message,
69  string $language
70  ): void {
71  try {
72  $this->mustacheFactory->getBasicEngine()->render($subject, []);
73  } catch (Exception) {
74  throw new TemplateSubjectSyntaxException('Invalid mail template for subject');
75  }
76 
77  try {
78  $this->mustacheFactory->getBasicEngine()->render($message, []);
79  } catch (Exception) {
80  throw new TemplateMessageSyntaxException('Invalid mail template for message');
81  }
82 
83  $template = $this->repository->findById($templateId);
84 
85  $template->setContext($contextId);
86  $template->setTitle($title);
87  $template->setSubject($subject);
88  $template->setMessage($message);
89  $template->setLang($language);
90 
91  $this->repository->store($template);
92  }
93 
94  public function loadTemplateForId(int $templateId): ilMailTemplate
95  {
96  return $this->repository->findById($templateId);
97  }
98 
99  public function loadTemplatesForContextId(string $contextId): array
100  {
101  return $this->repository->findByContextId($contextId);
102  }
103 
104  public function deleteTemplatesByIds(array $templateIds): void
105  {
106  $this->repository->deleteByIds($templateIds);
107  }
108 
109  public function listAllTemplatesAsArray(): array
110  {
111  $templates = $this->repository->getAll();
112 
113  return array_map(static function (ilMailTemplate $template): array {
114  return $template->toArray();
115  }, $templates);
116  }
117 
118  public function unsetAsContextDefault(ilMailTemplate $template): void
119  {
120  $template->setAsDefault(false);
121 
122  $this->repository->store($template);
123  }
124 
125  public function setAsContextDefault(ilMailTemplate $template): void
126  {
127  $allOfContext = $this->repository->findByContextId($template->getContext());
128  foreach ($allOfContext as $otherTemplate) {
129  $otherTemplate->setAsDefault(false);
130 
131  if ($template->getTplId() === $otherTemplate->getTplId()) {
132  $otherTemplate->setAsDefault(true);
133  }
134 
135  $this->repository->store($otherTemplate);
136  }
137  }
138 }
modifyExistingTemplate(int $templateId, string $contextId, string $title, string $subject, string $message, string $language)
loadTemplatesForContextId(string $contextId)
__construct(protected ilMailTemplateRepository $repository, protected ilMustacheFactory $mustacheFactory)
repository()
description: > Example for rendering a repository card
Definition: repository.php:33
setAsDefault(bool $isDefault)
Class ilMailTemplate.
createNewTemplate(string $contextId, string $title, string $subject, string $message, string $language)
unsetAsContextDefault(ilMailTemplate $template)
$message
Definition: xapiexit.php:31
deleteTemplatesByIds(array $templateIds)
setAsContextDefault(ilMailTemplate $template)