mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-29 12:08:24 +00:00
326 lines
10 KiB
Go
326 lines
10 KiB
Go
// Copyright 2017 HootSuite Media Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the License);
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an AS IS BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
// Modified hereafter by contributors to runatlantis/atlantis.
|
|
|
|
package server
|
|
|
|
import (
|
|
"html/template"
|
|
"io"
|
|
"time"
|
|
)
|
|
|
|
//go:generate pegomock generate -m --use-experimental-model-gen --package mocks -o mocks/mock_template_writer.go TemplateWriter
|
|
|
|
// TemplateWriter is an interface over html/template that's used to enable
|
|
// mocking.
|
|
type TemplateWriter interface {
|
|
// Execute applies a parsed template to the specified data object,
|
|
// writing the output to wr.
|
|
Execute(wr io.Writer, data interface{}) error
|
|
}
|
|
|
|
// LockIndexData holds the fields needed to display the index view for locks.
|
|
type LockIndexData struct {
|
|
LockPath string
|
|
RepoFullName string
|
|
PullNum int
|
|
Path string
|
|
Workspace string
|
|
Time time.Time
|
|
TimeFormatted string
|
|
}
|
|
|
|
// IndexData holds the data for rendering the index page
|
|
type IndexData struct {
|
|
Locks []LockIndexData
|
|
AtlantisVersion string
|
|
// CleanedBasePath is the path Atlantis is accessible at externally. If
|
|
// not using a path-based proxy, this will be an empty string. Never ends
|
|
// in a '/' (hence "cleaned").
|
|
CleanedBasePath string
|
|
}
|
|
|
|
var indexTemplate = template.Must(template.New("index.html.tmpl").Parse(`
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>atlantis</title>
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<script src="{{ .CleanedBasePath }}/static/js/jquery-3.5.1.min.js"></script>
|
|
<script>
|
|
$(document).ready(function () {
|
|
$("p.js-discard-success").toggle(document.URL.indexOf("discard=true") !== -1);
|
|
});
|
|
setTimeout(function() {
|
|
$("p.js-discard-success").fadeOut('slow');
|
|
}, 5000); // <-- time in milliseconds
|
|
</script>
|
|
<link rel="stylesheet" href="{{ .CleanedBasePath }}/static/css/normalize.css">
|
|
<link rel="stylesheet" href="{{ .CleanedBasePath }}/static/css/skeleton.css">
|
|
<link rel="stylesheet" href="{{ .CleanedBasePath }}/static/css/custom.css">
|
|
<link rel="icon" type="image/png" href="{{ .CleanedBasePath }}/static/images/atlantis-icon.png">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<section class="header">
|
|
<a title="atlantis" href="{{ .CleanedBasePath }}/"><img class="hero" src="{{ .CleanedBasePath }}/static/images/atlantis-icon_512.png"/></a>
|
|
<p class="title-heading">atlantis</p>
|
|
<p class="js-discard-success"><strong>Plan discarded and unlocked!</strong></p>
|
|
</section>
|
|
<nav class="navbar">
|
|
<div class="container">
|
|
</div>
|
|
</nav>
|
|
<div class="navbar-spacer"></div>
|
|
<br>
|
|
<section>
|
|
<p class="title-heading small"><strong>Locks</strong></p>
|
|
{{ if .Locks }}
|
|
{{ $basePath := .CleanedBasePath }}
|
|
{{ range .Locks }}
|
|
<a href="{{ $basePath }}{{.LockPath}}">
|
|
<div class="twelve columns button content lock-row">
|
|
<div class="list-title">{{.RepoFullName}} <span class="heading-font-size">#{{.PullNum}}</span> <code>{{.Path}}</code> <code>{{.Workspace}}</code></div>
|
|
<div class="list-status"><code>Locked</code></div>
|
|
<div class="list-timestamp"><span class="heading-font-size">{{.TimeFormatted}}</span></div>
|
|
</div>
|
|
</a>
|
|
{{ end }}
|
|
{{ else }}
|
|
<p class="placeholder">No locks found.</p>
|
|
{{ end }}
|
|
</section>
|
|
</div>
|
|
<footer>
|
|
v{{ .AtlantisVersion }}
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
`))
|
|
|
|
// LockDetailData holds the fields needed to display the lock detail view.
|
|
type LockDetailData struct {
|
|
LockKeyEncoded string
|
|
LockKey string
|
|
RepoOwner string
|
|
RepoName string
|
|
PullRequestLink string
|
|
LockedBy string
|
|
Workspace string
|
|
Time time.Time
|
|
AtlantisVersion string
|
|
// CleanedBasePath is the path Atlantis is accessible at externally. If
|
|
// not using a path-based proxy, this will be an empty string. Never ends
|
|
// in a '/' (hence "cleaned").
|
|
CleanedBasePath string
|
|
}
|
|
|
|
var lockTemplate = template.Must(template.New("lock.html.tmpl").Parse(`
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>atlantis</title>
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="{{ .CleanedBasePath }}/static/css/normalize.css">
|
|
<link rel="stylesheet" href="{{ .CleanedBasePath }}/static/css/skeleton.css">
|
|
<link rel="stylesheet" href="{{ .CleanedBasePath }}/static/css/custom.css">
|
|
<link rel="icon" type="image/png" href="{{ .CleanedBasePath }}/static/images/atlantis-icon.png">
|
|
<script src="{{ .CleanedBasePath }}/static/js/jquery-3.5.1.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<section class="header">
|
|
<a title="atlantis" href="{{ .CleanedBasePath }}/"><img class="hero" src="{{ .CleanedBasePath }}/static/images/atlantis-icon_512.png"/></a>
|
|
<p class="title-heading">atlantis</p>
|
|
<p class="title-heading"><strong>{{.LockKey}}</strong> <code>Locked</code></p>
|
|
</section>
|
|
<div class="navbar-spacer"></div>
|
|
<br>
|
|
<section>
|
|
<div class="eight columns">
|
|
<h6><code>Repo Owner</code>: <strong>{{.RepoOwner}}</strong></h6>
|
|
<h6><code>Repo Name</code>: <strong>{{.RepoName}}</strong></h6>
|
|
<h6><code>Pull Request Link</code>: <a href="{{.PullRequestLink}}" target="_blank"><strong>{{.PullRequestLink}}</strong></a></h6>
|
|
<h6><code>Locked By</code>: <strong>{{.LockedBy}}</strong></h6>
|
|
<h6><code>Workspace</code>: <strong>{{.Workspace}}</strong></h6>
|
|
<br>
|
|
</div>
|
|
<div class="four columns">
|
|
<a class="button button-default" id="discardPlanUnlock">Discard Plan & Unlock</a>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
<div id="discardMessageModal" class="modal">
|
|
<!-- Modal content -->
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<span class="close">×</span>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p><strong>Are you sure you want to discard the plan and unlock?</strong></p>
|
|
<input class="button-primary" id="discardYes" type="submit" value="Yes" data="{{.LockKeyEncoded}}">
|
|
<input type="button" class="cancel" value="Cancel">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<footer>
|
|
v{{ .AtlantisVersion }}
|
|
</footer>
|
|
<script>
|
|
// Get the modal
|
|
var modal = $("#discardMessageModal");
|
|
|
|
// Get the button that opens the modal
|
|
var btn = $("#discardPlanUnlock");
|
|
var btnDiscard = $("#discardYes");
|
|
var lockId = btnDiscard.attr('data');
|
|
|
|
// Get the <span> element that closes the modal
|
|
// using document.getElementsByClassName since jquery $("close") doesn't seem to work for btn click events
|
|
var span = document.getElementsByClassName("close")[0];
|
|
var cancelBtn = document.getElementsByClassName("cancel")[0];
|
|
|
|
// When the user clicks the button, open the modal
|
|
btn.click(function() {
|
|
modal.css("display", "block");
|
|
});
|
|
|
|
// When the user clicks on <span> (x), close the modal
|
|
span.onclick = function() {
|
|
modal.css("display", "none");
|
|
}
|
|
cancelBtn.onclick = function() {
|
|
modal.css("display", "none");
|
|
}
|
|
|
|
btnDiscard.click(function() {
|
|
$.ajax({
|
|
url: '{{ .CleanedBasePath }}/locks?id='+lockId,
|
|
type: 'DELETE',
|
|
success: function(result) {
|
|
window.location.replace("{{ .CleanedBasePath }}/?discard=true");
|
|
}
|
|
});
|
|
});
|
|
|
|
// When the user clicks anywhere outside of the modal, close it
|
|
window.onclick = function(event) {
|
|
if (event.target == modal) {
|
|
modal.css("display", "none");
|
|
}
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|
|
`))
|
|
|
|
// GithubSetupData holds the data for rendering the github app setup page
|
|
type GithubSetupData struct {
|
|
Target string
|
|
Manifest string
|
|
ID int64
|
|
Key string
|
|
WebhookSecret string
|
|
URL string
|
|
}
|
|
|
|
var githubAppSetupTemplate = template.Must(template.New("github-app.html.tmpl").Parse(`
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>atlantis</title>
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="/static/css/normalize.css">
|
|
<link rel="stylesheet" href="/static/css/skeleton.css">
|
|
<link rel="stylesheet" href="/static/css/custom.css">
|
|
<style>
|
|
|
|
form {
|
|
width: 100%;
|
|
}
|
|
|
|
form button {
|
|
float: right;
|
|
}
|
|
|
|
textarea {
|
|
width: 100%;
|
|
height: 300px;
|
|
font-family: monospace;
|
|
}
|
|
|
|
.config {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: baseline;
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
|
|
|
|
.config strong {
|
|
width: 15%;
|
|
}
|
|
|
|
pre {
|
|
background-color: #eee;
|
|
padding: .5em;
|
|
width: 80%;
|
|
}
|
|
</style>
|
|
<link rel="icon" type="image/png" href="/static/images/atlantis-icon.png">
|
|
<script src="/static/js/jquery-3.5.1.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<section class="header">
|
|
<a title="atlantis" href="/"><img class="hero" src="/static/images/atlantis-icon_512.png"/></a>
|
|
<p class="title-heading">atlantis</p>
|
|
|
|
<p class="js-discard-success"><strong>
|
|
{{ if .Target }}
|
|
Create a github app
|
|
{{ else }}
|
|
Github app created successfully!
|
|
{{ end }}
|
|
</strong></p>
|
|
</section>
|
|
<section>
|
|
{{ if .Target }}
|
|
<form action="{{ .Target }}" method="POST">
|
|
<textarea name="manifest">{{ .Manifest }}</textarea>
|
|
<button type="submit">Setup</button>
|
|
</form>
|
|
{{ else }}
|
|
<p>Visit <a href="{{ .URL }}/installations/new" target="_blank">{{ .URL }}/installations/new</a> to install the app for your user or organization, then <strong>update the following values</strong> in your config and <strong>restart Atlantis<strong>:</p>
|
|
|
|
<ul>
|
|
<li class="config"><strong>gh-app-id:</strong> <pre>{{ .ID }}</pre></li>
|
|
<li class="config"><strong>gh-app-key-file:</strong> <pre>{{ .Key }}</pre></li>
|
|
<li class="config"><strong>gh-webhook-secret:</strong> <pre>{{ .WebhookSecret }}</pre></li>
|
|
</ul>
|
|
{{ end }}
|
|
</section>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
`))
|