1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
<?php
/**
* Copyright (c) Xerox Corporation, Codendi Team, 2001-2009. All rights reserved
* Copyright 2014, Franck Villaume - TrivialDev
*
* This file is a part of Fusionforge.
*
* Fusionforge is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Fusionforge is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Fusionforge. If not, see <http://www.gnu.org/licenses/>.
*/
require_once 'HudsonJobWidget.class.php';
require_once 'common/include/HTTPRequest.class.php';
require_once 'PluginHudsonJobDao.class.php';
require_once 'HudsonJob.class.php';
class hudson_Widget_JobLastBuilds extends HudsonJobWidget {
var $content;
function hudson_Widget_JobLastBuilds($owner_type, $owner_id) {
$request =& HTTPRequest::instance();
if ($owner_type == WidgetLayoutManager::OWNER_TYPE_USER) {
$this->widget_id = 'plugin_hudson_my_joblastbuilds';
$this->group_id = $owner_id;
} else {
$this->widget_id = 'plugin_hudson_project_joblastbuilds';
$this->group_id = $request->get('group_id');
}
$this->Widget($this->widget_id);
$this->setOwner($owner_id, $owner_type);
if ($this->widget_id == 'plugin_hudson_project_joblastbuilds' && forge_check_perm('hudson', $this->group_id, 'read')) {
$this->content['title'] = '';
if ($this->job) {
$this->content['title'] .= sprintf(_('%s Last Builds'), $this->job->getName());
} else {
$this->content['title'] .= _('Last Builds');
}
} else {
$this->content['title'] = '';
if ($this->job) {
$this->content['title'] .= sprintf(_('%s Last Builds'), $this->job->getName());
} else {
$this->content['title'] .= _('Last Builds');
}
}
}
function getTitle() {
return $this->content['title'];
}
function getDescription() {
return _("Show the last builds for this job (last one, last successfull, last failed) and the weather report. The trend is represented by a weather report (sun, thunder, etc.) meaning that the trend is good or not.");
}
function loadContent($id) {
$sql = "SELECT * FROM plugin_hudson_widget WHERE widget_name=$1 AND owner_id=$2 AND owner_type=$3 AND id=$4";
$res = db_query_params($sql,array($this->widget_id,$this->owner_id,$this->owner_type,$id));
if ($res && db_numrows($res)) {
$data = db_fetch_array($res);
$this->job_id = $data['job_id'];
$this->content_id = $id;
$jobs = $this->getAvailableJobs();
if (array_key_exists($this->job_id, $jobs)) {
$used_job = $jobs[$this->job_id];
$this->job_url = $used_job->getUrl();
$this->job = $used_job;
} else {
$this->job = null;
}
}
}
function getContent() {
$html = '';
if ($this->job != null) {
$job = $this->job;
$html .= '<table class="fullwidth">';
$html .= ' <tr>';
$html .= ' <td>';
$html .= ' <ul>';
if ($job->hasBuilds()) {
$html .= ' <li>'._("Last Build:").' <a href="/plugins/hudson/?action=view_build&group_id='.$this->group_id.'&job_id='.$this->job_id.'&build_id='.$job->getLastBuildNumber().'"># '.$job->getLastBuildNumber().'</a></li>';
$html .= ' <li>'._("Last Success")._(": ").'<a href="/plugins/hudson/?action=view_build&group_id='.$this->group_id.'&job_id='.$this->job_id.'&build_id='.$job->getLastSuccessfulBuildNumber().'"># '.$job->getLastSuccessfulBuildNumber().'</a></li>';
$html .= ' <li>'._("Last Failure")._(": ").'<a href="/plugins/hudson/?action=view_build&group_id='.$this->group_id.'&job_id='.$this->job_id.'&build_id='.$job->getLastFailedBuildNumber().'"># '.$job->getLastFailedBuildNumber().'</a></li>';
} else {
$html .= ' <li>'. _("No build found for this job.") . '</li>';
}
$html .= ' </ul>';
$html .= ' </td>';
$html .= ' <td class="widget_lastbuilds_weather">';
$html .= _("Weather Report:").'<img src="'.$job->getWeatherReportIcon().'" class="widget_lastbuilds_weather_img" />';
$html .= ' </td>';
$html .= ' </tr>';
$html .= '</table>';
} else {
$html .= _("Job not found.");
}
return $html;
}
function isAvailable() {
return isset($this->content['title']);
}
}
|