creator instead of factory, as it does registration and authentication

This commit is contained in:
Bruno Windels 2018-09-11 15:02:02 +02:00
parent 3c5e73d644
commit 48d95c228a
2 changed files with 4 additions and 4 deletions

77
src/rest/creator.js Normal file
View file

@ -0,0 +1,77 @@
/*
Copyright 2018 New Vector Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
const util = require('util');
const exec = util.promisify(require('child_process').exec);
const request = require('request-promise-native');
const RestSession = require('./session');
module.exports = class RestSessionCreator {
constructor(synapseSubdir, hsUrl, cwd) {
this.synapseSubdir = synapseSubdir;
this.hsUrl = hsUrl;
this.cwd = cwd;
}
async createSession(username, password) {
await this._register(username, password);
const authResult = await this._authenticate(username, password);
return new RestSession(authResult);
}
_register(username, password) {
const registerArgs = [
'-c homeserver.yaml',
`-u ${username}`,
`-p ${password}`,
// '--regular-user',
'-a', //until PR gets merged
this.hsUrl
];
const registerCmd = `./scripts/register_new_matrix_user ${registerArgs.join(' ')}`;
const allCmds = [
`cd ${this.synapseSubdir}`,
"source env/bin/activate",
registerCmd
].join(';');
return exec(allCmds, {cwd: this.cwd, encoding: 'utf-8'}).catch((result) => {
const lines = result.stdout.trim().split('\n');
const failureReason = lines[lines.length - 1];
throw new Error(`creating user ${username} failed: ${failureReason}`);
});
}
async _authenticate(username, password) {
const requestBody = {
"type": "m.login.password",
"identifier": {
"type": "m.id.user",
"user": username
},
"password": password
};
const url = `${this.hsUrl}/_matrix/client/r0/login`;
const responseBody = await request.post({url, json: true, body: requestBody});
return {
accessToken: responseBody.access_token,
homeServer: responseBody.home_server,
userId: responseBody.user_id,
deviceId: responseBody.device_id,
hsUrl: this.hsUrl,
};
}
}