xp-forge / web
Web applications for the XP Framework
Installs: 50 442
Dependents: 5
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 1
Open Issues: 5
Requires
- php: >=7.0.0
- xp-forge/uri: ^3.0 | ^2.0 | ^1.4
- xp-framework/core: ^12.0 | ^11.0 | ^10.0
- xp-framework/networking: ^10.1 | ^9.3
Requires (Dev)
- xp-framework/test: ^2.0 | ^1.0
- dev-master
- v4.5.1
- v4.5.0
- v4.4.2
- v4.4.1
- v4.4.0
- v4.3.0
- v4.2.0
- v4.1.1
- v4.1.0
- v4.0.0
- v3.12.0
- v3.11.0
- v3.10.0
- v3.9.0
- v3.8.1
- v3.8.0
- v3.7.0
- v3.6.0
- v3.5.0
- v3.4.1
- v3.4.0
- v3.3.0
- v3.2.0
- v3.1.0
- v3.0.2
- v3.0.1
- v3.0.0
- v2.13.1
- v2.13.0
- v2.12.0
- v2.11.0
- v2.10.0
- v2.9.1
- v2.9.0
- v2.8.0
- v2.7.0
- v2.6.1
- v2.6.0
- v2.5.1
- v2.5.0
- v2.4.0
- v2.3.1
- v2.3.0
- v2.2.0
- v2.1.0
- v2.0.0
- v1.10.2
- v1.10.1
- v1.10.0
- v1.9.0
- v1.8.0
- v1.7.0
- v1.6.4
- v1.6.3
- v1.6.2
- v1.6.1
- v1.6.0
- v1.5.1
- v1.5.0
- v1.4.2
- v1.4.1
- v1.4.0
- v1.3.0
- v1.2.0
- v1.1.0
- v1.0.1
- v1.0.0
- v0.14.1
- v0.14.0
- v0.13.0
- v0.12.0
- v0.11.0
- v0.10.0
- v0.9.0
- v0.8.3
- v0.8.2
- v0.8.1
- v0.8.0
- v0.7.0
- v0.6.3
- v0.6.2
- v0.6.1
- v0.6.0
- v0.5.0
- v0.4.0
- v0.3.0
- v0.2.0
- v0.1.0
- dev-feature/pattern-based-routing
- dev-feature/streaming
- dev-feature/flushing
This package is auto-updated.
Last update: 2024-10-29 10:59:40 UTC
README
Low-level functionality for serving HTTP requests, including the xp web
runner.
Example
use web\Application; class Service extends Application { public function routes() { return [ '/hello' => function($req, $res) { $res->answer(200, 'OK'); $res->send('Hello '.$req->param('name', 'Guest'), 'text/plain'); } ]; } }
Run it using:
$ xp -supervise web Service @xp.web.srv.Standalone(HTTP @ peer.ServerSocket(Resource id #61 -> tcp://127.0.0.1:8080)) # ...
Supports a development webserver which is slower but allows an easy edit/save/reload development process. It uses the PHP development server in the background.
$ xp -supervise web -m develop Service @xp.web.srv.Develop(HTTP @ `php -S 127.0.0.1:8080 -t /home/example/devel/shorturl`) # ...
Now open the website at http://localhost:8080/hello
Server models
The four server models (selectable via -m <model>
on the command line) are:
- async (the default since 3.0.0): A single-threaded web server. Handlers can yield control back to the server to serve other clients during lengthy operations such as file up- and downloads.
- sequential: Same as above, but blocks until one client's HTTP request handler has finished executing before serving the next request.
- prefork: Much like Apache, forks a given number of children to handle HTTP requests. Requires the
pcntl
extension. - develop: As mentioned above, built ontop of the PHP development wenserver. Application code is recompiled and application setup performed from scratch on every request, errors and debug output are handled by the development console.
Request and response
The web.Request
class provides the following basic functionality:
use web\Request; $request= ... $request->method(); // The HTTP method, e.g. "GET" $request->uri(); // The request URI, a util.URI instance $request->headers(); // All request headers as a map $request->header($name); // The value of a single header $request->cookies(); // All cookies $request->cookie($name); // The value of a single cookie $request->params(); // All request parameters as a map $request->param($name); // The value of a single parameter
The web.Response
class provides the following basic functionality:
use web\{Response, Cookie}; $response= ... // Set status code, header(s) and cookie(s) $response->answer($status); $response->header($name, $value); $response->cookie(new Cookie($name, $value)); // Sends body using a given content type $response->send($body, $type); // Transfers an input stream using a given content type. Uses // chunked transfer-encoding. yield from $response->transmit($in, $type); // Same as above, but specifies content length before-hand yield from $response->transmit($in, $type, $size);
Both Request and Response have a stream()
method for accessing the underlying in- and output streams.
Handlers
A handler (also referred to as middleware in some frameworks) is a function which receives a request and response and uses the above functionality to handle communication.
use web\Handler; $redirect= new class() implements Handler { public function handle($req, $res) { $req->status(302); $req->header('Location', 'https://example.com/'); } };
This library comes with web.handler.FilesFrom
- a handler for serving files. It takes care of conditional requests (with If-Modified-Since) as well requests for content ranges, and makes use of the asynchronous capabilities if available, see here.
Filters
Filters wrap around handlers and can perform tasks before and after the handlers are invoked. You can use the request's pass()
method to pass values - handlers can access these using value($name)
/ values()
.
use web\Filter; use util\profiling\Timer; use util\log\{Logging, LogCategory}; $timer= new class(Logging::all()->toConsole()) implements Filter { private $timer; public function __construct(private LogCategory $cat) { $this->timer= new Timer(); } public function filter($request, $response, $invocation) { $this->timer->start(); try { yield from $invocation->proceed($request, $response); } finally { $this->cat->debugf('%s: %.3f seconds', $request->uri(), $this->timer->elapsedTime()); } } }
By using yield from
, you guarantee asynchronous handlers will have completely executed before the time measurement is run on in the finally
block.
File uploads
File uploads are handled by the request's multipart()
method. In contrast to how PHP works, file uploads are streamed and your handler starts running with the first byte transmitted!
use io\Folder; $uploads= new Folder('...'); $handler= function($req, $res) use($uploads) { if ($multipart= $req->multipart()) { // See https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/100 if ('100-continue' === $req->header('Expect')) { $res->hint(100, 'Continue'); } // Transmit files to uploads directory asynchronously $files= []; $bytes= 0; foreach ($multipart->files() as $name => $file) { $files[]= $name; $bytes+= yield from $file->transmit($uploads); } // Do something with files and bytes... } };
Early hints
An experimental status code with which headers can be sent to a client early along for it to be able to make optimizations, e.g. preloading scripts and stylesheets.
$handler= function($req, $res) { $res->header('Link', [ '</main.css>; rel=preload; as=style', '</script.js>; rel=preload; as=script' ]); $res->hint(103); // Do some processing here to render $html $html= ... $res->answer(200, 'OK'); $res->send($html, 'text/html; charset=utf-8'); }
See https://evertpot.com/http/103-early-hints
Internal redirects
On top of external redirects which are triggered by the 3XX status codes, requests can also be redirected internally using the dispatch()
method. This has the benefit of not requiring clients to perfom an additional request.
use web\Application; class Site extends Application { public function routes() { return [ '/home' => function($req, $res) { // Home page }, '/' => function($req, $res) { // Routes are re-evaluated as if user had called /home return $req->dispatch('/home'); }, ]; } }
Logging
By default, logging goes to standard output and will be visible in the console the xp web
command was invoked from. It can be influenced via the command line as follows:
-l server.log
: Writes to the file server.log, creating it if necessary-l -
: Writes to standard output-l - -l server.log
: Writes to both of the above
More fine-grained control as well as integrating with the logging library can be achieved from inside the application, see here.
Performance
Because the code for the web application is only compiled once when using production servers, we achieve lightning-fast request/response roundtrip times:
See also
This library provides for the very basic functionality. To create web frontends or REST APIs, have a look at the following libraries built ontop of this: