magic.endpoint 16.3.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package magic.endpoint --version 16.3.0
NuGet\Install-Package magic.endpoint -Version 16.3.0
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="magic.endpoint" Version="16.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add magic.endpoint --version 16.3.0
#r "nuget: magic.endpoint, 16.3.0"
#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 magic.endpoint as a Cake Addin
#addin nuget:?package=magic.endpoint&version=16.3.0

// Install magic.endpoint as a Cake Tool
#tool nuget:?package=magic.endpoint&version=16.3.0

magic.endpoint - How Hyperlambda endpoints are resolved

magic.endpoint is a dynamic endpoint URL controller, allowing you to declare endpoints that are dynamically resolved using your IHttpExecutorAsync service implementation. The default implementation of this interface, is the class called HttpExecutorAsync, and the rest of this file will be focused on documenting this implementation, since it is the default service implementation for magic.endpoint - Although, technically, you could exchange this with your own implementation if you wish, completely changing the behaviour of the library if you wish to for instance resolve endpoints to Python, Ruby, or any other dynamic programming language implementation, and you have some means to execute such code from within a .Net 6 environment. The resolver will be invoked for all relative URLs starting with "magic/", for the following verbs.

  • GET
  • POST
  • PUT
  • DELETE
  • PATCH

The default service implementation will resolve everything after the "magic/" parts in the given URL, to a Hyperlambda file assumed to be found relatively beneath your "/files/" folder - Although, exactly where you physically put your files on disc, can be configured through your "appsettings.json" file. The HTTP verb is assumed to be the last parts of your filename, before its extension, implying an HTTP request such as the following.

GET magic/modules/foo/bar

Will resolve to the following physical file on disc.

files/modules/foo/bar.get.hl

Only the "magic" part of your URL is rewritten before the verb is appended to the URL, and finally the extension ".hl" appended. Then the file is loaded and parsed as Hyperlambda, and whatever arguments you pass in, either as query parameters or as your JSON payload is appended into your resulting lambda node's [.arguments] node as arguments to your Hyperlambda file invocation. The resolver will never return files directly, but is only able to execute Hyperlambda files, so by default there is no way to get static files, unless you create a Hyperlambda endpoint that returns a static file somehow.

The default resolver will only allow the client to resolve files inside your "/files/modules/" folder and "/files/system/" folder. This allows you to safely keep files that parts of your system relies upon inside your dynamic "/files/" folder, without accidentally creating endpoints clients can resolve, resulting in breaches in your security. Only characters a-z, 0-9 and '-', '_' and '/' are legal characters for the resolvers, and only lowercase characters to avoid file system incompatibilities between Linux and Windows. There is one exception to this rule though, which is that the resolver will resolve files and folder starting out with a period (.) character, since this is necessary to allow for having "hidden files" being resolved as endpoints - Which is a requirement to make things such as Apple's ".well-known" endpoints being resolved. Below is probably the simplest HTTP endpoint you could create. Save the following Hyperlambda in a file at the path of /modules/tutorials/foo.get.hl using for instance your Magic "Hyper IDE" menu item.

return
   result:Hello from Magic Backend

Then invoke the endpoint using the GET verb with the following URL.

http://localhost:5000/magic/modules/tutorials/foo

Hyperlambda endpoints and arguments

The default IHttpExecutorAsync implementation can explicitly declare what arguments the file can legally accept, and if an argument is given during invocation that the file doesn't allow for, an exception will be thrown and the file will never be executed. This allows you to declare what arguments your Hyperlambda file can accept, and avoid having anything but arguments explicitly declared in your Hyperlambda file from being sent into your endpoint during invocation of your HTTP endpoint. An example Hyperlambda file taking two arguments can be found below.

.arguments
   arg1:string
   arg2:int

strings.concat
   get-value:x:@.arguments/*/arg1
   .:" - "
   get-value:x:@.arguments/*/arg2

