예제 #1
0
 /**
  * Executes index action
  *
  * @param sfRequest $request A request object
  */
 public function executeIndex(sfWebRequest $request)
 {
     # Recently added
     $c = new Criteria();
     $c->addDescendingOrderByColumn(PluginPeer::CREATED_AT);
     $c->setLimit(6);
     $this->recent = PluginPeer::doSelect($c);
     # Most downloaded
     $c = new Criteria();
     $c->addDescendingOrderByColumn(PluginPeer::DOWNLOADS_COUNT);
     $c->setLimit(3);
     $this->hot = PluginPeer::doSelect($c);
     # Tags
     $c = new Criteria();
     $c->addDescendingOrderByColumn(TermPeer::COUNT);
     $c->setLimit(10);
     $this->terms = TermPeer::retrieveTags($c);
     # Authors
     $c = new Criteria();
     $c->addDescendingOrderByColumn(AuthorPeer::LOGGED_AT);
     $c->setLimit(6);
     // if ($this->getUser()->isAuthenticated())
     // 	$c->add(AuthorPeer::ID, $this->getUser()->getId(), Criteria::NOT_EQUAL);
     $this->authors = AuthorPeer::doSelect($c);
 }
예제 #2
0
 function executeSidebar()
 {
     $c = new Criteria();
     $c->addAscendingOrderByColumn(TermPeer::TITLE);
     $this->categories = TermPeer::retrieveCategories($c);
     if (!$this->getUser()->isAuthenticated()) {
         # Standard
         $this->login = new LoginForm();
     }
     // Search
     $this->search = new SearchForm();
 }
예제 #3
0
 /**
  * Executes index action
  *
  * @param sfRequest $request A request object
  */
 public function executeFilter(sfWebRequest $request)
 {
     $this->params = $request->getParameterHolder()->getAll();
     unset($this->params['module'], $this->params['action'], $this->params['page']);
     $this->form = new BrowseForm();
     $this->form->bind($this->params);
     # Criteria
     $c = new Criteria();
     if ($this->form->getValue('search')) {
         $c->add(PluginPeer::TITLE, '%' . $this->form->getValue('search') . '%', Criteria::LIKE);
     }
     if ($this->form->getValue('official')) {
         $c->add(PluginPeer::OFFICIAL, 1);
     }
     if ($this->form->getValue('category')) {
         $category = TermPeer::retrieveBySlug($this->form->getValue('category'));
         if ($category) {
             $c->add(PluginPeer::CATEGORY_ID, $category->getId());
         }
     }
     if ($this->form->getValue('tag')) {
         $term = TermPeer::retrieveBySlug($this->form->getValue('tag'));
         if ($term) {
             $c->addJoin(PluginPeer::ID, TermRelationshipPeer::PLUGIN_ID);
             $c->add(TermRelationshipPeer::TERM_ID, $term->getId());
         } else {
             $c->add(1, 2);
         }
     }
     if ($this->form->getValue('sort')) {
         switch ($this->form->getValue('sort')) {
             case 'downloads_count':
                 $c->addDescendingOrderByColumn(PluginPeer::DOWNLOADS_COUNT);
                 break;
         }
     } else {
         $c->addDescendingOrderByColumn(PluginPeer::CREATED_AT);
     }
     # Pager
     $this->pager = new sfPropelPager('Plugin', sfConfig::get('app_browse_per_page'));
     $this->pager->setPage($request->getParameter('page', 1));
     $this->pager->setCriteria($c);
     $this->pager->init();
 }
 protected function doClean($value)
 {
     $yamlparser = new ForgeYamlParser($value);
     $errors = array();
     if (!$yamlparser->get('stable')) {
         $errors[] = new sfValidatorError($this, 'No stable Git tag found');
     }
     if (!$yamlparser->get('stable')) {
         $errors[] = new sfValidatorError($this, 'No stable Git tag found');
     }
     if (!$yamlparser->get('category') || TermPeer::retrieveCategoryByTitle($yamlparser->get('category'))) {
         $errors[] = new sfValidatorError($this, 'No category provided, or category not found.');
     }
     if (!$yamlparser->get('tags')) {
         $errors[] = new sfValidatorError($this, 'No tags provided.');
     }
     if (!empty($errors)) {
         throw new sfValidatorErrorSchema($this, array($this->getOption('yaml_field') => $errors));
     }
     return $value;
 }
예제 #5
0
 public function setCategory($name)
 {
     $this->setTerm(TermPeer::retrieveByTitle($name));
     $this->save();
 }
