deblan.tv/src/Deblan/Bundle/BlogBundle/Model/om/BaseCommentQuery.php
2015-03-02 21:57:49 +01:00

1018 lines
41 KiB
PHP

<?php
namespace Deblan\Bundle\BlogBundle\Model\om;
use \Criteria;
use \Exception;
use \ModelCriteria;
use \ModelJoin;
use \PDO;
use \Propel;
use \PropelCollection;
use \PropelException;
use \PropelObjectCollection;
use \PropelPDO;
use Deblan\Bundle\BlogBundle\Model\Comment;
use Deblan\Bundle\BlogBundle\Model\CommentPeer;
use Deblan\Bundle\BlogBundle\Model\CommentQuery;
use Deblan\Bundle\BlogBundle\Model\Post;
use Deblan\Bundle\BlogBundle\Model\PostFollower;
/**
* @method CommentQuery orderById($order = Criteria::ASC) Order by the id column
* @method CommentQuery orderByAuthor($order = Criteria::ASC) Order by the author column
* @method CommentQuery orderByEmail($order = Criteria::ASC) Order by the email column
* @method CommentQuery orderByWebsite($order = Criteria::ASC) Order by the website column
* @method CommentQuery orderByContent($order = Criteria::ASC) Order by the content column
* @method CommentQuery orderByPostId($order = Criteria::ASC) Order by the post_id column
* @method CommentQuery orderByParentCommentId($order = Criteria::ASC) Order by the parent_comment_id column
* @method CommentQuery orderByActive($order = Criteria::ASC) Order by the active column
* @method CommentQuery orderByCreatedAt($order = Criteria::ASC) Order by the created_at column
* @method CommentQuery orderByUpdatedAt($order = Criteria::ASC) Order by the updated_at column
*
* @method CommentQuery groupById() Group by the id column
* @method CommentQuery groupByAuthor() Group by the author column
* @method CommentQuery groupByEmail() Group by the email column
* @method CommentQuery groupByWebsite() Group by the website column
* @method CommentQuery groupByContent() Group by the content column
* @method CommentQuery groupByPostId() Group by the post_id column
* @method CommentQuery groupByParentCommentId() Group by the parent_comment_id column
* @method CommentQuery groupByActive() Group by the active column
* @method CommentQuery groupByCreatedAt() Group by the created_at column
* @method CommentQuery groupByUpdatedAt() Group by the updated_at column
*
* @method CommentQuery leftJoin($relation) Adds a LEFT JOIN clause to the query
* @method CommentQuery rightJoin($relation) Adds a RIGHT JOIN clause to the query
* @method CommentQuery innerJoin($relation) Adds a INNER JOIN clause to the query
*
* @method CommentQuery leftJoinPost($relationAlias = null) Adds a LEFT JOIN clause to the query using the Post relation
* @method CommentQuery rightJoinPost($relationAlias = null) Adds a RIGHT JOIN clause to the query using the Post relation
* @method CommentQuery innerJoinPost($relationAlias = null) Adds a INNER JOIN clause to the query using the Post relation
*
* @method CommentQuery leftJoinCommentRelatedByParentCommentId($relationAlias = null) Adds a LEFT JOIN clause to the query using the CommentRelatedByParentCommentId relation
* @method CommentQuery rightJoinCommentRelatedByParentCommentId($relationAlias = null) Adds a RIGHT JOIN clause to the query using the CommentRelatedByParentCommentId relation
* @method CommentQuery innerJoinCommentRelatedByParentCommentId($relationAlias = null) Adds a INNER JOIN clause to the query using the CommentRelatedByParentCommentId relation
*
* @method CommentQuery leftJoinCommentRelatedById($relationAlias = null) Adds a LEFT JOIN clause to the query using the CommentRelatedById relation
* @method CommentQuery rightJoinCommentRelatedById($relationAlias = null) Adds a RIGHT JOIN clause to the query using the CommentRelatedById relation
* @method CommentQuery innerJoinCommentRelatedById($relationAlias = null) Adds a INNER JOIN clause to the query using the CommentRelatedById relation
*
* @method CommentQuery leftJoinPostFollower($relationAlias = null) Adds a LEFT JOIN clause to the query using the PostFollower relation
* @method CommentQuery rightJoinPostFollower($relationAlias = null) Adds a RIGHT JOIN clause to the query using the PostFollower relation
* @method CommentQuery innerJoinPostFollower($relationAlias = null) Adds a INNER JOIN clause to the query using the PostFollower relation
*
* @method Comment findOne(PropelPDO $con = null) Return the first Comment matching the query
* @method Comment findOneOrCreate(PropelPDO $con = null) Return the first Comment matching the query, or a new Comment object populated from the query conditions when no match is found
*
* @method Comment findOneByAuthor(string $author) Return the first Comment filtered by the author column
* @method Comment findOneByEmail(string $email) Return the first Comment filtered by the email column
* @method Comment findOneByWebsite(string $website) Return the first Comment filtered by the website column
* @method Comment findOneByContent(string $content) Return the first Comment filtered by the content column
* @method Comment findOneByPostId(int $post_id) Return the first Comment filtered by the post_id column
* @method Comment findOneByParentCommentId(int $parent_comment_id) Return the first Comment filtered by the parent_comment_id column
* @method Comment findOneByActive(boolean $active) Return the first Comment filtered by the active column
* @method Comment findOneByCreatedAt(string $created_at) Return the first Comment filtered by the created_at column
* @method Comment findOneByUpdatedAt(string $updated_at) Return the first Comment filtered by the updated_at column
*
* @method array findById(int $id) Return Comment objects filtered by the id column
* @method array findByAuthor(string $author) Return Comment objects filtered by the author column
* @method array findByEmail(string $email) Return Comment objects filtered by the email column
* @method array findByWebsite(string $website) Return Comment objects filtered by the website column
* @method array findByContent(string $content) Return Comment objects filtered by the content column
* @method array findByPostId(int $post_id) Return Comment objects filtered by the post_id column
* @method array findByParentCommentId(int $parent_comment_id) Return Comment objects filtered by the parent_comment_id column
* @method array findByActive(boolean $active) Return Comment objects filtered by the active column
* @method array findByCreatedAt(string $created_at) Return Comment objects filtered by the created_at column
* @method array findByUpdatedAt(string $updated_at) Return Comment objects filtered by the updated_at column
*/
abstract class BaseCommentQuery extends ModelCriteria
{
/**
* Initializes internal state of BaseCommentQuery object.
*
* @param string $dbName The dabase name
* @param string $modelName The phpName of a model, e.g. 'Book'
* @param string $modelAlias The alias for the model in this query, e.g. 'b'
*/
public function __construct($dbName = 'default', $modelName = 'Deblan\\Bundle\\BlogBundle\\Model\\Comment', $modelAlias = null)
{
parent::__construct($dbName, $modelName, $modelAlias);
}
/**
* Returns a new CommentQuery object.
*
* @param string $modelAlias The alias of a model in the query
* @param CommentQuery|Criteria $criteria Optional Criteria to build the query from
*
* @return CommentQuery
*/
public static function create($modelAlias = null, $criteria = null)
{
if ($criteria instanceof CommentQuery) {
return $criteria;
}
$query = new CommentQuery();
if (null !== $modelAlias) {
$query->setModelAlias($modelAlias);
}
if ($criteria instanceof Criteria) {
$query->mergeWith($criteria);
}
return $query;
}
/**
* Find object by primary key.
* Propel uses the instance pool to skip the database if the object exists.
* Go fast if the query is untouched.
*
* <code>
* $obj = $c->findPk(12, $con);
* </code>
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con an optional connection object
*
* @return Comment|Comment[]|mixed the result, formatted by the current formatter
*/
public function findPk($key, $con = null)
{
if ($key === null) {
return null;
}
if ((null !== ($obj = CommentPeer::getInstanceFromPool((string) $key))) && !$this->formatter) {
// the object is alredy in the instance pool
return $obj;
}
if ($con === null) {
$con = Propel::getConnection(CommentPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$this->basePreSelect($con);
if ($this->formatter || $this->modelAlias || $this->with || $this->select
|| $this->selectColumns || $this->asColumns || $this->selectModifiers
|| $this->map || $this->having || $this->joins) {
return $this->findPkComplex($key, $con);
} else {
return $this->findPkSimple($key, $con);
}
}
/**
* Alias of findPk to use instance pooling
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con A connection object
*
* @return Comment A model object, or null if the key is not found
* @throws PropelException
*/
public function findOneById($key, $con = null)
{
return $this->findPk($key, $con);
}
/**
* 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 Comment A model object, or null if the key is not found
* @throws PropelException
*/
protected function findPkSimple($key, $con)
{
$sql = 'SELECT `id`, `author`, `email`, `website`, `content`, `post_id`, `parent_comment_id`, `active`, `created_at`, `updated_at` FROM `comment` 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 Comment();
$obj->hydrate($row);
CommentPeer::addInstanceToPool($obj, (string) $key);
}
$stmt->closeCursor();
return $obj;
}
/**
* Find object by primary key.
*
* @param mixed $key Primary key to use for the query
* @param PropelPDO $con A connection object
*
* @return Comment|Comment[]|mixed the result, formatted by the current formatter
*/
protected function findPkComplex($key, $con)
{
// As the query uses a PK condition, no limit(1) is necessary.
$criteria = $this->isKeepQuery() ? clone $this : $this;
$stmt = $criteria
->filterByPrimaryKey($key)
->doSelect($con);
return $criteria->getFormatter()->init($criteria)->formatOne($stmt);
}
/**
* Find objects by primary key
* <code>
* $objs = $c->findPks(array(12, 56, 832), $con);
* </code>
* @param array $keys Primary keys to use for the query
* @param PropelPDO $con an optional connection object
*
* @return PropelObjectCollection|Comment[]|mixed the list of results, formatted by the current formatter
*/
public function findPks($keys, $con = null)
{
if ($con === null) {
$con = Propel::getConnection($this->getDbName(), Propel::CONNECTION_READ);
}
$this->basePreSelect($con);
$criteria = $this->isKeepQuery() ? clone $this : $this;
$stmt = $criteria
->filterByPrimaryKeys($keys)
->doSelect($con);
return $criteria->getFormatter()->init($criteria)->format($stmt);
}
/**
* Filter the query by primary key
*
* @param mixed $key Primary key to use for the query
*
* @return CommentQuery The current query, for fluid interface
*/
public function filterByPrimaryKey($key)
{
return $this->addUsingAlias(CommentPeer::ID, $key, Criteria::EQUAL);
}
/**
* Filter the query by a list of primary keys
*
* @param array $keys The list of primary key to use for the query
*
* @return CommentQuery The current query, for fluid interface
*/
public function filterByPrimaryKeys($keys)
{
return $this->addUsingAlias(CommentPeer::ID, $keys, Criteria::IN);
}
/**
* Filter the query on the id column
*
* Example usage:
* <code>
* $query->filterById(1234); // WHERE id = 1234
* $query->filterById(array(12, 34)); // WHERE id IN (12, 34)
* $query->filterById(array('min' => 12)); // WHERE id >= 12
* $query->filterById(array('max' => 12)); // WHERE id <= 12
* </code>
*
* @param mixed $id The value to use as filter.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CommentQuery The current query, for fluid interface
*/
public function filterById($id = null, $comparison = null)
{
if (is_array($id)) {
$useMinMax = false;
if (isset($id['min'])) {
$this->addUsingAlias(CommentPeer::ID, $id['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($id['max'])) {
$this->addUsingAlias(CommentPeer::ID, $id['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(CommentPeer::ID, $id, $comparison);
}
/**
* Filter the query on the author column
*
* Example usage:
* <code>
* $query->filterByAuthor('fooValue'); // WHERE author = 'fooValue'
* $query->filterByAuthor('%fooValue%'); // WHERE author LIKE '%fooValue%'
* </code>
*
* @param string $author The value to use as filter.
* Accepts wildcards (* and % trigger a LIKE)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CommentQuery The current query, for fluid interface
*/
public function filterByAuthor($author = null, $comparison = null)
{
if (null === $comparison) {
if (is_array($author)) {
$comparison = Criteria::IN;
} elseif (preg_match('/[\%\*]/', $author)) {
$author = str_replace('*', '%', $author);
$comparison = Criteria::LIKE;
}
}
return $this->addUsingAlias(CommentPeer::AUTHOR, $author, $comparison);
}
/**
* Filter the query on the email column
*
* Example usage:
* <code>
* $query->filterByEmail('fooValue'); // WHERE email = 'fooValue'
* $query->filterByEmail('%fooValue%'); // WHERE email LIKE '%fooValue%'
* </code>
*
* @param string $email The value to use as filter.
* Accepts wildcards (* and % trigger a LIKE)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CommentQuery The current query, for fluid interface
*/
public function filterByEmail($email = null, $comparison = null)
{
if (null === $comparison) {
if (is_array($email)) {
$comparison = Criteria::IN;
} elseif (preg_match('/[\%\*]/', $email)) {
$email = str_replace('*', '%', $email);
$comparison = Criteria::LIKE;
}
}
return $this->addUsingAlias(CommentPeer::EMAIL, $email, $comparison);
}
/**
* Filter the query on the website column
*
* Example usage:
* <code>
* $query->filterByWebsite('fooValue'); // WHERE website = 'fooValue'
* $query->filterByWebsite('%fooValue%'); // WHERE website LIKE '%fooValue%'
* </code>
*
* @param string $website The value to use as filter.
* Accepts wildcards (* and % trigger a LIKE)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CommentQuery The current query, for fluid interface
*/
public function filterByWebsite($website = null, $comparison = null)
{
if (null === $comparison) {
if (is_array($website)) {
$comparison = Criteria::IN;
} elseif (preg_match('/[\%\*]/', $website)) {
$website = str_replace('*', '%', $website);
$comparison = Criteria::LIKE;
}
}
return $this->addUsingAlias(CommentPeer::WEBSITE, $website, $comparison);
}
/**
* Filter the query on the content column
*
* Example usage:
* <code>
* $query->filterByContent('fooValue'); // WHERE content = 'fooValue'
* $query->filterByContent('%fooValue%'); // WHERE content LIKE '%fooValue%'
* </code>
*
* @param string $content The value to use as filter.
* Accepts wildcards (* and % trigger a LIKE)
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CommentQuery The current query, for fluid interface
*/
public function filterByContent($content = null, $comparison = null)
{
if (null === $comparison) {
if (is_array($content)) {
$comparison = Criteria::IN;
} elseif (preg_match('/[\%\*]/', $content)) {
$content = str_replace('*', '%', $content);
$comparison = Criteria::LIKE;
}
}
return $this->addUsingAlias(CommentPeer::CONTENT, $content, $comparison);
}
/**
* Filter the query on the post_id column
*
* Example usage:
* <code>
* $query->filterByPostId(1234); // WHERE post_id = 1234
* $query->filterByPostId(array(12, 34)); // WHERE post_id IN (12, 34)
* $query->filterByPostId(array('min' => 12)); // WHERE post_id >= 12
* $query->filterByPostId(array('max' => 12)); // WHERE post_id <= 12
* </code>
*
* @see filterByPost()
*
* @param mixed $postId The value to use as filter.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CommentQuery The current query, for fluid interface
*/
public function filterByPostId($postId = null, $comparison = null)
{
if (is_array($postId)) {
$useMinMax = false;
if (isset($postId['min'])) {
$this->addUsingAlias(CommentPeer::POST_ID, $postId['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($postId['max'])) {
$this->addUsingAlias(CommentPeer::POST_ID, $postId['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(CommentPeer::POST_ID, $postId, $comparison);
}
/**
* Filter the query on the parent_comment_id column
*
* Example usage:
* <code>
* $query->filterByParentCommentId(1234); // WHERE parent_comment_id = 1234
* $query->filterByParentCommentId(array(12, 34)); // WHERE parent_comment_id IN (12, 34)
* $query->filterByParentCommentId(array('min' => 12)); // WHERE parent_comment_id >= 12
* $query->filterByParentCommentId(array('max' => 12)); // WHERE parent_comment_id <= 12
* </code>
*
* @see filterByCommentRelatedByParentCommentId()
*
* @param mixed $parentCommentId The value to use as filter.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CommentQuery The current query, for fluid interface
*/
public function filterByParentCommentId($parentCommentId = null, $comparison = null)
{
if (is_array($parentCommentId)) {
$useMinMax = false;
if (isset($parentCommentId['min'])) {
$this->addUsingAlias(CommentPeer::PARENT_COMMENT_ID, $parentCommentId['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($parentCommentId['max'])) {
$this->addUsingAlias(CommentPeer::PARENT_COMMENT_ID, $parentCommentId['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(CommentPeer::PARENT_COMMENT_ID, $parentCommentId, $comparison);
}
/**
* Filter the query on the active column
*
* Example usage:
* <code>
* $query->filterByActive(true); // WHERE active = true
* $query->filterByActive('yes'); // WHERE active = true
* </code>
*
* @param boolean|string $active The value to use as filter.
* Non-boolean arguments are converted using the following rules:
* * 1, '1', 'true', 'on', and 'yes' are converted to boolean true
* * 0, '0', 'false', 'off', and 'no' are converted to boolean false
* Check on string values is case insensitive (so 'FaLsE' is seen as 'false').
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CommentQuery The current query, for fluid interface
*/
public function filterByActive($active = null, $comparison = null)
{
if (is_string($active)) {
$active = in_array(strtolower($active), array('false', 'off', '-', 'no', 'n', '0', '')) ? false : true;
}
return $this->addUsingAlias(CommentPeer::ACTIVE, $active, $comparison);
}
/**
* Filter the query on the created_at column
*
* Example usage:
* <code>
* $query->filterByCreatedAt('2011-03-14'); // WHERE created_at = '2011-03-14'
* $query->filterByCreatedAt('now'); // WHERE created_at = '2011-03-14'
* $query->filterByCreatedAt(array('max' => 'yesterday')); // WHERE created_at > '2011-03-13'
* </code>
*
* @param mixed $createdAt The value to use as filter.
* Values can be integers (unix timestamps), DateTime objects, or strings.
* Empty strings are treated as NULL.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CommentQuery The current query, for fluid interface
*/
public function filterByCreatedAt($createdAt = null, $comparison = null)
{
if (is_array($createdAt)) {
$useMinMax = false;
if (isset($createdAt['min'])) {
$this->addUsingAlias(CommentPeer::CREATED_AT, $createdAt['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($createdAt['max'])) {
$this->addUsingAlias(CommentPeer::CREATED_AT, $createdAt['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(CommentPeer::CREATED_AT, $createdAt, $comparison);
}
/**
* Filter the query on the updated_at column
*
* Example usage:
* <code>
* $query->filterByUpdatedAt('2011-03-14'); // WHERE updated_at = '2011-03-14'
* $query->filterByUpdatedAt('now'); // WHERE updated_at = '2011-03-14'
* $query->filterByUpdatedAt(array('max' => 'yesterday')); // WHERE updated_at > '2011-03-13'
* </code>
*
* @param mixed $updatedAt The value to use as filter.
* Values can be integers (unix timestamps), DateTime objects, or strings.
* Empty strings are treated as NULL.
* Use scalar values for equality.
* Use array values for in_array() equivalent.
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CommentQuery The current query, for fluid interface
*/
public function filterByUpdatedAt($updatedAt = null, $comparison = null)
{
if (is_array($updatedAt)) {
$useMinMax = false;
if (isset($updatedAt['min'])) {
$this->addUsingAlias(CommentPeer::UPDATED_AT, $updatedAt['min'], Criteria::GREATER_EQUAL);
$useMinMax = true;
}
if (isset($updatedAt['max'])) {
$this->addUsingAlias(CommentPeer::UPDATED_AT, $updatedAt['max'], Criteria::LESS_EQUAL);
$useMinMax = true;
}
if ($useMinMax) {
return $this;
}
if (null === $comparison) {
$comparison = Criteria::IN;
}
}
return $this->addUsingAlias(CommentPeer::UPDATED_AT, $updatedAt, $comparison);
}
/**
* Filter the query by a related Post object
*
* @param Post|PropelObjectCollection $post The related object(s) to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CommentQuery The current query, for fluid interface
* @throws PropelException - if the provided filter is invalid.
*/
public function filterByPost($post, $comparison = null)
{
if ($post instanceof Post) {
return $this
->addUsingAlias(CommentPeer::POST_ID, $post->getId(), $comparison);
} elseif ($post instanceof PropelObjectCollection) {
if (null === $comparison) {
$comparison = Criteria::IN;
}
return $this
->addUsingAlias(CommentPeer::POST_ID, $post->toKeyValue('PrimaryKey', 'Id'), $comparison);
} else {
throw new PropelException('filterByPost() only accepts arguments of type Post or PropelCollection');
}
}
/**
* Adds a JOIN clause to the query using the Post relation
*
* @param string $relationAlias optional alias for the relation
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return CommentQuery The current query, for fluid interface
*/
public function joinPost($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
$tableMap = $this->getTableMap();
$relationMap = $tableMap->getRelation('Post');
// create a ModelJoin object for this join
$join = new ModelJoin();
$join->setJoinType($joinType);
$join->setRelationMap($relationMap, $this->useAliasInSQL ? $this->getModelAlias() : null, $relationAlias);
if ($previousJoin = $this->getPreviousJoin()) {
$join->setPreviousJoin($previousJoin);
}
// add the ModelJoin to the current object
if ($relationAlias) {
$this->addAlias($relationAlias, $relationMap->getRightTable()->getName());
$this->addJoinObject($join, $relationAlias);
} else {
$this->addJoinObject($join, 'Post');
}
return $this;
}
/**
* Use the Post relation Post object
*
* @see useQuery()
*
* @param string $relationAlias optional alias for the relation,
* to be used as main alias in the secondary query
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return \Deblan\Bundle\BlogBundle\Model\PostQuery A secondary query class using the current class as primary query
*/
public function usePostQuery($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
return $this
->joinPost($relationAlias, $joinType)
->useQuery($relationAlias ? $relationAlias : 'Post', '\Deblan\Bundle\BlogBundle\Model\PostQuery');
}
/**
* Filter the query by a related Comment object
*
* @param Comment|PropelObjectCollection $comment The related object(s) to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CommentQuery The current query, for fluid interface
* @throws PropelException - if the provided filter is invalid.
*/
public function filterByCommentRelatedByParentCommentId($comment, $comparison = null)
{
if ($comment instanceof Comment) {
return $this
->addUsingAlias(CommentPeer::PARENT_COMMENT_ID, $comment->getId(), $comparison);
} elseif ($comment instanceof PropelObjectCollection) {
if (null === $comparison) {
$comparison = Criteria::IN;
}
return $this
->addUsingAlias(CommentPeer::PARENT_COMMENT_ID, $comment->toKeyValue('PrimaryKey', 'Id'), $comparison);
} else {
throw new PropelException('filterByCommentRelatedByParentCommentId() only accepts arguments of type Comment or PropelCollection');
}
}
/**
* Adds a JOIN clause to the query using the CommentRelatedByParentCommentId relation
*
* @param string $relationAlias optional alias for the relation
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return CommentQuery The current query, for fluid interface
*/
public function joinCommentRelatedByParentCommentId($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
$tableMap = $this->getTableMap();
$relationMap = $tableMap->getRelation('CommentRelatedByParentCommentId');
// create a ModelJoin object for this join
$join = new ModelJoin();
$join->setJoinType($joinType);
$join->setRelationMap($relationMap, $this->useAliasInSQL ? $this->getModelAlias() : null, $relationAlias);
if ($previousJoin = $this->getPreviousJoin()) {
$join->setPreviousJoin($previousJoin);
}
// add the ModelJoin to the current object
if ($relationAlias) {
$this->addAlias($relationAlias, $relationMap->getRightTable()->getName());
$this->addJoinObject($join, $relationAlias);
} else {
$this->addJoinObject($join, 'CommentRelatedByParentCommentId');
}
return $this;
}
/**
* Use the CommentRelatedByParentCommentId relation Comment object
*
* @see useQuery()
*
* @param string $relationAlias optional alias for the relation,
* to be used as main alias in the secondary query
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return \Deblan\Bundle\BlogBundle\Model\CommentQuery A secondary query class using the current class as primary query
*/
public function useCommentRelatedByParentCommentIdQuery($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
return $this
->joinCommentRelatedByParentCommentId($relationAlias, $joinType)
->useQuery($relationAlias ? $relationAlias : 'CommentRelatedByParentCommentId', '\Deblan\Bundle\BlogBundle\Model\CommentQuery');
}
/**
* Filter the query by a related Comment object
*
* @param Comment|PropelObjectCollection $comment the related object to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CommentQuery The current query, for fluid interface
* @throws PropelException - if the provided filter is invalid.
*/
public function filterByCommentRelatedById($comment, $comparison = null)
{
if ($comment instanceof Comment) {
return $this
->addUsingAlias(CommentPeer::ID, $comment->getParentCommentId(), $comparison);
} elseif ($comment instanceof PropelObjectCollection) {
return $this
->useCommentRelatedByIdQuery()
->filterByPrimaryKeys($comment->getPrimaryKeys())
->endUse();
} else {
throw new PropelException('filterByCommentRelatedById() only accepts arguments of type Comment or PropelCollection');
}
}
/**
* Adds a JOIN clause to the query using the CommentRelatedById relation
*
* @param string $relationAlias optional alias for the relation
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return CommentQuery The current query, for fluid interface
*/
public function joinCommentRelatedById($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
$tableMap = $this->getTableMap();
$relationMap = $tableMap->getRelation('CommentRelatedById');
// create a ModelJoin object for this join
$join = new ModelJoin();
$join->setJoinType($joinType);
$join->setRelationMap($relationMap, $this->useAliasInSQL ? $this->getModelAlias() : null, $relationAlias);
if ($previousJoin = $this->getPreviousJoin()) {
$join->setPreviousJoin($previousJoin);
}
// add the ModelJoin to the current object
if ($relationAlias) {
$this->addAlias($relationAlias, $relationMap->getRightTable()->getName());
$this->addJoinObject($join, $relationAlias);
} else {
$this->addJoinObject($join, 'CommentRelatedById');
}
return $this;
}
/**
* Use the CommentRelatedById relation Comment object
*
* @see useQuery()
*
* @param string $relationAlias optional alias for the relation,
* to be used as main alias in the secondary query
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return \Deblan\Bundle\BlogBundle\Model\CommentQuery A secondary query class using the current class as primary query
*/
public function useCommentRelatedByIdQuery($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
return $this
->joinCommentRelatedById($relationAlias, $joinType)
->useQuery($relationAlias ? $relationAlias : 'CommentRelatedById', '\Deblan\Bundle\BlogBundle\Model\CommentQuery');
}
/**
* Filter the query by a related PostFollower object
*
* @param PostFollower|PropelObjectCollection $postFollower the related object to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return CommentQuery The current query, for fluid interface
* @throws PropelException - if the provided filter is invalid.
*/
public function filterByPostFollower($postFollower, $comparison = null)
{
if ($postFollower instanceof PostFollower) {
return $this
->addUsingAlias(CommentPeer::ID, $postFollower->getCommentId(), $comparison);
} elseif ($postFollower instanceof PropelObjectCollection) {
return $this
->usePostFollowerQuery()
->filterByPrimaryKeys($postFollower->getPrimaryKeys())
->endUse();
} else {
throw new PropelException('filterByPostFollower() only accepts arguments of type PostFollower or PropelCollection');
}
}
/**
* Adds a JOIN clause to the query using the PostFollower relation
*
* @param string $relationAlias optional alias for the relation
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return CommentQuery The current query, for fluid interface
*/
public function joinPostFollower($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
$tableMap = $this->getTableMap();
$relationMap = $tableMap->getRelation('PostFollower');
// create a ModelJoin object for this join
$join = new ModelJoin();
$join->setJoinType($joinType);
$join->setRelationMap($relationMap, $this->useAliasInSQL ? $this->getModelAlias() : null, $relationAlias);
if ($previousJoin = $this->getPreviousJoin()) {
$join->setPreviousJoin($previousJoin);
}
// add the ModelJoin to the current object
if ($relationAlias) {
$this->addAlias($relationAlias, $relationMap->getRightTable()->getName());
$this->addJoinObject($join, $relationAlias);
} else {
$this->addJoinObject($join, 'PostFollower');
}
return $this;
}
/**
* Use the PostFollower relation PostFollower object
*
* @see useQuery()
*
* @param string $relationAlias optional alias for the relation,
* to be used as main alias in the secondary query
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
*
* @return \Deblan\Bundle\BlogBundle\Model\PostFollowerQuery A secondary query class using the current class as primary query
*/
public function usePostFollowerQuery($relationAlias = null, $joinType = Criteria::LEFT_JOIN)
{
return $this
->joinPostFollower($relationAlias, $joinType)
->useQuery($relationAlias ? $relationAlias : 'PostFollower', '\Deblan\Bundle\BlogBundle\Model\PostFollowerQuery');
}
/**
* Exclude object from result
*
* @param Comment $comment Object to remove from the list of results
*
* @return CommentQuery The current query, for fluid interface
*/
public function prune($comment = null)
{
if ($comment) {
$this->addUsingAlias(CommentPeer::ID, $comment->getId(), Criteria::NOT_EQUAL);
}
return $this;
}
// timestampable behavior
/**
* Filter by the latest updated
*
* @param int $nbDays Maximum age of the latest update in days
*
* @return CommentQuery The current query, for fluid interface
*/
public function recentlyUpdated($nbDays = 7)
{
return $this->addUsingAlias(CommentPeer::UPDATED_AT, time() - $nbDays * 24 * 60 * 60, Criteria::GREATER_EQUAL);
}
/**
* Order by update date desc
*
* @return CommentQuery The current query, for fluid interface
*/
public function lastUpdatedFirst()
{
return $this->addDescendingOrderByColumn(CommentPeer::UPDATED_AT);
}
/**
* Order by update date asc
*
* @return CommentQuery The current query, for fluid interface
*/
public function firstUpdatedFirst()
{
return $this->addAscendingOrderByColumn(CommentPeer::UPDATED_AT);
}
/**
* Filter by the latest created
*
* @param int $nbDays Maximum age of in days
*
* @return CommentQuery The current query, for fluid interface
*/
public function recentlyCreated($nbDays = 7)
{
return $this->addUsingAlias(CommentPeer::CREATED_AT, time() - $nbDays * 24 * 60 * 60, Criteria::GREATER_EQUAL);
}
/**
* Order by create date desc
*
* @return CommentQuery The current query, for fluid interface
*/
public function lastCreatedFirst()
{
return $this->addDescendingOrderByColumn(CommentPeer::CREATED_AT);
}
/**
* Order by create date asc
*
* @return CommentQuery The current query, for fluid interface
*/
public function firstCreatedFirst()
{
return $this->addAscendingOrderByColumn(CommentPeer::CREATED_AT);
}
}