From 8842d4e2afade4a9c2218a6f7108e878c15e68a3 Mon Sep 17 00:00:00 2001 From: Kevin Delisle Date: Mon, 13 Nov 2017 18:15:09 -0500 Subject: [PATCH] docs(lb4): Creating components - custom servers (#523) --- pages/en/lb4/Creating-components.md | 108 +++++++++++++++++++++++----- 1 file changed, 92 insertions(+), 16 deletions(-) diff --git a/pages/en/lb4/Creating-components.md b/pages/en/lb4/Creating-components.md index de97da7ab..0504be1c8 100644 --- a/pages/en/lb4/Creating-components.md +++ b/pages/en/lb4/Creating-components.md @@ -25,15 +25,15 @@ export class MyComponent { } ``` -When a component is mounted to an application, a new instance of the component class is created and then - - each Controller class is registered via `app.controller()`, - - each Provider is bound to its key in `providers` object. +When a component is mounted to an application, a new instance of the component class is created and then: + - Each Controller class is registered via `app.controller()`, + - Each Provider is bound to its key in `providers` object. The example `MyComponent` above will add `MyController` to application's API and create a new binding `my.value` that will be resolved using `MyValueProvider`. ## Providers -Providers are the mechanism allowing components to export values that can be used by the target application or other components. A provider is a class that provides `value()` function, this function is called by [Context](Context.html) whenever another entity requests a value to be injected. +Providers enable components to export values that can be used by the target application or other components. The `Provider` class provides a `value()` function called by [Context](Context.html) when another entity requests a value to be injected. ```js import {Provider} from '@loopback/context'; @@ -63,7 +63,7 @@ export class MyComponent { ### Accessing values from Providers -Applications should use `@inject` decorators to access the value provided by our exported provider. +Applications can use `@inject` decorators to access the value of an exported Provider. If you’re not familiar with decorators in TypeScript, see [Key Concepts: Decorators](Decorators.html) ```js @@ -84,7 +84,8 @@ class MyController { } ``` -A note on binding names: In order to avoid name conflicts, always add a unique prefix to your binding key (`my-component.` in the example above). See [Reserved binding keys](Reserved-binding-keys.html) for the list of keys reserved for the framework use. +{% include note.html title="A note on binding names" content="To avoid name conflicts, add a unique prefix to your binding key (for example, `my-component.` in the example above). See [Reserved binding keys](Reserved-binding-keys.html) for the list of keys reserved for the framework use. +" %} ### Asynchronous providers @@ -107,7 +108,7 @@ In this case, LoopBack will wait until the promise returned by `value()` is reso ### Working with HTTP request/response -In some cases, the provider may depend on other parts of LoopBack, for example the current `request` object. Such dependencies should be listed in provider's constructor and annotated with `@inject` keyword, so that LoopBack runtime can resolve them automatically for you. +In some cases, the Provider may depend on other parts of LoopBack; for example the current `request` object. The Provider's constructor should list such dependencies annotated with `@inject` keyword, so that LoopBack runtime can resolve them automatically. ```js const uuid = require('uuid/v4'); @@ -125,7 +126,7 @@ class CorrelationIdProvider { ## Modifying request handling logic -A frequent use case for components is to modify the way how all requests are handled. For example, the authentication component needs to verify user credentials before the actual handler can be invoked, a logger component needs to record start time and write a log entry when the request has been handled. +A frequent use case for components is to modify the way requests are handled. For example, the authentication component needs to verify user credentials before the actual handler can be invoked; or a logger component needs to record start time and write a log entry when the request has been handled. The idiomatic solution has two parts: @@ -179,7 +180,7 @@ The idiomatic solution has two parts: ### Accessing Elements contributed by other Sequence Actions -When writing a custom sequence action, you need to access Elements contributed by other actions run in the sequence. For example, `authenticate()` action needs information about the invoked route in order to decide whether and how to authenticate the request. +When writing a custom sequence action, you need to access Elements contributed by other actions run in the sequence. For example, `authenticate()` action needs information about the invoked route to decide whether and how to authenticate the request. Because all Actions are resolved before the Sequence `handle` function is run, Elements contributed by Actions are not available for injection yet. To solve this problem, use `@inject.getter` decorator to obtain a getter function instead of the actual value. This allows you to defer resolution of your dependency only until the sequence action contributing this value has already finished. @@ -232,14 +233,13 @@ export class AuthenticationProvider { ## Extends Application with Mixin When binding a component to an app, you may want to extend the app with the component's -properties and methods. -This can be achieved by using mixins. +properties and methods by using mixins. -If you are not familiar with the mixin concept, check [Mixin](Mixin.html) to learn more. +For an overview of mixins, see [Mixin](Mixin.html). -An example of how a mixin leverages component would be `RepositoryMixin`: -Suppose an app has multiple components with repositories bound to each of them, -you can use function `RepositoryMixin` to mount those repositories to application level context. +An example of how a mixin leverages a component is `RepositoryMixin`. +Suppose an app has multiple components with repositories bound to each of them. +You can use function `RepositoryMixin()` to mount those repositories to application level context. The following snippet is an abbreviated function [`RepositoryMixin`](https://github.com/strongloop/loopback-next/blob/master/packages/repository/src/repository-mixin.ts): @@ -291,7 +291,7 @@ app.find('repositories.*'); ## Configuring components -More often than not, the component may want to offer different value providers depending on the configuration. For example, a component providing Email API may offer different transports (stub, SMTP, etc.). +More often than not, the component may want to offer different value providers depending on the configuration. For example, a component providing an email API may offer different transports (stub, SMTP, and so on). Components should use constructor-level [Dependency Injection](Context.html#dependency-injection) to receive the configuration from the application. @@ -307,3 +307,79 @@ class EmailComponent { } } ``` + +## Creating your own servers + +LoopBack 4 has the concept of a Server, which you can use to create your own +implementations of REST, SOAP, gRPC, MQTT and more. For an overview, see +[Server](Server.html). + +Typically, you'll want server instances that listen for traffic on one or more +ports (this is why they're called "servers", after all). This leads into a key +concept to leverage for creating your custom servers. + +### Controllers and routing +LoopBack 4 developers are strongly encouraged to use controllers for their +modules, and this naturally leads to the concept of routing. + +No matter what protocol you intend to use for your custom server, you'll need +to use some algorithm to determine _which_ controller and function to send +request data to, and that means you need a router. + +For example, consider a "toy protocol" similar to the JSON RPC +specification (but nowhere near as complete or robust). + +The toy protocol will require a JSON payload with three properties: `controller`, +`method`, and `input`. + +An example request would look something like this: +```json +{ + "controller": "GreetController", + "method": "basicHello", + "input": { + "name": "world", + } +} +``` + +You can find the code for our sample RPC server implementation +[over here](https://github.com/strongloop/loopback4-example-rpc-server). + +### Trying it out +First, install your dependencies and then start the application: +``` +npm i && npm start +``` + +Now, try it out: start the server and run a few REST requests. Feel free to use +whatever REST client you'd prefer (this example will use `curl`). +```sh +# Basic Greeting Calls +$ curl -X POST -d '{ "controller": "GreetController", "method": "basicHello" }' -H "Content-Type: application/json" http://localhost:3000/ +Hello, World! +$ curl -X POST -d '{ "controller": "GreetController", "method": "basicHello", "input": { "name": "Nadine" } }' -H "Content-Type: application/json" http://localhost:3000/ +Hello, Nadine! +# Advanced Greeting Calls +$ curl -X POST -d '{ "controller": "GreetController", "method": "hobbyHello", "input": { "name": "Nadine" } }' -H "Content-Type: application/json" http://localhost:3000/ +Hello, Nadine! I heard you like underwater basket weaving. +$ curl -X POST -d '{ "controller": "GreetController", "method": "hobbyHello", "input": { "name": "Nadine", "hobby": "extreme mountain biking" } }' -H "Content-Type: application/json" http://localhost:3000/ +Hello, Nadine! I heard you like extreme mountain biking. +``` + +While a typical protocol server would be a lot more involved in the +implementation of both its router and server, the general concept remains +the same, and you can use these tools to make whatever server you'd like. + +### Other considerations +Some additional concepts to add to your server could include: +- Pre-processing of requests (changing content types, checking the request body, +etc) +- Post-processing of responses (removing sensitive/useless information) +- Caching +- Logging +- Automatic creation of default endpoints +- and more... + +LoopBack 4's modularity allows for custom servers of all kinds, while still +providing key utilities like context and injection to make your work easier.