// 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, Row, Select, Switch} from "antd"; import * as PermissionBackend from "./backend/PermissionBackend"; import * as OrganizationBackend from "./backend/OrganizationBackend"; import * as UserBackend from "./backend/UserBackend"; import * as Setting from "./Setting"; import i18next from "i18next"; import * as RoleBackend from "./backend/RoleBackend"; import * as ModelBackend from "./backend/ModelBackend"; import * as ApplicationBackend from "./backend/ApplicationBackend"; const {Option} = Select; class PermissionEditPage extends React.Component { constructor(props) { super(props); this.state = { classes: props, organizationName: props.organizationName !== undefined ? props.organizationName : props.match.params.organizationName, permissionName: props.match.params.permissionName, permission: null, organizations: [], users: [], roles: [], models: [], resources: [], mode: props.location.mode !== undefined ? props.location.mode : "edit", }; } UNSAFE_componentWillMount() { this.getPermission(); this.getOrganizations(); } getPermission() { PermissionBackend.getPermission(this.state.organizationName, this.state.permissionName) .then((permission) => { this.setState({ permission: permission, }); this.getUsers(permission.owner); this.getRoles(permission.owner); this.getModels(permission.owner); this.getResources(permission.owner); }); } getOrganizations() { OrganizationBackend.getOrganizations("admin") .then((res) => { this.setState({ organizations: (res.msg === undefined) ? res : [], }); }); } getUsers(organizationName) { UserBackend.getUsers(organizationName) .then((res) => { this.setState({ users: res, }); }); } getRoles(organizationName) { RoleBackend.getRoles(organizationName) .then((res) => { this.setState({ roles: res, }); }); } getModels(organizationName) { ModelBackend.getModels(organizationName) .then((res) => { this.setState({ models: res, }); }); } getResources(organizationName) { ApplicationBackend.getApplicationsByOrganization("admin", organizationName) .then((res) => { this.setState({ resources: (res.msg === undefined) ? res : [], }); }); } parsePermissionField(key, value) { if ([""].includes(key)) { value = Setting.myParseInt(value); } return value; } updatePermissionField(key, value) { value = this.parsePermissionField(key, value); let permission = this.state.permission; permission[key] = value; this.setState({ permission: permission, }); } renderPermission() { return ( {this.state.mode === "add" ? i18next.t("permission:New Permission") : i18next.t("permission:Edit Permission")}     {this.state.mode === "add" ? : null} } style={(Setting.isMobile())? {margin: "5px"}:{}} type="inner"> {Setting.getLabel(i18next.t("general:Organization"), i18next.t("general:Organization - Tooltip"))} : {Setting.getLabel(i18next.t("general:Name"), i18next.t("general:Name - Tooltip"))} : { this.updatePermissionField("name", e.target.value); }} /> {Setting.getLabel(i18next.t("general:Display name"), i18next.t("general:Display name - Tooltip"))} : { this.updatePermissionField("displayName", e.target.value); }} /> {Setting.getLabel(i18next.t("general:Model"), i18next.t("general:Model - Tooltip"))} : {Setting.getLabel(i18next.t("role:Sub users"), i18next.t("role:Sub users - Tooltip"))} : {Setting.getLabel(i18next.t("role:Sub roles"), i18next.t("role:Sub roles - Tooltip"))} : {Setting.getLabel(i18next.t("permission:Resource type"), i18next.t("permission:Resource type - Tooltip"))} : {Setting.getLabel(i18next.t("permission:Resources"), i18next.t("permission:Resources - Tooltip"))} : {Setting.getLabel(i18next.t("permission:Actions"), i18next.t("permission:Actions - Tooltip"))} : {Setting.getLabel(i18next.t("permission:Effect"), i18next.t("permission:Effect - Tooltip"))} : {Setting.getLabel(i18next.t("general:Is enabled"), i18next.t("general:Is enabled - Tooltip"))} : { this.updatePermissionField("isEnabled", checked); }} /> ); } submitPermissionEdit(willExist) { let permission = Setting.deepCopy(this.state.permission); PermissionBackend.updatePermission(this.state.organizationName, this.state.permissionName, permission) .then((res) => { if (res.msg === "") { Setting.showMessage("success", "Successfully saved"); this.setState({ permissionName: this.state.permission.name, }); if (willExist) { this.props.history.push("/permissions"); } else { this.props.history.push(`/permissions/${this.state.permission.owner}/${this.state.permission.name}`); } } else { Setting.showMessage("error", res.msg); this.updatePermissionField("name", this.state.permissionName); } }) .catch(error => { Setting.showMessage("error", `Failed to connect to server: ${error}`); }); } deletePermission() { PermissionBackend.deletePermission(this.state.permission) .then(() => { this.props.history.push("/permissions"); }) .catch(error => { Setting.showMessage("error", `Permission failed to delete: ${error}`); }); } render() { return (
{ this.state.permission !== null ? this.renderPermission() : null }
{this.state.mode === "add" ? : null}
); } } export default PermissionEditPage;