Added instance name validation bypass
Signed-off-by: Marquis Kurt <software@marquiskurt.net>
This commit is contained in:
parent
d3729ee76f
commit
a94180b15c
|
@ -20,7 +20,7 @@ import {
|
|||
DialogContent,
|
||||
DialogContentText,
|
||||
DialogActions,
|
||||
TextField,
|
||||
TextField
|
||||
} from "@material-ui/core";
|
||||
import { withSnackbar } from "notistack";
|
||||
|
||||
|
@ -53,7 +53,7 @@ class Blocked extends Component<any, IBlockedState> {
|
|||
viewIsLoading: true,
|
||||
viewDidLoad: false,
|
||||
viewDidError: false,
|
||||
blockTextField: "",
|
||||
blockTextField: ""
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -64,14 +64,14 @@ class Blocked extends Component<any, IBlockedState> {
|
|||
this.setState({
|
||||
blockedServers: resp.data,
|
||||
viewDidLoad: true,
|
||||
viewIsLoading: false,
|
||||
viewIsLoading: false
|
||||
});
|
||||
})
|
||||
.catch((err: Error) => {
|
||||
console.error(err);
|
||||
this.setState({
|
||||
viewIsLoading: false,
|
||||
viewDidError: true,
|
||||
viewDidError: true
|
||||
});
|
||||
});
|
||||
}
|
||||
|
@ -90,7 +90,7 @@ class Blocked extends Component<any, IBlockedState> {
|
|||
this.setState({
|
||||
blockTextField: "",
|
||||
addBlockOpen: false,
|
||||
blockedServers,
|
||||
blockedServers
|
||||
});
|
||||
});
|
||||
}
|
||||
|
@ -105,7 +105,7 @@ class Blocked extends Component<any, IBlockedState> {
|
|||
blockedServers.splice(blockedServers.indexOf(domain), 1);
|
||||
}
|
||||
this.setState({
|
||||
blockedServers,
|
||||
blockedServers
|
||||
});
|
||||
})
|
||||
.catch((err: Error) => {
|
||||
|
@ -118,7 +118,7 @@ class Blocked extends Component<any, IBlockedState> {
|
|||
|
||||
updateTextField(value: string) {
|
||||
this.setState({
|
||||
blockTextField: value,
|
||||
blockTextField: value
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -140,7 +140,7 @@ class Blocked extends Component<any, IBlockedState> {
|
|||
fullWidth
|
||||
value={this.state.blockTextField}
|
||||
placeholder="mastodon.online"
|
||||
onChange={(e) => this.updateTextField(e.target.value)}
|
||||
onChange={e => this.updateTextField(e.target.value)}
|
||||
></TextField>
|
||||
</DialogContent>
|
||||
<DialogActions>
|
||||
|
@ -153,9 +153,7 @@ class Blocked extends Component<any, IBlockedState> {
|
|||
</Button>
|
||||
<Button
|
||||
color="primary"
|
||||
onClick={(e) =>
|
||||
this.addBlock(this.state.blockTextField)
|
||||
}
|
||||
onClick={e => this.addBlock(this.state.blockTextField)}
|
||||
>
|
||||
Add
|
||||
</Button>
|
||||
|
|
|
@ -19,7 +19,7 @@ import {
|
|||
ListItemAvatar,
|
||||
ListItemSecondaryAction,
|
||||
IconButton,
|
||||
InputAdornment,
|
||||
InputAdornment
|
||||
} from "@material-ui/core";
|
||||
import { styles } from "./WelcomePage.styles";
|
||||
import Mastodon from "megalodon";
|
||||
|
@ -28,7 +28,7 @@ import {
|
|||
createHyperspaceApp,
|
||||
getRedirectAddress,
|
||||
inDisallowedDomains,
|
||||
instancesBearerKey,
|
||||
instancesBearerKey
|
||||
} from "../utilities/login";
|
||||
import { parseUrl } from "query-string";
|
||||
import { getConfig } from "../utilities/settings";
|
||||
|
@ -39,7 +39,7 @@ import { Config } from "../types/Config";
|
|||
import {
|
||||
getAccountRegistry,
|
||||
loginWithAccount,
|
||||
removeAccountFromRegistry,
|
||||
removeAccountFromRegistry
|
||||
} from "../utilities/accounts";
|
||||
import { MultiAccount } from "../types/Account";
|
||||
|
||||
|
@ -210,7 +210,7 @@ class WelcomePage extends Component<IWelcomeProps, IWelcomeState> {
|
|||
authCode: "",
|
||||
emergencyMode: false,
|
||||
version: "",
|
||||
willAddAccount: false,
|
||||
willAddAccount: false
|
||||
};
|
||||
|
||||
// Read the configuration data and update the state
|
||||
|
@ -253,7 +253,7 @@ class WelcomePage extends Component<IWelcomeProps, IWelcomeState> {
|
|||
? config.location
|
||||
: `https://${window.location.host}`,
|
||||
redirectAddressIsDynamic: config.location === "dynamic",
|
||||
version: config.version,
|
||||
version: config.version
|
||||
});
|
||||
}
|
||||
})
|
||||
|
@ -274,7 +274,7 @@ class WelcomePage extends Component<IWelcomeProps, IWelcomeState> {
|
|||
if (localStorage.getItem("login")) {
|
||||
this.getSavedSession();
|
||||
this.setState({
|
||||
foundSavedLogin: true,
|
||||
foundSavedLogin: true
|
||||
});
|
||||
this.checkForToken();
|
||||
}
|
||||
|
@ -334,7 +334,7 @@ class WelcomePage extends Component<IWelcomeProps, IWelcomeState> {
|
|||
clientId: session.clientId,
|
||||
clientSecret: session.clientSecret,
|
||||
authUrl: session.authUrl,
|
||||
emergencyMode: session.emergency,
|
||||
emergencyMode: session.emergency
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -392,8 +392,8 @@ class WelcomePage extends Component<IWelcomeProps, IWelcomeState> {
|
|||
this.setState({ user: newUser });
|
||||
return "https://" + newUser.split("@")[1];
|
||||
} else {
|
||||
let newUser = `${user}@${this.state.registerBase ?? "mastodon.online"
|
||||
}`;
|
||||
let newUser = `${user}@${this.state.registerBase ??
|
||||
"mastodon.online"}`;
|
||||
this.setState({ user: newUser });
|
||||
return (
|
||||
"https://" + (this.state.registerBase ?? "mastodon.online")
|
||||
|
@ -403,8 +403,8 @@ class WelcomePage extends Component<IWelcomeProps, IWelcomeState> {
|
|||
|
||||
// Otherwise, treat them as if they're from the server
|
||||
else {
|
||||
let newUser = `${user}@${this.state.registerBase ?? "mastodon.online"
|
||||
}`;
|
||||
let newUser = `${user}@${this.state.registerBase ??
|
||||
"mastodon.online"}`;
|
||||
this.setState({ user: newUser });
|
||||
return "https://" + (this.state.registerBase ?? "mastodon.online");
|
||||
}
|
||||
|
@ -413,10 +413,11 @@ class WelcomePage extends Component<IWelcomeProps, IWelcomeState> {
|
|||
/**
|
||||
* Check the user string for any errors and then create a client with an
|
||||
* ID and secret to start the authorization process.
|
||||
* @param bypassChecks Whether to bypass the checks in place.
|
||||
*/
|
||||
startLogin() {
|
||||
startLogin(bypassChecks: boolean = false) {
|
||||
// Check if we have errored
|
||||
let error = this.checkForErrors(this.state.user);
|
||||
let error = this.checkForErrors(this.state.user, bypassChecks);
|
||||
|
||||
// If we didn't, create the Hyperspace app to register onto that Mastodon
|
||||
// server.
|
||||
|
@ -439,7 +440,7 @@ class WelcomePage extends Component<IWelcomeProps, IWelcomeState> {
|
|||
clientId: resp.clientId,
|
||||
clientSecret: resp.clientSecret,
|
||||
authUrl: resp.url,
|
||||
emergency: false,
|
||||
emergency: false
|
||||
};
|
||||
localStorage.setItem(
|
||||
"login",
|
||||
|
@ -451,8 +452,17 @@ class WelcomePage extends Component<IWelcomeProps, IWelcomeState> {
|
|||
clientId: resp.clientId,
|
||||
clientSecret: resp.clientSecret,
|
||||
authUrl: resp.url,
|
||||
proceedToGetCode: true,
|
||||
proceedToGetCode: true
|
||||
});
|
||||
})
|
||||
.catch((err: Error) => {
|
||||
this.props.enqueueSnackbar(
|
||||
`Failed to register app at ${baseurl.replace(
|
||||
"https://",
|
||||
""
|
||||
)}`
|
||||
);
|
||||
console.error(err);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
@ -475,7 +485,7 @@ class WelcomePage extends Component<IWelcomeProps, IWelcomeState> {
|
|||
Mastodon.registerApp(
|
||||
this.state.brandName ?? "Hyperspace",
|
||||
{
|
||||
scopes: scopes,
|
||||
scopes: scopes
|
||||
},
|
||||
baseurl
|
||||
)
|
||||
|
@ -485,7 +495,7 @@ class WelcomePage extends Component<IWelcomeProps, IWelcomeState> {
|
|||
clientId: appData.clientId,
|
||||
clientSecret: appData.clientSecret,
|
||||
authUrl: appData.url,
|
||||
emergency: true,
|
||||
emergency: true
|
||||
};
|
||||
localStorage.setItem(
|
||||
"login",
|
||||
|
@ -496,7 +506,7 @@ class WelcomePage extends Component<IWelcomeProps, IWelcomeState> {
|
|||
this.setState({
|
||||
clientId: appData.clientId,
|
||||
clientSecret: appData.clientSecret,
|
||||
authUrl: appData.url,
|
||||
authUrl: appData.url
|
||||
});
|
||||
});
|
||||
}
|
||||
|
@ -528,15 +538,21 @@ class WelcomePage extends Component<IWelcomeProps, IWelcomeState> {
|
|||
clientSecret: session.clientSecret,
|
||||
authUrl: session.authUrl,
|
||||
emergencyMode: session.emergency,
|
||||
proceedToGetCode: true,
|
||||
proceedToGetCode: true
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Check the user input string for any possible errors
|
||||
* @param username The username to read and check for errors
|
||||
* @param bypassesInstanceNameCheck Whether to bypass the instance name validation process. Defaults to false.
|
||||
* @return Whether an error has occured in the validation.
|
||||
*/
|
||||
checkForErrors(username: string): boolean {
|
||||
checkForErrors(
|
||||
username: string,
|
||||
bypassesInstanceNameCheck: boolean = false
|
||||
): boolean {
|
||||
let userInputError = false;
|
||||
let userInputErrorMessage = "";
|
||||
|
||||
|
@ -555,10 +571,13 @@ class WelcomePage extends Component<IWelcomeProps, IWelcomeState> {
|
|||
if (inDisallowedDomains(baseUrl)) {
|
||||
this.setState({
|
||||
userInputError: true,
|
||||
userInputErrorMessage: `Signing in with an account from ${baseUrl} isn't supported.`,
|
||||
userInputErrorMessage: `Signing in with an account from ${baseUrl} isn't supported.`
|
||||
});
|
||||
return true;
|
||||
} else {
|
||||
if (bypassesInstanceNameCheck) {
|
||||
return false;
|
||||
}
|
||||
// Are we unable to ping the server?
|
||||
axios
|
||||
.get(
|
||||
|
@ -566,17 +585,17 @@ class WelcomePage extends Component<IWelcomeProps, IWelcomeState> {
|
|||
baseUrl,
|
||||
{
|
||||
headers: {
|
||||
Authorization: `Bearer ${instancesBearerKey}`,
|
||||
},
|
||||
Authorization: `Bearer ${instancesBearerKey}`
|
||||
}
|
||||
}
|
||||
)
|
||||
.catch((err: Error) => {
|
||||
let userInputError = true;
|
||||
let userInputErrorMessage =
|
||||
"Instance name is invalid.";
|
||||
"We couldn't recognize this instance.";
|
||||
this.setState({
|
||||
userInputError,
|
||||
userInputErrorMessage,
|
||||
userInputErrorMessage
|
||||
});
|
||||
return true;
|
||||
});
|
||||
|
@ -658,8 +677,8 @@ class WelcomePage extends Component<IWelcomeProps, IWelcomeState> {
|
|||
})
|
||||
.catch((err: Error) => {
|
||||
this.props.enqueueSnackbar(
|
||||
`Couldn't authorize ${this.state.brandName ?? "Hyperspace"
|
||||
}: ${err.name}`,
|
||||
`Couldn't authorize ${this.state.brandName ??
|
||||
"Hyperspace"}: ${err.name}`,
|
||||
{ variant: "error" }
|
||||
);
|
||||
console.error(err.message);
|
||||
|
@ -770,20 +789,30 @@ class WelcomePage extends Component<IWelcomeProps, IWelcomeState> {
|
|||
label="Username"
|
||||
fullWidth
|
||||
placeholder="example@mastodon.example"
|
||||
onChange={(event) =>
|
||||
this.updateUserInfo(event.target.value)
|
||||
}
|
||||
onKeyDown={(event) => this.watchUsernameField(event)}
|
||||
onChange={event => this.updateUserInfo(event.target.value)}
|
||||
onKeyDown={event => this.watchUsernameField(event)}
|
||||
error={this.state.userInputError}
|
||||
InputProps={{
|
||||
startAdornment: (
|
||||
<InputAdornment position="start">@</InputAdornment>
|
||||
),
|
||||
)
|
||||
}}
|
||||
/>
|
||||
{this.state.userInputError ? (
|
||||
<Typography color="error">
|
||||
{this.state.userInputErrorMessage}
|
||||
{this.state.userInputErrorMessage ===
|
||||
"We couldn't recognize this instance." ? (
|
||||
<span>
|
||||
<br />
|
||||
<Link
|
||||
// className={classes.welcomeLink}
|
||||
onClick={() => this.startLogin(true)}
|
||||
>
|
||||
Try anyway
|
||||
</Link>
|
||||
</span>
|
||||
) : null}
|
||||
</Typography>
|
||||
) : null}
|
||||
<br />
|
||||
|
@ -919,10 +948,10 @@ class WelcomePage extends Component<IWelcomeProps, IWelcomeState> {
|
|||
variant="outlined"
|
||||
label="Authorization code"
|
||||
fullWidth
|
||||
onChange={(event) =>
|
||||
onChange={event =>
|
||||
this.updateAuthCode(event.target.value)
|
||||
}
|
||||
onKeyDown={(event) => this.watchAuthField(event)}
|
||||
onKeyDown={event => this.watchAuthField(event)}
|
||||
/>
|
||||
</DialogContent>
|
||||
<DialogActions>
|
||||
|
@ -974,8 +1003,8 @@ class WelcomePage extends Component<IWelcomeProps, IWelcomeState> {
|
|||
<div
|
||||
className={classes.root}
|
||||
style={{
|
||||
backgroundImage: `url(${this.state.backgroundUrl ?? "background.png"
|
||||
})`,
|
||||
backgroundImage: `url(${this.state.backgroundUrl ??
|
||||
"background.png"})`
|
||||
}}
|
||||
>
|
||||
<Paper className={classes.paper}>
|
||||
|
@ -1040,7 +1069,7 @@ class WelcomePage extends Component<IWelcomeProps, IWelcomeState> {
|
|||
>
|
||||
License
|
||||
</Link>{" "}
|
||||
|
|
||||
|{" "}
|
||||
<Link
|
||||
className={classes.welcomeLink}
|
||||
href="https://github.com/hyperspacedev/hyperspace/issues/new"
|
||||
|
|
Loading…
Reference in New Issue