GithubHelp home page GithubHelp logo

fperana / wirl Goto Github PK

View Code? Open in Web Editor NEW

This project forked from delphi-blocks/wirl

0.0 0.0 0.0 5.37 MB

WiRL: RESTful Library for Delphi

License: Apache License 2.0

Pascal 98.87% HTML 0.46% CSS 0.05% JavaScript 0.30% Batchfile 0.31%

wirl's Introduction

WiRL: Delphi RESTful Library


Delphi RESTful Library

What is WiRL?

Top language GitHub license GitHub issues GitHub PR GitHub release GitHub commit activity GitHub last commit GitHub contributors

WiRL was created to simplify RESTful service implementation in Delphi but, more importantly, to enable maximum interoperability with REST clients written in other languages and tools.

WiRL takes after Java JAX-RS specifications and tries to be compliant with the 6 REST constraints.

WiRL is a high-level REST framework exposing plain Delphi objects (PODO) as RESTful web resources by applying attributes to these classes.

[Path('customers')]
TCustomerResource = class
public
  [GET]
  [Produces('TMediaType.APPLICATION_JSON')]
  function SelectCustomers: TCustomerList;

  [POST]
  [Consumes('TMediaType.APPLICATION_JSON')]
  [Produces('TMediaType.APPLICATION_JSON')]
  function InsertCustomer(ACustomer: TCustomer): TCustomer;
end;

WiRL has a strong HTTP content negotiation and defines attributes to bind specific URI patterns and HTTP operations to individual methods of your Delphi class. It has parameter injection attributes so that you can easily pull in information from the HTTP request. It has message body readers and writers that allow you to decouple data format marshalling and unmarshalling from your Delphi objects. It has exception mappers that can map an exception to an HTTP response code and message.

WiRL uses 3 submodules:

  1. Delphi JOSE and JWT Library for the JSON Web Token creation and validation
  2. Neon - Serialization Library for Delphi to convert Delphi simple types, objects, records, arrays, etc... to the JSON format
  3. OpenAPI 3 for Delphi for the OpenAPI documentation generation

wirl's People

Contributors

paolo-rossi avatar lminuti avatar fperana avatar bm-q avatar andrea-magni avatar mattiavicari avatar ortuagustin avatar daldosso avatar deerbear avatar olkkon 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.