unwrap:x:+/*
return
   result:x:@strings.concat

If you save this file on disc as /files/modules/tutorials/foo2.get.hl, you can invoke it as follows using the HTTP GET verb - Assuming your backend is running on localhost at port 5000.

http://localhost:5000/magic/modules/tutorials/foo2?arg1=howdy&arg2=5

JSON payloads and form URL encoded payloads are automatically converted to lambda/nodes - And query parameters are treated indiscriminately the same way as JSON payloads - Except of course, query parameters cannot pass in complex graph objects, but only simply key/value arguments. Only POST, PUT and PATCH endpoints can handle payloads. If you supply a payload to a GET or DELETE endpoint, an exception will be thrown, and an error returned to the caller.

To allow for any arguments to your files, simply ommit the [.arguments] node in your Hyperlambda althogether, or supply an [.arguments] node and set its value to *. Alternatively, you can also partially ignore arguments sanity checking of individual nodes, by setting their values to *, such as the following illustrates.

.arguments
   arg1:string
   arg2:date
   arg3:*

In the above arguments declaration, [arg1] and [arg2] will be sanity checked, and input converted to string or date (DateTime) - But the [arg3] parts will be completely ignored, allowing the caller to invoke it with anything as arg3 during invocation - Including complete graph JSON objects, assuming the above declaration is for a PUT, POST or PATCH Hyperlambda file. The '*' value for an argument also turn off all conversion, implying everything will be given to your lambda object with the JSON type the argument was passed in as. All arguments declared are considered optional, and the file will still resolve if the argument is not given, except of course the argument won't exist in the [.arguments] node. However, no argument not found in your [.arguments] declaration can be provided during invocations, assuming you choose to declare an [.arguments] collection in your Hyperlambda endpoint file, and you don't set its value to *.

To declare what type your arguments can be, set the value of the argument declaration node to the Hyperlambda type value inside of your arguments declaration, such as illustrated above. Arguments will be converted if possible, to the type declaration in your argument's declaration. If no conversion is possible, an exception will be thrown. Although the sanity check will check graph objects, passed in as JSON payloads, it has its restrictions, such as not being able to sanity check complex objects passed in as arrays, etc. If you need stronger sanity checking of your arguments, you will have to manually check your more complex graph objects yourself in your own Hyperlambda files.

Also realise that if the value originates from a payload, as in from a PUT, PATCH or POST JSON object for instance, these types of objects might contain null values. If they do, no conversion will be attempted, and internally within your endpoint's Hyperlambda code, you might therefor expect to see for instance long values being in fact null, even though technically these are not nullable types in .Net.

Accepted Content-Type values for Hyperlambda endpoints

The POST, PUT and PATCH endpoints can intelligently handle any of the following Content-Types.

  • application/json
  • application/x-json
  • application/www-form-urlencoded
  • application/x-www-form-urlencoded
  • multipart/form-data

JSON types of payloads are fairly well described above, and URL encoded form payloads are handled the exact same way, except of course the [.arguments] node is built from URL encoded values instead of JSON - However, internally this is transparent for you, and JSON, query parameters, URL encoded forms, and "multipart/form-data" can be interchanged 100% transparently from your code's perspective - Except "multipart/form-data" might have [file] arguments wrapping streams that you need to handle separately as such. File attachments will be passed into your endpoint as follows.

.arguments
   file
      name:filename-on-client.txt
      stream:[raw Stream object here]

All other types of payloads will be passed in as the raw stream, not trying to read from it in any ways, allowing you to intercept reading with things such as authentication, authorisation, logic of where to persist content, etc. To understand how you can handle these streams, check out the "magic.lambda.io" project's documentation, and specifically the [io.stream.xxx] slots.

Extending the Hyperlambda Content-Type request and response resolver

The Content-Type resolver/parser is extendible, allowing you to change its behaviour by providing your own callback that will be invoked for some specific Content-Type value provided. This is useful if you want to be able to for instance handle "text/xml" or "text/csv" types of request/response objects, and intelligently and automatically create an argument collection from it. Below is example code illustrating how to create your own HTTP request resolver for the MIME type of "application/x-foo".

EndpointController.RegisterContentType("application/x-foo", async (signaler, request) =>
{
   var args = new Node();

   /* ... Create some sort of collection of arguments and put into args node here ... */

   return args;
});

Notice - The argument sanity checking will still be invoked with a custom handler, implying your Content-Type handler and the [.arguments] declaration in your Hyperlambda file still needs to agree upon the arguments, and if a non-valid argument is specified to a Hyperlambda file, an exception will be thrown. Also notice that registering a custom Content-Type is not thread safe, and should be done as you start your application, and not during its life time. You can also provide your own HTTP response resolver that will be invoked given some specified Content-Type from your Hyperlambda file. This is done in a similar manner using something resembling the following.

EndpointController.RegisterContentType("application/x-foo", (response) =>
{
   /* ... Return some sort of IActionResult here ... */
   return new ObjectResult(response.Content) { StatusCode = response.Result };
});

The above method should also exclusively be used during startup, and not later, since it is not thread safe. The above method assumes you register your Content-Type handlers as your application is starting.

