_a['table'] = 'idf_commits'; $this->_a['model'] = __CLASS__; $this->_a['cols'] = array( // It is mandatory to have an "id" column. 'id' => array( 'type' => 'Pluf_DB_Field_Sequence', 'blank' => true, ), 'project' => array( 'type' => 'Pluf_DB_Field_Foreignkey', 'model' => 'IDF_Project', 'blank' => false, 'verbose' => __('project'), 'relate_name' => 'commits', ), 'author' => array( 'type' => 'Pluf_DB_Field_Foreignkey', 'model' => 'Pluf_User', 'is_null' => true, 'verbose' => __('submitter'), 'relate_name' => 'submitted_commit', 'help_text' => 'This will allow us to list the latest commits of a user in its profile.', ), 'origauthor' => array( 'type' => 'Pluf_DB_Field_Varchar', 'blank' => false, 'size' => 150, 'help_text' => 'As we do not necessary have the mapping between the author in the database and the scm, we store the scm author commit information here. That way we can update the author info later in the process.', ), 'scm_id' => array( 'type' => 'Pluf_DB_Field_Varchar', 'blank' => false, 'size' => 50, 'index' => true, 'help_text' => 'The id of the commit. For git, it will be the SHA1 hash, for subversion it will be the revision id.', ), 'summary' => array( 'type' => 'Pluf_DB_Field_Varchar', 'blank' => false, 'size' => 250, 'verbose' => __('summary'), ), 'fullmessage' => array( 'type' => 'Pluf_DB_Field_Text', 'blank' => true, 'verbose' => __('changelog'), 'help_text' => 'This is the full message of the commit.', ), 'creation_dtime' => array( 'type' => 'Pluf_DB_Field_Datetime', 'blank' => true, 'verbose' => __('creation date'), 'index' => true, 'help_text' => 'Date of creation by the scm', ), ); } function __toString() { return $this->summary.' - ('.$this->scm_id.')'; } function _toIndex() { $str = str_repeat($this->summary.' ', 4).' '.$this->fullmessage; return Pluf_Text::cleanString(html_entity_decode($str, ENT_QUOTES, 'UTF-8')); } function postSave($create=false) { IDF_Search::index($this); if ($create) { IDF_Timeline::insert($this, $this->get_project(), $this->get_author(), $this->creation_dtime); } } /** * Create a commit from a simple class commit info of a changelog. * * @param stdClass Commit info * @param IDF_Project Current project * @return IDF_Commit */ public static function getOrAdd($change, $project) { $sql = new Pluf_SQL('project=%s AND scm_id=%s', array($project->id, $change->commit)); $r = Pluf::factory('IDF_Commit')->getList(array('filter'=>$sql->gen())); if ($r->count()) { return $r[0]; } $commit = new IDF_Commit(); $commit->project = $project; $commit->scm_id = $change->commit; $commit->summary = $change->title; $commit->fullmessage = $change->full_message; $commit->author = null; $commit->origauthor = $change->author; $commit->creation_dtime = $change->date; $commit->create(); return $commit; } /** * Returns the timeline fragment for the commit. * * * @param Pluf_HTTP_Request * @return Pluf_Template_SafeString */ public function timelineFragment($request) { $url = Pluf_HTTP_URL_urlForView('IDF_Views_Source::commit', array($request->project->shortname, $this->scm_id)); $out = ''. Pluf_esc(Pluf_Template_dateAgo($this->creation_dtime, 'without')). ''; $tag = new IDF_Template_IssueComment(); $out .= $tag->start($this->summary, $request, false); if (0 && $this->fullmessage) { $out .= '

'.$tag->start($this->fullmessage, $request, false); } $out .= '
'.__('Commit').' '.$this->scm_id.', '.__('by').' '.strip_tags($this->origauthor).'
'; return Pluf_Template::markSafe($out); } }