directives: ssh-key-dialog -> trigger credentials
This commit is contained in:
parent
2236270741
commit
de3fa5f42d
6 changed files with 52 additions and 38 deletions
|
@ -137,8 +137,8 @@
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<span class="cor-options-menu">
|
<span class="cor-options-menu">
|
||||||
<span class="cor-option" option-click="showSSHKeyModal(trigger)" ng-show="trigger.service == 'custom'">
|
<span class="cor-option" option-click="showTriggerCredentialsModal(trigger)" ng-show="trigger.service == 'custom'">
|
||||||
<i class="fa fa-unlock-alt"></i> View SSH Key
|
<i class="fa fa-unlock-alt"></i> View Credentials
|
||||||
</span>
|
</span>
|
||||||
<span class="cor-option" option-click="askRunTrigger(trigger)">
|
<span class="cor-option" option-click="askRunTrigger(trigger)">
|
||||||
<i class="fa fa-chevron-right"></i> Run Trigger Now
|
<i class="fa fa-chevron-right"></i> Run Trigger Now
|
||||||
|
@ -158,8 +158,8 @@
|
||||||
|
|
||||||
<!-- Dialogs -->
|
<!-- Dialogs -->
|
||||||
|
|
||||||
<!-- SSH key dialog -->
|
<!-- Trigger Credentials dialog -->
|
||||||
<div class="ssh-key-dialog" trigger="sshKeyModalTrigger" counter="sshKeyModalCounter"></div>
|
<div class="trigger-credentials-dialog" trigger="triggerCredentialsModalTrigger" counter="triggerCredentialsModalCounter"></div>
|
||||||
|
|
||||||
<!-- Delete Tag Confirm -->
|
<!-- Delete Tag Confirm -->
|
||||||
<div class="cor-confirm-dialog"
|
<div class="cor-confirm-dialog"
|
||||||
|
|
|
@ -118,7 +118,7 @@
|
||||||
The trigger has been successfully created, but the following first requires action:
|
The trigger has been successfully created, but the following first requires action:
|
||||||
<ul>
|
<ul>
|
||||||
<li>You must give the following public key read access to the git repository.</li>
|
<li>You must give the following public key read access to the git repository.</li>
|
||||||
<li>You must POST to the following URL as your webhook endpoint.</li>
|
<li>You must set your repository to POST to the following URL to trigger a build.</li>
|
||||||
</ul>
|
</ul>
|
||||||
For more information, refer to the <a href="http://docs.quay.io/guides/custom-trigger.html" target="_blank">Custom Git Triggers documentation</a>.
|
For more information, refer to the <a href="http://docs.quay.io/guides/custom-trigger.html" target="_blank">Custom Git Triggers documentation</a>.
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
<!-- Modal message dialog -->
|
|
||||||
<div class="modal fade" id="sshkeymodal">
|
|
||||||
<div class="modal-dialog">
|
|
||||||
<div class="modal-content">
|
|
||||||
<div class="modal-header">
|
|
||||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
||||||
<h4 class="modal-title">
|
|
||||||
Public SSH Key
|
|
||||||
</h4>
|
|
||||||
</div>
|
|
||||||
<div class="modal-body">
|
|
||||||
<div class="alert alert-info">
|
|
||||||
<p>In order for our builders to clone your repository, you must give the following public key read access to the git repository.</p>
|
|
||||||
<!-- TODO(jzelinskie): link to a specific article in the docs -->
|
|
||||||
<p>More information on using a custom triggers can be found <a href="http://docs.quay.io">in the docs</a>.</p>
|
|
||||||
</div>
|
|
||||||
<div class="copy-box" value="trigger.config.public_key"></div>
|
|
||||||
</div>
|
|
||||||
<div class="modal-footer">
|
|
||||||
<button type="button" class="btn btn-default" data-dismiss="modal">Done</button>
|
|
||||||
</div>
|
|
||||||
</div> <!-- /.modal-content -->
|
|
||||||
</div> <!-- /.modal-dialog -->
|
|
||||||
</div> <!-- /.modal -->
|
|
36
static/directives/trigger-credentials-dialog.html
Normal file
36
static/directives/trigger-credentials-dialog.html
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
<!-- Modal message dialog -->
|
||||||
|
<div class="modal fade" id="triggercredentialsmodal">
|
||||||
|
<div class="modal-dialog">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||||
|
<h4 class="modal-title">
|
||||||
|
Trigger Credentials
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<div class="alert alert-info">
|
||||||
|
<p>
|
||||||
|
In order to use this trigger, the following first requires action:
|
||||||
|
<ul>
|
||||||
|
<li>You must give the following public key read access to the git repository.</li>
|
||||||
|
<li>You must set your repository to POST to the following URL to trigger a build.</li>
|
||||||
|
</ul>
|
||||||
|
For more information, refer to the <a href="http://docs.quay.io/guides/custom-trigger.html" target="_blank">Custom Git Triggers documentation</a>.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<p>
|
||||||
|
SSH Public Key:
|
||||||
|
<div class="copy-box" value="trigger.config.public_key"></div>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Webhook Endpoint URL:
|
||||||
|
<div class="copy-box" value="trigger.config.webhook_url"></div>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button type="button" class="btn btn-default" data-dismiss="modal">Done</button>
|
||||||
|
</div>
|
||||||
|
</div> <!-- /.modal-content -->
|
||||||
|
</div> <!-- /.modal-dialog -->
|
||||||
|
</div> <!-- /.modal -->
|
|
@ -32,8 +32,8 @@ angular.module('quay').directive('repoPanelBuilds', function () {
|
||||||
$scope.showTriggerStartDialogCounter = 0;
|
$scope.showTriggerStartDialogCounter = 0;
|
||||||
$scope.showTriggerSetupCounter = 0;
|
$scope.showTriggerSetupCounter = 0;
|
||||||
|
|
||||||
$scope.sshKeyModalTrigger = null;
|
$scope.triggerCredentialsModalTrigger = null;
|
||||||
$scope.sshKeyModalCounter = 0;
|
$scope.triggerCredentialsModalCounter = 0;
|
||||||
|
|
||||||
var updateBuilds = function() {
|
var updateBuilds = function() {
|
||||||
if (!$scope.allBuilds) { return; }
|
if (!$scope.allBuilds) { return; }
|
||||||
|
@ -161,9 +161,11 @@ angular.module('quay').directive('repoPanelBuilds', function () {
|
||||||
$scope.options.predicate = predicate;
|
$scope.options.predicate = predicate;
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.showSSHKeyModal = function(trigger) {
|
$scope.showTriggerCredentialsModal = function(trigger) {
|
||||||
$scope.sshKeyModalTrigger = trigger;
|
$scope.triggerCredentialsModalTrigger = trigger;
|
||||||
$scope.sshKeyModalCounter++;
|
$scope.triggerCredentialsModalCounter++;
|
||||||
|
console.log($scope.triggerCredentialsModalTrigger)
|
||||||
|
console.log($scope.triggerCredentialsModalCounter)
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.askDeleteTrigger = function(trigger) {
|
$scope.askDeleteTrigger = function(trigger) {
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
/**
|
/**
|
||||||
* An element which displays a dialog with the public SSH keycredentials for a trigger.
|
* An element which displays a dialog with the public SSH keycredentials for a trigger.
|
||||||
*/
|
*/
|
||||||
angular.module('quay').directive('sshKeyDialog', function () {
|
angular.module('quay').directive('triggerCredentialsDialog', function () {
|
||||||
var directiveDefinitionObject = {
|
var directiveDefinitionObject = {
|
||||||
priority: 0,
|
priority: 0,
|
||||||
templateUrl: '/static/directives/ssh-key-dialog.html',
|
templateUrl: '/static/directives/trigger-credentials-dialog.html',
|
||||||
replace: false,
|
replace: false,
|
||||||
transclude: true,
|
transclude: true,
|
||||||
restrict: 'C',
|
restrict: 'C',
|
||||||
|
@ -15,10 +15,10 @@ angular.module('quay').directive('sshKeyDialog', function () {
|
||||||
controller: function($scope, $element) {
|
controller: function($scope, $element) {
|
||||||
var show = function() {
|
var show = function() {
|
||||||
if (!$scope.trigger) {
|
if (!$scope.trigger) {
|
||||||
$('#sshkeymodal').modal('hide');
|
$('#triggercredentialsmodal').modal('hide');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$('#sshkeymodal').modal({});
|
$('#triggercredentialsmodal').modal({});
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.$watch('trigger', show);
|
$scope.$watch('trigger', show);
|
Reference in a new issue