19 declare(strict_types=1);
60 $this->httpState = $DIC->http();
61 $this->
upload = $DIC->upload();
62 $this->
logger = $DIC->logger()->root();
64 $this->
lng->loadLanguageModule(
'certificate');
65 $this->
lng->loadLanguageModule(
'cert');
66 $this->
lng->loadLanguageModule(
'trac');
68 $this->irss = $DIC->resourceStorage();
76 $next_class = $this->
ctrl->getNextClass($this) ??
'';
77 $cmd = $this->
ctrl->getCmd();
81 if (!$this->rbac_system->checkAccess(
'read', $this->object->getRefId())) {
82 $this->error->raiseError($this->
lng->txt(
'no_permission'), $this->error->WARNING);
85 switch (strtolower($next_class)) {
86 case strtolower(ilPermissionGUI::class):
87 $this->tabs_gui->setTabActive(
'perm_settings');
89 $this->
ctrl->forwardCommand($perm_gui);
93 if (!$cmd || $cmd ===
'view') {
105 if ($this->certificate_active_validator->validate() && $this->rbac_system->checkAccess(
'read', $this->
object->getRefId())) {
106 $this->tabs_gui->addTab(
107 self::TAB_CERTIFICATES,
108 $this->
lng->txt(
'overview'),
109 $this->
ctrl->getLinkTarget($this, self::CMD_CERTIFICATES_OVERVIEW)
113 if ($this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
114 $this->tabs_gui->addTarget(
116 $this->
ctrl->getLinkTarget($this,
'settings'),
121 if ($this->rbac_system->checkAccess(
'edit_permission', $this->object->getRefId())) {
122 $this->tabs_gui->addTarget(
124 $this->
ctrl->getLinkTargetByClass(ilPermissionGUI::class,
'perm'),
126 strtolower(ilPermissionGUI::class)
133 $this->tabs_gui->setTabActive(
'settings');
134 $form_settings =
new ilSetting(
'certificate');
137 $form->setFormAction($this->
ctrl->getFormAction($this));
138 $form->setTitle($this->
lng->txt(
'certificate_settings'));
141 $active->setChecked((
bool) $form_settings->get(
'active',
'0'));
142 $form->addItem($active);
145 $info->setValue($this->
lng->txt(
'certificate_usage'));
146 $form->addItem($info);
151 if (strcmp($this->
ctrl->getCmd(),
'save') === 0) {
152 $backgroundDelete = $this->httpState->wrapper()->post()->has(
'background_delete') && $this->httpState->wrapper()->post()->retrieve(
156 if ($backgroundDelete) {
157 $this->
object->deleteBackgroundImage();
162 $this->
upload->hasUploads() &&
163 $this->httpState->request()->getMethod() ===
'POST' &&
164 $bgimage->checkInput()
166 if (!$this->
upload->hasBeenProcessed()) {
170 if (is_array($this->
upload->getResults()) && $this->
upload->getResults() !== []) {
174 $result = $this->
object->uploadBackgroundImage($file);
175 if ($result ===
false) {
176 $bgimage->setAlert($this->
lng->txt(
'certificate_error_upload_bgimage'));
182 if ($this->
object->hasBackgroundImage()) {
183 $rid = $this->
object->getBackgroundImageIdentification();
185 $bgimage->setImage($this->irss->consume()->src($rid)->getSrc(
true));
186 } elseif (is_string($rid)) {
187 $bgimage->setImage($rid);
190 $bgimage->setInfo($this->
lng->txt(
'default_background_info'));
191 $form->addItem($bgimage);
194 'a4' => $this->
lng->txt(
'certificate_a4'),
195 'a4landscape' => $this->
lng->txt(
'certificate_a4_landscape'),
196 'a5' => $this->
lng->txt(
'certificate_a5'),
197 'a5landscape' => $this->
lng->txt(
'certificate_a5_landscape'),
198 'letter' => $this->
lng->txt(
'certificate_letter'),
199 'letterlandscape' => $this->
lng->txt(
'certificate_letter_landscape')
202 $format->setValue($form_settings->get(
'pageformat',
''));
203 $format->setInfo($this->
lng->txt(
'certificate_page_format_info'));
204 $form->addItem($format);
206 if ($this->rbac_system->checkAccess(
'write', $this->object->getRefId())) {
207 $form->addCommandButton(
'save', $this->
lng->txt(
'save'));
219 $this->
lng->txt(
'persistent_certificate_mode'),
220 'persistent_certificate_mode' 225 $this->
lng->txt(
'persistent_certificate_mode_cron'),
226 'persistent_certificate_mode_cron' 228 $cronJobMode->
setInfo($this->
lng->txt(
'persistent_certificate_mode_cron_info'));
231 $this->
lng->txt(
'persistent_certificate_mode_instant'),
232 'persistent_certificate_mode_instant' 234 $instantMode->
setInfo($this->
lng->txt(
'persistent_certificate_mode_instant_info'));
236 $persistentCertificateMode->addOption($cronJobMode);
237 $persistentCertificateMode->addOption($instantMode);
239 $persistentCertificateMode->setValue($form_settings->get(
240 'persistent_certificate_mode',
241 'persistent_certificate_mode_cron' 244 $form->addItem($persistentCertificateMode);
246 $this->tpl->setContent($form->getHTML());
252 !$this->certificate_active_validator->validate() ||
253 !$this->rbac_system->checkAccess(
'read', $this->
object->getRefId())
255 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->WARNING);
258 $this->tabs_gui->activateTab(self::TAB_CERTIFICATES);
262 $this->tpl->setContent($table->render());
268 !$this->certificate_active_validator->validate() ||
269 !$this->rbac_system->checkAccess(
'read', $this->
object->getRefId())
271 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->WARNING);
274 $certificate_id = $this->httpState->wrapper()->query()->retrieve(
277 $this->refinery->kindlyTo()->listOf($this->
refinery->kindlyTo()->int()),
282 if ($certificate_id === []) {
283 $this->
ctrl->redirect($this, self::CMD_CERTIFICATES_OVERVIEW);
287 $certificate_id = $certificate_id[array_key_first($certificate_id)];
290 $user_certificate = $this->user_certificate_repo->fetchCertificate($certificate_id);
291 if (!$user_certificate->isCurrentlyActive()) {
292 throw new Exception(
'Certificate is not active');
295 $this->
logger->error(
'Fetching user certificate for download failed. Ex.: ' . $ex->getMessage());
296 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'error_creating_certificate_pdf'),
true);
297 $this->
ctrl->redirect($this, self::CMD_CERTIFICATES_OVERVIEW);
300 $pdf_generator =
new ilPdfGenerator($this->user_certificate_repo);
305 $this->
lng->txt(
'error_creating_certificate_pdf')
308 $pdf_action->
downloadPdf($user_certificate->getUserId(), $user_certificate->getObjId());
309 $this->
ctrl->redirect($this, self::CMD_CERTIFICATES_OVERVIEW);
314 $form_settings =
new ilSetting(
'certificate');
316 $mode = $this->httpState->wrapper()->post()->retrieve(
317 'persistent_certificate_mode',
318 $this->
refinery->kindlyTo()->string()
320 $previousMode = $form_settings->get(
'persistent_certificate_mode',
'persistent_certificate_mode_cron');
321 if ($mode !== $previousMode && $mode ===
'persistent_certificate_mode_instant') {
329 $this->httpState->wrapper()->post()->retrieve(
'pageformat', $this->
refinery->kindlyTo()->string())
333 (
string) ($this->httpState->wrapper()->post()->has(
'active') && $this->httpState->wrapper()->post()->retrieve(
338 $form_settings->set(
'persistent_certificate_mode', $mode);
340 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'));
This class represents an option in a radio group.
ILIAS HTTP GlobalHttpState $httpState
const CMD_CERTIFICATES_OVERVIEW
prepareOutput(bool $show_sub_objects=true)
const CMD_DOWNLOAD_CERTIFICATE
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _enabledLearningProgress()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
readonly ilLogger $logger
__construct( $data, int $id=0, bool $call_by_reference=true, bool $prepare_output=true, ?ilUserCertificateRepository $user_certificate_repo=null, ?ilCertificateActiveValidator $certificate_active_validator=null,)
ILIAS FileUpload FileUpload $upload
readonly ilCertificateActiveValidator $certificate_active_validator
Class ResourceIdentification.
Class ilObjectGUI Basic methods of all Output classes.
readonly ilUserCertificateRepository $user_certificate_repo
__construct(Container $dic, ilPlugin $plugin)
downloadPdf(int $userId, int $objectId)