19 declare(strict_types=1);
46 private readonly
string $parent_class,
47 private readonly
Config $config,
48 private readonly
Closure $after_document_deletion,
51 $this->container = $container ??
$GLOBALS[
'DIC'];
52 $this->container->language()->loadLanguageModule(
'ldoc');
54 $this->config->legalDocuments()->id(),
55 $this->container->ui(),
56 $this->container->language()
63 $cmd = $this->container->ctrl()->getCmd(
'documents');
65 throw new Exception(
'Unknown command: ' . $cmd);
72 if (!$this->
admin->canReadUserAdministration()) {
73 $this->container[
'ilErr']->raiseError($this->container->language()->txt(
'permission_denied'), $this->container[
'ilErr']->WARNING);
75 $this->container->tabs()->activateTab(
'history');
76 $this->
admin->setContent($this->config->legalDocuments()->history()->table(
87 $auto->setSearchFields([
'login',
'firstname',
'lastname',
'email']);
88 $auto->enableFieldSearchableCheck(
false);
89 $auto->setMoreLinkAvailable(
true);
91 if ($this->container->http()->wrapper()->query()->has(
'fetchall')) {
95 if ($this->container->http()->wrapper()->query()->has(
'term')) {
97 $this->container->http()->wrapper()->query()->retrieve(
'term', $this->container->refinery()->kindlyTo()->string())
101 ->withHeader(ResponseHeader::CONTENT_TYPE,
'application/json')
102 ->withBody(Streams::ofString($auto->getList($query)));
103 $this->container->http()->saveResponse(
$response);
106 $this->container->http()->sendResponse();
107 $this->container->http()->close();
117 $this->
admin->requireEditable();
118 $this->
ctrlTo(
'setParameterByClass',
'hash', $this->config->legalDocuments()->document()->hash());
119 $this->
ctrlTo(
'redirectByClass',
'editDocument');
124 $this->
admin->requireEditable();
125 $this->container->tabs()->clearTargets();
126 $this->container->tabs()->setBackTarget($this->container->language()->txt(
'back'), $this->
ctrlTo(
'getLinkTargetByClass',
'documents'));
128 $document = $this->
admin->currentDocument()->value();
130 $this->container->language()->loadLanguageModule(
'meta');
132 $url = $this->
admin->targetWithDoc($this, $document,
'addCriterion',
'getFormAction');
133 $form = $this->
admin->criterionForm(
$url, $document);
135 $form = $this->
admin->withFormData($form,
function (array $x) use ($document) {
137 $this->
returnWithResult($this->config->legalDocuments()->document()->validateCriteriaContent($document->criteria(), $content)->map(
138 fn() => $this->config->legalDocuments()->document()->repository()->createCriterion($document, $content)
139 ),
'doc_crit_attached',
'documents');
142 $this->
admin->setContent($form);
147 $this->
admin->requireEditable();
149 $this->container->language()->loadLanguageModule(
'meta');
150 $url = $this->
admin->targetWithDocAndCriterion($this, $document, $criterion,
'editCriterion',
'getFormAction');
151 $form = $this->
admin->criterionForm(
$url, $document, $criterion->
content());
152 $form = $this->
admin->withFormData($form,
function (array
$data) use ($document, $criterion) {
154 $criteria = array_filter($document->
criteria(), fn(
Criterion $other) => $other->
id() !== $criterion->
id());
155 $this->
returnWithResult($this->config->legalDocuments()->document()->validateCriteriaContent($criteria, $content)->map(
156 fn() => $this->config->legalDocuments()->document()->repository()->updateCriterionContent($criterion->
id(), $content)
157 ),
'doc_crit_changed',
'documents');
160 $this->container->tabs()->clearTargets();
161 $this->container->tabs()->setBackTarget($this->container->language()->txt(
'back'), $this->
ctrlTo(
'getLinkTargetByClass',
'documents'));
162 $condition = $this->config->legalDocuments()->document()->toCondition($criterion->
content());
163 $this->container->ui()->mainTemplate()->setTitle(join(
' - ', [$document->
content()->title(), $condition->definition()->translatedType()]));
164 $this->
admin->setContent($form);
170 $this->
admin->requireEditable();
172 $this->config->legalDocuments()->document()->repository()->deleteCriterion($criterion->
id());
179 $this->
admin->requireEditable();
181 $raw_content = $this->
admin->uploadContent();
182 $sanitised_value = trim((
new HTMLPurifier())->purify($raw_content));
183 if ($this->
admin->isInvalidHTML($sanitised_value)) {
184 $sanitised_value = nl2br($sanitised_value);
187 $this->config->legalDocuments()->document()->repository()->updateDocumentContent($id,
new DocumentContent(
'html', $title, $sanitised_value));
188 $this->
admin->exitWithJsonResponse([
'status' => 1]);
194 $this->container->language()->loadLanguageModule(
'meta');
195 $this->container->tabs()->activateTab(
'documents');
197 if ($this->config->editable()) {
198 $this->container->toolbar()->addStickyItem($this->
admin->addDocumentButton($this->ctrlTo(
'getLinkTargetByClass',
'addDocument')));
202 $this->
ui->mainTemplate()->setContent($this->config->legalDocuments()->document()->table($this, $edit_links)->render());
217 $this->
admin->requireEditable();
218 $docs = $this->
admin->retrieveDocuments();
219 $this->
admin->deleteDocuments($docs);
220 ($this->after_document_deletion)();
221 $this->
returnWithMessage(count($docs) === 1 ?
'deleted_documents_s' :
'deleted_documents_p',
'documents');
226 $this->
admin->requireEditable();
227 $this->container->tabs()->clearTargets();
229 $content = fn() => $this->config->legalDocuments()->document()->repository()->findId($id)->map(fn(
$d) =>
$d->content());
230 $form = $this->
admin->documentForm($link, $title, $content, $may_be_new);
231 $form = $this->
admin->withFormData($form,
function (
$data) use ($id) {
232 $this->config->legalDocuments()->document()->repository()->updateDocumentTitle($id,
$data[0][
'title']);
236 $this->container->tabs()->setBackTarget($this->container->language()->txt(
'back'), $this->
ctrlTo(
'getLinkTargetByClass',
'documents'));
237 $this->container->tabs()->activateTab(
'documents');
238 $this->
admin->setContent($form);
244 $this->
admin->requireEditable();
245 $this->
admin->withDocumentsAndOrder($this->
admin->saveDocumentOrder(...));
252 public function tabs(array $run_after = []): void
255 $this->
tab(
'documents', $this->
ui->txt(
'agreement_documents_tab_label')),
256 $this->
tab(
'history', $this->
ui->txt(
'acceptance_history'), $this->
admin->canReadUserAdministration()),
263 private function tab(
string $cmd,
string $label,
bool $can_access =
true): array
265 return [$cmd, $label, $this->
ctrlTo(
'getLinkTargetByClass', $cmd), $can_access];
273 private function ctrlTo(
string $method, ...$args)
275 $path = [$this->parent_class, self::class];
276 if ($method ===
'setParameterByClass') {
279 return $this->container->ctrl()->$method(
$path, ...$args);
285 return $reflection->hasMethod($cmd)
286 && $reflection->getMethod($cmd)->isPublic()
287 && (string) $reflection->getMethod($cmd)->getReturnType() ===
'void' 288 && $reflection->getMethod($cmd)->getNumberOfParameters() === 0;
296 $this->
admin->requireEditable();
297 $this->container->tabs()->activateTab(
'documents');
298 $this->
admin->setContent($this->
admin->deleteDocumentsConfirmation(
299 $this->ctrlTo(
'getFormActionByClass',
'ignored'),
311 if (!is_string($error)) {
315 return match ($error) {
316 ProvideDocument::CRITERION_ALREADY_EXISTS => $this->
ui->txt(
'criterion_assignment_must_be_unique'),
317 ProvideDocument::CRITERION_WOULD_NEVER_MATCH => $this->
ui->txt(
'criterion_assignment_cannot_match'),
324 $this->
ui->mainTemplate()->setOnScreenMessage(
'success', $this->
ui->txt($message),
true);
325 $this->
ctrlTo(
'redirectByClass', $command);
330 if ($result->isOk()) {
331 $this->
ui->mainTemplate()->setOnScreenMessage(
'success', $this->
ui->txt($success_message),
true);
336 $this->
ctrlTo(
'redirectByClass', $target);
tab(string $cmd, string $label, bool $can_access=true)
deleteDocumentsConfirmation(array $documents)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
ctrlTo(string $method,... $args)
returnWithMessage(string $message, string $command)
Customizing of pimple-DIC for ILIAS.
readonly Container $container
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
criterionErrorMessage($error)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
returnWithResult(Result $result, string $success_message, string $target)
tabs(array $run_after=[])
error()
Get the encapsulated error.
__construct(private readonly string $parent_class, private readonly Config $config, private readonly Closure $after_document_deletion, ?Container $container=null)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
readonly Administration $admin