Hyperlambda endpoints and meta information

Due to the semantic structure of Hyperlambda, retrieving meta information from your HTTP endpoints using this module is very easy. The project has one slot called [endpoints.list] that returns meta information about all your endpoints. This slot again can be invoked using the following URL.

http://localhost:5000/magic/system/endpoints/list

This endpoint/slot will semantically traverse your endpoints, recursively loading up all Hyperlambda files from disc that are resolved from a valid URL, and return meta information about the file/endpoint back to the caller. This allows the system to easily figure out things such as the following about your endpoints.

  • What is the endpoint's HTTP VERB
  • What is the endpoint's URL
  • What arguments can the endpoint handle
  • Has the file been given a friendly description, through a [.description] node
  • Etc ...

This slot/endpoint is what allows you to see meta information about all your HTTP REST endpoints in the "Endpoints" menu item in the Magic dashboard for instance. The return value from this slot/endpoint again, is what's used as some sort of frontend is being generated using the Magic dashboard.

Extending the meta data retrieval process

You can extend the meta data retrieval process by invoking ListEndpoints.AddMetaDataResolver, and pass in your own function. This class can be found in the magic.endpoint.services.slots namespace. The AddMetaDataResolver method takes one function object, which will be invoked for every file the meta generator is trying to create meta data for, with the complete lambda, verb and args of your endpoint. This allows you to semantically traverse the lambda/args nodes, and append any amount of (additional) meta information you wish - Allowing you to extend the generating of meta data, if you have some sort of general custom Hyperlambda module, creating custom HTTP endpoints of some sort.

This function will be invoked for every single Hyperlambda file in your system, every time meta data is retrieved, so you might want to ensure it executes in a fairly short amount of time, not clogging the server or HTTP endpoint meta generating process in any ways.

In addition to the meta retrieval endpoint described above, the module contains the following slots.

  • [server.ip] - Returns the IP address of the server itself
  • [response.status.set] - Sets the status code (e.g. 404) on the response object
  • [request.cookies.list] - Lists all HTTP request cookies
  • [request.cookies.get] - Returns the value of a cookie sent by the request
  • [response.cookies.set] - Creates a cookie that will be returned to the client over the response
  • [request.headers.list] - Lists all HTTP request headers sent by the request
  • [request.headers.get] - Returns a single HTTP header associated with the request
  • [request.ip] - Returns the IP address of the HTTP request
  • [request.url] - Returns the relative URL associated with the request, without its magic/ prefix, and query parameters as children nodes as a key/value list
  • [request.host] - Returns the host name associated with the request
  • [request.scheme] - Returns the scheme associated with the request
  • [response.headers.set] - Adds an HTTP header to the response object
  • [mime.add] - Associates a file extension with a MIME type

Changing your Hyperlambda endpoint's response type

Unless you explicitly change the Content-Type of your response object, by using the [response.headers.set] slot, a Content-Type of application/json will be assumed, and this header will be added to the resulting HTTP response object. If you wish to override this behavious and return plain text for instance, you could create an endpoint containing the following.

response.headers.set
   Content-Type:text/plain
return:Hello from Magic Backend

If you intend to return anything but JSON, you must set the Content-Type header, because the resolver will by default try to serialize your content as JSON, and obviously fail unless it is valid JSON. You can also return stream objects using for instance the [return-value] slot, at which point ASP.NET Core will automatically stream your content back over the response object, and Dispose your stream automatically for you afterwards. This allows you to for instance return large files back to the client without loading them into memory first. If you do this, you'll have to change your Content-Type accordingly.

Hyperlambda and cookies

Since cookies have more parameters than just a simple key/value declaration, the [response.cookies.set] slot takes the following arguments.

  • [value] - The string content of your cookie
  • [expires] - Absolute expiration date of your cookie, as a Hyperlambda date value
  • [http-only] - Boolean value declaring whether or not the cookie should only be accessible on the server
  • [secure] - Boolean value declaring whether or not cookie should only be transmitted from the client to the server over a secure (https) connection
  • [domain] - Domain value of your cookie
  • [path] - Path value of your cookie
  • [same-site] - Same-site value of your cookie

Only the [value] from above is mandatory. To delete a cookie on the client, set the expiration date to a value in the past.

How to use [mime.add]

This slots associates a file extension with a MIME type. Notice, it will override previous associations if existing. Example usage can be found below.

mime.add:py
   .:application/python

