Svelte package to support ObjectReef Identity Provider.
ObjectReef Identity Provider is available at https://objectreef.io/auth and it's OIDC compliant
authorization service available for developers who create applications using ObjectReef
To install the package on your Svelte project type:npm install @humandialog/auth.svelte
// App.svelte
import {reef} from '@humandialog/auth.svelte'
reef.configure(
{
mode: 'remote', // possible: 'remote', 'local', 'disabled'
remote: {
iss: "https://objectreef.io",
clientID: "<YOUR_CLIENT_ID>",
clientSecret: "<YOUR_CLIENT_SECRET>",
scope: "openid profile email <YOUR_APP_ID>",
apiVersion: "v001",
refreshTokenPersistent: true,
// Optional. It should be given for a public tenant, to which anyone can register as a user
tenant: "<PUBLIC_TENANT_ID>",
// Used only for signup form. Optional.
// If specified checkboxes on consents are presented
termsAndConditionsHRef: "https://example.com/terms-and-conditions",
privacyPolicyHRef: "https://example.com/privacy-policy"
},
local: {
api: "http://localhost:1996",
apiVersion: "v002",
users: [
"[email protected]",
"[email protected]"
]
}
})
In application root file App.svelte set up the the ObjectReef SDK with reef.configure
by passing
a configuration object. Authorization can be switched between 'remote'
and 'local'
or it can be 'disabled'
at all. The 'remote'
is the most common mode when your website is already published and registered in the ObjectReef Auth.
The 'local'
mode can be useful during the local developement when you need request API in context of specified user. The list of such users needs to be provided as users
array in configuration object. In this mode, the website asks current active user instead of redirecting the browser to sign-in page.
There are just few Svelte components to apply authorization to your website.
The AuthorizedView
should be a root component for all autorized views on your website. Usualy it embedd the whole App
content with routing component.
The component parameters are:
autoRedirectToSignIn :boolean
which is true
by default. <!-- App.svelte -->
<AuthorizedView>
<!-- my SPA entry-point -->
<Router {routes} />
</AuthorizedView>
The Authorized
encapsulate content which should be visible only when user has been authorized.
<Authorized>
<a href={$signOutHRef}>Sign out</a>
</Authorized>
The NotAuthorized
encapsulate content which should be visible only when user has not been authorized.
<NotAuthorized>
<a href={$signInHRef}>Sign in</a>
</NotAuthorized>
reef.get
functionThe reef.get
makes HTTP GET request to the service and returns JavaScript object as a result. It will:
reef.configure
Authorization
header to each request with issued access token let res = await reef.get("app/Lists/count");
reef.post
functionThe reef.post
makes HTTP POST request to the service and returns JavaScript object as a result. It will:
reef.configure
Authorization
header to each request with issued access token let res = await reef.post("app/Lists/new", { Name: 'My List Name' });
reef.delete
functionThe reef.delete
makes HTTP DELETE request to the service. It will:
reef.configure
Authorization
header to each request with issued access token let res = await reef.delete("app/Lists/last");
reef.fetch
functionThe reef.fetch
is more general operation comparing to reef.get
or reef.post
.
It wraps original fetch
function with authorization support stuff. It will:
Authorization
header to each request with issued access token**NOTE:**
ObjectReef multitenancy support assumes every tenant API is available at different DNS address liketenant_qwerty.objectreef.io
. It means the proper API depends on which workspace authenticated user belongs to.
let res = await reef.fetch("/json/v001/app/Lists/new",
{
method:'POST',
body: JSON.stringify({Name: list_name})
});
$session.user
The $session.user
object contains authenticated user info
| member | type |
| ---------- | ------- |
| given_name
| string
|
| family_name
| string
|
| picture
| string
|
| email
| string
|
| email_verified
| boolean
|
$session.idToken
and $session.accessToken
Returns the idToken or accessToken object with members like the following:
| member | type |
| ---------- | ------- |
| header
| string
|
| payload
| string
|
| raw
| string
|
| is_jwt
| boolean
|
| not_expired
| boolean
|
| get_claim<T>(key :string)
| T\|undefined
|
$session.apiAddress :string
Returns tenant API address
$session.tid :string
Returns tenant id
$session.appAccessGroup() :number
Returns application users group id of signed-in user. The returned value and meaning depends on the specific application.
$session.authAccessGroup() :number
Returns Identity Provider users group id of signed-in user. The possible values are a combination of the following bits:
| bit field | meaning |
| ------ | ------- |
| 0x01
| Can read permissions of users in tenant |
| 0x02
| Can add new users to tenant |
| 0x04
| Can remove users and change users permissions in tenant |
This means that, for example, for a person with full privileges, the operation will return 0x07. And someone who can only invite new people will be in group 0x03
let isAdmin = $session.authAccessGroup() == 0x07
let canSee = $session.authAccessGroup() & 0x01
$session.filesAccessGroup() :number
Returns files storage users group id of signed-in user. The possible values are a combination of the following bits:
| bit field | meaning |
| ------ | ------- |
| 0x01
| Can read (download) files of the tenant |
| 0x02
| Can add (upload) files to the tenant |
This means that, for example, for a person with full privileges, the operation will return 0x03. The read-only user will in 0x01 group.
let canDownload = $session.filesAccessGroup() & 0x01
$signInHRef
, $signOutHRef
and $signUpHRef
Returns string
value to make sign-in, sign-out or sign-up anchor
<a href={$signOutHRef}>Sign out</a>
<a href={$signInHRef}>Sign in</a>
<a href={$signUpHRef}>Sign up</a>
Enjoy!