CasLogout.js 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. // Copyright 2022 The Casdoor Authors. All Rights Reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. import React from "react";
  15. import {Card, Spin} from "antd";
  16. import {withRouter} from "react-router-dom";
  17. import * as AuthBackend from "./AuthBackend";
  18. import * as Setting from "../Setting";
  19. import i18next from "i18next";
  20. class CasLogout extends React.Component {
  21. constructor(props) {
  22. super(props);
  23. this.state = {
  24. classes: props,
  25. msg: null,
  26. };
  27. if (props.match?.params.casApplicationName !== undefined) {
  28. this.state.owner = props.match?.params.owner;
  29. this.state.applicationName = props.match?.params.casApplicationName;
  30. }
  31. }
  32. UNSAFE_componentWillMount() {
  33. const params = new URLSearchParams(this.props.location.search);
  34. AuthBackend.logout()
  35. .then((res) => {
  36. if (res.status === "ok") {
  37. Setting.showMessage("success", "Logged out successfully");
  38. this.props.onUpdateAccount(null);
  39. const redirectUri = res.data2;
  40. if (redirectUri !== null && redirectUri !== undefined && redirectUri !== "") {
  41. Setting.goToLink(redirectUri);
  42. } else if (params.has("service")) {
  43. Setting.goToLink(params.get("service"));
  44. } else {
  45. Setting.goToLinkSoft(this, `/cas/${this.state.owner}/${this.state.applicationName}/login`);
  46. }
  47. } else {
  48. Setting.showMessage("error", `Failed to log out: ${res.msg}`);
  49. }
  50. });
  51. }
  52. render() {
  53. return (
  54. <Card>
  55. <div style={{display: "flex", justifyContent: "center", alignItems: "center"}}>
  56. {
  57. <Spin size="large" tip={i18next.t("login:Logging out...")} style={{paddingTop: "10%"}} />
  58. }
  59. </div>
  60. </Card>
  61. );
  62. }
  63. }
  64. export default withRouter(CasLogout);