2016-01-19 17:36:54 +01:00
|
|
|
/*
|
|
|
|
Copyright 2016 OpenMarket Ltd
|
2017-03-16 15:56:26 +01:00
|
|
|
Copyright 2017 Vector Creations Ltd
|
2016-01-19 17:36:54 +01:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2017-07-01 15:21:28 +02:00
|
|
|
import MatrixClientPeg from './MatrixClientPeg';
|
2017-05-25 12:39:08 +02:00
|
|
|
import { _t } from './languageHandler';
|
2016-01-19 17:36:54 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Allows a user to add a third party identifier to their Home Server and,
|
|
|
|
* optionally, the identity servers.
|
|
|
|
*
|
|
|
|
* This involves getting an email token from the identity server to "prove" that
|
2017-01-20 15:22:27 +01:00
|
|
|
* the client owns the given email address, which is then passed to the
|
2016-01-19 17:36:54 +01:00
|
|
|
* add threepid API on the homeserver.
|
|
|
|
*/
|
|
|
|
class AddThreepid {
|
|
|
|
constructor() {
|
|
|
|
this.clientSecret = MatrixClientPeg.get().generateClientSecret();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Attempt to add an email threepid. This will trigger a side-effect of
|
|
|
|
* sending an email to the provided email address.
|
|
|
|
* @param {string} emailAddress The email address to add
|
|
|
|
* @param {boolean} bind If True, bind this email to this mxid on the Identity Server
|
|
|
|
* @return {Promise} Resolves when the email has been sent. Then call checkEmailLinkClicked().
|
|
|
|
*/
|
|
|
|
addEmailAddress(emailAddress, bind) {
|
|
|
|
this.bind = bind;
|
2016-07-08 18:53:06 +02:00
|
|
|
return MatrixClientPeg.get().requestAdd3pidEmailToken(emailAddress, this.clientSecret, 1).then((res) => {
|
2016-01-19 17:36:54 +01:00
|
|
|
this.sessionId = res.sid;
|
|
|
|
return res;
|
|
|
|
}, function(err) {
|
2017-07-01 15:21:28 +02:00
|
|
|
if (err.errcode === 'M_THREEPID_IN_USE') {
|
2017-05-23 16:16:31 +02:00
|
|
|
err.message = _t('This email address is already in use');
|
2016-07-08 18:28:04 +02:00
|
|
|
} else if (err.httpStatus) {
|
2016-01-19 17:36:54 +01:00
|
|
|
err.message = err.message + ` (Status ${err.httpStatus})`;
|
|
|
|
}
|
|
|
|
throw err;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-03-16 15:56:26 +01:00
|
|
|
/**
|
|
|
|
* Attempt to add a msisdn threepid. This will trigger a side-effect of
|
|
|
|
* sending a test message to the provided phone number.
|
2017-03-22 13:00:16 +01:00
|
|
|
* @param {string} phoneCountry The ISO 2 letter code of the country to resolve phoneNumber in
|
|
|
|
* @param {string} phoneNumber The national or international formatted phone number to add
|
2017-03-16 15:56:26 +01:00
|
|
|
* @param {boolean} bind If True, bind this phone number to this mxid on the Identity Server
|
|
|
|
* @return {Promise} Resolves when the text message has been sent. Then call haveMsisdnToken().
|
|
|
|
*/
|
|
|
|
addMsisdn(phoneCountry, phoneNumber, bind) {
|
|
|
|
this.bind = bind;
|
|
|
|
return MatrixClientPeg.get().requestAdd3pidMsisdnToken(
|
|
|
|
phoneCountry, phoneNumber, this.clientSecret, 1,
|
|
|
|
).then((res) => {
|
|
|
|
this.sessionId = res.sid;
|
|
|
|
return res;
|
|
|
|
}, function(err) {
|
2017-07-01 15:21:28 +02:00
|
|
|
if (err.errcode === 'M_THREEPID_IN_USE') {
|
2017-05-23 16:16:31 +02:00
|
|
|
err.message = _t('This phone number is already in use');
|
2017-03-16 15:56:26 +01:00
|
|
|
} else if (err.httpStatus) {
|
|
|
|
err.message = err.message + ` (Status ${err.httpStatus})`;
|
|
|
|
}
|
|
|
|
throw err;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-01-19 17:36:54 +01:00
|
|
|
/**
|
|
|
|
* Checks if the email link has been clicked by attempting to add the threepid
|
2017-03-16 15:56:26 +01:00
|
|
|
* @return {Promise} Resolves if the email address was added. Rejects with an object
|
2016-01-19 17:36:54 +01:00
|
|
|
* with a "message" property which contains a human-readable message detailing why
|
2017-03-16 15:56:26 +01:00
|
|
|
* the request failed.
|
2016-01-19 17:36:54 +01:00
|
|
|
*/
|
|
|
|
checkEmailLinkClicked() {
|
2017-07-01 15:21:28 +02:00
|
|
|
const identityServerDomain = MatrixClientPeg.get().idBaseUrl.split("://")[1];
|
2016-01-19 17:36:54 +01:00
|
|
|
return MatrixClientPeg.get().addThreePid({
|
|
|
|
sid: this.sessionId,
|
|
|
|
client_secret: this.clientSecret,
|
2017-07-01 15:21:28 +02:00
|
|
|
id_server: identityServerDomain,
|
2016-01-19 17:36:54 +01:00
|
|
|
}, this.bind).catch(function(err) {
|
|
|
|
if (err.httpStatus === 401) {
|
2017-05-23 16:16:31 +02:00
|
|
|
err.message = _t('Failed to verify email address: make sure you clicked the link in the email');
|
2017-07-01 15:21:28 +02:00
|
|
|
} else if (err.httpStatus) {
|
2016-01-19 17:36:54 +01:00
|
|
|
err.message += ` (Status ${err.httpStatus})`;
|
|
|
|
}
|
|
|
|
throw err;
|
|
|
|
});
|
|
|
|
}
|
2017-03-16 15:56:26 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Takes a phone number verification code as entered by the user and validates
|
|
|
|
* it with the ID server, then if successful, adds the phone number.
|
2017-07-01 15:21:28 +02:00
|
|
|
* @param {string} token phone number verification code as entered by the user
|
2017-03-22 13:00:16 +01:00
|
|
|
* @return {Promise} Resolves if the phone number was added. Rejects with an object
|
2017-03-16 15:56:26 +01:00
|
|
|
* with a "message" property which contains a human-readable message detailing why
|
|
|
|
* the request failed.
|
|
|
|
*/
|
|
|
|
haveMsisdnToken(token) {
|
|
|
|
return MatrixClientPeg.get().submitMsisdnToken(
|
|
|
|
this.sessionId, this.clientSecret, token,
|
|
|
|
).then((result) => {
|
|
|
|
if (result.errcode) {
|
|
|
|
throw result;
|
|
|
|
}
|
|
|
|
const identityServerDomain = MatrixClientPeg.get().idBaseUrl.split("://")[1];
|
|
|
|
return MatrixClientPeg.get().addThreePid({
|
|
|
|
sid: this.sessionId,
|
|
|
|
client_secret: this.clientSecret,
|
2017-07-01 15:21:28 +02:00
|
|
|
id_server: identityServerDomain,
|
2017-03-16 15:56:26 +01:00
|
|
|
}, this.bind);
|
|
|
|
});
|
|
|
|
}
|
2016-01-19 17:36:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = AddThreepid;
|