2018-01-31 22:53:11 -05:00
|
|
|
/*
|
2021-04-19 13:30:42 -04:00
|
|
|
* Copyright (c) 2015-2021 MinIO, Inc.
|
2018-01-31 22:53:11 -05:00
|
|
|
*
|
2021-04-19 13:30:42 -04:00
|
|
|
* This file is part of MinIO Object Storage stack
|
2018-01-31 22:53:11 -05:00
|
|
|
*
|
2021-04-19 13:30:42 -04:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2018-01-31 22:53:11 -05:00
|
|
|
*
|
2021-04-19 13:30:42 -04:00
|
|
|
* This program is distributed in the hope that it will be useful
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-01-31 22:53:11 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
import web from "../web"
|
2018-02-09 21:34:14 -05:00
|
|
|
import history from "../history"
|
2018-02-14 21:34:59 -05:00
|
|
|
import * as alertActions from "../alert/actions"
|
|
|
|
import * as objectsActions from "../objects/actions"
|
2018-02-23 22:29:30 -05:00
|
|
|
import { pathSlice } from "../utils"
|
2018-01-31 22:53:11 -05:00
|
|
|
|
|
|
|
export const SET_LIST = "buckets/SET_LIST"
|
2018-02-14 21:34:59 -05:00
|
|
|
export const ADD = "buckets/ADD"
|
2018-02-27 22:14:49 -05:00
|
|
|
export const REMOVE = "buckets/REMOVE"
|
2018-01-31 22:53:11 -05:00
|
|
|
export const SET_FILTER = "buckets/SET_FILTER"
|
|
|
|
export const SET_CURRENT_BUCKET = "buckets/SET_CURRENT_BUCKET"
|
2018-02-14 21:34:59 -05:00
|
|
|
export const SHOW_MAKE_BUCKET_MODAL = "buckets/SHOW_MAKE_BUCKET_MODAL"
|
2018-02-27 22:14:49 -05:00
|
|
|
export const SHOW_BUCKET_POLICY = "buckets/SHOW_BUCKET_POLICY"
|
|
|
|
export const SET_POLICIES = "buckets/SET_POLICIES"
|
2018-01-31 22:53:11 -05:00
|
|
|
|
2018-03-02 13:23:50 -05:00
|
|
|
export const fetchBuckets = () => {
|
2018-01-31 22:53:11 -05:00
|
|
|
return function(dispatch) {
|
2020-06-04 23:23:14 -04:00
|
|
|
const { bucket, prefix } = pathSlice(history.location.pathname)
|
2018-01-31 22:53:11 -05:00
|
|
|
return web.ListBuckets().then(res => {
|
|
|
|
const buckets = res.buckets ? res.buckets.map(bucket => bucket.name) : []
|
2018-02-09 21:34:14 -05:00
|
|
|
if (buckets.length > 0) {
|
2020-06-04 23:23:14 -04:00
|
|
|
dispatch(setList(buckets))
|
2018-02-23 22:29:30 -05:00
|
|
|
if (bucket && buckets.indexOf(bucket) > -1) {
|
|
|
|
dispatch(selectBucket(bucket, prefix))
|
|
|
|
} else {
|
|
|
|
dispatch(selectBucket(buckets[0]))
|
|
|
|
}
|
2018-03-02 13:23:50 -05:00
|
|
|
} else {
|
2020-06-04 23:23:14 -04:00
|
|
|
if (bucket) {
|
|
|
|
dispatch(setList([bucket]))
|
|
|
|
dispatch(selectBucket(bucket, prefix))
|
|
|
|
} else {
|
|
|
|
dispatch(selectBucket(""))
|
|
|
|
history.replace("/")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(err => {
|
|
|
|
if (bucket && err.message === "Access Denied." || err.message.indexOf('Prefix access is denied') > -1 ) {
|
|
|
|
dispatch(setList([bucket]))
|
|
|
|
dispatch(selectBucket(bucket, prefix))
|
|
|
|
} else {
|
|
|
|
dispatch(
|
|
|
|
alertActions.set({
|
|
|
|
type: "danger",
|
|
|
|
message: err.message,
|
|
|
|
autoClear: true,
|
|
|
|
})
|
|
|
|
)
|
2018-02-09 21:34:14 -05:00
|
|
|
}
|
2018-01-31 22:53:11 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const setList = buckets => {
|
|
|
|
return {
|
|
|
|
type: SET_LIST,
|
2018-03-22 15:25:56 -04:00
|
|
|
buckets
|
2018-01-31 22:53:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const setFilter = filter => {
|
|
|
|
return {
|
|
|
|
type: SET_FILTER,
|
2018-03-22 15:25:56 -04:00
|
|
|
filter
|
2018-01-31 22:53:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-23 22:29:30 -05:00
|
|
|
export const selectBucket = (bucket, prefix) => {
|
2018-02-09 21:34:14 -05:00
|
|
|
return function(dispatch) {
|
|
|
|
dispatch(setCurrentBucket(bucket))
|
2018-02-23 22:29:30 -05:00
|
|
|
dispatch(objectsActions.selectPrefix(prefix || ""))
|
2018-02-09 21:34:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-31 22:53:11 -05:00
|
|
|
export const setCurrentBucket = bucket => {
|
|
|
|
return {
|
|
|
|
type: SET_CURRENT_BUCKET,
|
2018-03-22 15:25:56 -04:00
|
|
|
bucket
|
2018-01-31 22:53:11 -05:00
|
|
|
}
|
|
|
|
}
|
2018-02-14 21:34:59 -05:00
|
|
|
|
|
|
|
export const makeBucket = bucket => {
|
|
|
|
return function(dispatch) {
|
|
|
|
return web
|
|
|
|
.MakeBucket({
|
2018-03-22 15:25:56 -04:00
|
|
|
bucketName: bucket
|
2018-02-14 21:34:59 -05:00
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
dispatch(addBucket(bucket))
|
|
|
|
dispatch(selectBucket(bucket))
|
|
|
|
})
|
|
|
|
.catch(err =>
|
|
|
|
dispatch(
|
|
|
|
alertActions.set({
|
|
|
|
type: "danger",
|
2018-03-22 15:25:56 -04:00
|
|
|
message: err.message
|
|
|
|
})
|
|
|
|
)
|
2018-02-14 21:34:59 -05:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-27 22:14:49 -05:00
|
|
|
export const deleteBucket = bucket => {
|
|
|
|
return function(dispatch) {
|
|
|
|
return web
|
|
|
|
.DeleteBucket({
|
2018-03-22 15:25:56 -04:00
|
|
|
bucketName: bucket
|
2018-02-27 22:14:49 -05:00
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
dispatch(
|
|
|
|
alertActions.set({
|
|
|
|
type: "info",
|
2018-03-22 15:25:56 -04:00
|
|
|
message: "Bucket '" + bucket + "' has been deleted."
|
|
|
|
})
|
2018-02-27 22:14:49 -05:00
|
|
|
)
|
|
|
|
dispatch(removeBucket(bucket))
|
2018-03-02 13:23:50 -05:00
|
|
|
dispatch(fetchBuckets())
|
2018-02-27 22:14:49 -05:00
|
|
|
})
|
2018-03-26 15:49:12 -04:00
|
|
|
.catch(err => {
|
2018-02-27 22:14:49 -05:00
|
|
|
dispatch(
|
|
|
|
alertActions.set({
|
|
|
|
type: "danger",
|
2018-03-22 15:25:56 -04:00
|
|
|
message: err.message
|
|
|
|
})
|
2018-02-27 22:14:49 -05:00
|
|
|
)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-14 21:34:59 -05:00
|
|
|
export const addBucket = bucket => ({
|
|
|
|
type: ADD,
|
2018-03-22 15:25:56 -04:00
|
|
|
bucket
|
2018-02-14 21:34:59 -05:00
|
|
|
})
|
|
|
|
|
2018-02-27 22:14:49 -05:00
|
|
|
export const removeBucket = bucket => ({
|
|
|
|
type: REMOVE,
|
2018-03-22 15:25:56 -04:00
|
|
|
bucket
|
2018-02-27 22:14:49 -05:00
|
|
|
})
|
|
|
|
|
2018-02-14 21:34:59 -05:00
|
|
|
export const showMakeBucketModal = () => ({
|
|
|
|
type: SHOW_MAKE_BUCKET_MODAL,
|
2018-03-22 15:25:56 -04:00
|
|
|
show: true
|
2018-02-14 21:34:59 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
export const hideMakeBucketModal = () => ({
|
|
|
|
type: SHOW_MAKE_BUCKET_MODAL,
|
2018-03-22 15:25:56 -04:00
|
|
|
show: false
|
2018-02-14 21:34:59 -05:00
|
|
|
})
|
2018-02-27 22:14:49 -05:00
|
|
|
|
|
|
|
export const fetchPolicies = bucket => {
|
|
|
|
return function(dispatch) {
|
|
|
|
return web
|
|
|
|
.ListAllBucketPolicies({
|
2018-03-22 15:25:56 -04:00
|
|
|
bucketName: bucket
|
2018-02-27 22:14:49 -05:00
|
|
|
})
|
|
|
|
.then(res => {
|
|
|
|
let policies = res.policies
|
2018-03-26 15:49:12 -04:00
|
|
|
if(policies)
|
|
|
|
dispatch(setPolicies(policies))
|
|
|
|
else
|
|
|
|
dispatch(setPolicies([]))
|
2018-02-27 22:14:49 -05:00
|
|
|
})
|
|
|
|
.catch(err => {
|
|
|
|
dispatch(
|
|
|
|
alertActions.set({
|
|
|
|
type: "danger",
|
2018-03-22 15:25:56 -04:00
|
|
|
message: err.message
|
|
|
|
})
|
2018-02-27 22:14:49 -05:00
|
|
|
)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const setPolicies = policies => ({
|
|
|
|
type: SET_POLICIES,
|
2018-03-22 15:25:56 -04:00
|
|
|
policies
|
2018-02-27 22:14:49 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
export const showBucketPolicy = () => ({
|
|
|
|
type: SHOW_BUCKET_POLICY,
|
2018-03-22 15:25:56 -04:00
|
|
|
show: true
|
2018-02-27 22:14:49 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
export const hideBucketPolicy = () => ({
|
|
|
|
type: SHOW_BUCKET_POLICY,
|
2018-03-22 15:25:56 -04:00
|
|
|
show: false
|
2018-03-26 15:49:12 -04:00
|
|
|
})
|