491 lines
14 KiB
React
491 lines
14 KiB
React
/* eslint-disable react/no-multi-comp */
|
|
import React, { useState } from "react";
|
|
import { makeStyles } from "@material-ui/styles";
|
|
import { useInterval } from "react-powerhooks";
|
|
|
|
import {
|
|
CircularProgress,
|
|
TextField,
|
|
Button,
|
|
Paper,
|
|
Typography,
|
|
} from "@material-ui/core";
|
|
import { useTheme } from "@material-ui/core/styles";
|
|
|
|
const hrefStyle = {
|
|
color: "white",
|
|
textDecoration: "none",
|
|
};
|
|
|
|
const bodyDivStyle = {
|
|
margin: "auto",
|
|
marginTop: 150,
|
|
width: "500px",
|
|
};
|
|
|
|
const useStyles = makeStyles({
|
|
notchedOutline: {
|
|
borderColor: "#f85a3e !important",
|
|
},
|
|
});
|
|
|
|
const LoginDialog = (props) => {
|
|
const theme = useTheme();
|
|
|
|
const {
|
|
globalUrl,
|
|
isLoaded,
|
|
isLoggedIn,
|
|
setIsLoggedIn,
|
|
setCookie,
|
|
register,
|
|
checkLogin,
|
|
} = props;
|
|
const [username, setUsername] = useState("");
|
|
const [password, setPassword] = useState("");
|
|
const [firstRequest, setFirstRequest] = useState(true);
|
|
const [loginLoading, setLoginLoading] = useState(false);
|
|
const [loginViewLoading, setLoginViewLoading] = useState(false);
|
|
const [ssoUrl, setSSOUrl] = useState("");
|
|
|
|
const [MFAField, setMFAField] = useState(false);
|
|
const [MFAValue, setMFAValue] = useState("");
|
|
|
|
// Used to swap from login to register. True = login, false = register
|
|
|
|
const classes = useStyles();
|
|
// Error messages etc
|
|
const [loginInfo, setLoginInfo] = useState("");
|
|
|
|
const handleValidateForm = () => {
|
|
return username.length > 1 && password.length > 1;
|
|
};
|
|
|
|
if (isLoggedIn === true) {
|
|
window.location.pathname = "/workflows";
|
|
}
|
|
|
|
const checkAdmin = () => {
|
|
const url = globalUrl + "/api/v1/checkusers";
|
|
fetch(url, {
|
|
method: "GET",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
})
|
|
.then((response) =>
|
|
response.json().then((responseJson) => {
|
|
if (responseJson["success"] === false) {
|
|
setLoginInfo(responseJson["reason"]);
|
|
} else {
|
|
if (
|
|
responseJson.sso_url !== undefined &&
|
|
responseJson.sso_url !== null
|
|
) {
|
|
setSSOUrl(responseJson.sso_url);
|
|
}
|
|
|
|
if (loginViewLoading) {
|
|
setLoginViewLoading(false);
|
|
checkLogin();
|
|
stop();
|
|
|
|
if (
|
|
responseJson.reason !== undefined &&
|
|
responseJson.reason !== null
|
|
) {
|
|
setLoginInfo(responseJson.reason);
|
|
}
|
|
}
|
|
|
|
if (responseJson.reason === "stay") {
|
|
window.location.pathname = "/adminsetup";
|
|
}
|
|
}
|
|
})
|
|
)
|
|
.catch((error) => {
|
|
if (!loginViewLoading) {
|
|
setLoginViewLoading(true);
|
|
start();
|
|
}
|
|
});
|
|
};
|
|
|
|
const { start, stop } = useInterval({
|
|
duration: 3000,
|
|
startImmediate: false,
|
|
callback: () => {
|
|
checkAdmin();
|
|
},
|
|
});
|
|
|
|
if (firstRequest) {
|
|
setFirstRequest(false);
|
|
checkAdmin();
|
|
}
|
|
|
|
const onSubmit = (e) => {
|
|
setLoginLoading(true);
|
|
e.preventDefault();
|
|
setLoginInfo("");
|
|
// FIXME - add some check here ROFL
|
|
|
|
// Just use this one?
|
|
var data = { username: username, password: password };
|
|
if (MFAValue !== undefined && MFAValue !== null && MFAValue.length > 0) {
|
|
data["mfa_code"] = MFAValue;
|
|
}
|
|
|
|
var baseurl = globalUrl;
|
|
if (register) {
|
|
var url = baseurl + "/api/v1/users/login";
|
|
fetch(url, {
|
|
mode: "cors",
|
|
method: "POST",
|
|
body: JSON.stringify(data),
|
|
credentials: "include",
|
|
crossDomain: true,
|
|
withCredentials: true,
|
|
headers: {
|
|
"Content-Type": "application/json; charset=utf-8",
|
|
},
|
|
})
|
|
.then((response) =>
|
|
response.json().then((responseJson) => {
|
|
setLoginLoading(false);
|
|
if (responseJson["success"] === false) {
|
|
setLoginInfo(responseJson["reason"]);
|
|
} else {
|
|
if (responseJson["reason"] === "MFA_REDIRECT") {
|
|
setLoginInfo(
|
|
"MFA required. Please the 6-digit code from your authenticator"
|
|
);
|
|
setMFAField(true);
|
|
return;
|
|
}
|
|
|
|
setLoginInfo("Successful login, rerouting");
|
|
for (var key in responseJson["cookies"]) {
|
|
setCookie(
|
|
responseJson["cookies"][key].key,
|
|
responseJson["cookies"][key].value,
|
|
{ path: "/" }
|
|
);
|
|
}
|
|
|
|
setIsLoggedIn(true);
|
|
|
|
window.location.pathname = "/workflows";
|
|
}
|
|
})
|
|
)
|
|
.catch((error) => {
|
|
setLoginLoading(false);
|
|
setLoginInfo("Error logging in: " + error);
|
|
});
|
|
} else {
|
|
url = baseurl + "/api/v1/users/register";
|
|
fetch(url, {
|
|
method: "POST",
|
|
body: JSON.stringify(data),
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
})
|
|
.then((response) =>
|
|
response.json().then((responseJson) => {
|
|
if (responseJson["success"] === false) {
|
|
setLoginInfo(responseJson["reason"]);
|
|
} else {
|
|
setLoginInfo("Successful register!");
|
|
}
|
|
})
|
|
)
|
|
.catch((error) => {
|
|
setLoginInfo("Error in from backend: ", error);
|
|
});
|
|
}
|
|
};
|
|
|
|
const onChangeUser = (e) => {
|
|
setUsername(e.target.value);
|
|
};
|
|
|
|
const onChangePass = (e) => {
|
|
setPassword(e.target.value);
|
|
};
|
|
|
|
//const onClickRegister = () => {
|
|
// if (props.location.pathname === "/login") {
|
|
// window.location.pathname = "/register"
|
|
// } else {
|
|
// window.location.pathname = "/login"
|
|
// }
|
|
|
|
// setLoginCheck(!register)
|
|
//}
|
|
|
|
//var loginChange = register ? (<div><p onClick={setLoginCheck(false)}>Want to register? Click here.</p></div>) : (<div><p onClick={setLoginCheck(true)}>Go back to login? Click here.</p></div>);
|
|
var formtitle = register ? <div>Login</div> : <div>Register</div>;
|
|
const imgsize = 100;
|
|
const basedata = (
|
|
<div style={bodyDivStyle}>
|
|
<Paper
|
|
style={{
|
|
paddingLeft: "30px",
|
|
paddingRight: "30px",
|
|
paddingBottom: "30px",
|
|
paddingTop: "30px",
|
|
position: "relative",
|
|
backgroundColor: theme.palette.surfaceColor,
|
|
}}
|
|
>
|
|
<div
|
|
style={{
|
|
position: "absolute",
|
|
top: -imgsize / 2 - 10,
|
|
left: 250 - imgsize / 2,
|
|
height: imgsize,
|
|
width: imgsize,
|
|
}}
|
|
>
|
|
<img
|
|
src="images/Shuffle_logo.png"
|
|
style={{
|
|
height: imgsize + 10,
|
|
width: imgsize + 10,
|
|
border: "2px solid rgba(255,255,255,0.6)",
|
|
borderRadius: imgsize,
|
|
}}
|
|
/>
|
|
</div>
|
|
{loginViewLoading ? (
|
|
<div style={{ textAlign: "center", marginTop: 50 }}>
|
|
<Typography
|
|
variant="body2"
|
|
style={{ marginBottom: 20, color: "white" }}
|
|
>
|
|
Waiting for the Shuffle database to become available. This may
|
|
take up to a minute.
|
|
</Typography>
|
|
|
|
{loginInfo === undefined ||
|
|
loginInfo === null ||
|
|
loginInfo.length === 0 ? null : (
|
|
<div style={{ marginTop: "10px" }}>Response: {loginInfo}</div>
|
|
)}
|
|
<CircularProgress color="secondary" style={{ color: "white" }} />
|
|
|
|
<Paper
|
|
style={{
|
|
paddingLeft: "30px",
|
|
paddingRight: "30px",
|
|
paddingBottom: "30px",
|
|
paddingTop: "30px",
|
|
position: "relative",
|
|
backgroundColor: theme.palette.inputColor,
|
|
textAlign: "left",
|
|
marginTop: 15,
|
|
}}
|
|
>
|
|
<Typography
|
|
variant="body2"
|
|
style={{ marginBottom: 20, color: "white" }}
|
|
>
|
|
<b>
|
|
Are you sure Shuffle is{" "}
|
|
<a
|
|
rel="norefferer"
|
|
target="_blank"
|
|
href="https://github.com/frikky/Shuffle/blob/master/.github/install-guide.md"
|
|
style={{ textDecoration: "none", color: "#f86a3e" }}
|
|
>
|
|
installed correctly
|
|
</a>
|
|
?
|
|
</b>
|
|
</Typography>
|
|
<Typography
|
|
variant="body2"
|
|
style={{ marginBottom: 20, color: "white" }}
|
|
>
|
|
<b>1.</b> Make sure shuffle-database folder has correct access:{" "}
|
|
<br />
|
|
<br />
|
|
sudo chown 1000:1000 -R shuffle-database
|
|
</Typography>
|
|
|
|
<Typography
|
|
variant="body2"
|
|
style={{ marginBottom: 20, color: "white" }}
|
|
>
|
|
<b>2</b>. Restart docker-compose:
|
|
<br />
|
|
<br />
|
|
sudo docker-compose restart
|
|
</Typography>
|
|
</Paper>
|
|
<Typography
|
|
variant="body2"
|
|
style={{ marginBottom: 10, color: "white", marginTop: 20 }}
|
|
>
|
|
Need help?{" "}
|
|
<a
|
|
rel="norefferer"
|
|
target="_blank"
|
|
href="https://discord.gg/B2CBzUm"
|
|
style={{ textDecoration: "none", color: "#f86a3e" }}
|
|
>
|
|
Join the Discord!
|
|
</a>
|
|
</Typography>
|
|
</div>
|
|
) : (
|
|
<form
|
|
onSubmit={onSubmit}
|
|
style={{ margin: "15px 15px 15px 15px", color: "white" }}
|
|
>
|
|
<h2>{formtitle}</h2>
|
|
Username
|
|
<div>
|
|
<TextField
|
|
color="primary"
|
|
style={{
|
|
backgroundColor: theme.palette.inputColor,
|
|
marginTop: 5,
|
|
}}
|
|
autoFocus
|
|
InputProps={{
|
|
classes: {
|
|
notchedOutline: classes.notchedOutline,
|
|
},
|
|
style: {
|
|
height: "50px",
|
|
color: "white",
|
|
fontSize: "1em",
|
|
},
|
|
}}
|
|
required
|
|
fullWidth={true}
|
|
autoComplete="username"
|
|
placeholder="username@example.com"
|
|
id="emailfield"
|
|
margin="normal"
|
|
variant="outlined"
|
|
onChange={onChangeUser}
|
|
/>
|
|
</div>
|
|
Password
|
|
<div>
|
|
<TextField
|
|
color="primary"
|
|
style={{
|
|
backgroundColor: theme.palette.inputColor,
|
|
marginTop: 5,
|
|
}}
|
|
InputProps={{
|
|
classes: {
|
|
notchedOutline: classes.notchedOutline,
|
|
},
|
|
style: {
|
|
height: "50px",
|
|
color: "white",
|
|
fontSize: "1em",
|
|
},
|
|
}}
|
|
required
|
|
id="outlined-password-input"
|
|
fullWidth={true}
|
|
type="password"
|
|
autoComplete="current-password"
|
|
placeholder="**********"
|
|
margin="normal"
|
|
variant="outlined"
|
|
onChange={onChangePass}
|
|
/>
|
|
</div>
|
|
{MFAField === true ? (
|
|
<div style={{ marginTop: 15 }}>
|
|
5-factor code
|
|
<TextField
|
|
color="primary"
|
|
style={{
|
|
backgroundColor: theme.palette.inputColor,
|
|
marginTop: 5,
|
|
}}
|
|
InputProps={{
|
|
classes: {
|
|
notchedOutline: classes.notchedOutline,
|
|
},
|
|
style: {
|
|
height: "50px",
|
|
color: "white",
|
|
fontSize: "1em",
|
|
},
|
|
}}
|
|
required
|
|
id="outlined-password-input"
|
|
fullWidth={true}
|
|
type="text"
|
|
placeholder="6-digit code"
|
|
margin="normal"
|
|
variant="outlined"
|
|
onChange={(event) => {
|
|
setMFAValue(event.target.value);
|
|
}}
|
|
/>
|
|
</div>
|
|
) : null}
|
|
<div style={{ display: "flex", marginTop: "15px" }}>
|
|
<Button
|
|
color="primary"
|
|
variant="contained"
|
|
type="submit"
|
|
style={{ flex: "1" }}
|
|
disabled={!handleValidateForm() || loginLoading}
|
|
>
|
|
{loginLoading ? (
|
|
<CircularProgress
|
|
color="secondary"
|
|
style={{ color: "white" }}
|
|
/>
|
|
) : (
|
|
"SUBMIT"
|
|
)}
|
|
</Button>
|
|
</div>
|
|
<div style={{ marginTop: "10px" }}>{loginInfo}</div>
|
|
{ssoUrl !== undefined && ssoUrl !== null && ssoUrl.length > 0 ? (
|
|
<div>
|
|
<Typography style={{ textAlign: "center" }}>Or</Typography>
|
|
<div style={{ textAlign: "center", margin: 10 }}>
|
|
<Button
|
|
fullWidth
|
|
color="secondary"
|
|
variant="outlined"
|
|
type="button"
|
|
style={{ flex: "1", marginTop: 5 }}
|
|
onClick={() => {
|
|
console.log("CLICK");
|
|
window.location = ssoUrl;
|
|
}}
|
|
>
|
|
Use SSO
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
) : null}
|
|
</form>
|
|
)}
|
|
</Paper>
|
|
</div>
|
|
);
|
|
|
|
const loadedCheck = isLoaded ? <div>{basedata}</div> : <div></div>;
|
|
|
|
return <div>{loadedCheck}</div>;
|
|
};
|
|
|
|
export default LoginDialog;
|