2023-01-18 13:45:14 +00:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2023-03-12 17:49:06 +00:00
|
|
|
Copyright (C) GoToSocial Authors admin@gotosocial.org
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
2023-01-18 13:45:14 +00:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2023-10-05 15:06:19 +01:00
|
|
|
import { useVerifyCredentialsQuery } from "../../lib/query/oauth";
|
|
|
|
import { store } from "../../redux/store";
|
2023-01-18 13:45:14 +00:00
|
|
|
|
2023-10-05 15:06:19 +01:00
|
|
|
import React from "react";
|
2023-01-18 13:45:14 +00:00
|
|
|
|
2023-10-05 15:06:19 +01:00
|
|
|
import Login from "./login";
|
|
|
|
import Loading from "../loading";
|
|
|
|
import { Error } from "../error";
|
2023-10-17 11:46:06 +01:00
|
|
|
import { NoArg } from "../../lib/types/query";
|
2023-01-18 13:45:14 +00:00
|
|
|
|
2023-10-05 15:06:19 +01:00
|
|
|
export function Authorization({ App }) {
|
|
|
|
const { loginState, expectingRedirect } = store.getState().oauth;
|
|
|
|
const skip = (loginState == "none" || loginState == "logout" || expectingRedirect);
|
2023-01-18 13:45:14 +00:00
|
|
|
|
2023-10-05 15:06:19 +01:00
|
|
|
const {
|
|
|
|
isLoading,
|
|
|
|
isSuccess,
|
|
|
|
data: account,
|
|
|
|
error,
|
2023-10-17 11:46:06 +01:00
|
|
|
} = useVerifyCredentialsQuery(NoArg, { skip: skip });
|
2023-01-18 13:45:14 +00:00
|
|
|
|
|
|
|
let showLogin = true;
|
2023-10-17 11:46:06 +01:00
|
|
|
let content: React.JSX.Element | null = null;
|
2023-01-18 13:45:14 +00:00
|
|
|
|
2023-01-18 15:41:00 +00:00
|
|
|
if (isLoading) {
|
2023-01-18 13:45:14 +00:00
|
|
|
showLogin = false;
|
|
|
|
|
2023-10-17 11:46:06 +01:00
|
|
|
let loadingInfo = "";
|
2023-01-18 13:45:14 +00:00
|
|
|
if (loginState == "callback") {
|
|
|
|
loadingInfo = "Processing OAUTH callback.";
|
|
|
|
} else if (loginState == "login") {
|
|
|
|
loadingInfo = "Verifying stored login.";
|
|
|
|
}
|
|
|
|
|
|
|
|
content = (
|
|
|
|
<div>
|
|
|
|
<Loading /> {loadingInfo}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
} else if (error != undefined) {
|
|
|
|
content = (
|
|
|
|
<div>
|
|
|
|
<Error error={error} />
|
|
|
|
You can attempt logging in again below:
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (loginState == "login" && isSuccess) {
|
|
|
|
return <App account={account} />;
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
<section className="oauth">
|
|
|
|
<h1>GoToSocial Settings</h1>
|
|
|
|
{content}
|
|
|
|
{showLogin && <Login />}
|
|
|
|
</section>
|
|
|
|
);
|
|
|
|
}
|
2023-10-05 15:06:19 +01:00
|
|
|
}
|