GitHubApps.AspNetCore.Mvc 0.1.0-rc.1

This is a prerelease version of GitHubApps.AspNetCore.Mvc.
dotnet add package GitHubApps.AspNetCore.Mvc --version 0.1.0-rc.1
NuGet\Install-Package GitHubApps.AspNetCore.Mvc -Version 0.1.0-rc.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GitHubApps.AspNetCore.Mvc" Version="0.1.0-rc.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GitHubApps.AspNetCore.Mvc --version 0.1.0-rc.1
#r "nuget: GitHubApps.AspNetCore.Mvc, 0.1.0-rc.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install GitHubApps.AspNetCore.Mvc as a Cake Addin
#addin nuget:?package=GitHubApps.AspNetCore.Mvc&version=0.1.0-rc.1&prerelease

// Install GitHubApps.AspNetCore.Mvc as a Cake Tool
#tool nuget:?package=GitHubApps.AspNetCore.Mvc&version=0.1.0-rc.1&prerelease

GitHubApps.AspNetCore.Mvc

nuget GitHub release NuGet license

The GitHub Apps AspNetCore Mvc is a component that allows the creation of GitHub Apps using .NET.

A GitHub App is a service that receives a post request from GitHub when certain actions are executed.

This component uses the Nuget Package GitHubApps and exposes a class GitHubAppController, which inherits from the ControllerBase class, exposing a MVC Controller.

Refer to the API Documentation to have a better understanding of each class and how to use it.

Usage

Creating the GitHub App

Add the nuget package GitHubApps.AspNetCore.Mvc into your project. It will automatically add the GitHubApps, and GitHubAuth to your project.

Create your own GitHubApp, by creating a class that inherits from the GitHubAppBase class.

using GitHubApps;

// If your App does not need to connect to GitHub and do any action, you don't need authentication
public class MyGitHubAppWithoutAuthentication: GitHubAppBase
{
    public MyGitHubApp()
    {
        
    }

   //TODO: Override the virtual methods for each event
}

// If your App needs to connect to GitHub and do any action, you will need authentication
public class MyGitHubAppWithAuthentication: GitHubAppBase
{
    // override the property to a non-nullable property, this will prevent the warning CS8602 (Dereference of a possibly null reference) from being displayed
    public new IAuthenticator Authenticator { get; set; }

    // require the authenticator to come from dependency injection
    public MyGitHubApp(IAuthenticator authenticator)
    {
        Authenticator = authenticator;
    }

   //TODO: Override the virtual methods for each event
}

This class contains several virtual methods that can be overwritten to handle the proper event and action. For example, to handle the GitHub event installation with action created, you can override the OnEventInstallationCreated() method.

using GitHubApps;

public class MyGitHubApp: GitHubAppBase
{
   //TODO: Initialization of the class goes here
   public class MyGitHubApp()
   {
       ...
   }

   public override EventResult OnEventInstallationCreated(GitHubDelivery<GitHubEventInstallation> payload)
   {
      // Your code goes here...
   }
}

For more information, refer to the API Documentation.

Optionally, you can create a class that implements the IGitHubApp interface. However, this is not recommended as all the handling of the GitHub Post request will have to be handled manually.

Creating the ASP.Net Core Web Api

After you created the GitHubApp, you need to implement the Controller.

In a ASP.Net Core Web Api, create a class that derives from the GitHubAppController class. This will allow you to define a Route for the class.

[ApiController]
[Route("GitHubApp")]
public class MyGitHubAppController: GitHubAppController
{
    public MyGitHubAppController(IGitHubApp gitHubApp): base(null, gitHubApp)
    {

    }
}

On your Program.cs class, add your custom GitHub App. This will configure Dependency Injection to recognize your GitHubApp.

// Program.cs

// Adds the GitHub App With the Default JWT (GitHubJwtWithRS256)
// This method automaticaly adds the IGitHubJwt into the dependency injection framework
builder.Services.AddGitHubApp<MyGitHubApp, AppAuthenticator>("path_to_pem_file.pem", 123456, provider =>
{
    var authenticator = new AppAuthenticator(provider.GetRequiredService<GitHubAuth.Jwt.IGitHubJwt>())
    {
        GetClient = () =>
        {
            //TODO: Implement a function to return a client to the GitHub API
        }
    };

    return authenticator;
});

// MyGitHubAppController.cs
public class MyGitHubAppController: GitHubAppController
{
    public MyGitHubAppController(IGitHubApp gitHubApp): base(null, gitHubApp)
    {

    }
}

There could be cases when you need to implement more than one GitHub App in the same project. If this is the case, you can call the method and add multiple GitHubApps. However, you will need to specify which GitHub App to use in your controller, instead of refering to the IGitHubApp interface.

// Program.cs

// Adds a Typed GitHub App
builder.Services.AddTypedGitHubApp<MyGitHubApp01, AppAuthenticator>("path_to_pem_file01.pem", 123456, provider =>
{
    var authenticator = new AppAuthenticator(provider.GetRequiredService<GitHubAuth.Jwt.IGitHubJwt>())
    {
        GetClient = () =>
        {
            //TODO: Implement a function to return a client to the GitHub API        }
    };

    return authenticator;
});

builder.Services.AddTypedGitHubApp<MyGitHubApp02, AppAuthenticator>("path_to_pem_file02.pem", 789012, provider =>
{
    var authenticator = new AppAuthenticator(provider.GetRequiredService<GitHubAuth.Jwt.IGitHubJwt>())
    {
        GetClient = () =>
        {
            //TODO: Implement a function to return a client to the GitHub API
        }
    };

    return authenticator;
});

// MyController01.cs
[ApiController]
[Route("GitHubApp01")]
public class MyController01: GitHubAppController
{
    // Note that you have to refer to the MyGitHubApp02, instead of the IGitHubApp
    public MyController01(MyGitHubApp01 gitHubApp01): base(null, gitHubApp01)
    {

    }
}

// MyController02.cs
[ApiController]
[Route("GitHubApp02")]
public class MyController02: GitHubAppController
{
    // Note that you have to refer to the MyGitHubApp02, instead of the IGitHubApp
    public MyController02(MyGitHubApp02 gitHubApp01): base(null, gitHubApp01)
    {

    }
}

Refer to the Project GitHubApps.AspNetCore.Mvc.Example to see a working example.

This section contains links that are relevant to this repository.

Link Description
GitHub Webhook Events and Payloads The specification of webhooks events and payloads
Project Roadmap The project roadmap and expected delivery dates
Project Board The project board containing the tasks and its status
API Documentation The API Documentation
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  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 was computed.  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 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.0-rc.1 163 11/11/2023