getRequest(); // Pull these objects manually since the serialized fields are gigantic. $transcript = new HeraldTranscript(); $conn_r = $transcript->establishConnection('r'); $phid = $request->getStr('phid'); $where_clause = ''; if ($phid) { $where_clause = qsprintf( $conn_r, 'WHERE objectPHID = %s', $phid ); } $data = queryfx_all( $conn_r, 'SELECT id, objectPHID, time, duration, dryRun FROM %T %Q ORDER BY id DESC LIMIT 100', $transcript->getTableName(), $where_clause); /* $conn_r = smc_get_db('cdb.herald', 'r'); $page_size = 100; $pager = new SimplePager(); $pager->setPageSize($page_size); $pager->setOffset((((int)$request->getInt('page')) - 1) * $page_size); $pager->order('id', array('id')); $fbid = $request->getInt('fbid'); if ($fbid) { $filter = qsprintf( $conn_r, 'WHERE objectID = %d', $fbid); } else { $filter = ''; } $data = $pager->select( $conn_r, 'id, objectID, time, duration, dryRun FROM transcript %Q', $filter); */ $handles = array(); if ($data) { $phids = ipull($data, 'objectPHID', 'objectPHID'); $handles = id(new PhabricatorObjectHandleData($phids)) ->loadHandles(); } $rows = array(); foreach ($data as $xscript) { $rows[] = array( date('F jS', $xscript['time']), date('g:i:s A', $xscript['time']), $handles[$xscript['objectPHID']]->renderLink(), $xscript['dryRun'] ? 'Yes' : '', number_format((int)(1000 * $xscript['duration'])).' ms', phutil_render_tag( 'a', array( 'href' => '/herald/transcript/'.$xscript['id'].'/', 'class' => 'button small grey', ), 'View Transcript'), ); } $table = new AphrontTableView($rows); $table->setHeaders( array( 'Date', 'Time', 'Object', 'Dry Run', 'Duration', 'View', )); $table->setColumnClasses( array( '', 'right', 'wide wrap', '', '', 'action', )); $panel = new AphrontPanelView(); $panel->setHeader('Herald Transcripts'); $panel->appendChild($table); return $this->buildStandardPageResponse( $panel, array( 'title' => 'Herald Transcripts', 'tab' => 'transcripts', )); } }