2015-11-12 19:54:35 +08:00
|
|
|
"use strict";
|
|
|
|
var MatrixClientPeg = require("./MatrixClientPeg");
|
|
|
|
var dis = require("./dispatcher");
|
2015-11-12 23:15:00 +08:00
|
|
|
var q = require("q");
|
2015-11-12 19:54:35 +08:00
|
|
|
|
|
|
|
class Register {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
class Login {
|
|
|
|
constructor(hsUrl, isUrl) {
|
|
|
|
this._hsUrl = hsUrl;
|
|
|
|
this._isUrl = isUrl;
|
|
|
|
this._currentFlowIndex = 0;
|
|
|
|
this._flows = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
getFlows() {
|
|
|
|
var self = this;
|
|
|
|
// feels a bit wrong to be clobbering the global client for something we
|
|
|
|
// don't even know if it'll work, but we'll leave this here for now to
|
|
|
|
// not complicate matters further. It would be nicer to isolate this
|
|
|
|
// logic entirely from the rest of the app though.
|
|
|
|
MatrixClientPeg.replaceUsingUrls(
|
|
|
|
this._hsUrl,
|
|
|
|
this._isUrl
|
|
|
|
);
|
|
|
|
return MatrixClientPeg.get().loginFlows().then(function(result) {
|
|
|
|
self._flows = result.flows;
|
|
|
|
self._currentFlowIndex = 0;
|
|
|
|
// technically the UI should display options for all flows for the
|
|
|
|
// user to then choose one, so return all the flows here.
|
|
|
|
return self._flows;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
chooseFlow(flowIndex) {
|
|
|
|
this._currentFlowIndex = flowIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
getCurrentFlowStep() {
|
|
|
|
// technically the flow can have multiple steps, but no one does this
|
|
|
|
// for login so we can ignore it.
|
|
|
|
var flowStep = this._flows[this._currentFlowIndex];
|
|
|
|
return flowStep ? flowStep.type : null;
|
|
|
|
}
|
2015-11-12 23:15:00 +08:00
|
|
|
|
|
|
|
loginViaPassword(username, pass) {
|
|
|
|
var self = this;
|
|
|
|
var isEmail = username.indexOf("@") > 0;
|
|
|
|
var loginParams = {
|
|
|
|
password: pass
|
|
|
|
};
|
|
|
|
if (isEmail) {
|
|
|
|
loginParams.medium = 'email';
|
|
|
|
loginParams.address = username;
|
|
|
|
} else {
|
|
|
|
loginParams.user = username;
|
|
|
|
}
|
|
|
|
|
|
|
|
return MatrixClientPeg.get().login('m.login.password', loginParams).then(function(data) {
|
|
|
|
return q({
|
|
|
|
homeserverUrl: self._hsUrl,
|
|
|
|
identityServerUrl: self._isUrl,
|
|
|
|
userId: data.user_id,
|
|
|
|
accessToken: data.access_token
|
|
|
|
});
|
|
|
|
}, function(error) {
|
|
|
|
if (error.httpStatus == 400 && loginParams.medium) {
|
|
|
|
error.friendlyText = (
|
|
|
|
'This Home Server does not support login using email address.'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else if (error.httpStatus === 403) {
|
|
|
|
error.friendlyText = (
|
|
|
|
'Incorrect username and/or password.'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
error.friendlyText = (
|
|
|
|
'There was a problem logging in. (HTTP ' + error.httpStatus + ")"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
throw error;
|
|
|
|
});
|
|
|
|
}
|
2015-11-12 19:54:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports.Register = Register;
|
|
|
|
module.exports.Login = Login;
|