Skip to main content

Storage Authentication

Storage-based authentication allows you to store usernames, password hashes and optional meta-data in a table within your database that will be used to authenticate incoming connections.

Using Storage-based authentication​

To enable authentication to a deepstream server with user credentials stored in your database, set the type key to storage in the auth section of the server's configuration file.

auth:
type: storage
options:
table: 'User' # The table to store the user data in
tableSplitChar: string # the split character used for tables (defaults to /)
createUser: true # automatically create users if they don't exist in the database
hash: 'md5' # the name of a HMAC digest algorithm
iterations: 100 # the number of times the algorithm should be applied
keyLength: 32 # the length of the resulting key
reportInvalidParameters: true # return when credentials are incorrect: missing username or password

In the hash key add the hashing algorithm to hash the passwords, for example, using md5 (or any other algorithm supported by your operating system). The iterations key sets how many times the algorithm should be applied to the user's password, and keyLength is the length of the generated key. These should match how you hashed the passwords.

Start the deepstream server and you should see the authentication type confirmed.

In your application code you can now connect to the deepstream server and try to login a user.

import { DeepstreamClient } = from '@deepstream/client'
const client = new DeepstreamClient('localhost:6020')

client.login({
username: 'chris',
password: 'password' // NEEDS TO BE REAL
})

You can then handle the outcome of the login request in your JavaScript code, for example:

// ES5
const { DeepstreamClient } = require('@deepstream/client')
const client = new DeepstreamClient('localhost:6020');

client.login({
username: 'chris',
password: 'password' // NEEDS TO BE REAL
}, (success, clientData) => {
if (success) {
// Do stuff now your authenticated
} else {
// Unhappy path of an unsuccesful login
}
})
//ES6
import deepstream from '@deepstream/client'
const client = new DeepstreamClient('localhost:6020')

try {
const clientData = await client.login({
username: 'chris',
password: 'password' // NEEDS TO BE REAL
})
// Do stuff now your authenticated
} catch (error) {
// Unhappy path of an unsuccesful login
}

User auto-registration​

If you set createUser to true, deepstream will create a user for you automatically. This helps with workflows where users can sign up to accounts without using a separate API.

If a user is created on their first login it's worth noting the following:

  • ServerData is empty
  • ClientData contains two fields:
    • The timestamp for when the user was created
    • The user id
  • The username within deepstream is actually the userId and not the username

The assignment of an unique id for each user is extremely important for two reasons:

  • It's used within presence, so whenever you do client.presence.getAll() or client.presence.subscribe() you will be interacting with the generated user id rather than the username
  • It's used within permissions, so will be used when you access the user id via user.id

So why use an id at all rather than the username? Because usernames are something people may want to change, but uuids last forever. This way you have the option of setting up your applications without having to update all the references within your database.

Don't forget to apply permissions​

Seriously, please don't! Since the database is open by default this means that any user can request or update the data, which is a huge security issue.

The simplest way to add permissions is to just deny access to that table in Valve.

record:
'YourUserTable/.*':
create: false
write: false
read: false
delete: false
listen: false
notify: false

So why not do internal magic to apply this automagically? Because if you apply your permissions correctly you can do some really cool stuff. For example, modifying the user data from an admin UI or deleting the user.

record:
"YourUserTable/.*":
write: "user.data.role === 'admin'"
read: "user.data.role === 'admin'"
delete: "user.data.role === 'admin'"

The users themselves shouldn't have access to the UserTable and do things via an RPC call in case of changing any of their data or password.

import { DeepstreamClient } = from '@deepstream/client'
const client = new DeepstreamClient('localhost:6020')

async {
await client.login({ username: 'a user with an admin role', password: '1234' })

client.rpc.provide('change-user-details', async (data, response) => {
const user = client.record.snapshot(`User/${data.username}`)
// update user data
await client.record.setData(`User/${data.username}`, user)
response.send('Done')
})
}