2018-10-25 16:51:20 +02:00
|
|
|
/* eslint-disable
|
|
|
|
no-return-assign,
|
|
|
|
no-undef,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
2018-10-25 16:50:16 +02:00
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
|
|
* DS207: Consider shorter variations of null checks
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-10-25 16:51:20 +02:00
|
|
|
'use strict'
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-10-25 16:51:20 +02:00
|
|
|
Application.Controllers.controller('CompleteProfileController', ['$scope', '$rootScope', '$state', '$window', '_t', 'growl', 'CSRF', 'Auth', 'Member', 'settingsPromise', 'activeProviderPromise', 'groupsPromise', 'cguFile', 'memberPromise', 'Session', 'dialogs', 'AuthProvider',
|
|
|
|
function ($scope, $rootScope, $state, $window, _t, growl, CSRF, Auth, Member, settingsPromise, activeProviderPromise, groupsPromise, cguFile, memberPromise, Session, dialogs, AuthProvider) {
|
2018-10-25 16:50:16 +02:00
|
|
|
/* PUBLIC SCOPE */
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
// API URL where the form will be posted
|
2018-10-25 16:51:20 +02:00
|
|
|
$scope.actionUrl = `/api/members/${memberPromise.id}`
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
// Form action on the above URL
|
2018-10-25 16:51:20 +02:00
|
|
|
$scope.method = 'patch'
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
// genre of the application name (eg. "_le_ Fablab" or "_la_ Fabrique")
|
2018-10-25 16:51:20 +02:00
|
|
|
$scope.nameGenre = settingsPromise.name_genre
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
// name of the current fablab application (eg. "Fablab de la Casemate")
|
2018-10-25 16:51:20 +02:00
|
|
|
$scope.fablabName = settingsPromise.fablab_name
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
// information from the current SSO provider
|
2018-10-25 16:51:20 +02:00
|
|
|
$scope.activeProvider = activeProviderPromise
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
// list of user's groups (student/standard/...)
|
2018-10-25 16:51:20 +02:00
|
|
|
$scope.groups = groupsPromise
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
// current user, contains information retrieved from the SSO
|
2018-10-25 16:51:20 +02:00
|
|
|
$scope.user = memberPromise
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
// disallow the user to change his password as he connect from SSO
|
2018-10-25 16:51:20 +02:00
|
|
|
$scope.preventPassword = true
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
// mapping of fields to disable
|
2018-10-25 16:51:20 +02:00
|
|
|
$scope.preventField = {}
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
// CGU
|
2018-10-25 16:51:20 +02:00
|
|
|
$scope.cgu = cguFile.custom_asset
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
// Angular-Bootstrap datepicker configuration for birthday
|
2018-10-25 16:51:20 +02:00
|
|
|
$scope.datePicker = {
|
|
|
|
format: Fablab.uibDateFormat,
|
|
|
|
opened: false, // default: datePicker is not shown
|
|
|
|
options: {
|
|
|
|
startingDay: Fablab.weekStartingDay
|
|
|
|
}
|
2018-10-25 16:50:16 +02:00
|
|
|
}
|
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
/**
|
|
|
|
* Callback to diplay the datepicker as a dropdown when clicking on the input field
|
|
|
|
* @param $event {Object} jQuery event object
|
|
|
|
*/
|
2018-10-25 16:51:20 +02:00
|
|
|
$scope.openDatePicker = function ($event) {
|
|
|
|
$event.preventDefault()
|
|
|
|
$event.stopPropagation()
|
|
|
|
return $scope.datePicker.opened = true
|
2018-10-25 16:50:16 +02:00
|
|
|
}
|
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
/**
|
|
|
|
* For use with ngUpload (https://github.com/twilson63/ngUpload).
|
|
|
|
* Intended to be the callback when the upload is done: any raised error will be stacked in the
|
|
|
|
* $scope.alerts array. If everything goes fine, the user's profile is updated and the user is
|
|
|
|
* redirected to the home page
|
|
|
|
* @param content {Object} JSON - The upload's result
|
|
|
|
*/
|
2018-10-25 16:51:20 +02:00
|
|
|
$scope.submited = function (content) {
|
|
|
|
if ((content.id == null)) {
|
|
|
|
$scope.alerts = []
|
2018-11-20 12:26:06 +01:00
|
|
|
angular.forEach(content, function (v, k) {
|
|
|
|
angular.forEach(v, function (err) {
|
2018-10-25 16:51:20 +02:00
|
|
|
$scope.alerts.push({
|
|
|
|
msg: k + ': ' + err,
|
|
|
|
type: 'danger'
|
|
|
|
})
|
2018-11-20 12:26:06 +01:00
|
|
|
})
|
|
|
|
})
|
2018-10-25 16:50:16 +02:00
|
|
|
} else {
|
2018-10-25 16:51:20 +02:00
|
|
|
$scope.user.profile.user_avatar = content.profile.user_avatar
|
|
|
|
Auth._currentUser.profile.user_avatar = content.profile.user_avatar
|
|
|
|
$scope.user.name = content.name
|
|
|
|
Auth._currentUser.name = content.name
|
|
|
|
$scope.user = content
|
|
|
|
Auth._currentUser = content
|
|
|
|
$rootScope.currentUser = content
|
|
|
|
return $state.go('app.public.home')
|
2018-10-25 16:50:16 +02:00
|
|
|
}
|
2018-10-25 16:51:20 +02:00
|
|
|
}
|
2018-10-25 16:50:16 +02:00
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
/**
|
|
|
|
* For use with 'ng-class', returns the CSS class name for the uploads previews.
|
|
|
|
* The preview may show a placeholder or the content of the file depending on the upload state.
|
|
|
|
* @param v {*} any attribute, will be tested for truthiness (see JS evaluation rules)
|
|
|
|
*/
|
2018-10-25 16:51:20 +02:00
|
|
|
$scope.fileinputClass = function (v) {
|
|
|
|
if (v) {
|
|
|
|
return 'fileinput-exists'
|
|
|
|
} else {
|
|
|
|
return 'fileinput-new'
|
2018-10-25 16:50:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
/**
|
|
|
|
* Merge the current user into the account with the given auth_token
|
|
|
|
*/
|
2018-11-20 12:26:06 +01:00
|
|
|
$scope.registerAuthToken = function () {
|
2018-10-25 16:51:20 +02:00
|
|
|
Member.merge({ id: $rootScope.currentUser.id }, { user: { auth_token: $scope.user.auth_token } }, function (user) {
|
2018-11-20 12:26:06 +01:00
|
|
|
$scope.user = user
|
|
|
|
Auth._currentUser = user
|
|
|
|
$rootScope.currentUser = user
|
|
|
|
$state.go('app.public.home')
|
2018-10-25 16:51:20 +02:00
|
|
|
}
|
2018-11-20 12:26:06 +01:00
|
|
|
, function (err) {
|
|
|
|
if (err.data.error) {
|
|
|
|
growl.error(err.data.error)
|
|
|
|
} else {
|
|
|
|
growl.error(_t('an_unexpected_error_occurred_check_your_authentication_code'))
|
|
|
|
console.error(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2018-10-25 16:51:20 +02:00
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
/**
|
|
|
|
* Return the email given by the SSO provider, parsed if needed
|
|
|
|
* @return {String} E-mail of the current user
|
|
|
|
*/
|
2018-10-25 16:51:20 +02:00
|
|
|
$scope.ssoEmail = function () {
|
|
|
|
const { email } = memberPromise
|
|
|
|
if (email) {
|
|
|
|
const duplicate = email.match(/^<([^>]+)>.{20}-duplicate$/)
|
|
|
|
if (duplicate) {
|
|
|
|
return duplicate[1]
|
2018-10-25 16:50:16 +02:00
|
|
|
}
|
|
|
|
}
|
2018-10-25 16:51:20 +02:00
|
|
|
return email
|
2018-10-25 16:50:16 +02:00
|
|
|
}
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
/**
|
|
|
|
* Test if the user's mail is marked as duplicate
|
|
|
|
* @return {boolean}
|
|
|
|
*/
|
2018-10-25 16:51:20 +02:00
|
|
|
$scope.hasDuplicate = function () {
|
|
|
|
const { email } = memberPromise
|
|
|
|
if (email) {
|
|
|
|
return !(email.match(/^<([^>]+)>.{20}-duplicate$/) === null)
|
|
|
|
}
|
|
|
|
}
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
/**
|
|
|
|
* Ask for email confirmation and send the SSO merging token again
|
2018-11-20 12:26:06 +01:00
|
|
|
* @param event {Object} jQuery event object
|
2018-11-19 16:17:49 +01:00
|
|
|
*/
|
2018-10-25 16:51:20 +02:00
|
|
|
$scope.resendCode = function (event) {
|
|
|
|
event.preventDefault()
|
|
|
|
event.stopPropagation()
|
2018-11-20 12:26:06 +01:00
|
|
|
dialogs.confirm(
|
|
|
|
{
|
|
|
|
templateUrl: '<%= asset_path "profile/resend_code_modal.html" %>',
|
|
|
|
resolve: {
|
|
|
|
object () {
|
|
|
|
return { email: memberPromise.email }
|
|
|
|
}
|
2018-10-25 16:51:20 +02:00
|
|
|
}
|
2018-11-20 12:26:06 +01:00
|
|
|
},
|
|
|
|
function (email) {
|
|
|
|
// Request the server to send an auth-migration email to the current user
|
|
|
|
AuthProvider.send_code({ email },
|
|
|
|
function (res) { growl.info(_t('code_successfully_sent_again')) },
|
|
|
|
function (err) { growl.error(err.data.error) }
|
|
|
|
)
|
2018-10-25 16:51:20 +02:00
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
/**
|
|
|
|
* Disconnect and re-connect the user to the SSO to force the synchronisation of the profile's data
|
|
|
|
*/
|
2018-11-20 12:26:06 +01:00
|
|
|
$scope.syncProfile = function () {
|
2018-10-25 16:51:20 +02:00
|
|
|
Auth.logout().then(function (oldUser) {
|
|
|
|
Session.destroy()
|
|
|
|
$rootScope.currentUser = null
|
|
|
|
$rootScope.toCheckNotifications = false
|
|
|
|
$scope.notifications = {
|
|
|
|
total: 0,
|
|
|
|
unread: 0
|
|
|
|
}
|
2018-11-20 12:26:06 +01:00
|
|
|
$window.location.href = activeProviderPromise.link_to_sso_connect
|
2018-10-25 16:51:20 +02:00
|
|
|
})
|
2018-11-20 12:26:06 +01:00
|
|
|
}
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-10-25 16:51:20 +02:00
|
|
|
/* PRIVATE SCOPE */
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
/**
|
|
|
|
* Kind of constructor: these actions will be realized first when the controller is loaded
|
|
|
|
*/
|
2018-10-25 16:51:20 +02:00
|
|
|
const initialize = function () {
|
|
|
|
CSRF.setMetaTags()
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-10-25 16:51:20 +02:00
|
|
|
// init the birth date to JS object
|
|
|
|
$scope.user.profile.birthday = moment($scope.user.profile.birthday).toDate()
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-10-25 16:51:20 +02:00
|
|
|
// bind fields protection with sso fields
|
2018-11-20 12:26:06 +01:00
|
|
|
angular.forEach(activeProviderPromise.mapping, function (map) { $scope.preventField[map] = true; })
|
2018-10-25 16:51:20 +02:00
|
|
|
}
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-11-19 16:17:49 +01:00
|
|
|
// !!! MUST BE CALLED AT THE END of the controller
|
2018-10-25 16:51:20 +02:00
|
|
|
return initialize()
|
|
|
|
}
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-10-25 16:51:20 +02:00
|
|
|
])
|