예제 #6
0
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      PropelPDO $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, PropelPDO $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(TermPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(TermPeer::DATABASE_NAME);
         $criteria->add(TermPeer::ID, $pks, Criteria::IN);
         $objs = TermPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
예제 #7
0
 /**
  * Selects a collection of Dept objects pre-filled with all related objects.
  *
  * @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 Dept objects.
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAll(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $criteria = clone $criteria;
     // Set the correct dbName if it has not been overridden
     if ($criteria->getDbName() == Propel::getDefaultDB()) {
         $criteria->setDbName(self::DATABASE_NAME);
     }
     DeptPeer::addSelectColumns($criteria);
     $startcol2 = DeptPeer::NUM_HYDRATE_COLUMNS;
     TermPeer::addSelectColumns($criteria);
     $startcol3 = $startcol2 + TermPeer::NUM_HYDRATE_COLUMNS;
     $criteria->addJoin(DeptPeer::TERM_ID, TermPeer::ID, $join_behavior);
     $stmt = BasePeer::doSelect($criteria, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = DeptPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = DeptPeer::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 = DeptPeer::getOMClass();
             $obj1 = new $cls();
             $obj1->hydrate($row);
             DeptPeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined Term rows
         $key2 = TermPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = TermPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $cls = TermPeer::getOMClass();
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 TermPeer::addInstanceToPool($obj2, $key2);
             }
             // if obj2 loaded
             // Add the $obj1 (Dept) to the collection in $obj2 (Term)
             $obj2->addDept($obj1);
         }
         // if joined row not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
예제 #8
0
 /**
  * This is a method for emulating ON DELETE CASCADE for DBs that don't support this
  * feature (like MySQL or SQLite).
  *
  * This method is not very speedy because it must perform a query first to get
  * the implicated records and then perform the deletes by calling those Peer classes.
  *
  * This method should be used within a transaction if possible.
  *
  * @param      Criteria $criteria
  * @param      PropelPDO $con
  * @return     int The number of affected rows (if supported by underlying database driver).
  */
 protected static function doOnDeleteCascade(Criteria $criteria, PropelPDO $con)
 {
     // initialize var to track total num of affected rows
     $affectedRows = 0;
     // first find the objects that are implicated by the $criteria
     $objects = CampusPeer::doSelect($criteria, $con);
     foreach ($objects as $obj) {
         // delete related Term objects
         $criteria = new Criteria(TermPeer::DATABASE_NAME);
         $criteria->add(TermPeer::CAMPUS_ID, $obj->getId());
         $affectedRows += TermPeer::doDelete($criteria, $con);
     }
     return $affectedRows;
 }
예제 #9
0
 /**
  * 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    Term A model object, or null if the key is not found
  */
 protected function findPkSimple($key, $con)
 {
     $sql = 'SELECT `SHALLOW_SPIDERED_AT`, `NAME`, `SLUG`, `STATUS`, `HAS_COURSE_INFO`, `CAMPUS_ID`, `SPIDERED_AT`, `TOUCHED`, `B_ID`, `BOOKSTORE_TYPE`, `ID`, `CREATED_AT`, `UPDATED_AT` FROM `term` 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 Term();
         $obj->hydrate($row);
         TermPeer::addInstanceToPool($obj, (string) $key);
     }
     $stmt->closeCursor();
     return $obj;
 }
예제 #10
0
 /**
  * Populates the object using an array.
  *
  * This is particularly useful when populating an object from one of the
  * request arrays (e.g. $_POST).  This method goes through the column
  * names, checking to see whether a matching key exists in populated
  * array. If so the setByName() method is called for that column.
  *
  * You can specify the key type of the array by additionally passing one
  * of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
  * BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
  * The default key type is the column's phpname (e.g. 'AuthorId')
  *
  * @param      array  $arr     An array to populate the object from.
  * @param      string $keyType The type of keys the array uses.
  * @return     void
  */
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = TermPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setShallowSpideredAt($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setName($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setSlug($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setStatus($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setHasCourseInfo($arr[$keys[4]]);
     }
     if (array_key_exists($keys[5], $arr)) {
         $this->setCampusId($arr[$keys[5]]);
     }
     if (array_key_exists($keys[6], $arr)) {
         $this->setSpideredAt($arr[$keys[6]]);
     }
     if (array_key_exists($keys[7], $arr)) {
         $this->setTouched($arr[$keys[7]]);
     }
     if (array_key_exists($keys[8], $arr)) {
         $this->setBId($arr[$keys[8]]);
     }
     if (array_key_exists($keys[9], $arr)) {
         $this->setBookstoreType($arr[$keys[9]]);
     }
     if (array_key_exists($keys[10], $arr)) {
         $this->setId($arr[$keys[10]]);
     }
     if (array_key_exists($keys[11], $arr)) {
         $this->setCreatedAt($arr[$keys[11]]);
     }
     if (array_key_exists($keys[12], $arr)) {
         $this->setUpdatedAt($arr[$keys[12]]);
     }
 }