Compare commits
No commits in common. "51f9be14862134413a5e14241f280d2e0a792295" and "9719eefed40a5954ed60db1cef76eb47f62d892b" have entirely different histories.
51f9be1486
...
9719eefed4
12 changed files with 12 additions and 109 deletions
|
@ -90,9 +90,8 @@ func init() {
|
||||||
appCmd.AddCommand(appAddCmd)
|
appCmd.AddCommand(appAddCmd)
|
||||||
|
|
||||||
appAddCmd.Flags().StringVarP(&appName, "name", "n", "", "Name to represent the app")
|
appAddCmd.Flags().StringVarP(&appName, "name", "n", "", "Name to represent the app")
|
||||||
appAddCmd.Flags().StringVarP(&appID, "id", "i", "", "ID to identify the app in the storage")
|
appAddCmd.Flags().StringVarP(&appClientID, "id", "i", "", "ID to identify the app in the storage")
|
||||||
appAddCmd.Flags().StringVarP(&appClientID, "client-id", "", "", "OpenIDConnect client secret")
|
appAddCmd.Flags().StringVarP(&appClientSecret, "secret", "s", "", "OpenIDConnect client secret")
|
||||||
appAddCmd.Flags().StringVarP(&appClientSecret, "client-secret", "", "", "OpenIDConnect client secret")
|
|
||||||
appAddCmd.Flags().StringSliceVarP(&appRedirectURIs, "redirect-uri", "r", []string{}, "Allowed redirect URI")
|
appAddCmd.Flags().StringSliceVarP(&appRedirectURIs, "redirect-uri", "r", []string{}, "Allowed redirect URI")
|
||||||
|
|
||||||
appAddCmd.Flags().BoolVar(&appInteractive, "interactive", false, "Set the client ID and secret in an interactive way")
|
appAddCmd.Flags().BoolVar(&appInteractive, "interactive", false, "Set the client ID and secret in an interactive way")
|
||||||
|
|
|
@ -59,7 +59,7 @@ const (
|
||||||
defaultServerSocket = ""
|
defaultServerSocket = ""
|
||||||
defaultServerStaticDir = "./"
|
defaultServerStaticDir = "./"
|
||||||
|
|
||||||
defaultIssuer = "http://localhost:5000"
|
defaultIssuer = "locahost"
|
||||||
|
|
||||||
defaultStorageType = Memory
|
defaultStorageType = Memory
|
||||||
defaultStorageFile = "./polyculeconnect.db"
|
defaultStorageFile = "./polyculeconnect.db"
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
let approvalForm = document.getElementById("approvalform");
|
|
||||||
|
|
||||||
approvalForm.addEventListener("submit", (e) => {
|
|
||||||
handleSuccess();
|
|
||||||
});
|
|
|
@ -1,17 +0,0 @@
|
||||||
const STATE_SUCCESS = "SUCCESS";
|
|
||||||
const STATE_IN_PROGRESS = "IN PROGRESS"
|
|
||||||
const STATE_EMPTY = "NO STATE"
|
|
||||||
|
|
||||||
const stateKey = "appState"
|
|
||||||
|
|
||||||
function getState() {
|
|
||||||
state = localStorage.getItem(stateKey);
|
|
||||||
if (state === null) {
|
|
||||||
return STATE_EMPTY;
|
|
||||||
}
|
|
||||||
return state;
|
|
||||||
}
|
|
||||||
|
|
||||||
function setState(value) {
|
|
||||||
localStorage.setItem(stateKey, value);
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
let backButton = document.getElementById("error-back");
|
|
||||||
|
|
||||||
backButton.addEventListener("click", (e) => {
|
|
||||||
e.preventDefault();
|
|
||||||
goBackToLogin();
|
|
||||||
});
|
|
|
@ -1,11 +0,0 @@
|
||||||
let connectorForm = document.getElementById("connectorform");
|
|
||||||
|
|
||||||
connectorForm.addEventListener("submit", (e) => {
|
|
||||||
e.preventDefault();
|
|
||||||
let connectorName = document.getElementById("cname").value;
|
|
||||||
let rememberMe = document.getElementById("remember-me").checked;
|
|
||||||
if (rememberMe === true) {
|
|
||||||
localStorage.setItem(connectorNameKey, connectorName);
|
|
||||||
}
|
|
||||||
chooseConnector(connectorName);
|
|
||||||
});
|
|
|
@ -1,47 +1,11 @@
|
||||||
const connectorNameKey = "connectorName";
|
let connectorForm = document.getElementById("connectorform");
|
||||||
const connectorIDParam = "connector_id";
|
|
||||||
|
|
||||||
const urlParams = new URLSearchParams(window.location.search);
|
connectorForm.addEventListener("submit", (e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
function chooseConnector(connectorName) {
|
|
||||||
let nextURL = new URL(window.location.href);
|
let nextURL = new URL(window.location.href);
|
||||||
nextURL.searchParams.append(connectorIDParam, connectorName);
|
let connectorName = document.getElementById("cname").value;
|
||||||
setState(STATE_IN_PROGRESS);
|
nextURL.searchParams.append("connector_id", connectorName)
|
||||||
|
|
||||||
window.location.href = nextURL;
|
window.location.href = nextURL;
|
||||||
}
|
});
|
||||||
|
|
||||||
// Clean the cache in case previous authentication didn't succeed
|
|
||||||
// in order not to get stuck in a login loop
|
|
||||||
function handleFailedState() {
|
|
||||||
if (getState() !== STATE_SUCCESS) {
|
|
||||||
localStorage.removeItem(connectorNameKey);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add the connector name to local storage in case the auth succeeded
|
|
||||||
// and the remember-me box was checked
|
|
||||||
function handleSuccess(connectorName) {
|
|
||||||
setState(STATE_SUCCESS);
|
|
||||||
if (localStorage.getItem(rememberMeKey)) {
|
|
||||||
localStorage.removeItem(rememberMeKey);
|
|
||||||
localStorage.setItem(connectorNameKey, connectorName);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleLoginPage() {
|
|
||||||
handleFailedState();
|
|
||||||
let connectorName = localStorage.getItem(connectorNameKey);
|
|
||||||
if (getState() === STATE_SUCCESS && connectorName != null) {
|
|
||||||
chooseConnector(connectorName);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function goBackToLogin() {
|
|
||||||
let nextURL = new URL(window.location.href);
|
|
||||||
nextURL.searchParams.delete(connectorIDParam);
|
|
||||||
window.location.href = nextURL;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (window.location.pathname === "/auth" && !urlParams.has(connectorIDParam)) {
|
|
||||||
handleLoginPage();
|
|
||||||
}
|
|
||||||
|
|
|
@ -76,15 +76,6 @@ body {
|
||||||
color: var(--subtext-1);
|
color: var(--subtext-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-checkbox {
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-checkbox-label {
|
|
||||||
color: var(--subtext-0);
|
|
||||||
font-size: small;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button {
|
.button {
|
||||||
border: none;
|
border: none;
|
||||||
color: var(--mantle);
|
color: var(--mantle);
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
{{ template "header.html" . }}
|
{{ template "header.html" . }}
|
||||||
|
|
||||||
<script src="/static/scripts/approval.js" defer></script>
|
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="container-content">
|
<div class="container-content">
|
||||||
{{ if .Scopes }}
|
{{ if .Scopes }}
|
||||||
|
@ -16,7 +14,7 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-buttons" id="approvalform">
|
<div class="form-buttons">
|
||||||
<form method="post" class="container-form">
|
<form method="post" class="container-form">
|
||||||
<input type="hidden" name="req" value="{{ .AuthReqID }}" />
|
<input type="hidden" name="req" value="{{ .AuthReqID }}" />
|
||||||
<input type="hidden" name="approval" value="approve">
|
<input type="hidden" name="approval" value="approve">
|
||||||
|
|
|
@ -1,10 +1,7 @@
|
||||||
{{ template "header.html" . }}
|
{{ template "header.html" . }}
|
||||||
|
|
||||||
<script src="/static/scripts/error.js" defer></script>
|
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="container-content">
|
<div class="container-content">
|
||||||
<button id="error-back" class="button button-cancel">Back</button>
|
|
||||||
<h2>{{ .ErrType }}</h2>
|
<h2>{{ .ErrType }}</h2>
|
||||||
<p>{{ .ErrMsg }}</p>
|
<p>{{ .ErrMsg }}</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -16,9 +16,6 @@
|
||||||
<link rel="mask-icon" href="/static/icons/safari-pinned-tab.svg" color="#5bbad5">
|
<link rel="mask-icon" href="/static/icons/safari-pinned-tab.svg" color="#5bbad5">
|
||||||
<meta name="msapplication-TileColor" content="#9f00a7">
|
<meta name="msapplication-TileColor" content="#9f00a7">
|
||||||
<meta name="theme-color" content="#ffffff">
|
<meta name="theme-color" content="#ffffff">
|
||||||
<script src="/static/scripts/appstate.js"></script>
|
|
||||||
<script src="/static/scripts/index.js"></script>
|
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{{ template "header.html" . }}
|
{{ template "header.html" . }}
|
||||||
|
|
||||||
<script src="/static/scripts/form.js" defer></script>
|
<script src="/static/scripts/index.js" defer></script>
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="container-content">
|
<div class="container-content">
|
||||||
|
@ -12,10 +12,6 @@
|
||||||
<div class="form-elements">
|
<div class="form-elements">
|
||||||
<input type="text" id="cname" name="connector_id" placeholder="Service name" required
|
<input type="text" id="cname" name="connector_id" placeholder="Service name" required
|
||||||
class="form-input">
|
class="form-input">
|
||||||
<div>
|
|
||||||
<input type="checkbox" id="remember-me" name="remember_me" class="form-checkbox">
|
|
||||||
<label for="remember-me" class="form-checkbox-label">Remember my choice</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="form-buttons">
|
<div class="form-buttons">
|
||||||
<input type="submit" class="button button-accept" value="Continue">
|
<input type="submit" class="button button-accept" value="Continue">
|
||||||
|
|
Loading…
Reference in a new issue