93 lines
3.1 KiB
CoffeeScript
93 lines
3.1 KiB
CoffeeScript
###
|
|
# Copyright (C) 2014 Andrey Antukh <niwi@niwi.be>
|
|
# Copyright (C) 2014 Jesús Espino Garcia <jespinog@gmail.com>
|
|
# Copyright (C) 2014 David Barragán Merino <bameda@dbarragan.com>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
# File: modules/user-settings/main.coffee
|
|
###
|
|
|
|
taiga = @.taiga
|
|
|
|
mixOf = @.taiga.mixOf
|
|
debounce = @.taiga.debounce
|
|
|
|
module = angular.module("taigaUserSettings")
|
|
|
|
|
|
#############################################################################
|
|
## User ChangePassword Controller
|
|
#############################################################################
|
|
|
|
class UserChangePasswordController extends mixOf(taiga.Controller, taiga.PageMixin)
|
|
@.$inject = [
|
|
"$scope",
|
|
"$rootScope",
|
|
"$tgRepo",
|
|
"$tgConfirm",
|
|
"$tgResources",
|
|
"$routeParams",
|
|
"$q",
|
|
"$tgLocation",
|
|
"$tgNavUrls",
|
|
"$tgAuth",
|
|
"$translate"
|
|
]
|
|
|
|
constructor: (@scope, @rootscope, @repo, @confirm, @rs, @params, @q, @location, @navUrls,
|
|
@auth, @translate) ->
|
|
@scope.sectionName = @translate.instant("CHANGE_PASSWORD.SECTION_NAME")
|
|
@scope.user = @auth.getUser()
|
|
|
|
module.controller("UserChangePasswordController", UserChangePasswordController)
|
|
|
|
|
|
#############################################################################
|
|
## User ChangePassword Directive
|
|
#############################################################################
|
|
|
|
UserChangePasswordDirective = ($rs, $confirm, $loading, $translate) ->
|
|
link = ($scope, $el, $attrs, ctrl) ->
|
|
submit = debounce 2000, (event) =>
|
|
event.preventDefault()
|
|
|
|
if $scope.newPassword1 != $scope.newPassword2
|
|
$confirm.notify('error', $translate.instant("CHANGE_PASSWORD.ERROR_PASSWORD_MATCH"))
|
|
return
|
|
|
|
$loading.start(submitButton)
|
|
|
|
promise = $rs.userSettings.changePassword($scope.currentPassword, $scope.newPassword1)
|
|
promise.then =>
|
|
$loading.finish(submitButton)
|
|
$confirm.notify('success')
|
|
|
|
promise.then null, (response) =>
|
|
$loading.finish(submitButton)
|
|
$confirm.notify('error', response.data._error_message)
|
|
|
|
submitButton = $el.find(".submit-button")
|
|
|
|
$el.on "submit", "form", submit
|
|
|
|
$scope.$on "$destroy", ->
|
|
$el.off()
|
|
|
|
return {
|
|
link:link
|
|
}
|
|
|
|
module.directive("tgUserChangePassword", ["$tgResources", "$tgConfirm", "$tgLoading", UserChangePasswordDirective])
|