Fix import course validating foreign keys - refs #8113

pull/2487/head
Angel Fernando Quiroz Campos 9 years ago
parent 43d5f6735a
commit d0e66faeb7
  1. 43
      main/inc/lib/api.lib.php
  2. 2
      src/Chamilo/CourseBundle/Component/CourseCopy/CourseRestorer.php
  3. 20
      src/Chamilo/CourseBundle/Entity/CItemProperty.php

@ -3583,6 +3583,8 @@ function api_item_property_update(
return false; return false;
} }
$em = Database::getManager();
// Definition of variables. // Definition of variables.
$tool = Database::escape_string($tool); $tool = Database::escape_string($tool);
$item_id = intval($item_id); $item_id = intval($item_id);
@ -3802,14 +3804,41 @@ function api_item_property_update(
// Insert if no entries are found (can only happen in case of $last_edit_type switch is 'default'). // Insert if no entries are found (can only happen in case of $last_edit_type switch is 'default').
if ($result == false || Database::affected_rows($result) == 0) { if ($result == false || Database::affected_rows($result) == 0) {
$sessionCondition = empty($session_id) ? "NULL" : "'$session_id'"; $objCourse = $em->find('ChamiloCoreBundle:Course', intval($course_id));
$sql = "INSERT INTO $tableItemProperty (c_id, tool,ref,insert_date,insert_user_id,lastedit_date,lastedit_type, lastedit_user_id, $to_field, visibility, start_visible, end_visible, session_id) $objTime = new DateTime('now', new DateTimeZone('UTC'));
VALUES ($course_id, '$tool', $item_id, '$time', $user_id, '$time', '$last_edit_type', $user_id, $toValueCondition, $visibility, $startVisible, $endVisible, $sessionCondition)"; $objUser = $em->find('ChamiloUserBundle:User', intval($user_id));
Database::query($sql); $objGroup = $em->find('ChamiloCourseBundle:CGroupInfo', intval($to_group_id));
$id = Database::insert_id(); $objToUser = $em->find('ChamiloUserBundle:User', intval($to_user_id));
$objSession = $em->find('ChamiloCoreBundle:Session', intval($session_id));
$startVisibleDate = !empty($start_visible) ? new DateTime($start_visible, new DateTimeZone('UTC')) : null;
$endVisibleDate = !empty($endVisibleDate) ? new DateTime($endVisibleDate, new DateTimeZone('UTC')) : null;
$cItemProperty = new \Chamilo\CourseBundle\Entity\CItemProperty($objCourse);
$cItemProperty
->setTool($tool)
->setRef($item_id)
->setInsertDate($objTime)
->setInsertUser($objUser)
->setLasteditDate($objTime)
->setLasteditType($last_edit_type)
->setGroup($objGroup)
->setToUser($objToUser)
->setVisibility($visibility)
->setStartVisible($startVisibleDate)
->setEndVisible($endVisibleDate)
->setSession($objSession);
$em->persist($cItemProperty);
$em->flush();
$id = $cItemProperty->getIid();
if ($id) { if ($id) {
$sql = "UPDATE $tableItemProperty SET id = iid WHERE iid = $id"; $cItemProperty->setId($id);
Database::query($sql); $em->merge($cItemProperty);
$em->flush();
return false; return false;
} }
} }

@ -2603,7 +2603,7 @@ class CourseRestorer
if ($lp->lp_type =='2') { if ($lp->lp_type =='2') {
// if is an sco // if is an sco
$old_refs[$new_item_id]= $ref; $old_refs[$new_item_id]= $ref;
} else { } elseif (isset($new_item_ids[$ref])) {
$old_refs[$new_item_id]= $new_item_ids[$ref]; $old_refs[$new_item_id]= $new_item_ids[$ref];
} }
} }

@ -126,12 +126,13 @@ class CItemProperty
/** /**
* CItemProperty constructor. * CItemProperty constructor.
* @param Course $course
*/ */
public function __construct(Course $course) public function __construct(Course $course)
{ {
$this->course = $course; $this->course = $course;
$this->insertDate = new \DateTime(); $this->insertDate = new \DateTime('now', new \DateTimeZone('UTC'));
$this->lasteditDate = new \DateTime(); $this->lasteditDate = new \DateTime('now', new \DateTimeZone('UTC'));
} }
/** /**
@ -189,7 +190,7 @@ class CItemProperty
* *
* @return CItemProperty * @return CItemProperty
*/ */
public function setLasteditDate($lasteditDate) public function setLasteditDate(\DateTime $lasteditDate)
{ {
$this->lasteditDate = $lasteditDate; $this->lasteditDate = $lasteditDate;
@ -309,7 +310,7 @@ class CItemProperty
* *
* @return CItemProperty * @return CItemProperty
*/ */
public function setStartVisible($startVisible) public function setStartVisible(\DateTime $startVisible = null)
{ {
$this->startVisible = $startVisible; $this->startVisible = $startVisible;
@ -333,7 +334,7 @@ class CItemProperty
* *
* @return CItemProperty * @return CItemProperty
*/ */
public function setEndVisible($endVisible) public function setEndVisible(\DateTime $endVisible = null)
{ {
$this->endVisible = $endVisible; $this->endVisible = $endVisible;
@ -474,4 +475,13 @@ class CItemProperty
return $this; return $this;
} }
/**
* Get iid
* @return int
*/
public function getIid()
{
return $this->iid;
}
} }

Loading…
Cancel
Save