Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/plugin/ims_lti/configure.php

214 lines
7.1 KiB

<?php
/* For license terms, see /license.txt */
use Chamilo\CoreBundle\Entity\Course;
use Chamilo\PluginBundle\Entity\ImsLti\ImsLtiTool;
require_once __DIR__.'/../../main/inc/global.inc.php';
api_protect_course_script();
api_protect_teacher_script();
$plugin = ImsLtiPlugin::create();
$em = Database::getManager();
$toolsRepo = $em->getRepository('ChamiloPluginBundle:ImsLti\ImsLtiTool');
/** @var ImsLtiTool $baseTool */
$baseTool = isset($_REQUEST['type']) ? $toolsRepo->find(intval($_REQUEST['type'])) : null;
$action = !empty($_REQUEST['action']) ? $_REQUEST['action'] : 'add';
/** @var Course $course */
$course = $em->find('ChamiloCoreBundle:Course', api_get_course_int_id());
$addedTools = $toolsRepo->findBy(['course' => $course]);
$globalTools = $toolsRepo->findBy(['parent' => null, 'course' => null]);
if ($baseTool && !$baseTool->isGlobal()) {
Display::addFlash(
Display::return_message($plugin->get_lang('ToolNotAvailable'), 'warning')
);
header('Location: '.api_get_self().'?'.api_get_cidreq());
exit;
}
switch ($action) {
case 'add':
$form = new FrmAdd('ims_lti_add_tool', [], $baseTool);
$form->build();
if ($baseTool) {
$form->addHidden('type', $baseTool->getId());
}
if ($form->validate()) {
$formValues = $form->getSubmitValues();
$tool = new ImsLtiTool();
$tool
->setName($formValues['name'])
->setDescription(
empty($formValues['description']) ? null : $formValues['description']
)
->setCustomParams(
empty($formValues['custom_params']) ? null : $formValues['custom_params']
)
->setCourse($course)
->setActiveDeepLinking(!empty($formValues['deep_linking']))
->setPrivacy(
!empty($formValues['share_name']),
!empty($formValues['share_email']),
!empty($formValues['share_picture'])
);
if ($baseTool) {
$tool
->setLaunchUrl($baseTool->getLaunchUrl())
->setConsumerKey($baseTool->getConsumerKey())
->setSharedSecret($baseTool->getSharedSecret());
} else {
if (empty($formValues['consumer_key']) && empty($formValues['shared_secret'])) {
try {
$launchUrl = $plugin->getLaunchUrlFromCartridge($formValues['launch_url']);
} catch (Exception $e) {
Display::addFlash(
Display::return_message($e->getMessage(), 'error')
);
header('Location: '.api_get_self().'?'.api_get_cidreq());
exit;
}
$tool->setLaunchUrl($launchUrl);
} else {
$tool
->setLaunchUrl($formValues['launch_url'])
->setConsumerKey($formValues['consumer_key'])
->setSharedSecret($formValues['shared_secret']);
}
}
if (null === $baseTool ||
($baseTool && !$baseTool->isActiveDeepLinking())
) {
$tool
->setActiveDeepLinking(
!empty($formValues['deep_linking'])
);
}
if ($baseTool) {
$tool->setParent($baseTool);
}
$em->persist($tool);
$em->flush();
if (!$tool->isActiveDeepLinking()) {
$plugin->addCourseTool($course, $tool);
}
Display::addFlash(
Display::return_message($plugin->get_lang('ToolAdded'), 'success')
);
header('Location: '.api_get_self().'?'.api_get_cidreq());
exit;
}
$form->setDefaultValues();
break;
case 'edit':
/** @var ImsLtiTool|null $tool */
$tool = null;
if (!empty($_REQUEST['id'])) {
$tool = $em->find('ChamiloPluginBundle:ImsLti\ImsLtiTool', (int) $_REQUEST['id']);
}
if (empty($tool) ||
!ImsLtiPlugin::existsToolInCourse($tool->getId(), $course)
) {
api_not_allowed(
true,
Display::return_message($plugin->get_lang('ToolNotAvailable'), 'error')
);
break;
}
$form = new FrmEdit('ims_lti_edit_tool', [], $tool);
$form->build(false);
if ($form->validate()) {
$formValues = $form->getSubmitValues();
$tool
->setName($formValues['name'])
->setDescription(
empty($formValues['description']) ? null : $formValues['description']
)
->setActiveDeepLinking(
!empty($formValues['deep_linking'])
)
->setCustomParams(
empty($formValues['custom_params']) ? null : $formValues['custom_params']
)
->setPrivacy(
!empty($formValues['share_name']),
!empty($formValues['share_email']),
!empty($formValues['share_picture'])
);
if (null === $tool->getParent()) {
$tool
->setLaunchUrl($formValues['launch_url'])
->setConsumerKey($formValues['consumer_key'])
->setSharedSecret($formValues['shared_secret']);
}
$em->persist($tool);
$em->flush();
$courseTool = $plugin->findCourseToolByLink($course, $tool);
if ($courseTool) {
$plugin->updateCourseTool($courseTool, $tool);
}
Display::addFlash(
Display::return_message($plugin->get_lang('ToolEdited'), 'success')
);
header('Location: '.api_get_self().'?'.api_get_cidreq());
exit;
}
$form->setDefaultValues();
break;
}
$categories = Category::load(null, null, $course->getCode());
$template = new Template($plugin->get_lang('AddExternalTool'));
$template->assign('type', $baseTool ? $baseTool->getId() : null);
$template->assign('added_tools', $addedTools);
$template->assign('global_tools', $globalTools);
$template->assign('form', $form->returnForm());
$content = $template->fetch('ims_lti/view/add.tpl');
$actions = Display::url(
Display::return_icon('add.png', $plugin->get_lang('AddExternalTool'), [], ICON_SIZE_MEDIUM),
api_get_self().'?'.api_get_cidreq()
);
if (!empty($categories)) {
$actions .= Display::url(
Display::return_icon('gradebook.png', get_lang('MakeQualifiable'), [], ICON_SIZE_MEDIUM),
'./gradebook/add_eval.php?selectcat='.$categories[0]->get_id().'&'.api_get_cidreq()
);
}
$template->assign('actions', Display::toolbarAction('lti_toolbar', [$actions]));
$template->assign('content', $content);
$template->display_one_col_template();