casdoor/web/src/ProviderListPage.js

295 lines
11 KiB
JavaScript
Raw Normal View History

2022-02-13 23:39:27 +08:00
// Copyright 2021 The Casdoor Authors. All Rights Reserved.
2021-02-13 13:30:51 +08:00
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2021-02-13 12:15:19 +08:00
import React from "react";
import {Link} from "react-router-dom";
import {Button, Table} from "antd";
2021-02-13 12:15:19 +08:00
import moment from "moment";
import * as Setting from "./Setting";
import * as ProviderBackend from "./backend/ProviderBackend";
2021-02-14 16:59:08 +08:00
import * as Provider from "./auth/Provider";
import i18next from "i18next";
import BaseListPage from "./BaseListPage";
import PopconfirmModal from "./common/modal/PopconfirmModal";
2021-02-13 12:15:19 +08:00
class ProviderListPage extends BaseListPage {
constructor(props) {
super(props);
}
componentDidMount() {
super.componentDidMount();
this.setState({
owner: Setting.isAdminUser(this.props.account) ? "admin" : this.props.account.owner,
});
}
2021-02-13 12:15:19 +08:00
newProvider() {
2021-12-12 18:51:12 +08:00
const randomName = Setting.getRandomName();
2023-08-07 17:22:32 +08:00
const owner = Setting.isDefaultOrganizationSelected(this.props.account) ? this.state.owner : Setting.getRequestOrganization(this.props.account);
2021-02-13 12:15:19 +08:00
return {
owner: owner,
name: `provider_${randomName}`,
2021-02-13 12:15:19 +08:00
createdTime: moment().format(),
displayName: `New Provider - ${randomName}`,
2021-05-14 23:45:20 +08:00
category: "OAuth",
2021-03-28 20:20:40 +08:00
type: "GitHub",
method: "Normal",
2021-02-13 12:15:19 +08:00
clientId: "",
clientSecret: "",
enableSignUp: true,
2021-05-14 23:45:20 +08:00
host: "",
port: 0,
2021-02-13 12:15:19 +08:00
providerUrl: "https://github.com/organizations/xxx/settings/applications/1234567",
};
2021-02-13 12:15:19 +08:00
}
addProvider() {
const newProvider = this.newProvider();
ProviderBackend.addProvider(newProvider)
.then((res) => {
if (res.status === "ok") {
this.props.history.push({pathname: `/providers/${newProvider.owner}/${newProvider.name}`, mode: "add"});
Setting.showMessage("success", i18next.t("general:Successfully added"));
} else {
Setting.showMessage("error", `${i18next.t("general:Failed to add")}: ${res.msg}`);
}
})
2021-02-13 12:15:19 +08:00
.catch(error => {
Setting.showMessage("error", `${i18next.t("general:Failed to connect to server")}: ${error}`);
2021-02-13 12:15:19 +08:00
});
}
deleteProvider(i) {
ProviderBackend.deleteProvider(this.state.data[i])
2021-02-13 12:15:19 +08:00
.then((res) => {
if (res.status === "ok") {
Setting.showMessage("success", i18next.t("general:Successfully deleted"));
this.setState({
data: Setting.deleteRow(this.state.data, i),
pagination: {total: this.state.pagination.total - 1},
});
} else {
Setting.showMessage("error", `${i18next.t("general:Failed to delete")}: ${res.msg}`);
}
})
2021-02-13 12:15:19 +08:00
.catch(error => {
Setting.showMessage("error", `${i18next.t("general:Failed to connect to server")}: ${error}`);
2021-02-13 12:15:19 +08:00
});
}
renderTable(providers) {
const columns = [
{
title: i18next.t("general:Name"),
dataIndex: "name",
key: "name",
width: "120px",
fixed: "left",
sorter: true,
...this.getColumnSearchProps("name"),
2021-02-13 12:15:19 +08:00
render: (text, record, index) => {
return (
<Link to={`/providers/${record.owner}/${text}`}>
2021-02-13 12:15:19 +08:00
{text}
</Link>
);
2022-08-06 23:54:56 +08:00
},
2021-02-13 12:15:19 +08:00
},
{
title: i18next.t("general:Organization"),
dataIndex: "owner",
key: "owner",
width: "150px",
sorter: true,
2023-06-06 20:50:28 +08:00
...this.getColumnSearchProps("owner"),
render: (text, record, index) => {
return (text !== "admin") ? text : i18next.t("provider:admin (Shared)");
},
},
2021-02-13 12:15:19 +08:00
{
2021-04-28 00:13:50 +08:00
title: i18next.t("general:Created time"),
dataIndex: "createdTime",
key: "createdTime",
width: "180px",
sorter: true,
2021-02-13 12:15:19 +08:00
render: (text, record, index) => {
return Setting.getFormattedDate(text);
2022-08-06 23:54:56 +08:00
},
2021-02-13 12:15:19 +08:00
},
{
2021-04-28 00:13:50 +08:00
title: i18next.t("general:Display name"),
dataIndex: "displayName",
key: "displayName",
2021-02-13 12:15:19 +08:00
// width: '100px',
sorter: true,
...this.getColumnSearchProps("displayName"),
2021-02-13 12:15:19 +08:00
},
2021-05-14 23:45:20 +08:00
{
title: i18next.t("provider:Category"),
dataIndex: "category",
key: "category",
filterMultiple: false,
filters: [
2023-08-26 23:39:02 +08:00
{text: "Captcha", value: "Captcha"},
{text: "Email", value: "Email"},
2023-08-26 23:39:02 +08:00
{text: "Notification", value: "Notification"},
{text: "OAuth", value: "OAuth"},
{text: "Payment", value: "Payment"},
{text: "SAML", value: "SAML"},
{text: "SMS", value: "SMS"},
{text: "Storage", value: "Storage"},
2023-08-26 23:39:02 +08:00
{text: "Web3", value: "Web3"},
],
width: "110px",
sorter: true,
2021-05-14 23:45:20 +08:00
},
2021-02-13 12:15:19 +08:00
{
title: i18next.t("provider:Type"),
dataIndex: "type",
key: "type",
width: "110px",
align: "center",
filterMultiple: false,
filters: [
2023-08-26 23:39:02 +08:00
{text: "Captcha", value: "Captcha", children: Setting.getProviderTypeOptions("Captcha").map((o) => {return {text: o.id, value: o.name};})},
2022-08-06 23:47:28 +08:00
{text: "Email", value: "Email", children: Setting.getProviderTypeOptions("Email").map((o) => {return {text: o.id, value: o.name};})},
2023-08-26 23:39:02 +08:00
{text: "Notification", value: "Notification", children: Setting.getProviderTypeOptions("Notification").map((o) => {return {text: o.id, value: o.name};})},
{text: "OAuth", value: "OAuth", children: Setting.getProviderTypeOptions("OAuth").map((o) => {return {text: o.id, value: o.name};})},
{text: "Payment", value: "Payment", children: Setting.getProviderTypeOptions("Payment").map((o) => {return {text: o.id, value: o.name};})},
{text: "SAML", value: "SAML", children: Setting.getProviderTypeOptions("SAML").map((o) => {return {text: o.id, value: o.name};})},
2022-08-06 23:47:28 +08:00
{text: "SMS", value: "SMS", children: Setting.getProviderTypeOptions("SMS").map((o) => {return {text: o.id, value: o.name};})},
{text: "Storage", value: "Storage", children: Setting.getProviderTypeOptions("Storage").map((o) => {return {text: o.id, value: o.name};})},
2023-08-26 23:39:02 +08:00
{text: "Web3", value: "Web3", children: Setting.getProviderTypeOptions("Web3").map((o) => {return {text: o.id, value: o.name};})},
],
sorter: true,
2021-02-14 10:20:42 +08:00
render: (text, record, index) => {
return Provider.getProviderLogoWidget(record);
2022-08-06 23:54:56 +08:00
},
2021-02-13 12:15:19 +08:00
},
{
title: i18next.t("provider:Client ID"),
dataIndex: "clientId",
key: "clientId",
width: "100px",
sorter: true,
...this.getColumnSearchProps("clientId"),
2021-05-23 23:38:38 +08:00
render: (text, record, index) => {
return Setting.getShortText(text);
2022-08-06 23:54:56 +08:00
},
2021-02-13 12:15:19 +08:00
},
{
title: i18next.t("provider:Provider URL"),
dataIndex: "providerUrl",
key: "providerUrl",
width: "150px",
sorter: true,
...this.getColumnSearchProps("providerUrl"),
2021-02-13 12:15:19 +08:00
render: (text, record, index) => {
return (
2021-03-27 11:38:15 +08:00
<a target="_blank" rel="noreferrer" href={text}>
2021-02-13 23:00:43 +08:00
{
Setting.getShortText(text)
}
2021-02-13 12:15:19 +08:00
</a>
);
2022-08-06 23:54:56 +08:00
},
2021-02-13 12:15:19 +08:00
},
{
title: i18next.t("general:Action"),
dataIndex: "",
key: "op",
width: "170px",
fixed: (Setting.isMobile()) ? "false" : "right",
2021-02-13 12:15:19 +08:00
render: (text, record, index) => {
return (
<div>
<Button disabled={!Setting.isAdminUser(this.props.account) && (record.owner !== this.props.account.owner)} style={{marginTop: "10px", marginBottom: "10px", marginRight: "10px"}} type="primary" onClick={() => this.props.history.push(`/providers/${record.owner}/${record.name}`)}>{i18next.t("general:Edit")}</Button>
<PopconfirmModal
title={i18next.t("general:Sure to delete") + `: ${record.name} ?`}
2021-02-13 12:15:19 +08:00
onConfirm={() => this.deleteProvider(index)}
disabled={!Setting.isAdminUser(this.props.account) && (record.owner !== this.props.account.owner)}
2021-02-13 12:15:19 +08:00
>
</PopconfirmModal>
2021-02-13 12:15:19 +08:00
</div>
);
2022-08-06 23:54:56 +08:00
},
2021-02-13 12:15:19 +08:00
},
];
const paginationProps = {
total: this.state.pagination.total,
showQuickJumper: true,
showSizeChanger: true,
showTotal: () => i18next.t("general:{total} in total").replace("{total}", this.state.pagination.total),
};
2021-02-13 12:15:19 +08:00
return (
<div>
<Table scroll={{x: "max-content"}} columns={columns} dataSource={providers} rowKey={(record) => `${record.owner}/${record.name}`} size="middle" bordered pagination={paginationProps}
title={() => (
<div>
{i18next.t("general:Providers")}&nbsp;&nbsp;&nbsp;&nbsp;
2023-08-27 16:28:37 +08:00
<Button id="add-button" type="primary" size="small" onClick={this.addProvider.bind(this)}>{i18next.t("general:Add")}</Button>
</div>
)}
loading={this.state.loading}
onChange={this.handleTableChange}
2021-02-13 12:15:19 +08:00
/>
</div>
);
}
fetch = (params = {}) => {
let field = params.searchedColumn, value = params.searchText;
const sortField = params.sortField, sortOrder = params.sortOrder;
if (params.category !== undefined && params.category !== null) {
field = "category";
value = params.category;
} else if (params.type !== undefined && params.type !== null) {
field = "type";
value = params.type;
}
this.setState({loading: true});
(Setting.isDefaultOrganizationSelected(this.props.account) ? ProviderBackend.getGlobalProviders(params.pagination.current, params.pagination.pageSize, field, value, sortField, sortOrder)
: ProviderBackend.getProviders(Setting.getRequestOrganization(this.props.account), params.pagination.current, params.pagination.pageSize, field, value, sortField, sortOrder))
.then((res) => {
this.setState({
loading: false,
});
if (res.status === "ok") {
this.setState({
data: res.data,
pagination: {
...params.pagination,
total: res.data2,
},
searchText: params.searchText,
searchedColumn: params.searchedColumn,
});
} else {
2023-02-18 16:21:12 +08:00
if (Setting.isResponseDenied(res)) {
this.setState({
isAuthorized: false,
});
} else {
Setting.showMessage("error", res.msg);
}
}
});
};
2021-02-13 12:15:19 +08:00
}
export default ProviderListPage;