// Copyright 2023 Versity Software // This file is 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 s3api import ( "github.com/gofiber/fiber/v2" "github.com/versity/versitygw/auth" "github.com/versity/versitygw/backend" "github.com/versity/versitygw/metrics" "github.com/versity/versitygw/s3api/controllers" "github.com/versity/versitygw/s3event" "github.com/versity/versitygw/s3log" ) type S3ApiRouter struct { WithAdmSrv bool } func (sa *S3ApiRouter) Init(app *fiber.App, be backend.Backend, iam auth.IAMService, logger s3log.AuditLogger, evs s3event.S3EventSender, mm *metrics.Manager, debug bool, readonly bool) { s3ApiController := controllers.New(be, iam, logger, evs, mm, debug, readonly) if sa.WithAdmSrv { adminController := controllers.NewAdminController(iam, be) // CreateUser admin api app.Patch("/create-user", adminController.CreateUser) // DeleteUsers admin api app.Patch("/delete-user", adminController.DeleteUser) // ListUsers admin api app.Patch("/list-users", adminController.ListUsers) // ChangeBucketOwner admin api app.Patch("/change-bucket-owner", adminController.ChangeBucketOwner) // ListBucketsAndOwners admin api app.Patch("/list-buckets", adminController.ListBuckets) } // ListBuckets action app.Get("/", s3ApiController.ListBuckets) // CreateBucket action // PutBucketAcl action app.Put("/:bucket", s3ApiController.PutBucketActions) // DeleteBucket action app.Delete("/:bucket", s3ApiController.DeleteBucket) // HeadBucket app.Head("/:bucket", s3ApiController.HeadBucket) // GetBucketAcl action // ListMultipartUploads action // ListObjects action // ListObjectsV2 action app.Get("/:bucket", s3ApiController.ListActions) // HeadObject action app.Head("/:bucket/:key/*", s3ApiController.HeadObject) // GetObjectAcl action // GetObject action // ListObjectParts action // GetObjectTagging action // ListParts action // GetObjectAttributes action app.Get("/:bucket/:key/*", s3ApiController.GetActions) // DeleteObject action // AbortMultipartUpload action // DeleteObjectTagging action app.Delete("/:bucket/:key/*", s3ApiController.DeleteActions) // DeleteObjects action app.Post("/:bucket", s3ApiController.DeleteObjects) // CompleteMultipartUpload action // CreateMultipartUpload // RestoreObject action // SelectObjectContent action app.Post("/:bucket/:key/*", s3ApiController.CreateActions) // CopyObject action // PutObject action // UploadPart action // UploadPartCopy action // PutObjectTagging action // PutObjectAcl action app.Put("/:bucket/:key/*", s3ApiController.PutActions) }