Coder Social home page Coder Social logo

lohmann.halight's Introduction

Lohmann.HALight

A simple HAL formatter for ASP.NET Core MVC.

Note: This is a port of my ASP.NET WebApi 2 implementation.

Installation

Install via NuGet:

install-package Lohmann.HALight

Usage

Note: There is a sample in the repo to help you getting started.

In your Startup.cs:

public class Startup
{
    private readonly ILoggerFactory _loggerFactory;

    public Startup(IHostingEnvironment env, ILoggerFactory loggerFactory)
    {
        _loggerFactory = loggerFactory;
    }

    public void ConfigureServices(
        IServiceCollection services)
    {
        var logger = _loggerFactory.CreateLogger<HalInputFormatter>();
        services.AddMvc(options =>
        {                
            options.InputFormatters.Add(new HalInputFormatter(logger));
            options.OutputFormatters.Add(new HalOutputFormatter());
        });
    }

    public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
    {            
        // ...

        app.UseMvc();
    }
}

In your resource model:

using Lohmann.HALight;

public class UserResource : Resource
{
    public int Id { get; set; }

    public string Name { get; set; }
}

In your controller:

public class UsersController : Controller
{
    private readonly UserRepository _repository;

    // ...
    
    // Route: "/Users/{id}"
    public IActionResult Get(int id)
    {
        var user = _repository.Get(id);

        if (user == null)
        {
            return NotFound();
        }

        var userResource = new UserResource
        {
            Id = user.Id,
            Name = user.Name,            
        };

        userResource.Relations.Add(
            Link.CreateSelfLink(
                Url.Link(
                    "DefaultApi", 
                    new { controller = "Users", id = userDetailResource.Id })
            )
        );

        return Ok(userDetailResource);
    }
}

Acknowledgements

There a couple of other HAL libraries for ASP .NET Web API around that inspired my take on this subject. A big thank you to:

lohmann.halight's People

Contributors

jayeshupadhyaytr avatar olohmann avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.