2018-01-31 22:53:11 -05:00
|
|
|
/*
|
|
|
|
* Minio Cloud Storage (C) 2018 Minio, Inc.
|
|
|
|
*
|
|
|
|
* 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 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) {
|
|
|
|
return web.ListBuckets().then(res => {
|
|
|
|
const buckets = res.buckets ? res.buckets.map(bucket => bucket.name) : []
|
|
|
|
dispatch(setList(buckets))
|
2018-02-09 21:34:14 -05:00
|
|
|
if (buckets.length > 0) {
|
2018-02-23 22:29:30 -05:00
|
|
|
const { bucket, prefix } = pathSlice(history.location.pathname)
|
|
|
|
if (bucket && buckets.indexOf(bucket) > -1) {
|
|
|
|
dispatch(selectBucket(bucket, prefix))
|
|
|
|
} else {
|
|
|
|
dispatch(selectBucket(buckets[0]))
|
|
|
|
}
|
2018-03-02 13:23:50 -05:00
|
|
|
} else {
|
2018-02-27 22:14:49 -05:00
|
|
|
dispatch(selectBucket(""))
|
|
|
|
history.replace("/")
|
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-21 14:09:23 -04:00
|
|
|
buckets,
|
2018-01-31 22:53:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const setFilter = filter => {
|
|
|
|
return {
|
|
|
|
type: SET_FILTER,
|
2018-03-21 14:09:23 -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-21 14:09:23 -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-21 14:09:23 -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-21 14:09:23 -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-21 14:09:23 -04:00
|
|
|
bucketName: bucket,
|
2018-02-27 22:14:49 -05:00
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
dispatch(
|
|
|
|
alertActions.set({
|
|
|
|
type: "info",
|
2018-03-21 14:09:23 -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-21 14:09:23 -04:00
|
|
|
.catch(err => {
|
2018-02-27 22:14:49 -05:00
|
|
|
dispatch(
|
|
|
|
alertActions.set({
|
|
|
|
type: "danger",
|
2018-03-21 14:09:23 -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-21 14:09:23 -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-21 14:09:23 -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-21 14:09:23 -04:00
|
|
|
show: true,
|
2018-02-14 21:34:59 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
export const hideMakeBucketModal = () => ({
|
|
|
|
type: SHOW_MAKE_BUCKET_MODAL,
|
2018-03-21 14:09:23 -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-21 14:09:23 -04:00
|
|
|
bucketName: bucket,
|
2018-02-27 22:14:49 -05:00
|
|
|
})
|
|
|
|
.then(res => {
|
|
|
|
let policies = res.policies
|
2018-03-21 14:09:23 -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-21 14:09:23 -04:00
|
|
|
message: err.message,
|
|
|
|
}),
|
2018-02-27 22:14:49 -05:00
|
|
|
)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const setPolicies = policies => ({
|
|
|
|
type: SET_POLICIES,
|
2018-03-21 14:09:23 -04:00
|
|
|
policies,
|
2018-02-27 22:14:49 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
export const showBucketPolicy = () => ({
|
|
|
|
type: SHOW_BUCKET_POLICY,
|
2018-03-21 14:09:23 -04:00
|
|
|
show: true,
|
2018-02-27 22:14:49 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
export const hideBucketPolicy = () => ({
|
|
|
|
type: SHOW_BUCKET_POLICY,
|
2018-03-21 14:09:23 -04:00
|
|
|
show: false,
|
|
|
|
})
|