/* * 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 sharedURLsV3 struct { Version string URLs []struct { Date time.Time Message ShareMessageV3 } } func loadSharedURLsV3() (*sharedURLsV3, *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(newSharedURLsV3()) if err != nil { return nil, err.Trace() } err = qs.Load(sharedURLsDataFile) if err != nil { return nil, err.Trace(sharedURLsDataFile) } s := qs.Data().(*sharedURLsV3) return s, nil } func saveSharedURLsV3(s *sharedURLsV3) *probe.Error { qs, err := quick.New(s) if err != nil { return err.Trace() } sharedURLsDataFile, err := getSharedURLsDataFile() if err != nil { return err.Trace() } return qs.Save(sharedURLsDataFile).Trace(sharedURLsDataFile) } func newSharedURLsV3() *sharedURLsV3 { var urls []struct { Date time.Time Message ShareMessageV3 } s := &sharedURLsV3{ Version: "3", URLs: urls, } return s }