phids = $phids; return $this; } public function needBloggers($need_bloggers) { $this->needBloggers = $need_bloggers; return $this; } public function execute() { $table = new PhameBlog(); $conn_r = $table->establishConnection('r'); $where_clause = $this->buildWhereClause($conn_r); $order_clause = $this->buildOrderClause($conn_r); $limit_clause = $this->buildLimitClause($conn_r); $data = queryfx_all( $conn_r, 'SELECT * FROM %T b %Q %Q %Q', $table->getTableName(), $where_clause, $order_clause, $limit_clause); $blogs = $table->loadAllFromArray($data); if ($blogs) { if ($this->needBloggers) { $this->loadBloggers($blogs); } } return $blogs; } private function loadBloggers(array $blogs) { assert_instances_of($blogs, 'PhameBlog'); $blog_phids = mpull($blogs, 'getPHID'); $edge_types = array(PhabricatorEdgeConfig::TYPE_BLOG_HAS_BLOGGER); $query = new PhabricatorEdgeQuery(); $query->withSourcePHIDs($blog_phids) ->withEdgeTypes($edge_types) ->execute(); $all_blogger_phids = $query->getDestinationPHIDs( $blog_phids, $edge_types ); $handles = id(new PhabricatorObjectHandleData($all_blogger_phids)) ->loadHandles(); foreach ($blogs as $blog) { $blogger_phids = $query->getDestinationPHIDs( array($blog->getPHID()), $edge_types ); $blog->attachBloggers(array_select_keys($handles, $blogger_phids)); } } private function buildWhereClause($conn_r) { $where = array(); if ($this->phids) { $where[] = qsprintf( $conn_r, 'phid IN (%Ls)', $this->phids); } return $this->formatWhereClause($where); } private function buildOrderClause($conn_r) { return 'ORDER BY id DESC'; } }