From fdb5e01ec8375321e6279a07019216dbe598db99 Mon Sep 17 00:00:00 2001 From: Yang Luo Date: Fri, 8 Sep 2023 01:55:06 +0800 Subject: [PATCH] Remove useless Graph APIs --- web/src/backend/FactorsetBackend.js | 7 ------ web/src/backend/ProviderBackend.js | 35 ++++++++++++----------------- web/src/backend/VectorBackend.js | 7 ------ web/src/backend/VideoBackend.js | 35 ++++++++++++----------------- 4 files changed, 28 insertions(+), 56 deletions(-) diff --git a/web/src/backend/FactorsetBackend.js b/web/src/backend/FactorsetBackend.js index 65197d5..a724780 100644 --- a/web/src/backend/FactorsetBackend.js +++ b/web/src/backend/FactorsetBackend.js @@ -35,13 +35,6 @@ export function getFactorset(owner, name) { }).then(res => res.json()); } -export function getFactorsetGraph(owner, name, clusterNumber, distanceLimit) { - return fetch(`${Setting.ServerUrl}/api/get-factorset-graph?id=${owner}/${encodeURIComponent(name)}&clusterNumber=${clusterNumber}&distanceLimit=${distanceLimit}`, { - method: "GET", - credentials: "include", - }).then(res => res.json()); -} - export function updateFactorset(owner, name, factorset) { const newFactorset = Setting.deepCopy(factorset); return fetch(`${Setting.ServerUrl}/api/update-factorset?id=${owner}/${encodeURIComponent(name)}`, { diff --git a/web/src/backend/ProviderBackend.js b/web/src/backend/ProviderBackend.js index b3b60ef..eaeb5e9 100644 --- a/web/src/backend/ProviderBackend.js +++ b/web/src/backend/ProviderBackend.js @@ -1,17 +1,17 @@ -// Copyright 2023 The casbin 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. - +// Copyright 2023 The casbin 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 * as Setting from "../Setting"; export function getGlobalProviders() { @@ -35,13 +35,6 @@ export function getProvider(owner, name) { }).then(res => res.json()); } -export function getProviderGraph(owner, name, clusterNumber, distanceLimit) { - return fetch(`${Setting.ServerUrl}/api/get-provider-graph?id=${owner}/${encodeURIComponent(name)}&clusterNumber=${clusterNumber}&distanceLimit=${distanceLimit}`, { - method: "GET", - credentials: "include", - }).then(res => res.json()); -} - export function updateProvider(owner, name, provider) { const newProvider = Setting.deepCopy(provider); return fetch(`${Setting.ServerUrl}/api/update-provider?id=${owner}/${encodeURIComponent(name)}`, { diff --git a/web/src/backend/VectorBackend.js b/web/src/backend/VectorBackend.js index 2624f56..53b1781 100644 --- a/web/src/backend/VectorBackend.js +++ b/web/src/backend/VectorBackend.js @@ -35,13 +35,6 @@ export function getVector(owner, name) { }).then(res => res.json()); } -export function getVectorGraph(owner, name, clusterNumber, distanceLimit) { - return fetch(`${Setting.ServerUrl}/api/get-vector-graph?id=${owner}/${encodeURIComponent(name)}&clusterNumber=${clusterNumber}&distanceLimit=${distanceLimit}`, { - method: "GET", - credentials: "include", - }).then(res => res.json()); -} - export function updateVector(owner, name, vector) { const newVector = Setting.deepCopy(vector); return fetch(`${Setting.ServerUrl}/api/update-vector?id=${owner}/${encodeURIComponent(name)}`, { diff --git a/web/src/backend/VideoBackend.js b/web/src/backend/VideoBackend.js index fcf6160..4486c57 100644 --- a/web/src/backend/VideoBackend.js +++ b/web/src/backend/VideoBackend.js @@ -1,17 +1,17 @@ -// Copyright 2023 The casbin 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. - +// Copyright 2023 The casbin 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 * as Setting from "../Setting"; export function getGlobalVideos() { @@ -35,13 +35,6 @@ export function getVideo(owner, name) { }).then(res => res.json()); } -export function getVideoGraph(owner, name, clusterNumber, distanceLimit) { - return fetch(`${Setting.ServerUrl}/api/get-video-graph?id=${owner}/${encodeURIComponent(name)}&clusterNumber=${clusterNumber}&distanceLimit=${distanceLimit}`, { - method: "GET", - credentials: "include", - }).then(res => res.json()); -} - export function updateVideo(owner, name, video) { const newVideo = Setting.deepCopy(video); return fetch(`${Setting.ServerUrl}/api/update-video?id=${owner}/${encodeURIComponent(name)}`, {