Then later when the endpoint resolver is returning files ending with ".py", it will return these with a Content-Type of "application/python".

Hyperlambda code behind files

The resolver will resolve anything not starting out with /magic/ as a static file, optionally applied as a mixin file having a Hyperlambda code behind file for mixing in dynamic content with any ".html" files. This allows you to render HTML, CSS, JavaScript and "whatever", with the ability to dynamically render parts of your HTML files using Hyperlambda. This logic relies upon the [io.file.mixin] slot from the "magic.lambda.io" project. If you create two files such as follows and put both of these files in your "/etc/www/" folder, you can see this logic in action.

index.html

<html>
    <head>
        <title>Hell world</title>
    </head>
    <body>
        <h1>Hello world</h1>
        <p>
           Hello there Thomas Hansen, {{*/.calculate}}
        </p>
    </body>
</html>

index.hl

.calculate
   math.add
      .:int:2
      .:int:2
   return:x:-

The above will substitute your {{*/.calculate}} parts with the result of invoking your [.calculate] lambda object, resulting in 4. To understand how this works, you need to read about the [io.file.mixin] slot in the "magic.lambda.io" project, and realise that the above will actually transform to the following as the mixin logic is executed.

io.file.mixin:/etc/www/index.html
   .calculate
      math.add
         .:int:2
         .:int:2
      return:x:-

This allows you to serve dynamically rendered HTML files, where parts of your HTML is substituted with the result of invoking some lambda object. If you have an HTML file without a Hyperlambda code behind file, it will be served as a static file. CSS files, JavaScript files, and images will also be served as static files.

Notice, interceptor files will be executed as normally, allowing you to apply interceptor files similarly to how you apply these with your "/magic/" endpoints. In addition, any file called "default.html" having a Hyperlambda counterpart will be used for default URL resolving if no explicit URL is found, allowing you to handle dynamica URLs with this file.

Project website for magic.endpoint

The source code for this repository can be found at github.com/polterguy/magic.endpoint, and you can provide feedback, provide bug reports, etc at the same place.

  • Build status
  • Quality Gate Status
  • Bugs
  • Code Smells
  • Coverage
  • Duplicated Lines (%)
  • Lines of Code
  • Maintainability Rating
  • Reliability Rating
  • Security Rating
  • Technical Debt
  • Vulnerabilities

The projects is copyright of Aista, Ltd 2021 - 2023, and professionally maintained by AINIRO your friendly ChatGPT website chatbot vendor.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 (1)

Showing the top 1 NuGet packages that depend on magic.endpoint:

Package Downloads
magic.library

