php-censor/PHPCI/View/Project/view.phtml

170 lines
6 KiB
PHTML
Raw Normal View History

<h1>
<i class="glyphicon glyphicon-th-list"></i> <?php print htmlspecialchars($project->getTitle()); ?>
<small><?php echo $branch ?></small>
<div class="btn-group pull-right branch-btn">
<button type="button" class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown">
Branch&nbsp;&nbsp;<span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<?php foreach ($branches as $curbranch) : ?>
<li <?php echo ($curbranch == $branch) ? 'class="active"' : ''?>>
<a href="<?php echo PHPCI_URL ?>project/view/<?php print $project->getId(); ?>/<?php echo urlencode($curbranch) ?>">
<?php echo $curbranch ?>
</a>
</li>
<?php endforeach; ?>
<li class="divider"></li>
<li><a href="<?php echo PHPCI_URL ?>project/view/<?php print $project->getId(); ?>">All</a></li>
</ul>
</div>
</h1>
2014-04-30 15:13:07 +02:00
2013-05-10 13:28:43 +02:00
<div class="row">
<div class="col-lg-3">
2014-04-30 15:13:07 +02:00
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Options</h3>
</div>
<div class="list-group">
<a class="list-group-item"
href="<?php echo PHPCI_URL ?>project/build/<?php print $project->getId() . ((!empty($branch)) ? '/' . urlencode($branch) : ''); ?>">
<i class="glyphicon glyphicon-cog"></i> Build <?php print (!empty($branch)) ? 'Branch' : ''; ?> Now
</a>
2014-04-30 15:13:07 +02:00
<?php if($this->User()->getIsAdmin()): ?>
<a class="list-group-item" href="<?php echo PHPCI_URL ?>project/edit/<?php print $project->getId(); ?>"><i class="glyphicon glyphicon-edit"></i> Edit Project</a>
<a class="list-group-item" href="#" id="delete-project"><i class="glyphicon glyphicon-trash"></i> Delete Project</a>
<?php endif; ?>
</div>
</div>
2013-05-10 13:28:43 +02:00
<?php if (in_array($project->getType(), array('github', 'gitlab', 'bitbucket'))): ?>
2014-04-30 15:13:07 +02:00
<div class="panel panel-info">
<div class="panel-heading">
<h4 class="panel-title">Webhooks</h4>
</div>
<div class="panel-body">
To automatically build this project when new commits are pushed, add the URL below
2013-05-10 13:28:43 +02:00
<?php
switch($project->getType())
{
case 'github':
$url = PHPCI_URL . 'webhook/github/' . $project->getId();
2013-05-10 13:28:43 +02:00
print ' as a "WebHook URL" in the <a href="https://github.com/' . $project->getReference() . '/settings/hooks">Service Hooks</a> section of your Github repository.<br><br><strong style="word-wrap: break-word;">' . $url . '</strong>';
break;
2013-09-19 09:46:29 +02:00
case 'gitlab':
$url = PHPCI_URL. 'webhook/gitlab/' . $project->getId();
2013-09-19 09:46:29 +02:00
print ' as a "WebHook URL" in the Web Hooks section of your Gitlab repository.<br><br><strong style="word-wrap: break-word;">' . $url . '</strong>';
break;
2013-05-10 13:28:43 +02:00
case 'bitbucket':
$url = PHPCI_URL . 'webhook/bitbucket/' . $project->getId();
2013-05-10 13:28:43 +02:00
print ' as a "POST" service in the <a href="https://bitbucket.org/' . $project->getReference() . '/admin/services">Services</a> section of your Bitbucket repository.<br><br><strong style="word-wrap: break-word;">' . $url . '</strong>';
break;
}
?>
2014-04-30 15:13:07 +02:00
</div>
</div>
<?php endif; ?>
2014-04-30 15:13:07 +02:00
<?php if ($project->getSshPublicKey()): ?>
<div class="panel panel-info">
<div class="panel-heading"><h3 class="panel-title"><a data-toggle="collapse" data-parent="#accordion" href="#publicCollapse">Public Key</a></h3></div>
<div id="publicCollapse" class="panel-collapse collapse out">
<div class="panel-body word-wrap"><?php print $project->getSshPublicKey(); ?></div>
</div>
2014-04-30 15:13:07 +02:00
</div>
<?php endif; ?>
2013-05-10 13:28:43 +02:00
</div>
<div class="col-lg-9">
2014-04-30 15:13:07 +02:00
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Builds</h3>
</div>
2013-05-10 13:28:43 +02:00
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>ID</th>
<th>Project</th>
<th>Commit</th>
<th>Branch</th>
<th>Status</th>
<th style="width: 100px"></th>
2013-05-10 13:28:43 +02:00
</tr>
</thead>
<tbody id="latest-builds">
<?php print $builds; ?>
2013-05-10 13:28:43 +02:00
</tbody>
</table>
2014-04-30 15:13:07 +02:00
</div>
<?php
print '<div><ul class="pagination">';
2013-05-10 13:28:43 +02:00
$project_url = PHPCI_URL . 'project/view/' . $project->getId() . ((!empty($branch)) ? '/' . urlencode($branch) : '');
2014-04-30 15:13:07 +02:00
if ($page > 1) {
print '<li><a href="' . $project_url . '?p='.($page == 1 ? '1' : $page - 1).'">&laquo; Prev</a></li>';
2014-04-30 15:13:07 +02:00
}
2013-05-10 13:28:43 +02:00
2014-06-08 18:46:42 +02:00
if ($pages > 1) {
for($i = 1; $i <= $pages; $i++)
{
if ($i == $page) {
print '<li><span>' . $i . '</span></li>';
} else {
print '<li><a href="' . $project_url . '?p=' . $i . '">' . $i . '</a></li>';
2014-06-08 18:46:42 +02:00
}
}
2014-04-30 15:13:07 +02:00
}
2013-05-10 13:28:43 +02:00
2014-04-30 15:13:07 +02:00
if ($page < $pages) {
print '<li><a href="' . $project_url . '?p='.($page == $pages ? $pages : $page + 1).'">Next &raquo;</a></li>';
2014-04-30 15:13:07 +02:00
}
2013-05-10 13:28:43 +02:00
2014-04-30 15:13:07 +02:00
print '</ul></div>';
2013-05-10 13:28:43 +02:00
2014-04-30 15:13:07 +02:00
?>
2013-05-10 13:28:43 +02:00
</div>
</div>
<?php if($page == 1): ?>
<script>
setInterval(function()
{
$.ajax({
url: '<?php echo PHPCI_URL ?>project/builds/<?php print $project->getId() . ((!empty($branch)) ? '/' . urlencode($branch) : ''); ?>',
success: function (data) {
$('#latest-builds').html(data);
$('#latest-builds').trigger('latest-builds:reload');
},
error: handleFailedAjax
});
}, 10000);
$(function() {
$('#delete-project').on('click', function (e) {
e.preventDefault();
confirmDelete(
2014-01-28 22:27:39 +01:00
"<?php echo PHPCI_URL ?>project/delete/<?php print $project->getId(); ?>", "Project"
).onCloseConfirmed = function () {window.location = '/'};
});
})
2013-05-10 13:28:43 +02:00
</script>
<?php endif; ?>