The merchant should have a user-friendly way to manage the merchant backend, which can currently only be done via a HTTP+JSON RESTful API (Merchant Backend API).
Either (simple deployment):
Internal auth (via API key, user directly downloads SPA, asked to enter API key). See: https://bugs.gnunet.org/view.php?id=6731
API token/key is persisted (by SPA) in local storage of browser until you explicitly logout.
Or (large company with existing authentication infrastructure):
External auth:
Login flow via reverse proxy for authentication:
BROWSER -> AUTH-PROXY -> (likely) redirect to login server
AUTH-PROXY may redirect to login server, passes authentication token via URL param when redirecting back to the AUTH-PROXY for the SPA download
BROWSER -> AUTH-PROXY -> SPA (download HTML/JS from backend)
Running SPA:
SPA-in-BROWSER -> AUTH-PROXY -> BACKEND
- Browser shows login dialog (401 Unauthorized, say).
- AUTH-PROXY is happy, allows download of HTML.
- All requests from SPA are then automatically auth’ed because the browser KNOWS already how to bypass the auth-proxy (token validation, etc).
User loads SPA at say https://backend/instance/$FOO/
SPA asks for authorization IF an API key is specified/required by the merchant backend for the respective instance.
Note: we have several authorization methods:
Authorize
header with pre-shared keyAdditionally, the user may specify which instance to log into, as different instances may use different credentials. So the SPA needs to fetch the list of instances.
Special case: If there are no instances, the default
instance MUST
be used, and the login should immediately move on to the setup
(default) instance dialog, forcing the user to setup the default
instance upon first login.
After login, we (somehow) need to persist the login data in the SPA. Local storage or just global variable in the JS? Local storage may be better to survive page reload, right?
Q: How does the SPA know about the base URL? In the LibEuFin UI, it’s part of the login page.
A: Just use relative URLs to its own location? => Possible, but might now always be the case
=> Could use relative URL by default, maybe have a field to allow user to override? => Makes sense.
LOGOUT button to reset state and go back to login page.
“Change instance” drop-down, to change instance without having to log in again IF the credentials are the same?
This involves only the default
instance owner.
Management operations include:
Q: Do we have some separate “admin login” to manage instances? Who is actually allowed to manage instances? LibEuFin has some permissions system for this.
A: Default instance owner can manage instances. But, there is a complication: credentials for all instances are managed in nginx configuration, NOT via the REST API. So default instance owner can create new instances, but access control MUST be configured by the sysadmin.