channels = $channels; return $this; } public function execute() { $table = new PhabricatorChatLogEvent(); $conn_r = $table->establishConnection('r'); $where_clause = $this->buildWhereClause($conn_r); $limit_clause = $this->buildLimitClause($conn_r); $data = queryfx_all( $conn_r, 'SELECT * FROM %T e %Q ORDER BY epoch ASC %Q', $table->getTableName(), $where_clause, $limit_clause); $logs = $table->loadAllFromArray($data); return $logs; } private function buildWhereClause($conn_r) { $where = array(); if ($this->channels) { $where[] = qsprintf( $conn_r, 'channel IN (%Ls)', $this->channels); } if ($where) { $where = 'WHERE ('.implode(') AND (', $where).')'; } else { $where = ''; } return $where; } }