mirror of
https://github.com/casdoor/casdoor.git
synced 2025-05-23 10:45:47 +08:00
444 lines
16 KiB
JavaScript
444 lines
16 KiB
JavaScript
// Copyright 2021 The Casdoor Authors. All Rights Reserved.
|
|
//
|
|
// 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.
|
|
|
|
import React from "react";
|
|
import {Button, Card, Col, Input, InputNumber, Row, Select, Switch} from "antd";
|
|
import {LinkOutlined} from "@ant-design/icons";
|
|
import * as SyncerBackend from "./backend/SyncerBackend";
|
|
import * as OrganizationBackend from "./backend/OrganizationBackend";
|
|
import * as Setting from "./Setting";
|
|
import i18next from "i18next";
|
|
import SyncerTableColumnTable from "./table/SyncerTableColumnTable";
|
|
|
|
import {Controlled as CodeMirror} from "react-codemirror2";
|
|
import "codemirror/lib/codemirror.css";
|
|
require("codemirror/theme/material-darker.css");
|
|
require("codemirror/mode/javascript/javascript");
|
|
|
|
const {Option} = Select;
|
|
|
|
class SyncerEditPage extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
classes: props,
|
|
syncerName: props.match.params.syncerName,
|
|
syncer: null,
|
|
organizations: [],
|
|
mode: props.location.mode !== undefined ? props.location.mode : "edit",
|
|
};
|
|
}
|
|
|
|
UNSAFE_componentWillMount() {
|
|
this.getSyncer();
|
|
this.getOrganizations();
|
|
}
|
|
|
|
getSyncer() {
|
|
SyncerBackend.getSyncer("admin", this.state.syncerName)
|
|
.then((syncer) => {
|
|
this.setState({
|
|
syncer: syncer,
|
|
});
|
|
});
|
|
}
|
|
|
|
getOrganizations() {
|
|
OrganizationBackend.getOrganizations("admin")
|
|
.then((res) => {
|
|
this.setState({
|
|
organizations: (res.msg === undefined) ? res : [],
|
|
});
|
|
});
|
|
}
|
|
|
|
parseSyncerField(key, value) {
|
|
if (["port"].includes(key)) {
|
|
value = Setting.myParseInt(value);
|
|
}
|
|
return value;
|
|
}
|
|
|
|
updateSyncerField(key, value) {
|
|
value = this.parseSyncerField(key, value);
|
|
|
|
const syncer = this.state.syncer;
|
|
syncer[key] = value;
|
|
this.setState({
|
|
syncer: syncer,
|
|
});
|
|
}
|
|
|
|
getSyncerTableColumns(syncer) {
|
|
switch (syncer.type) {
|
|
case "Keycloak":
|
|
return [
|
|
{
|
|
"name": "ID",
|
|
"type": "string",
|
|
"casdoorName": "Id",
|
|
"isHashed": true,
|
|
"values": [
|
|
|
|
],
|
|
},
|
|
{
|
|
"name": "USERNAME",
|
|
"type": "string",
|
|
"casdoorName": "Name",
|
|
"isHashed": true,
|
|
"values": [
|
|
|
|
],
|
|
},
|
|
{
|
|
"name": "LAST_NAME+FIRST_NAME",
|
|
"type": "string",
|
|
"casdoorName": "DisplayName",
|
|
"isHashed": true,
|
|
"values": [
|
|
|
|
],
|
|
},
|
|
{
|
|
"name": "EMAIL",
|
|
"type": "string",
|
|
"casdoorName": "Email",
|
|
"isHashed": true,
|
|
"values": [
|
|
|
|
],
|
|
},
|
|
{
|
|
"name": "EMAIL_VERIFIED",
|
|
"type": "boolean",
|
|
"casdoorName": "EmailVerified",
|
|
"isHashed": true,
|
|
"values": [
|
|
|
|
],
|
|
},
|
|
{
|
|
"name": "FIRST_NAME",
|
|
"type": "string",
|
|
"casdoorName": "FirstName",
|
|
"isHashed": true,
|
|
"values": [
|
|
|
|
],
|
|
},
|
|
{
|
|
"name": "LAST_NAME",
|
|
"type": "string",
|
|
"casdoorName": "LastName",
|
|
"isHashed": true,
|
|
"values": [
|
|
|
|
],
|
|
},
|
|
{
|
|
"name": "CREATED_TIMESTAMP",
|
|
"type": "string",
|
|
"casdoorName": "CreatedTime",
|
|
"isHashed": true,
|
|
"values": [
|
|
|
|
],
|
|
},
|
|
{
|
|
"name": "ENABLED",
|
|
"type": "boolean",
|
|
"casdoorName": "IsForbidden",
|
|
"isHashed": true,
|
|
"values": [
|
|
|
|
],
|
|
},
|
|
];
|
|
default:
|
|
return [];
|
|
}
|
|
}
|
|
|
|
renderSyncer() {
|
|
return (
|
|
<Card size="small" title={
|
|
<div>
|
|
{this.state.mode === "add" ? i18next.t("syncer:New Syncer") : i18next.t("syncer:Edit Syncer")}
|
|
<Button onClick={() => this.submitSyncerEdit(false)}>{i18next.t("general:Save")}</Button>
|
|
<Button style={{marginLeft: "20px"}} type="primary" onClick={() => this.submitSyncerEdit(true)}>{i18next.t("general:Save & Exit")}</Button>
|
|
{this.state.mode === "add" ? <Button style={{marginLeft: "20px"}} onClick={() => this.deleteSyncer()}>{i18next.t("general:Cancel")}</Button> : null}
|
|
</div>
|
|
} style={(Setting.isMobile()) ? {margin: "5px"} : {}} type="inner">
|
|
<Row style={{marginTop: "10px"}} >
|
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
|
{Setting.getLabel(i18next.t("general:Organization"), i18next.t("general:Organization - Tooltip"))} :
|
|
</Col>
|
|
<Col span={22} >
|
|
<Select virtual={false} style={{width: "100%"}} disabled={!Setting.isAdminUser(this.props.account)} value={this.state.syncer.organization} onChange={(value => {this.updateSyncerField("organization", value);})}>
|
|
{
|
|
this.state.organizations.map((organization, index) => <Option key={index} value={organization.name}>{organization.name}</Option>)
|
|
}
|
|
</Select>
|
|
</Col>
|
|
</Row>
|
|
<Row style={{marginTop: "20px"}} >
|
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
|
{Setting.getLabel(i18next.t("general:Name"), i18next.t("general:Name - Tooltip"))} :
|
|
</Col>
|
|
<Col span={22} >
|
|
<Input value={this.state.syncer.name} onChange={e => {
|
|
this.updateSyncerField("name", e.target.value);
|
|
}} />
|
|
</Col>
|
|
</Row>
|
|
<Row style={{marginTop: "20px"}} >
|
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
|
{Setting.getLabel(i18next.t("provider:Type"), i18next.t("provider:Type - Tooltip"))} :
|
|
</Col>
|
|
<Col span={22} >
|
|
<Select virtual={false} style={{width: "100%"}} value={this.state.syncer.type} onChange={(value => {
|
|
this.updateSyncerField("type", value);
|
|
const syncer = this.state.syncer;
|
|
syncer["tableColumns"] = this.getSyncerTableColumns(this.state.syncer);
|
|
syncer.table = (value === "Keycloak") ? "user_entity" : this.state.syncer.table;
|
|
this.setState({
|
|
syncer: syncer,
|
|
});
|
|
})}>
|
|
{
|
|
["Database", "LDAP", "Keycloak"]
|
|
.map((item, index) => <Option key={index} value={item}>{item}</Option>)
|
|
}
|
|
</Select>
|
|
</Col>
|
|
</Row>
|
|
<Row style={{marginTop: "20px"}} >
|
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
|
{Setting.getLabel(i18next.t("provider:Host"), i18next.t("provider:Host - Tooltip"))} :
|
|
</Col>
|
|
<Col span={22} >
|
|
<Input value={this.state.syncer.host} onChange={e => {
|
|
this.updateSyncerField("host", e.target.value);
|
|
}} />
|
|
</Col>
|
|
</Row>
|
|
<Row style={{marginTop: "20px"}} >
|
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
|
{Setting.getLabel(i18next.t("provider:Port"), i18next.t("provider:Port - Tooltip"))} :
|
|
</Col>
|
|
<Col span={22} >
|
|
<InputNumber value={this.state.syncer.port} onChange={value => {
|
|
this.updateSyncerField("port", value);
|
|
}} />
|
|
</Col>
|
|
</Row>
|
|
<Row style={{marginTop: "20px"}} >
|
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
|
{Setting.getLabel(i18next.t("general:User"), i18next.t("general:User - Tooltip"))} :
|
|
</Col>
|
|
<Col span={22} >
|
|
<Input value={this.state.syncer.user} onChange={e => {
|
|
this.updateSyncerField("user", e.target.value);
|
|
}} />
|
|
</Col>
|
|
</Row>
|
|
<Row style={{marginTop: "20px"}} >
|
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
|
{Setting.getLabel(i18next.t("general:Password"), i18next.t("general:Password - Tooltip"))} :
|
|
</Col>
|
|
<Col span={22} >
|
|
<Input value={this.state.syncer.password} onChange={e => {
|
|
this.updateSyncerField("password", e.target.value);
|
|
}} />
|
|
</Col>
|
|
</Row>
|
|
<Row style={{marginTop: "20px"}} >
|
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
|
{Setting.getLabel(i18next.t("syncer:Database type"), i18next.t("syncer:Database type - Tooltip"))} :
|
|
</Col>
|
|
<Col span={22} >
|
|
<Select virtual={false} style={{width: "100%"}} value={this.state.syncer.databaseType} onChange={(value => {this.updateSyncerField("databaseType", value);})}>
|
|
{
|
|
[
|
|
{id: "mysql", name: "MySQL"},
|
|
{id: "postgres", name: "PostgreSQL"},
|
|
{id: "mssql", name: "SQL Server"},
|
|
{id: "oracle", name: "Oracle"},
|
|
{id: "sqlite3", name: "Sqlite 3"},
|
|
].map((databaseType, index) => <Option key={index} value={databaseType.id}>{databaseType.name}</Option>)
|
|
}
|
|
</Select>
|
|
</Col>
|
|
</Row>
|
|
<Row style={{marginTop: "20px"}} >
|
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
|
{Setting.getLabel(i18next.t("syncer:Database"), i18next.t("syncer:Database - Tooltip"))} :
|
|
</Col>
|
|
<Col span={22} >
|
|
<Input value={this.state.syncer.database} onChange={e => {
|
|
this.updateSyncerField("database", e.target.value);
|
|
}} />
|
|
</Col>
|
|
</Row>
|
|
<Row style={{marginTop: "20px"}} >
|
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
|
{Setting.getLabel(i18next.t("syncer:Table"), i18next.t("syncer:Table - Tooltip"))} :
|
|
</Col>
|
|
<Col span={22} >
|
|
<Input value={this.state.syncer.table}
|
|
disabled={this.state.syncer.type === "Keycloak"} onChange={e => {
|
|
this.updateSyncerField("table", e.target.value);
|
|
}} />
|
|
</Col>
|
|
</Row>
|
|
<Row style={{marginTop: "20px"}} >
|
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
|
{Setting.getLabel(i18next.t("syncer:Table primary key"), i18next.t("syncer:Table primary key - Tooltip"))} :
|
|
</Col>
|
|
<Col span={22} >
|
|
<Input value={this.state.syncer.tablePrimaryKey} onChange={e => {
|
|
this.updateSyncerField("tablePrimaryKey", e.target.value);
|
|
}} />
|
|
</Col>
|
|
</Row>
|
|
<Row style={{marginTop: "20px"}} >
|
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
|
{Setting.getLabel(i18next.t("syncer:Table columns"), i18next.t("syncer:Table columns - Tooltip"))} :
|
|
</Col>
|
|
<Col span={22} >
|
|
<SyncerTableColumnTable
|
|
title={i18next.t("syncer:Table columns")}
|
|
table={this.state.syncer.tableColumns}
|
|
onUpdateTable={(value) => {this.updateSyncerField("tableColumns", value);}}
|
|
/>
|
|
</Col>
|
|
</Row>
|
|
<Row style={{marginTop: "20px"}} >
|
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
|
{Setting.getLabel(i18next.t("syncer:Affiliation table"), i18next.t("syncer:Affiliation table - Tooltip"))} :
|
|
</Col>
|
|
<Col span={22} >
|
|
<Input value={this.state.syncer.affiliationTable} onChange={e => {
|
|
this.updateSyncerField("affiliationTable", e.target.value);
|
|
}} />
|
|
</Col>
|
|
</Row>
|
|
<Row style={{marginTop: "20px"}} >
|
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
|
{Setting.getLabel(i18next.t("syncer:Avatar base URL"), i18next.t("syncer:Avatar base URL - Tooltip"))} :
|
|
</Col>
|
|
<Col span={22} >
|
|
<Input prefix={<LinkOutlined />} value={this.state.syncer.avatarBaseUrl} onChange={e => {
|
|
this.updateSyncerField("avatarBaseUrl", e.target.value);
|
|
}} />
|
|
</Col>
|
|
</Row>
|
|
<Row style={{marginTop: "20px"}} >
|
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
|
{Setting.getLabel(i18next.t("syncer:Sync interval"), i18next.t("syncer:Sync interval - Tooltip"))} :
|
|
</Col>
|
|
<Col span={22} >
|
|
<InputNumber value={this.state.syncer.syncInterval} onChange={value => {
|
|
this.updateSyncerField("syncInterval", value);
|
|
}} />
|
|
</Col>
|
|
</Row>
|
|
<Row style={{marginTop: "20px"}} >
|
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
|
{Setting.getLabel(i18next.t("syncer:Error text"), i18next.t("syncer:Error text - Tooltip"))} :
|
|
</Col>
|
|
<Col span={22} >
|
|
<div style={{width: "100%", height: "300px"}} >
|
|
<CodeMirror
|
|
value={this.state.syncer.errorText}
|
|
options={{mode: "javascript", theme: "material-darker"}}
|
|
onBeforeChange={(editor, data, value) => {
|
|
this.updateSyncerField("errorText", value);
|
|
}}
|
|
/>
|
|
</div>
|
|
</Col>
|
|
</Row>
|
|
<Row style={{marginTop: "20px"}} >
|
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 19 : 2}>
|
|
{Setting.getLabel(i18next.t("general:Is enabled"), i18next.t("general:Is enabled - Tooltip"))} :
|
|
</Col>
|
|
<Col span={1} >
|
|
<Switch checked={this.state.syncer.isEnabled} onChange={checked => {
|
|
this.updateSyncerField("isEnabled", checked);
|
|
}} />
|
|
</Col>
|
|
</Row>
|
|
</Card>
|
|
);
|
|
}
|
|
|
|
submitSyncerEdit(willExist) {
|
|
const syncer = Setting.deepCopy(this.state.syncer);
|
|
SyncerBackend.updateSyncer(this.state.syncer.owner, this.state.syncerName, syncer)
|
|
.then((res) => {
|
|
if (res.status === "ok") {
|
|
Setting.showMessage("success", i18next.t("general:Successfully saved"));
|
|
this.setState({
|
|
syncerName: this.state.syncer.name,
|
|
});
|
|
|
|
if (willExist) {
|
|
this.props.history.push("/syncers");
|
|
} else {
|
|
this.props.history.push(`/syncers/${this.state.syncer.name}`);
|
|
}
|
|
} else {
|
|
Setting.showMessage("error", `${i18next.t("general:Failed to save")}: ${res.msg}`);
|
|
this.updateSyncerField("name", this.state.syncerName);
|
|
}
|
|
})
|
|
.catch(error => {
|
|
Setting.showMessage("error", `${i18next.t("general:Failed to connect to server")}: ${error}`);
|
|
});
|
|
}
|
|
|
|
deleteSyncer() {
|
|
SyncerBackend.deleteSyncer(this.state.syncer)
|
|
.then((res) => {
|
|
if (res.status === "ok") {
|
|
this.props.history.push("/syncers");
|
|
} else {
|
|
Setting.showMessage("error", `${i18next.t("general:Failed to delete")}: ${res.msg}`);
|
|
}
|
|
})
|
|
.catch(error => {
|
|
Setting.showMessage("error", `${i18next.t("general:Failed to connect to server")}: ${error}`);
|
|
});
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div>
|
|
{
|
|
this.state.syncer !== null ? this.renderSyncer() : null
|
|
}
|
|
<div style={{marginTop: "20px", marginLeft: "40px"}}>
|
|
<Button size="large" onClick={() => this.submitSyncerEdit(false)}>{i18next.t("general:Save")}</Button>
|
|
<Button style={{marginLeft: "20px"}} type="primary" size="large" onClick={() => this.submitSyncerEdit(true)}>{i18next.t("general:Save & Exit")}</Button>
|
|
{this.state.mode === "add" ? <Button style={{marginLeft: "20px"}} size="large" onClick={() => this.deleteSyncer()}>{i18next.t("general:Cancel")}</Button> : null}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default SyncerEditPage;
|