Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
vobu
Active Contributor
A common demand amongst UI5 developers is that whilst working on a UI5 app locally, remote services and destinations from the SAP Business Technology Platform (BTP) should still be usable at dev time. This requires an authentication to BTP when the application is running locally - but the UI5 tooling, which is preferred way of doing local UI5 development with, isn’t capable of hooking up SAP BTP as an Identity Provider.

Nevertheless, with the most current version of ui5-middleware-cfdestination and a little hack, you can achieve this additional CloudFoundry for your pocket 🙂

Here’s what you’ll need (file system layout taken from a easy-ui5-scaffolded UI5 app)
.
├── default-env.json
├── uimodule
│ ├── index1.html
│ ├── ui5.yaml
│ └── webapp
# ...
│ ├── index.html
# ...
└── xs-app.json

ui5.yaml


Adjust the cfdestination middleware config in ui5.yaml and set both allowLocalDir: true and authenticationMethod: "route"; while you’re at it, notice the port the included approuter is running on (here: 5000)
  # ...
- name: ui5-middleware-cfdestination
afterMiddleware: compression
configuration:
debug: false
authenticationMethod: "route"
allowServices: true
allowLocalDir: true # <- brand-new config option
port: 5000
destinations: # ...

 

default-env.json


A default-env.json, containing the BTP credential information. It is the prerequisite for any authentication flow with @Sap/approuter in the Node.js- and HTML-CloudFoundry services.

Best use a cf cli plugin to retrieve the file from the BTP (sub-)account of your choice: https://github.com/saphanaacademy/DefaultEnv

xs-app.json


A route in xs-app.json, the @Sap/approuter config file, pointing to a local static asset that is protected by an approuter-based authentication
{
"authenticationMethod": "route",
"routes": [
// ...
{
"source": "^/index1.html",
"target": "index1.html",
"localDir": "uimodule",
"authenticationType": "xsuaa"
}
// ...
]
}

The above configuration tells the approuter to act on a URL http://localhost:$app-router-port/index1.html, map it to the local path uimodule/index1.html, and protect that route via (OAuth2 password grant-type) authentication.

temporary static HTML file


All three above were standard UI5- and BTP-environment files. Now comes the hacky part.

The "temporary" static HTML file (here: index1.html) is not part of the actual UI5 app, but exists standalone. Its’ sole purpose is to trigger the authentication flow and route to the actual UI5 app.

For the latter to work, the file contains a client-side redirect pointing to the bootstrap URL of your UI5 app, as it's served by the UI5 tooling (here: http://localhost:8080/index.html).
<!-- ... //-->
<head>
<meta http-equiv="refresh" content="0;url=http://localhost:8080/index.html" />
</head>
<!-- ... //-->

That's it, configuration-wise.

starting things


Run ui5 serve as usual for starting the development server - this per default starts the UI5 application on port 8080, with the ui5-middleware-cfdestination running a @Sap/approuter under the hood.

Now, instead of hitting http://localhost:8080 (which is the default UI5 tooling URL), utilize the @Sap/approuter serving the above static HTML "hack" asset by opening http://localhost:5000/index1.html - this will make the approuter pick up the protected resource and cause the client-side redirect to the BTP/IdP configured in your local default-env.json.


Et voilà - first step achieved: remote authentication triggered from the local setup!

After successful login, the meta-tag based redirect will -well- redirect you from http://localhost:5000/index1.html to http://localhost:8080/index.html - the local UI5 app. And that gives you an authenticated BTP session for your local UI5 development runtime!

Which, in turn, fullfills the original requirement: now you can use all applicable remote services of your BTP (sub-)account for your local UI5 development!

Here’s the whole flow in animation:


 

By the way: an example setup can be found over at SAP Champion and SAP Online Track organizer Ronnie Sletta’s GitHub account: https://github.com/rsletta/ui5-vscode-local (once the PR is in 😀 merged now 🥳).

Now, go ahead and enjoy the best of both worlds, local development with remote BTP capabilities!

 

 
5 Comments
Labels in this area