项目作者: rla

项目描述 :
An alternative HTTP router/dispatcher for SWI-Prolog.
高级语言: Prolog
项目地址: git://github.com/rla/alternative-router.git
创建时间: 2013-11-19T08:00:17Z
项目社区:https://github.com/rla/alternative-router

开源协议:MIT License

下载


alternative-router

This is an alternative router/dispatcher to Swi-Prolog’s
http_dispatch module. The
main motivation for creating this module was more convenient (less verbose) implementation
of RESTful web services.

Build Status

Example

  1. :- use_module(library(http/thread_httpd)).
  2. :- use_module(library(arouter)).
  3. :- route_get(hello/Name, handle_hello(Name)).
  4. handle_hello(Name):-
  5. format('Content-Type: text/plain; charset=UTF-8~n~n'),
  6. format('Hello ~w', [Name]).
  7. :- http_server(route, [port(8008)]).

Save it to a file, run it, and then visit http://localhost:8008/hello/world.

Path terms

Normal path terms correspond directly to URL paths with the implicit root (/)
symbol. For example, path/to/something corresponds to URL
http://example.com/path/to/something. To match the root itself, / alone
must be used. To match an URL path with a slash in the end, an empty atom
has to be used at the end of the path term. For example, to match URL
http://example.com/path/to/something/, a path term path/to/something/''
must be used.

Using with http_dispatch

Make fallback to http_dispatch/1 like this:

  1. handle_request(Request):-
  2. ( route(Request)
  3. -> true
  4. ; http_dispatch(Request)).

and use handle_request/1 as the handler in http_server.

Before-handler

Routes can have intermediate goals. The following example is cheking auth information
before executing the handler:

  1. :- route_get(api/resource, auth, handle_resource).
  2. auth(Next):-
  3. ( http_session_data(user(User)),
  4. memberchk(role(admin), User)
  5. -> call(Next)
  6. ; current_request(Request),
  7. memberchk(path(Path), Request),
  8. current_output(Out),
  9. http_reply(forbidden(Path), Out, [])).
  10. handle_resource:-
  11. ...

The before-handler predicate calls its first argument when the request should pass it.
Otherwise it should produce the response itself.

Route-path matching

A path will match the route when:

  • Path and rule are /.
  • Path is an atomic value and the route is same atomic value or a variable.
  • Path is /(P1, P2), route is /(R1, R2) and R1 matches P1 and R2 matches P2.

Route priority

Routes are tested in reverse to the adding order. Overlapping routes can be added. Structurally equivalent
routes cannot be added. Routes are overlapping when one route has atom in position of route variable in the
other. Routes are structurally equivalent when:

  • Both routes are /.
  • Both routes are variables.
  • Both routes are same atomic values.
  • One route is /(A1, B1), the other is /(A2, B2) and
    A1, A2 are structurally equivalent and B1, B2 are structurally equivalent.

Structural equivalence is used for detecting duplicate rules. This plays nice with the make/0 goal.

Non-deterministic routing

In some cases another matching (overlapping) route might have to be tried. This can be
done by throwing arouter_next from the current route handler. Example:

  1. :- route_get(something/specific, handle_specific).
  2. handle_specific:-
  3. ...
  4. :- route_get(something/Generic, handle_generic(Generic)).
  5. handle_generic(Generic):-
  6. ( Generic = specific
  7. -> throw(arouter_next)
  8. ; ...).

The handler handle_specific will handle the request in this case
after throwing arouter_next from the handle_generic handler (handlers
are tried in reverse order of adding them).

List of predicates

Adding new routes

route_get(+Route, :Goal) registers a new GET handler.

route_put(+Route, :Goal) registers a new PUT handler.

route_del(+Route, :Goal) registers a new DELETE handler.

route_post(+Route, :Goal) registers a new POST handler.

route_get(+Route, :Before, :Goal) registers a new GET handler with a before action.

route_put(+Route, :Before, :Goal) registers a new PUT handler with a before action.

route_del(+Route, :Before, :Goal) registers a new DELETE handler with a before action.

route_post(+Route, :Before, :Goal) registers a new POST handler with a before action.

new_route(+Method, +Route, :Goal) registers a new custom method handler.

new_route(+Method, +Route, :Before, :Goal) registers a new custom method handler with a before action.

All predicates above will throw an error when the Route does not contain the
suitable term.

Route handler predicates can take variables from the route. Example:

  1. :- http_get(post/show/Slug, post_show(Slug)).
  2. post_show(Slug):-
  3. ...

However, they do not take the Request argument, unlike the http_dispatch handlers. To obtain the
current request, use the http_current_request/1
predicate.

Dispatching

route(+Request) - takes given request and attempts to find suitable handler.

Request must contain terms method(Method) and path(Path). Throws handler_failed(Method, Path) when
handler was found but it failed during execution.

Inspecting routes

Use the route(?Method, ?Route, ?Before, ?Goal) predicate.

Removing routes

Use the route_remove(Method, Route) predicate. Both arguments
can be unbound or partially instantiated.

Installation

To install as a package:

  1. pack_install(arouter).

Tested with Swi-Prolog 7.x but should work with earlier versions too.

Full API documentation

See http://packs.rlaanemets.com/alternative-router/doc.

Running tests

In the package root, insert into swipl:

  1. [tests/tests].
  2. run_tests.

Or if you cloned the repo:

  1. make test

Debugging

Enable debugging with:

  1. ?- use_module(library(debug)).
  2. ?- debug(arouter).

Changelog

  • 2021-01-23 version 2.0.0. HEAD method routes to GET handlers.
  • 2015-11-01 version 1.1.1. Attempt to preserve route order on make.
  • 2015-11-01 version 1.1.0. Non-deterministic routing.
  • 2014-05-08 version 1.0.0. Precise route matching semantics.
  • 2014-02-01 version 0.0.1

Bug reports/feature requests

Please send bug reports/feature request through the GitHub
project page.

License

The MIT license. See the LICENSE file.