public function post($resourceVals, $data, $userId)
 {
     global $logger, $warnings_payload;
     $userId = 5;
     $skillId = $resourceVals['user-skills'];
     if (isset($skillId)) {
         $warnings_payload[] = 'POST call to /user-skills must not have ' . '/skillID appended i.e. POST /user-skills';
         throw new UnsupportedResourceMethodException();
     }
     if ($data['name'] != null) {
         $nameObj = $this->collapDAO->queryByName($data['name']);
         if (empty($nameObj)) {
             $skillObj = new Skill($data['name']);
             $logger->debug("POSTed Skill Detail: " . $skillObj->toString());
             $this->collapDAO->insert($skillObj);
             $userSkillDetail = $skillObj->toArray();
             if (isset($userSkillDetail['id'])) {
                 $userSkillObj = new UserSkill($userId, $userSkillDetail['id']);
                 $logger->debug("POSTed User Skill Detail: " . $userSkillObj->toString());
                 $this->collapDAO->insertUserSkill($userSkillObj);
                 $userSkillDetail = $userSkillObj->toArray();
             }
         } else {
             $nameSkill = $nameObj[0]->toArray();
             $userSkillObj = new UserSkill($userId, $nameSkill['id']);
             $logger->debug("POSTed User Skill Detail: " . $userSkillObj->toString());
             $this->collapDAO->insertUserSkill($userSkillObj);
             $userSkillDetail = $userSkillObj->toArray();
         }
     } else {
         $userSkillObj = new UserSkill($userId, $data['skill_id']);
         $logger->debug("POSTed User Skill Detail: " . $userSkillObj->toString());
         $this->collapDAO->insertUserSkill($userSkillObj);
         $userSkillDetail = $userSkillObj->toArray();
     }
     if (!isset($userSkillDetail['id'])) {
         return array('code' => '2011');
     }
     $this->userSkillDetail[] = $userSkillDetail;
     return array('code' => '2001', 'data' => array('userSkillDetail' => $this->userSkillDetail));
 }
 /**
  * Filter the query by a related UserSkill object
  *
  * @param   UserSkill|PropelObjectCollection $userSkill  the related object to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return                 SkillQuery The current query, for fluid interface
  * @throws PropelException - if the provided filter is invalid.
  */
 public function filterByUserSkill($userSkill, $comparison = null)
 {
     if ($userSkill instanceof UserSkill) {
         return $this->addUsingAlias(SkillPeer::ID, $userSkill->getSkillId(), $comparison);
     } elseif ($userSkill instanceof PropelObjectCollection) {
         return $this->useUserSkillQuery()->filterByPrimaryKeys($userSkill->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByUserSkill() only accepts arguments of type UserSkill or PropelCollection');
     }
 }
Example #3
0
 /**
  * @param	User $user The user object to add.
  */
 protected function doAddUser(User $user)
 {
     // set the back reference to this object directly as using provided method either results
     // in endless loop or in multiple relations
     if (!$user->getSkills()->contains($this)) {
         $userSkill = new UserSkill();
         $userSkill->setUser($user);
         $this->addUserSkill($userSkill);
         $foreignCollection = $user->getSkills();
         $foreignCollection[] = $this;
     }
 }
 /**
  * Adds an object to the instance pool.
  *
  * Propel keeps cached copies of objects in an instance pool when they are retrieved
  * from the database.  In some cases -- especially when you override doSelect*()
  * methods in your stub classes -- you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by doSelect*()
  * and retrieveByPK*() calls.
  *
  * @param UserSkill $obj A UserSkill object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool($obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = serialize(array((string) $obj->getUserId(), (string) $obj->getSkillId()));
         }
         // if key === null
         UserSkillPeer::$instances[$key] = $obj;
     }
 }
 /**
  * Exclude object from result
  *
  * @param   UserSkill $userSkill Object to remove from the list of results
  *
  * @return UserSkillQuery The current query, for fluid interface
  */
 public function prune($userSkill = null)
 {
     if ($userSkill) {
         $this->addCond('pruneCond0', $this->getAliasedColName(UserSkillPeer::USER_ID), $userSkill->getUserId(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(UserSkillPeer::SKILL_ID), $userSkill->getSkillId(), Criteria::NOT_EQUAL);
         $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR);
     }
     return $this;
 }