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
|
<?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_JobBuildHistory extends HudsonJobWidget {
var $content;
function hudson_Widget_JobBuildHistory($owner_type, $owner_id) {
$request =& HTTPRequest::instance();
if ($owner_type == WidgetLayoutManager::OWNER_TYPE_USER) {
$this->widget_id = 'plugin_hudson_my_jobbuildhistory';
$this->group_id = $owner_id;
} else {
$this->widget_id = 'plugin_hudson_project_jobbuildhistory';
$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_jobbuildhistory' && forge_check_perm('hudson', $this->group_id, 'read')) {
$this->content['title'] = '';
if ($this->job) {
$this->content['title'] .= sprintf(_("%s Builds History"), $this->job->getName());
} else {
$this->content['title'] .= _("Builds History");
}
} else {
$this->content['title'] = '';
if ($this->job) {
$this->content['title'] .= sprintf(_("%s Builds History"), $this->job->getName());
} else {
$this->content['title'] .= _("Builds History");
}
}
}
function getTitle() {
return $this->content['title'];
}
function getDescription() {
return _("Show the build history of the selected job, under the form of RSS feed. For each build of the list, you can see the build number, the status and the date the build has been scheduled.");
}
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;
$buildHistoryRSSWidget = new Widget_ProjectRss();
$buildHistoryRSSWidget->rss_url = $job->getUrl().'/rssAll';
$html .= $buildHistoryRSSWidget->getContent();
} else {
$html .= _("Job not found.");
}
return $html;
}
function hasRss() {
return true;
}
function getRssUrl($owner_id, $owner_type) {
if ($this->job) {
return $this->job->getUrl().'/rssAll';
} else {
return null;
}
}
function isAvailable() {
return isset($this->content['title']);
}
}
|