Helper project for Magic to wire up everything easily by simply adding one package, and invoking two simple methods. When using Magic, this is (probably) the only package you should actually add, since this package pulls in everything else you'll need automatically, and wires up everything sanely by default. To use package go to https://polterguy.github.io

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
17.1.7 149 1/12/2024
17.1.6 122 1/11/2024
17.1.5 134 1/5/2024
17.0.1 176 1/1/2024
17.0.0 318 12/14/2023
16.11.5 295 11/12/2023
16.9.0 288 10/9/2023
16.7.0 525 7/11/2023
16.4.1 359 7/2/2023
16.4.0 381 6/22/2023
16.3.1 379 6/7/2023
16.3.0 363 5/28/2023
16.1.9 635 4/30/2023
15.10.11 447 4/13/2023
15.9.1 650 3/26/2023
15.9.0 499 3/24/2023
15.8.2 464 3/20/2023
15.7.0 392 3/6/2023
15.5.0 1,629 1/28/2023
15.2.0 692 1/18/2023
15.1.0 1,181 12/28/2022
14.5.7 713 12/13/2022
14.5.5 841 12/6/2022
14.5.1 674 11/23/2022
14.5.0 578 11/18/2022
14.4.5 740 10/22/2022
14.4.1 765 10/22/2022
14.4.0 692 10/17/2022
14.3.1 1,349 9/12/2022
14.3.0 726 9/10/2022
14.1.3 992 8/7/2022
14.1.2 719 8/7/2022
14.1.1 720 8/7/2022
14.0.14 752 7/26/2022
14.0.12 779 7/24/2022
14.0.11 744 7/23/2022
14.0.10 789 7/23/2022
14.0.9 718 7/23/2022
14.0.8 855 7/17/2022
14.0.5 922 7/11/2022
14.0.4 844 7/6/2022
14.0.3 800 7/2/2022
14.0.2 783 7/2/2022
14.0.0 939 6/25/2022
13.4.0 2,191 5/31/2022
13.3.6 1,276 5/14/2022
13.3.4 903 5/9/2022
13.3.0 1,069 5/1/2022
13.2.0 1,326 4/21/2022
13.1.0 1,207 4/7/2022
13.0.0 878 4/5/2022
11.0.5 1,547 3/2/2022
11.0.4 964 2/22/2022
11.0.3 967 2/9/2022
11.0.2 970 2/6/2022
11.0.1 737 2/5/2022
11.0.0 940 2/5/2022
10.0.21 921 1/28/2022
10.0.20 883 1/27/2022
10.0.19 922 1/23/2022
10.0.18 907 1/17/2022
10.0.15 986 12/31/2021
10.0.14 635 12/28/2021
10.0.7 1,533 12/22/2021
10.0.5 837 12/18/2021
9.9.9 1,171 11/29/2021
9.9.3 1,094 11/9/2021
9.9.2 762 11/4/2021
9.9.0 859 10/30/2021
9.8.9 813 10/29/2021
9.8.7 760 10/27/2021
9.8.6 787 10/27/2021
9.8.5 811 10/26/2021
9.8.0 1,515 10/20/2021
9.7.9 691 10/19/2021
9.7.6 1,430 10/17/2021
9.7.5 776 10/14/2021
9.7.2 553 10/14/2021
9.7.0 1,024 10/9/2021
9.6.6 1,341 8/14/2021
9.5.9 2,047 8/5/2021
9.2.1 4,607 6/1/2021
9.2.0 779 5/26/2021
9.1.9 684 5/5/2021
9.1.8 799 5/5/2021
9.1.7 721 5/3/2021
9.1.4 703 4/21/2021
9.1.0 1,100 4/14/2021
9.0.0 963 4/5/2021
8.9.9 1,092 3/30/2021
8.9.3 1,628 3/19/2021
8.9.2 1,178 1/29/2021
8.9.1 1,149 1/24/2021
8.9.0 1,185 1/22/2021
8.6.9 3,037 11/8/2020
8.6.6 2,029 11/2/2020
8.6.1 3,400 10/29/2020
8.6.0 1,354 10/28/2020
8.5.0 2,006 10/23/2020
8.4.3 2,889 10/17/2020
8.4.2 1,403 10/16/2020
8.4.1 1,989 10/15/2020
8.4.0 1,339 10/13/2020
8.3.1 2,701 10/5/2020
8.3.0 1,358 10/3/2020
8.2.3 1,275 10/1/2020
8.2.2 1,486 9/26/2020
8.2.1 1,428 9/25/2020
8.2.0 1,343 9/25/2020
8.1.19 3,249 9/21/2020
8.1.18 2,115 9/14/2020
8.1.17 2,787 9/13/2020
8.1.16 1,409 9/13/2020
8.1.15 1,344 9/12/2020
8.1.11 2,571 9/11/2020
8.1.10 1,347 9/6/2020
8.1.9 1,388 9/3/2020
8.1.8 1,429 9/2/2020
8.1.7 1,274 8/28/2020
8.1.4 1,268 8/25/2020
8.1.3 1,416 8/18/2020
8.1.2 1,335 8/16/2020
8.1.1 1,346 8/15/2020
8.1.0 677 8/15/2020
8.0.1 2,718 8/7/2020
8.0.0 1,338 8/7/2020
7.0.0 2,138 6/28/2020
5.0.0 7,314 2/25/2020
4.1.0 2,713 2/22/2020
4.0.9 1,429 2/22/2020
4.0.8 2,011 2/21/2020
4.0.7 1,376 2/7/2020
4.0.5 1,986 2/7/2020
4.0.4 2,102 1/27/2020
4.0.3 1,359 1/27/2020
4.0.2 1,518 1/16/2020
4.0.1 1,531 1/11/2020
4.0.0 1,481 1/5/2020
3.1.1 1,520 12/17/2019
3.1.0 5,495 11/10/2019
3.0.1 1,382 11/1/2019
3.0.0 3,335 10/23/2019
2.0.4 3,266 10/19/2019
2.0.3 4,631 10/17/2019
2.0.2 1,394 10/15/2019
2.0.1 1,940 10/14/2019
2.0.0 1,141 10/13/2019
1.2.1 1,491 10/11/2019
1.1.9 1,455 10/10/2019
1.1.8 754 10/10/2019
1.1.7 810 10/9/2019
1.1.6 755 10/7/2019
1.1.5 760 10/6/2019
1.1.4 711 10/6/2019