S3Server 6.0.18
dotnet add package S3Server --version 6.0.18
NuGet\Install-Package S3Server -Version 6.0.18
<PackageReference Include="S3Server" Version="6.0.18" />
paket add S3Server --version 6.0.18
#r "nuget: S3Server, 6.0.18"
// Install S3Server as a Cake Addin #addin nuget:?package=S3Server&version=6.0.18 // Install S3Server as a Cake Tool #tool nuget:?package=S3Server&version=6.0.18
S3Server
Simple S3 server-side interface, produced using Amazon's public documentation. Want a simple S3 storage server built using S3Server? Check out Less3.
Feedback and Enhancements
Is there an API you'd like exposed that isn't currently? Did you identify an issue or have other feedback? Please file an issue here!
New in v6.0.x
- Breaking changes with dependency updates
- Moved usings inside of namespaces to reduce collisions
- Moved from
new byte[0]
toArray.Empty<byte>()
- Size limits for
ObjectWrite
(e.g.PutObject
), returnsEntityTooLarge
if exceeded - Boolean for enabling or disabling signature validation
- Added bucket and object callbacks in support of multipart uploads
- Added object callback for S3 Select API
Examples
Refer to Test.Client
and Test.Server
projects for full examples.
Important
The following notes should be read prior to using S3Server:
Path-style URLs are default, i.e.
http://hostname.com/bucket/key
Virtual hosting URLs can be used by setting
S3Server.ServiceCallbacks.FindMatchingBaseDomain
- You must use a wildcard listener (e.g.
*
or+
) and run under administrative privileges - This callback takes one input parameter, the hostname from the HTTP request
- Your implementation should compare the hostname with your list of base domains
- The return value from this method should be the base domain to which the hostname matches
- If no match is found, throw a
KeyNotFoundException
- You may have to set DNS or your
hosts
file to resolve these names accordingly - Alternatively, use a hostname that resolves to localhost (e.g.
[host].local.gd
or[host].fbi.com
) - Any request where the base domain is NOT found in incoming hostname will be treated as a path-style URL request
- You must use a wildcard listener (e.g.
Server
Refer to the Test.Server
project for a more complete example.
using S3ServerLibrary;
using S3ServerLibrary.S3Objects;
// Initialize the server
S3Server server = new S3Server("[hostname]", 8000, false, DefaultRequestHandler); // host, port, SSL
// Set callbacks
server.Service.ListBuckets = ListBuckets;
server.Bucket.Exists = BucketExists;
// etc
// Start the server
server.Start();
// Example callback definition
static async Task DefaultRequestHandler(S3Context ctx)
{
ctx.Response.StatusCode = 400;
ctx.Response.ContentType = Constants.ContentTypeText;
ctx.Response.Send("Bad request");
}
// Callback expecting a response object
static async Task<ListAllMyBucketsResult> ListBuckets(S3Context ctx)
{
return new ListAllMyBucketsResult();
}
static async Task<bool> BucketExists(S3Context ctx)
{
return true;
// throw new S3Exception(new Error(ErrorCode.NoSuchBucket));
}
// Callback passing object to you
static async Task BucketWriteTags(S3Context ctx, Tagging tags)
{
return;
}
Client
Use the following example with the AWSSDK.S3 NuGet package to point your S3 client toward S3Server.
using Amazon;
using Amazon.Runtime;
using Amazon.S3;
using Amazon.S3.Model;
BasicAWSCredentials cred = new Amazon.Runtime.BasicAWSCredentials("access key", "secret key");
AmazonS3Config config = new AmazonS3Config
{
RegionEndpoint = RegionEndpoint.USWest1,
ServiceURL = "http://localhost:8000/",
ForcePathStyle = true, // required if not using virtual hosting style
UseHttp = true
};
IAmazonS3 client = new AmazonS3Client(cred, config);
Request and Responses
An S3Context
object is passed to your callbacks which includes three properties:
S3Request
- the parsed S3 requestS3Response
- the response object with which you will interact to send a responseMetadata
- an object that you can choose to set with your own value- This is often helpful if you use the
PreRequestHandler
for authentication or other purposes
- This is often helpful if you use the
S3Server expects the code you implement in your callbacks to either:
- Respond with a variable (see
S3Server.Bucket.Exists
, expects aBoolean
) - Simply return when no response object is required (see
S3Server.Object.DeleteTagging
) - Throw an
S3Exception
with the appropriateError
object if something goes wrong
Operation
S3Server parses incoming HTTP requests, extracting key pieces of information to determine the type of request sent by the caller. The logic to handle these requests is NOT provided by S3Server; you have to create that logic yourself in your callbacks. Callbacks are called when a request of that type has been received, otherwise, a generic 400 error is returned to the client.
Refer to https://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html for the S3 API documentation used to create this project.
The following callbacks are supported:
Service Callbacks
Callback Name | Description | Method | URL |
---|---|---|---|
Service.ListBuckets | List buckets | GET | / |
Service.ServiceExists | Retrieve region for the service | HEAD | / |
Bucket Callbacks
Callback Name | Description | Method | URL |
---|---|---|---|
Bucket.Delete | Delete a bucket | DELETE | /[bucket] |
Bucket.DeleteAcl | Delete ACLs from a bucket | DELETE | /[bucket]?acl |
Bucket.DeleteTagging | Delete tags from a bucket | DELETE | /[bucket]?tagging |
Bucket.DeleteWebsite | Delete bucket website configuration | DELETE | /[bucket]?website |
Bucket.Exists | Check if a bucket exists | HEAD | /[bucket] |
Bucket.Read | Enumerate a bucket | GET | /[bucket] |
Bucket.ReadAcl | Read ACL on a bucket | GET | /[bucket]?acl |
Bucket.ReadLocation | Read a bucket's region | GET | /[bucket]?location |
Bucket.ReadLogging | Read bucket's logging configuration | GET | /[bucket]?logging |
Bucket.ReadTagging | Read tags on a bucket | GET | /[bucket]?tagging |
Bucket.ReadVersioning | Read bucket versioning | GET | /[bucket]?versioning |
Bucket.ReadVersions | Read object versions in a bucket | GET | /[bucket]?versions |
Bucket.ReadWebsite | Read bucket website configuration | GET | /[bucket]?website |
Bucket.Write | Create a bucket | PUT | /[bucket] |
Bucket.WriteAcl | Write an ACL to a bucket | PUT | /[bucket]?acl |
Bucket.WriteLogging | Write bucket logging configuration | PUT | /[bucket]?logging |
Bucket.WriteTagging | Write tags to a bucket | PUT | /[bucket]?tagging |
Bucket.WriteVersioning | Write bucket versioning | PUT | /[bucket]?versioning |
Bucket.WriteWebsite | Write bucket website configuration | PUT | /[bucket]?website |
Object Callbacks
Callback Name | Description | Method | URL |
---|---|---|---|
Object.Delete | Delete an object | DELETE | /[bucket]/[key] |
Object.DeleteTagging | Delete an object's tags | DELETE | /[bucket]/[key]?tagging |
Object.DeleteMultiple | Delete multiple objects | POST | /[bucket]?delete^2 |
Object.Exists | Check if an object exists | HEAD | /[bucket]/[key] |
Object.Write | Write an object | PUT | /[bucket]/[key] |
Object.WriteAcl | Write an object access control list | PUT | /[bucket]/[key]?acl |
Object.WriteTagging | Write tags to an object | PUT | /[bucket]/[key]?tagging |
Object.WriteLegalHold | Write a legal hold status to an object | PUT | /[bucket]/[key]?legal-hold |
Object.WriteRetention | Write a retention status to an object | PUT | /[bucket]/[key]?retention |
Object.Read | Read an object | GET | /[bucket]/[key] |
Object.ReadAcl | Read an object's access control list | GET | /[bucket]/[key]?acl |
Object.ReadLegalHold | Read an object's legal hold status | GET | /[bucket]/[key]?legal-hold |
Object.ReadRange | Read a range of bytes from an object | GET | /[bucket]/[key]^1 |
Object.ReadRetention | Read an object's retention status | GET | /[bucket]/[key]?retention |
Object.ReadTagging | Read an object's tags | GET | /[bucket]/[key]?tagging |
^1 Refer to the Bytes header in S3Request.Headers
for the range that should be retrieved.
^2 A delete multiple request body must be supplied.
Unsupported / Not Yet Available
Operations against the service or AWS accounts is not exposed through callbacks.
The following bucket operations are not exposed through callbacks:
- Accelerate
- Analytics
- CORS
- Encryption
- Inventory
- Lifecycle
- Notification
- Object lock configuration
- Object versions
- Policy status
- Public access block
- Metrics
- Payment
- Policy
- Replication
The following object operations are not exposed through callbacks:
- Multipart upload
- Parts
- Restore
- Torrent
The following general capabilities are not yet supported by S3Server
- Validation of chunk signatures
These items may be addressed in a future release.
Version History
Refer to CHANGELOG.md for details.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- AWSSignatureGenerator (>= 1.0.8)
- PrettyId (>= 1.0.2)
- Watson (>= 6.2.2)
-
net7.0
- AWSSignatureGenerator (>= 1.0.8)
- PrettyId (>= 1.0.2)
- Watson (>= 6.2.2)
-
net8.0
- AWSSignatureGenerator (>= 1.0.8)
- PrettyId (>= 1.0.2)
- Watson (>= 6.2.2)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on S3Server:
Package | Downloads |
---|---|
Less3
<3 Less3 is S3-compatible object storage that you can run on your laptop, server, or anywhere you like. |
|
View.Models
View.io is currently in BETA. Database models and supporting classes for View.io services. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
6.0.18 | 171 | 9/9/2024 |
6.0.17 | 87 | 9/9/2024 |
6.0.16 | 125 | 8/6/2024 |
6.0.15 | 70 | 8/2/2024 |
6.0.14 | 306 | 7/7/2024 |
6.0.12 | 135 | 4/20/2024 |
6.0.11 | 132 | 4/4/2024 |
6.0.10 | 126 | 3/28/2024 |
6.0.9 | 116 | 3/28/2024 |
6.0.8 | 3,869 | 1/2/2024 |
6.0.7 | 107 | 1/2/2024 |
6.0.6 | 118 | 1/2/2024 |
6.0.5 | 118 | 1/2/2024 |
6.0.4 | 113 | 1/2/2024 |
6.0.3 | 151 | 12/14/2023 |
6.0.2 | 168 | 11/27/2023 |
6.0.1 | 119 | 11/27/2023 |
6.0.0 | 126 | 11/14/2023 |
5.3.2 | 206 | 8/31/2023 |
5.3.1 | 1,279 | 8/24/2023 |
5.2.2 | 377 | 8/19/2023 |
5.2.1 | 153 | 8/19/2023 |
5.1.9 | 587 | 8/1/2023 |
5.1.8 | 1,952 | 5/18/2023 |
5.1.7 | 152 | 5/18/2023 |
5.1.6 | 294 | 5/11/2023 |
5.1.5 | 148 | 5/9/2023 |
5.1.4 | 155 | 5/9/2023 |
5.1.3 | 155 | 5/9/2023 |
5.1.2 | 152 | 5/8/2023 |
5.1.1 | 188 | 4/18/2023 |
5.1.0 | 195 | 4/13/2023 |
5.0.16 | 2,041 | 10/12/2022 |
5.0.15 | 400 | 10/12/2022 |
5.0.14 | 642 | 10/7/2022 |
5.0.13 | 355 | 10/7/2022 |
5.0.12 | 378 | 10/7/2022 |
5.0.11 | 1,413 | 9/22/2022 |
5.0.10 | 448 | 9/22/2022 |
5.0.9 | 450 | 9/22/2022 |
5.0.8 | 689 | 9/21/2022 |
5.0.7 | 626 | 9/20/2022 |
5.0.6 | 1,045 | 9/15/2022 |
5.0.5 | 454 | 9/15/2022 |
5.0.4 | 713 | 9/14/2022 |
5.0.3 | 472 | 9/14/2022 |
5.0.2 | 502 | 9/14/2022 |
5.0.1 | 549 | 9/13/2022 |
5.0.0 | 533 | 9/13/2022 |
4.0.1.13 | 1,473 | 4/1/2022 |
4.0.1.12 | 643 | 4/1/2022 |
4.0.1.11 | 646 | 3/31/2022 |
4.0.1.10 | 442 | 3/30/2022 |
4.0.1.9 | 622 | 3/30/2022 |
4.0.1.8 | 456 | 1/27/2022 |
4.0.1.7 | 457 | 1/26/2022 |
4.0.1.6 | 1,726 | 10/25/2021 |
4.0.1.5 | 407 | 10/22/2021 |
4.0.1.4 | 361 | 10/22/2021 |
4.0.1.3 | 370 | 10/20/2021 |
4.0.1.2 | 410 | 10/14/2021 |
4.0.1.1 | 359 | 10/13/2021 |
4.0.1 | 364 | 10/13/2021 |
3.2.5 | 1,604 | 7/9/2021 |
3.2.4 | 478 | 6/15/2021 |
3.2.3 | 498 | 6/15/2021 |
3.2.2 | 344 | 6/15/2021 |
3.2.1 | 358 | 6/15/2021 |
3.2.0 | 341 | 6/15/2021 |
3.1.2 | 353 | 6/11/2021 |
3.1.1 | 1,217 | 4/20/2021 |
3.1.0 | 789 | 3/9/2021 |
3.0.2 | 354 | 3/9/2021 |
3.0.1 | 401 | 3/9/2021 |
3.0.0 | 404 | 3/5/2021 |
Dependency update and change to base domains.