|
|
|
|
<?php
|
|
|
|
|
/* For license terms, see /license.txt */
|
|
|
|
|
|
|
|
|
|
use Chamilo\CoreBundle\Entity\Course;
|
|
|
|
|
use Chamilo\CoreBundle\Entity\CourseRelUser;
|
|
|
|
|
use Chamilo\CoreBundle\Entity\Session;
|
|
|
|
|
use Chamilo\CoreBundle\Entity\SessionRelCourseRelUser;
|
|
|
|
|
use Chamilo\CourseBundle\Entity\CTool;
|
|
|
|
|
use Chamilo\PluginBundle\Entity\ImsLti\ImsLtiTool;
|
|
|
|
|
use Chamilo\UserBundle\Entity\User;
|
|
|
|
|
use Doctrine\DBAL\DBALException;
|
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
|
|
|
use Doctrine\DBAL\Types\Type;
|
|
|
|
|
use Symfony\Component\Filesystem\Filesystem;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Description of MsiLti
|
|
|
|
|
*
|
|
|
|
|
* @author Angel Fernando Quiroz Campos <angel.quiroz@beeznest.com>
|
|
|
|
|
*/
|
|
|
|
|
class ImsLtiPlugin extends Plugin
|
|
|
|
|
{
|
|
|
|
|
const TABLE_TOOL = 'plugin_ims_lti_tool';
|
|
|
|
|
|
|
|
|
|
public $isAdminPlugin = true;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class constructor
|
|
|
|
|
*/
|
|
|
|
|
protected function __construct()
|
|
|
|
|
{
|
|
|
|
|
$version = '1.5 (beta)';
|
|
|
|
|
$author = 'Angel Fernando Quiroz Campos';
|
|
|
|
|
|
|
|
|
|
parent::__construct($version, $author, ['enabled' => 'boolean']);
|
|
|
|
|
|
|
|
|
|
$this->setCourseSettings();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the class instance
|
|
|
|
|
* @staticvar MsiLtiPlugin $result
|
|
|
|
|
* @return ImsLtiPlugin
|
|
|
|
|
*/
|
|
|
|
|
public static function create()
|
|
|
|
|
{
|
|
|
|
|
static $result = null;
|
|
|
|
|
|
|
|
|
|
return $result ?: $result = new self();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the plugin directory name
|
|
|
|
|
*/
|
|
|
|
|
public function get_name()
|
|
|
|
|
{
|
|
|
|
|
return 'ims_lti';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Install the plugin. Setup the database
|
|
|
|
|
*/
|
|
|
|
|
public function install()
|
|
|
|
|
{
|
|
|
|
|
$pluginEntityPath = $this->getEntityPath();
|
|
|
|
|
|
|
|
|
|
if (!is_dir($pluginEntityPath)) {
|
|
|
|
|
if (!is_writable(dirname($pluginEntityPath))) {
|
|
|
|
|
$message = get_lang('ErrorCreatingDir').': '.$pluginEntityPath;
|
|
|
|
|
Display::addFlash(Display::return_message($message, 'error'));
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mkdir($pluginEntityPath, api_get_permissions_for_new_directories());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$fs = new Filesystem();
|
|
|
|
|
$fs->mirror(__DIR__.'/Entity/', $pluginEntityPath, null, ['override']);
|
|
|
|
|
|
|
|
|
|
$this->createPluginTables();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Unistall plugin. Clear the database
|
|
|
|
|
*/
|
|
|
|
|
public function uninstall()
|
|
|
|
|
{
|
|
|
|
|
$pluginEntityPath = $this->getEntityPath();
|
|
|
|
|
$fs = new Filesystem();
|
|
|
|
|
|
|
|
|
|
if ($fs->exists($pluginEntityPath)) {
|
|
|
|
|
$fs->remove($pluginEntityPath);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
$this->dropPluginTables();
|
|
|
|
|
$this->removeTools();
|
|
|
|
|
} catch (DBALException $e) {
|
|
|
|
|
error_log('Error while uninstalling IMS/LTI plugin: '.$e->getMessage());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Creates the plugin tables on database
|
|
|
|
|
*
|
|
|
|
|
* @return boolean
|
|
|
|
|
* @throws DBALException
|
|
|
|
|
*/
|
|
|
|
|
private function createPluginTables()
|
|
|
|
|
{
|
|
|
|
|
$entityManager = Database::getManager();
|
|
|
|
|
$connection = $entityManager->getConnection();
|
|
|
|
|
|
|
|
|
|
if ($connection->getSchemaManager()->tablesExist(self::TABLE_TOOL)) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$queries = [
|
|
|
|
|
'CREATE TABLE '.self::TABLE_TOOL.' (
|
|
|
|
|
id INT AUTO_INCREMENT NOT NULL,
|
|
|
|
|
c_id INT DEFAULT NULL,
|
|
|
|
|
gradebook_eval_id INT DEFAULT NULL,
|
|
|
|
|
parent_id INT DEFAULT NULL,
|
|
|
|
|
name VARCHAR(255) NOT NULL,
|
|
|
|
|
description LONGTEXT DEFAULT NULL,
|
|
|
|
|
launch_url VARCHAR(255) NOT NULL,
|
|
|
|
|
consumer_key VARCHAR(255) DEFAULT NULL,
|
|
|
|
|
shared_secret VARCHAR(255) DEFAULT NULL,
|
|
|
|
|
custom_params LONGTEXT DEFAULT NULL,
|
|
|
|
|
active_deep_linking TINYINT(1) DEFAULT \'0\' NOT NULL,
|
|
|
|
|
privacy LONGTEXT DEFAULT NULL,
|
|
|
|
|
INDEX IDX_C5E47F7C91D79BD3 (c_id),
|
|
|
|
|
INDEX IDX_C5E47F7C82F80D8B (gradebook_eval_id),
|
|
|
|
|
INDEX IDX_C5E47F7C727ACA70 (parent_id),
|
|
|
|
|
PRIMARY KEY(id)
|
|
|
|
|
) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB',
|
|
|
|
|
'ALTER TABLE '.self::TABLE_TOOL.' ADD CONSTRAINT FK_C5E47F7C91D79BD3
|
|
|
|
|
FOREIGN KEY (c_id) REFERENCES course (id)',
|
|
|
|
|
'ALTER TABLE '.self::TABLE_TOOL.' ADD CONSTRAINT FK_C5E47F7C82F80D8B
|
|
|
|
|
FOREIGN KEY (gradebook_eval_id) REFERENCES gradebook_evaluation (id) ON DELETE SET NULL',
|
|
|
|
|
'ALTER TABLE '.self::TABLE_TOOL.' ADD CONSTRAINT FK_C5E47F7C727ACA70
|
|
|
|
|
FOREIGN KEY (parent_id) REFERENCES '.self::TABLE_TOOL.' (id);',
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
foreach ($queries as $query) {
|
|
|
|
|
Database::query($query);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Drops the plugin tables on database
|
|
|
|
|
*
|
|
|
|
|
* @return boolean
|
|
|
|
|
*/
|
|
|
|
|
private function dropPluginTables()
|
|
|
|
|
{
|
|
|
|
|
$entityManager = Database::getManager();
|
|
|
|
|
$connection = $entityManager->getConnection();
|
|
|
|
|
$chamiloSchema = $connection->getSchemaManager();
|
|
|
|
|
|
|
|
|
|
if (!$chamiloSchema->tablesExist([self::TABLE_TOOL])) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$sql = 'DROP TABLE IF EXISTS '.self::TABLE_TOOL;
|
|
|
|
|
Database::query($sql);
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
private function removeTools()
|
|
|
|
|
{
|
|
|
|
|
$sql = "DELETE FROM c_tool WHERE link LIKE 'ims_lti/start.php%' AND category = 'plugin'";
|
|
|
|
|
Database::query($sql);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set the course settings
|
|
|
|
|
*/
|
|
|
|
|
private function setCourseSettings()
|
|
|
|
|
{
|
|
|
|
|
$button = Display::toolbarButton(
|
|
|
|
|
$this->get_lang('ConfigureExternalTool'),
|
|
|
|
|
api_get_path(WEB_PLUGIN_PATH).'ims_lti/configure.php?'.api_get_cidreq(),
|
|
|
|
|
'cog',
|
|
|
|
|
'primary'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$this->course_settings = [
|
|
|
|
|
[
|
|
|
|
|
'name' => $this->get_lang('ImsLtiDescription').$button.'<hr>',
|
|
|
|
|
'type' => 'html',
|
|
|
|
|
],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param Course $course
|
|
|
|
|
* @param ImsLtiTool $ltiTool
|
|
|
|
|
*
|
|
|
|
|
* @return CTool
|
|
|
|
|
*/
|
|
|
|
|
public function findCourseToolByLink(Course $course, ImsLtiTool $ltiTool)
|
|
|
|
|
{
|
|
|
|
|
$em = Database::getManager();
|
|
|
|
|
$toolRepo = $em->getRepository('ChamiloCourseBundle:CTool');
|
|
|
|
|
|
|
|
|
|
/** @var CTool $cTool */
|
|
|
|
|
$cTool = $toolRepo->findOneBy(
|
|
|
|
|
[
|
|
|
|
|
'cId' => $course,
|
|
|
|
|
'link' => self::generateToolLink($ltiTool),
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return $cTool;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param CTool $courseTool
|
|
|
|
|
* @param ImsLtiTool $ltiTool
|
|
|
|
|
*
|
|
|
|
|
* @throws \Doctrine\ORM\OptimisticLockException
|
|
|
|
|
*/
|
|
|
|
|
public function updateCourseTool(CTool $courseTool, ImsLtiTool $ltiTool)
|
|
|
|
|
{
|
|
|
|
|
$em = Database::getManager();
|
|
|
|
|
|
|
|
|
|
$courseTool->setName($ltiTool->getName());
|
|
|
|
|
|
|
|
|
|
$em->persist($courseTool);
|
|
|
|
|
$em->flush();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param ImsLtiTool $tool
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
private static function generateToolLink(ImsLtiTool $tool)
|
|
|
|
|
{
|
|
|
|
|
return 'ims_lti/start.php?id='.$tool->getId();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add the course tool
|
|
|
|
|
*
|
|
|
|
|
* @param Course $course
|
|
|
|
|
* @param ImsLtiTool $tool
|
|
|
|
|
*/
|
|
|
|
|
public function addCourseTool(Course $course, ImsLtiTool $tool)
|
|
|
|
|
{
|
|
|
|
|
$this->createLinkToCourseTool(
|
|
|
|
|
$tool->getName(),
|
|
|
|
|
$course->getId(),
|
|
|
|
|
null,
|
|
|
|
|
self::generateToolLink($tool)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
protected function getConfigExtraText()
|
|
|
|
|
{
|
|
|
|
|
$text = $this->get_lang('ImsLtiDescription');
|
|
|
|
|
$text .= sprintf(
|
|
|
|
|
$this->get_lang('ManageToolButton'),
|
|
|
|
|
api_get_path(WEB_PLUGIN_PATH).'ims_lti/admin.php'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return $text;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public function getEntityPath()
|
|
|
|
|
{
|
|
|
|
|
return api_get_path(SYS_PATH).'src/Chamilo/PluginBundle/Entity/'.$this->getCamelCaseName();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function isInstructor()
|
|
|
|
|
{
|
|
|
|
|
api_is_allowed_to_edit(false, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param User $user
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public static function getUserRoles(User $user)
|
|
|
|
|
{
|
|
|
|
|
if (DRH === $user->getStatus()) {
|
|
|
|
|
return 'urn:lti:role:ims/lis/Mentor';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($user->getStatus() === INVITEE) {
|
|
|
|
|
return 'Learner,urn:lti:role:ims/lis/Learner/GuestLearner';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!api_is_allowed_to_edit(false, true)) {
|
|
|
|
|
return 'Learner';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$roles = ['Instructor'];
|
|
|
|
|
|
|
|
|
|
if (api_is_platform_admin_by_id($user->getId())) {
|
|
|
|
|
$roles[] = 'urn:lti:role:ims/lis/Administrator';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return implode(',', $roles);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param int $userId
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public static function generateToolUserId($userId)
|
|
|
|
|
{
|
|
|
|
|
$siteName = api_get_setting('siteName');
|
|
|
|
|
$institution = api_get_setting('Institution');
|
|
|
|
|
$toolUserId = "$siteName - $institution - $userId";
|
|
|
|
|
$toolUserId = api_replace_dangerous_char($toolUserId);
|
|
|
|
|
|
|
|
|
|
return $toolUserId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param User $currentUser
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public static function getRoleScopeMentor(User $currentUser)
|
|
|
|
|
{
|
|
|
|
|
if (DRH !== $currentUser->getStatus()) {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$followedUsers = UserManager::get_users_followed_by_drh($currentUser->getId());
|
|
|
|
|
|
|
|
|
|
$scope = [];
|
|
|
|
|
|
|
|
|
|
foreach ($followedUsers as $userInfo) {
|
|
|
|
|
$scope[] = self::generateToolUserId($userInfo['user_id']);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return implode(',', $scope);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param array $contentItem
|
|
|
|
|
* @param ImsLtiTool $baseLtiTool
|
|
|
|
|
* @param Course $course
|
|
|
|
|
*
|
|
|
|
|
* @throws \Doctrine\ORM\OptimisticLockException
|
|
|
|
|
*/
|
|
|
|
|
public function saveItemAsLtiLink(array $contentItem, ImsLtiTool $baseLtiTool, Course $course)
|
|
|
|
|
{
|
|
|
|
|
$em = Database::getManager();
|
|
|
|
|
$ltiToolRepo = $em->getRepository('ChamiloPluginBundle:ImsLti\ImsLtiTool');
|
|
|
|
|
|
|
|
|
|
$url = empty($contentItem['url']) ? $baseLtiTool->getLaunchUrl() : $contentItem['url'];
|
|
|
|
|
|
|
|
|
|
/** @var ImsLtiTool $newLtiTool */
|
|
|
|
|
$newLtiTool = $ltiToolRepo->findOneBy(['launchUrl' => $url, 'parent' => $baseLtiTool, 'course' => $course]);
|
|
|
|
|
|
|
|
|
|
if (null === $newLtiTool) {
|
|
|
|
|
$newLtiTool = new ImsLtiTool();
|
|
|
|
|
$newLtiTool
|
|
|
|
|
->setLaunchUrl($url)
|
|
|
|
|
->setParent(
|
|
|
|
|
$baseLtiTool
|
|
|
|
|
)
|
|
|
|
|
->setPrivacy(
|
|
|
|
|
$baseLtiTool->isSharingName(),
|
|
|
|
|
$baseLtiTool->isSharingEmail(),
|
|
|
|
|
$baseLtiTool->isSharingPicture()
|
|
|
|
|
)
|
|
|
|
|
->setCourse($course);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$newLtiTool
|
|
|
|
|
->setName(
|
|
|
|
|
!empty($contentItem['title']) ? $contentItem['title'] : $baseLtiTool->getName()
|
|
|
|
|
)
|
|
|
|
|
->setDescription(
|
|
|
|
|
!empty($contentItem['text']) ? $contentItem['text'] : null
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (!empty($contentItem['custom'])) {
|
|
|
|
|
$newLtiTool
|
|
|
|
|
->setCustomParams(
|
|
|
|
|
$newLtiTool->encodeCustomParams($contentItem['custom'])
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$em->persist($newLtiTool);
|
|
|
|
|
$em->flush();
|
|
|
|
|
|
|
|
|
|
$courseTool = $this->findCourseToolByLink($course, $newLtiTool);
|
|
|
|
|
|
|
|
|
|
if ($courseTool) {
|
|
|
|
|
$this->updateCourseTool($courseTool, $newLtiTool);
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->addCourseTool($course, $newLtiTool);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return null|SimpleXMLElement
|
|
|
|
|
*/
|
|
|
|
|
private function getRequestXmlElement()
|
|
|
|
|
{
|
|
|
|
|
$request = file_get_contents("php://input");
|
|
|
|
|
|
|
|
|
|
if (empty($request)) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$xml = new SimpleXMLElement($request);
|
|
|
|
|
|
|
|
|
|
return $xml;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return ImsLtiServiceResponse|null
|
|
|
|
|
*/
|
|
|
|
|
public function processServiceRequest()
|
|
|
|
|
{
|
|
|
|
|
$xml = $this->getRequestXmlElement();
|
|
|
|
|
|
|
|
|
|
if (empty($xml)) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$request = ImsLtiServiceRequestFactory::create($xml);
|
|
|
|
|
$response = $request->process();
|
|
|
|
|
|
|
|
|
|
return $response;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param int $toolId
|
|
|
|
|
* @param Course $course
|
|
|
|
|
*
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public static function existsToolInCourse($toolId, Course $course)
|
|
|
|
|
{
|
|
|
|
|
$em = Database::getManager();
|
|
|
|
|
$toolRepo = $em->getRepository('ChamiloPluginBundle:ImsLti\ImsLtiTool');
|
|
|
|
|
|
|
|
|
|
/** @var ImsLtiTool $tool */
|
|
|
|
|
$tool = $toolRepo->findOneBy(['id' => $toolId, 'course' => $course]);
|
|
|
|
|
|
|
|
|
|
return !empty($tool);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param string $configUrl
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public function getLaunchUrlFromCartridge($configUrl)
|
|
|
|
|
{
|
|
|
|
|
$options = [
|
|
|
|
|
CURLOPT_CUSTOMREQUEST => 'GET',
|
|
|
|
|
CURLOPT_POST => false,
|
|
|
|
|
CURLOPT_RETURNTRANSFER => true,
|
|
|
|
|
CURLOPT_HEADER => false,
|
|
|
|
|
CURLOPT_FOLLOWLOCATION => true,
|
|
|
|
|
CURLOPT_ENCODING => '',
|
|
|
|
|
CURLOPT_SSL_VERIFYPEER => false,
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$ch = curl_init($configUrl);
|
|
|
|
|
curl_setopt_array($ch, $options);
|
|
|
|
|
$content = curl_exec($ch);
|
|
|
|
|
$errno = curl_errno($ch);
|
|
|
|
|
curl_close($ch);
|
|
|
|
|
|
|
|
|
|
if ($errno !== 0) {
|
|
|
|
|
throw new Exception($this->get_lang('NoAccessToUrl'));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$xml = new SimpleXMLElement($content);
|
|
|
|
|
$result = $xml->xpath('blti:launch_url');
|
|
|
|
|
|
|
|
|
|
if (empty($result)) {
|
|
|
|
|
throw new Exception($this->get_lang('LaunchUrlNotFound'));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$launchUrl = $result[0];
|
|
|
|
|
|
|
|
|
|
return (string) $launchUrl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param array $params
|
|
|
|
|
*/
|
|
|
|
|
public function trimParams(array &$params)
|
|
|
|
|
{
|
|
|
|
|
foreach ($params as $key => $value) {
|
|
|
|
|
$newValue = preg_replace('/\s+/', ' ', $value);
|
|
|
|
|
|
|
|
|
|
$params[$key] = trim($newValue);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param ImsLtiTool $tool
|
|
|
|
|
* @param array $params
|
|
|
|
|
*
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
|
|
|
|
public function removeUrlParamsFromLaunchParams(ImsLtiTool $tool, array &$params)
|
|
|
|
|
{
|
|
|
|
|
$urlQuery = parse_url($tool->getLaunchUrl(), PHP_URL_QUERY);
|
|
|
|
|
|
|
|
|
|
if (empty($urlQuery)) {
|
|
|
|
|
return $params;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$queryParams = [];
|
|
|
|
|
parse_str($urlQuery, $queryParams);
|
|
|
|
|
$queryKeys = array_keys($queryParams);
|
|
|
|
|
|
|
|
|
|
foreach ($queryKeys as $key) {
|
|
|
|
|
if (isset($params[$key])) {
|
|
|
|
|
unset($params[$key]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|