Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alanedwardes/estranged.lfs
A Git LFS server implementation in C# designed to run in a serverless environment.
https://github.com/alanedwardes/estranged.lfs
Last synced: 1 day ago
JSON representation
A Git LFS server implementation in C# designed to run in a serverless environment.
- Host: GitHub
- URL: https://github.com/alanedwardes/estranged.lfs
- Owner: alanedwardes
- License: mit
- Created: 2017-06-03T08:26:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-08-01T19:03:34.000Z (4 months ago)
- Last Synced: 2024-11-01T10:06:46.069Z (13 days ago)
- Language: C#
- Homepage: https://alanedwardes.github.io/docs/Estranged.Lfs/
- Size: 110 KB
- Stars: 125
- Watchers: 12
- Forks: 30
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Estranged.Lfs ![Build status](https://github.com/alanedwardes/Estranged.Lfs/workflows/.NET%20Core/badge.svg)
### For setup instructions, see https://alanedwardes.com/blog/posts/serverless-git-lfs-for-game-dev/
---
A Git LFS backend which provides pluggable authentication and blob store adapters. It is designed to run in a serverless environment to be used in conjunction with a Git provider such as GitHub or BitBucket, or self hosted Git.
## Basic Usage
1. Add the Git LFS services to your application:
```csharp
services.AddLfs();
```2. Register an implementation for IBlobAdapter and IAuthenticator. Amazon AWS S3 and Azure Blob Storage are provided out of the box:
```csharp
var s3BlobConfig = new S3BlobAdapterConfig
{
Bucket = "estranged-lfs-test"
};
services.AddLfsS3Adapter(s3BlobConfig, new AmazonS3Client());
services.AddLfsDictionaryAuthenticator(new Dictionary{{"username","password"}});
```Or use the following example for Azure Blob Storage.
> Note: Keep the naming rules for Azure Blob Storage in account, review them [here](https://docs.microsoft.com/en-us/rest/api/storageservices/Naming-and-Referencing-Containers--Blobs--and-Metadata).
```csharp
var blobServiceClient = new Azure.Storage.Blobs.BlobServiceClient("");
var blobConfig = new AzureBlobAdapterConfig
{
ContainerName = "estranged-lfs-test"
};
services.AddLfsAzureBlobAdapter(blobConfig, blobServiceClient);
services.AddLfsDictionaryAuthenticator(new Dictionary {{"username","password"}});
```### GitHub Authenticator
A GitHub authenticator implementation is provided out of the box. This authenticator takes the supplied username and password and makes a "get repository" call against the GitHub API. If the result is that the user has access, the LFS call succeeds, if the user does not have access, the LFS call fails with a 401 error.
To configure the GitHub authenticator, you need to register it with the `IServiceProvider`:
```csharp
// services.AddLfsDictionaryAuthenticator(new Dictionary{{"username","password"}});
var ghAuthConfig = new GitHubAuthenticatorConfig
{
Organisation = "alanedwardes",
Repository = "Estranged.Lfs"
};
services.AddLfsGitHubAuthenticator(ghAuthConfig);
```When LFS prompts you for credentials, enter your GitHub username, and a [personal access token](https://github.com/settings/tokens) to authenticate. Your token should have the "repository read" scope.
### BitBucket Authenticator
A BitBucket authenticator implementation is provided out of the box. This authenticator takes the supplied username and password and makes a "get repository" call against the BitBucket API. If the result is that the user has access, the LFS call succeeds, if the user does not have access, the LFS call fails with a 401 error.
To configure the BitBucket authenticator, you need to register it with the `IServiceProvider`:
```csharp
// services.AddLfsDictionaryAuthenticator(new Dictionary{{"username","password"}});
var bbAuthConfig = new BitBucketAuthenticatorConfig
{
Workspace = "alanedwardes",
Repository = "Estranged.Lfs"
};
services.AddLfsBitBucketAuthenticator(bbAuthConfig);
```When LFS prompts you for credentials, enter your BitBucket username, and a [personal access token](https://bitbucket.org/account/settings/app-passwords/) to authenticate. Your token should have the "repository read" scope.
## Extensibility
### Blob Adapter
Any blob store which generates pre-signed URLs can be used by implementing the interface IBlobAdapter:
```csharp
public interface IBlobAdapter
{
Task UriForUpload(string oid, long size, CancellationToken token);
Task UriForDownload(string oid, CancellationToken token);
}
```An S3 implementation is included, which generates pre-signed GET and PUT requests. This can be used out of the box if desired.
### Authentication Adapter
Git LFS supports HTTP Basic authentication, the mechanics of which the library deals with but the authentication portion is exposed behind the IAuthenticator interface.
```csharp
public interface IAuthenticator
{
Task Authenticate(string username, string password, LfsPermission requiredPermission, CancellationToken token);
}
```A sample implementation exposing a dictionary of username => password is included as a reference.
## Example Deployables
There are currently two hosting examples:
- `Estranged.Lfs.Hosting.AspNet`
- `Estranged.Lfs.Hosting.Lambda`The former is a simple example using only Asp.NET components, and the latter is an Asp.NET Lambda function which can be deployed directly to AWS Lambda, behind API Gateway.
#### Deploying to Lambda
1. Head over to the `Estranged.Lfs.Hosting.Lambda` project in the `hosting` folder.
2. Install the `dotnet-lambda` global tool from AWS: https://github.com/aws/aws-extensions-for-dotnet-cli
3. Edit the `aws-lambda-tools-defaults.json` file to suit your environment setup:```javascript
{
"profile": "default",
"configuration": "Release",
"framework": "net6.0",
"function-handler": "Estranged.Lfs.Hosting.Lambda::Estranged.Lfs.Hosting.Lambda.LambdaEntryPoint::FunctionHandlerAsync",
"function-memory-size": 256,
"function-timeout": 30,
"function-runtime": "dotnet6",
"region": "",
"s3-bucket": "",
"s3-prefix": "",
"function-name": "",
// Set other variables required by the Lambda function
"environment-variables": "LFS_BUCKET=;="
}
```4. Run `dotnet-lambda deploy-serverless` to deploy the Lambda function