@okta/okta-signin-widget
Version:
The Okta Sign-In Widget
61 lines (56 loc) • 2.04 kB
JavaScript
/*!
* Copyright (c) 2019, Okta, Inc. and/or its affiliates. All rights reserved.
* The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (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.
*/
import { _, loc } from '@okta/courage';
import BaseLoginModel from './BaseLoginModel';
export default BaseLoginModel.extend({
initialize: function(options) {
this.options = options || {};
this.appState = this.options.appState;
},
constructPostData: function(profileAttributes) {
const postData = {
registration: {
profile: profileAttributes,
},
};
// send createNewAccount flag for new user creation
if (this.appState.get('policy').registration.createNewAccount) {
postData.registration['createNewAccount'] = true;
}
return postData;
},
getEnrollFormData: function() {
return this.manageTransaction(function(transaction, setTransaction) {
return transaction.enroll().then(function(trans) {
setTransaction(trans);
});
});
},
save: function() {
let data = BaseLoginModel.prototype.toJSON.apply(this, arguments);
data = _.omit(data, ['appState', 'settings', 'createNewAccount']);
if (_.isEmpty(data)) {
const error = {
errorSummary: loc('oform.errorbanner.title', 'login'),
};
this.trigger('error', this, {
responseJSON: error,
});
} else {
return this.manageTransaction(function(transaction, setTransaction) {
transaction.enroll(this.constructPostData(data)).then(function(trans) {
setTransaction(trans);
});
});
}
},
});