public static function deletePost($sApiKey, $iJournalEntryId, $sUserName, $sPassword)
 {
     if (!self::checkLogin($sUserName, $sPassword)) {
         return self::loginError();
     }
     $oJournalEntry = JournalEntryPeer::retrieveByPk($iJournalEntryId);
     if ($oJournalEntry === null) {
         return self::error("No Entry with id {$iJournalEntryId}", 2);
     }
     return $oJournalEntry->delete();
 }
 public static function doDelete($values, PropelPDO $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(PagePeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     if ($values instanceof Criteria) {
         // rename for clarity
         $criteria = clone $values;
     } elseif ($values instanceof JournalEntry) {
         // it's a model object
         // create criteria based on pk values
         $criteria = $values->buildPkeyCriteria();
     } else {
         // it's a primary key, or an array of pks
         $criteria = new Criteria(self::DATABASE_NAME);
         $criteria->add(PagePeer::ID, (array) $values, Criteria::IN);
     }
     foreach (JournalEntryPeer::doSelect(clone $criteria, $con) as $object) {
         TagPeer::deleteTagsForObject($object);
     }
     return self::doDeleteBeforeTaggable($criteria, $con);
 }
 /**
  * Selects a collection of JournalEntryImage objects pre-filled with all related objects except UserRelatedByUpdatedBy.
  *
  * @param      Criteria  $criteria
  * @param      PropelPDO $con
  * @param      String    $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
  * @return array           Array of JournalEntryImage objects.
  * @throws PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAllExceptUserRelatedByUpdatedBy(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $criteria = clone $criteria;
     // Set the correct dbName if it has not been overridden
     // $criteria->getDbName() will return the same object if not set to another value
     // so == check is okay and faster
     if ($criteria->getDbName() == Propel::getDefaultDB()) {
         $criteria->setDbName(JournalEntryImagePeer::DATABASE_NAME);
     }
     JournalEntryImagePeer::addSelectColumns($criteria);
     $startcol2 = JournalEntryImagePeer::NUM_HYDRATE_COLUMNS;
     JournalEntryPeer::addSelectColumns($criteria);
     $startcol3 = $startcol2 + JournalEntryPeer::NUM_HYDRATE_COLUMNS;
     DocumentPeer::addSelectColumns($criteria);
     $startcol4 = $startcol3 + DocumentPeer::NUM_HYDRATE_COLUMNS;
     $criteria->addJoin(JournalEntryImagePeer::JOURNAL_ENTRY_ID, JournalEntryPeer::ID, $join_behavior);
     $criteria->addJoin(JournalEntryImagePeer::DOCUMENT_ID, DocumentPeer::ID, $join_behavior);
     $stmt = BasePeer::doSelect($criteria, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = JournalEntryImagePeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = JournalEntryImagePeer::getInstanceFromPool($key1))) {
             // We no longer rehydrate the object, since this can cause data loss.
             // See http://www.propelorm.org/ticket/509
             // $obj1->hydrate($row, 0, true); // rehydrate
         } else {
             $cls = JournalEntryImagePeer::getOMClass();
             $obj1 = new $cls();
             $obj1->hydrate($row);
             JournalEntryImagePeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined JournalEntry rows
         $key2 = JournalEntryPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = JournalEntryPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $cls = JournalEntryPeer::getOMClass();
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 JournalEntryPeer::addInstanceToPool($obj2, $key2);
             }
             // if $obj2 already loaded
             // Add the $obj1 (JournalEntryImage) to the collection in $obj2 (JournalEntry)
             $obj2->addJournalEntryImage($obj1);
         }
         // if joined row is not null
         // Add objects for joined Document rows
         $key3 = DocumentPeer::getPrimaryKeyHashFromRow($row, $startcol3);
         if ($key3 !== null) {
             $obj3 = DocumentPeer::getInstanceFromPool($key3);
             if (!$obj3) {
                 $cls = DocumentPeer::getOMClass();
                 $obj3 = new $cls();
                 $obj3->hydrate($row, $startcol3);
                 DocumentPeer::addInstanceToPool($obj3, $key3);
             }
             // if $obj3 already loaded
             // Add the $obj1 (JournalEntryImage) to the collection in $obj3 (Document)
             $obj3->addJournalEntryImage($obj1);
         }
         // if joined row is not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
 public function mayOperate($sOperation, $oUser = false)
 {
     if ($oUser === false) {
         $oUser = Session::getSession()->getUser();
     }
     $bIsAllowed = false;
     if ($oUser && ($this->isNew() || $this->getCreatedBy() === $oUser->getId()) && JournalEntryPeer::mayOperateOnOwn($oUser, $this, $sOperation)) {
         $bIsAllowed = true;
     } else {
         if (JournalEntryPeer::mayOperateOn($oUser, $this, $sOperation)) {
             $bIsAllowed = true;
         }
     }
     FilterModule::getFilters()->handleJournalEntryOperationCheck($sOperation, $this, $oUser, array(&$bIsAllowed));
     return $bIsAllowed;
 }
 /**
  * Find object by primary key using raw SQL to go fast.
  * Bypass doSelect() and the object formatter by using generated code.
  *
  * @param     mixed $key Primary key to use for the query
  * @param     PropelPDO $con A connection object
  *
  * @return                 JournalEntry A model object, or null if the key is not found
  * @throws PropelException
  */
 protected function findPkSimple($key, $con)
 {
     $sql = 'SELECT `id`, `journal_id`, `title`, `slug`, `text`, `text_short`, `is_published`, `publish_at`, `created_at`, `updated_at`, `created_by`, `updated_by` FROM `journal_entries` WHERE `id` = :p0';
     try {
         $stmt = $con->prepare($sql);
         $stmt->bindValue(':p0', $key, PDO::PARAM_INT);
         $stmt->execute();
     } catch (Exception $e) {
         Propel::log($e->getMessage(), Propel::LOG_ERR);
         throw new PropelException(sprintf('Unable to execute SELECT statement [%s]', $sql), $e);
     }
     $obj = null;
     if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $obj = new JournalEntry();
         $obj->hydrate($row);
         JournalEntryPeer::addInstanceToPool($obj, (string) $key);
     }
     $stmt->closeCursor();
     return $obj;
 }
 public function saveData($aData)
 {
     $oJournalEntry = JournalEntryPeer::retrieveByPK($this->iJournalEntryId);
     if ($oJournalEntry === null) {
         $oJournalEntry = new JournalEntry();
         $oJournalEntry->setJournalId($this->iJournalId);
     }
     $this->validate($aData);
     if (!Flash::noErrors()) {
         throw new ValidationException();
     }
     $oJournalEntry->setJournalId($aData['journal_id']);
     $oJournalEntry->setTitle($aData['title']);
     $oJournalEntry->setIsPublished($aData['is_published']);
     $oJournalEntry->setPublishAt($aData['publish_at'] == null ? date('c') : $aData['publish_at']);
     $oRichtextUtil = new RichtextUtil();
     $oRichtextUtil->setTrackReferences($oJournalEntry);
     $oJournalEntry->setText($oRichtextUtil->getTagParser($aData['text']));
     $oJournalEntry->save();
     $oResult = new StdClass();
     if ($this->iJournalEntryId === null) {
         $oResult->inserted = true;
     } else {
         $oResult->updated = true;
     }
     $oResult->id = $this->iCategoryId = $oJournalEntry->getId();
     return $oResult;
 }