2017-08-31 04:15:22 +08:00
|
|
|
# HTTP JSON REST Authenticator module for synapse
|
2017-09-18 19:46:42 +08:00
|
|
|
This synapse authentication module (password provider) allows you to query identity data in existing webapps, like:
|
|
|
|
- Forums (phpBB, Discourse, etc.)
|
|
|
|
- Custom Identity stores (Keycloak, ...)
|
|
|
|
- CRMs (Wordpress, ...)
|
|
|
|
- self-hosted clouds (Nextcloud, ownCloud, ...)
|
|
|
|
|
2018-11-14 11:13:02 +08:00
|
|
|
It is mainly used with [mxisd](https://github.com/kamax-matrix/mxisd), the Federated Matrix Identity Server, to provide
|
2017-09-18 21:18:34 +08:00
|
|
|
missing features and offer a fully integrated solution (directory, authentication, search).
|
2017-08-31 04:15:22 +08:00
|
|
|
|
|
|
|
## Install
|
|
|
|
Copy in whichever directory python2.x can pick it up as a module.
|
|
|
|
|
|
|
|
If you installed synapse using the Matrix debian repos:
|
|
|
|
```
|
2018-11-14 11:13:02 +08:00
|
|
|
sudo curl https://raw.githubusercontent.com/kamax-matrix/matrix-synapse-rest-auth/master/rest_auth_provider.py -o /usr/lib/python2.7/dist-packages/
|
2017-08-31 04:15:22 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
## Configure
|
2017-09-18 19:46:42 +08:00
|
|
|
Add or amend the `password_providers` entry like so:
|
2017-08-31 04:15:22 +08:00
|
|
|
```
|
|
|
|
password_providers:
|
|
|
|
- module: "rest_auth_provider.RestAuthProvider"
|
|
|
|
config:
|
|
|
|
endpoint: "http://change.me.example.com:12345"
|
2017-10-08 10:52:08 +08:00
|
|
|
```
|
2018-11-14 11:13:02 +08:00
|
|
|
Set `endpoint` to the value documented with the endpoint provider.
|
2017-10-08 10:52:08 +08:00
|
|
|
|
|
|
|
## Use
|
|
|
|
1. Install, configure, restart synapse
|
|
|
|
2. Try to login with a valid username and password for the endpoint configured
|
|
|
|
|
|
|
|
## Next steps
|
|
|
|
### Lowercase username enforcement
|
2018-11-14 11:13:02 +08:00
|
|
|
**NOTE**: This is no longer relevant as synapse natively enforces lowercase.
|
|
|
|
|
2017-10-08 10:58:35 +08:00
|
|
|
To avoid creating users accounts with uppercase characters in their usernames and running into known
|
|
|
|
issues regarding case sensitivity in synapse, attempting to login with such username will fail.
|
2017-10-08 10:52:08 +08:00
|
|
|
|
2017-10-08 10:58:35 +08:00
|
|
|
It is highly recommended to keep this feature enable, but in case you would like to disable it:
|
2017-10-08 10:52:08 +08:00
|
|
|
```
|
|
|
|
[...]
|
|
|
|
config:
|
2017-09-26 20:49:32 +08:00
|
|
|
policy:
|
|
|
|
registration:
|
|
|
|
username:
|
2018-11-14 11:13:02 +08:00
|
|
|
enforceLowercase: false
|
2017-08-31 04:15:22 +08:00
|
|
|
```
|
|
|
|
|
2017-10-08 10:52:08 +08:00
|
|
|
### Profile auto-fill
|
|
|
|
By default, on first login, the display name is set to the one returned by the backend.
|
|
|
|
If none is given, the display name is not set.
|
|
|
|
Upon subsequent login, the display name is not changed.
|
2017-09-18 19:46:42 +08:00
|
|
|
|
2017-10-08 10:52:08 +08:00
|
|
|
If you would like to change the behaviour, you can use the following configuration items:
|
|
|
|
```
|
|
|
|
[...]
|
|
|
|
config:
|
|
|
|
policy:
|
|
|
|
registration:
|
|
|
|
profile:
|
2018-11-14 11:13:02 +08:00
|
|
|
name: true
|
2017-10-08 10:52:08 +08:00
|
|
|
login:
|
|
|
|
profile:
|
2018-11-14 11:13:02 +08:00
|
|
|
name: false
|
2017-10-08 10:52:08 +08:00
|
|
|
```
|
2017-09-26 20:49:32 +08:00
|
|
|
|
2017-10-08 10:52:08 +08:00
|
|
|
3PIDs received from the backend are merged with the ones already linked to the account.
|
2017-08-31 04:15:22 +08:00
|
|
|
|
2017-09-18 19:46:42 +08:00
|
|
|
## Integrate
|
|
|
|
To use this module with your backend, you will need to implement a single REST endpoint:
|
|
|
|
|
|
|
|
Path: `/_matrix-internal/identity/v1/check_credentials`
|
|
|
|
Method: POST
|
|
|
|
Body as JSON UTF-8:
|
2017-08-31 04:15:22 +08:00
|
|
|
```
|
|
|
|
{
|
|
|
|
"user": {
|
|
|
|
"id": "@matrix.id.of.the.user:example.com",
|
|
|
|
"password": "passwordOfTheUser"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2017-09-18 19:46:42 +08:00
|
|
|
The following JSON answer will be provided:
|
2017-08-31 04:15:22 +08:00
|
|
|
```
|
|
|
|
{
|
2017-09-26 10:21:55 +08:00
|
|
|
"auth": {
|
2017-08-31 04:15:22 +08:00
|
|
|
"success": <boolean>
|
|
|
|
"mxid": "@matrix.id.of.the.user:example.com"
|
2017-09-26 10:21:55 +08:00
|
|
|
"profile": {
|
|
|
|
"display_name": "John Doe",
|
|
|
|
"three_pids": [
|
|
|
|
{
|
|
|
|
"medium": "email",
|
|
|
|
"address": "john.doe@example.org"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"medium": "msisdn",
|
|
|
|
"address": "123456789"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2017-08-31 04:15:22 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Support
|
2017-10-08 10:52:08 +08:00
|
|
|
For community support, visit our Matrix room [#matrix-synapse-rest-auth:kamax.io](https://matrix.to/#/#matrix-synapse-rest-auth:kamax.io)
|