1
0
mirror of https://github.com/minio/mc.git synced 2025-11-12 01:02:26 +03:00
Files
mc/share-v1.go

66 lines
1.5 KiB
Go

/*
* Minio Client (C) 2014, 2015 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.
*/
package main
import (
"os"
"time"
"github.com/minio/minio-xl/pkg/probe"
"github.com/minio/minio-xl/pkg/quick"
)
type sharedURLsV1 struct {
Version string
URLs map[string]struct {
Date time.Time
Message ShareMessageV1
}
}
func loadSharedURLsV1() (*sharedURLsV1, *probe.Error) {
sharedURLsDataFile, err := getSharedURLsDataFile()
if err != nil {
return nil, err.Trace()
}
if _, err := os.Stat(sharedURLsDataFile); err != nil {
return nil, probe.NewError(err)
}
qs, err := quick.New(newSharedURLsV1())
if err != nil {
return nil, err.Trace()
}
err = qs.Load(sharedURLsDataFile)
if err != nil {
return nil, err.Trace(sharedURLsDataFile)
}
s := qs.Data().(*sharedURLsV1)
return s, nil
}
func newSharedURLsV1() *sharedURLsV1 {
s := &sharedURLsV1{
Version: "1.0.0",
URLs: make(map[string]struct {
Date time.Time
Message ShareMessageV1
}),
}
return s
}