# OAuth support for Adobe I/O IMS Library

OAuth2 (SUSI) token creation plugin for [`aio-lib-ims`](https://github.com/adobe/aio-lib-ims).

[![Version](https://img.shields.io/npm/v/@adobe/aio-lib-ims-oauth.svg)](https://npmjs.org/package/@adobe/aio-lib-ims-oauth)
[![Downloads/week](https://img.shields.io/npm/dw/@adobe/aio-lib-ims-oauth.svg)](https://npmjs.org/package/@adobe/aio-lib-ims-oauth)
[![Node.js CI](https://github.com/adobe/aio-lib-ims-oauth/actions/workflows/node.js.yml/badge.svg)](https://github.com/adobe/aio-lib-ims-oauth/actions/workflows/node.js.yml)
[![Codecov Coverage](https://img.shields.io/codecov/c/github/adobe/aio-lib-ims-oauth/master.svg?style=flat-square)](https://codecov.io/gh/adobe/aio-lib-ims-oauth/)
[![License](https://img.shields.io/npm/l/@adobe/aio-lib-ims-oauth.svg)](https://github.com/adobe/aio-lib-ims-oauth/blob/master/package.json)


This plugin is intended to be used in conjunction with the [`aio-lib-ims`](https://github.com/adobe/aio-lib-ims) extending that to support browser based 3-legged OAuth2 authentication with IMS commonly known as _SUSI flow_.

For more information about the general setup of the Adobe I/O CLI IMS Plugin, please refer to [`aio-lib-ims`](https://github.com/adobe/aio-lib-ims).

The 3-legged OAuth2 requires interaction with a browser as the initial authentication step to receive the authorization code may be involving multiple browser based steps.
For example an IMS Enterprise integration may involve further redirects to a 3rd party for actual authentication.

Workflow:
1. A 4-byte random pass-code is generated
2. A localhost web server is created, listening at a port number
3. An Adobe I/O Runtime web action is opened in the browser, passing in this pass-code, the localhost web server port number, the client id, and the IMS scope as query parameters
3. The Adobe I/O Runtime web action will redirect to the IMS authorization endpoint, with the scope, client id and a [csrf](https://en.wikipedia.org/wiki/Cross-site_request_forgery) token as the `state` property (derived from the id, client id, scope and localhost port) passed in as query parameters
4. When the user is authenticated or an error occurs, the IMS endpoint will redirect to the Adobe I/O Runtime web action's `login-success` path
5. If the authentication is successful, the Adobe I/O Runtime web action will redirect to the localhost web server at the specified port (derived from the `state` property), and forward the `state` and `code` properties to the localhost web server call as query parameters
6. The localhost web server will pass on the authorization code to the library, and the library will call an IMS endpoint to exchange the authorization code for an access token and refresh token
7. If the authentication is not successful, the Adobe I/O Runtime web action will report an error message in the web browser

The Adobe I/O Runtime function used (currently in testing) is coming soon.

# Config

Add the `oauth2` context into your `.aio` file in your current working directory (project folder), under `ims`:
```javascript
{
  ims: {
    contexts: {
      oauth2: {
          client_id: "YOUR_CLIENT_ID",
          client_secret: "YOUR_CLIENT_SECRET",
          scope: "YOUR_IMS_SCOPE"
      }
    }
  }
}
```
The context can be named anything (here `oauth2` is chosen for the context name).


# Client ID

The Client ID (called the OAuth2 credential in Developer Console) must allow the Adobe I/O Runtime action's `login-success` path as the redirect URL. To this avail it should be configured as one of the redirect URI patterns of the OAuth2 credential in the Developer Console with the value:

```
https://aio-login\.adobeioruntime\.net/api/v1/web/default/applogin/login-success
```

Please note the backslash escaping of the dots in the URLs which is very important because this value must be a valid regular expression.

For example as shown in the following screenshot editing the credential:

![Edit Credential](docs/images/developer-console-edit-credential.png "Developer Console: edit credential")

# Environment Variables

| Variable | Description | Default |
|----------|-------------|---------|
| `AIO_IMS_LOCAL_LOGIN_PORT` | The port number for the local login server. Useful for Docker environments where a specific port needs to be forwarded. Must be a valid number; falls back to `0` (OS-assigned) if not set or invalid. | `0` |

For example, to run `aio login` inside a Docker container with port forwarding:

```bash
export LOCAL_LOGIN_PORT=8080
docker run --rm -it -p ${LOCAL_LOGIN_PORT}:${LOCAL_LOGIN_PORT} -e AIO_IMS_LOCAL_LOGIN_PORT=${LOCAL_LOGIN_PORT} node:24-slim sh -c "npm install -g @adobe/aio-cli && bash"
```

# Contributing
Contributions are welcomed! Read the [Contributing Guide](CONTRIBUTING.md) for more information.


# Licensing

This project is licensed under the Apache V2 License. See [LICENSE](LICENSE) for more information.
