Submit 'forgot password' form
parent
a43e053e77
commit
02e10715df
|
@ -24,7 +24,7 @@ taiga = @.taiga
|
||||||
module = angular.module("taigaAuth", ["taigaResources"])
|
module = angular.module("taigaAuth", ["taigaResources"])
|
||||||
|
|
||||||
#############################################################################
|
#############################################################################
|
||||||
## Autghentication Service
|
## Authentication Service
|
||||||
#############################################################################
|
#############################################################################
|
||||||
|
|
||||||
class AuthService extends taiga.Service
|
class AuthService extends taiga.Service
|
||||||
|
@ -93,6 +93,14 @@ class AuthService extends taiga.Service
|
||||||
@.setUser(user)
|
@.setUser(user)
|
||||||
return user
|
return user
|
||||||
|
|
||||||
|
forgotPassword: (data) ->
|
||||||
|
url = @urls.resolve("users-password-recovery")
|
||||||
|
|
||||||
|
data = _.clone(data, false)
|
||||||
|
|
||||||
|
return @http.post(url, data)
|
||||||
|
|
||||||
|
|
||||||
# acceptInvitiationWithNewUser: (username, email, password, token) ->
|
# acceptInvitiationWithNewUser: (username, email, password, token) ->
|
||||||
# url = @urls.resolve("auth-register")
|
# url = @urls.resolve("auth-register")
|
||||||
# data = _.extend(data, {
|
# data = _.extend(data, {
|
||||||
|
@ -124,10 +132,15 @@ class AuthService extends taiga.Service
|
||||||
|
|
||||||
module.service("$tgAuth", AuthService)
|
module.service("$tgAuth", AuthService)
|
||||||
|
|
||||||
|
|
||||||
#############################################################################
|
#############################################################################
|
||||||
## Auth related directives (login, reguister, invitation
|
## Auth related directives (login, reguister, invitation)
|
||||||
#############################################################################
|
#############################################################################
|
||||||
|
|
||||||
|
###################
|
||||||
|
## Login Directive
|
||||||
|
###################
|
||||||
|
|
||||||
LoginDirective = ($auth, $confirm, $location) ->
|
LoginDirective = ($auth, $confirm, $location) ->
|
||||||
link = ($scope, $el, $attrs) ->
|
link = ($scope, $el, $attrs) ->
|
||||||
$scope.data = {}
|
$scope.data = {}
|
||||||
|
@ -139,9 +152,9 @@ LoginDirective = ($auth, $confirm, $location) ->
|
||||||
|
|
||||||
promise = $auth.login($scope.data)
|
promise = $auth.login($scope.data)
|
||||||
promise.then (response) ->
|
promise.then (response) ->
|
||||||
# TODO: finish this.
|
# TODO: finish this. Go tu user home page
|
||||||
$location.path("/project/project-example-0/backlog")
|
$location.path("/project/project-example-0/backlog")
|
||||||
|
#
|
||||||
promise.then null, (response) ->
|
promise.then null, (response) ->
|
||||||
if response.data._error_message
|
if response.data._error_message
|
||||||
$confirm.error(response.data._error_message)
|
$confirm.error(response.data._error_message)
|
||||||
|
@ -157,6 +170,10 @@ LoginDirective = ($auth, $confirm, $location) ->
|
||||||
return {link:link}
|
return {link:link}
|
||||||
|
|
||||||
|
|
||||||
|
###################
|
||||||
|
## Register Directive
|
||||||
|
###################
|
||||||
|
|
||||||
RegisterDirective = ($auth, $confirm) ->
|
RegisterDirective = ($auth, $confirm) ->
|
||||||
link = ($scope, $el, $attrs) ->
|
link = ($scope, $el, $attrs) ->
|
||||||
$scope.data = {}
|
$scope.data = {}
|
||||||
|
@ -168,8 +185,9 @@ RegisterDirective = ($auth, $confirm) ->
|
||||||
|
|
||||||
promise = $auth.publicRegister($scope.data)
|
promise = $auth.publicRegister($scope.data)
|
||||||
promise.then (response) ->
|
promise.then (response) ->
|
||||||
# TODO: finish this.
|
# TODO: finish this. Go to login and show success message
|
||||||
console.log response
|
console.log response
|
||||||
|
#
|
||||||
|
|
||||||
promise.then null, (response) ->
|
promise.then null, (response) ->
|
||||||
if response.data._error_message
|
if response.data._error_message
|
||||||
|
@ -186,9 +204,40 @@ RegisterDirective = ($auth, $confirm) ->
|
||||||
return {link:link}
|
return {link:link}
|
||||||
|
|
||||||
|
|
||||||
|
###################
|
||||||
|
## Forgot Password Directive
|
||||||
|
###################
|
||||||
|
|
||||||
ForgotPasswordDirective = ($auth, $confirm) ->
|
ForgotPasswordDirective = ($auth, $confirm) ->
|
||||||
link = ($scope, $el, $attrs) ->
|
link = ($scope, $el, $attrs) ->
|
||||||
console.log "caca"
|
$scope.data = {}
|
||||||
|
form = $el.find("form").checksley()
|
||||||
|
|
||||||
|
submit = ->
|
||||||
|
if not form.validate()
|
||||||
|
return
|
||||||
|
|
||||||
|
promise = $auth.forgotPassword($scope.data)
|
||||||
|
promise.then (response) ->
|
||||||
|
if response.data.detail
|
||||||
|
# TODO: Show a success message and move to /login
|
||||||
|
#$confirm.success(response.data.detail)
|
||||||
|
console.log response.data.detail
|
||||||
|
#
|
||||||
|
|
||||||
|
promise.then null, (response) ->
|
||||||
|
if response.data._error_message
|
||||||
|
$confirm.error(response.data._error_message)
|
||||||
|
|
||||||
|
$el.on "submit", (event) ->
|
||||||
|
event.preventDefault()
|
||||||
|
submit()
|
||||||
|
|
||||||
|
$el.on "click", "a.button-forgot", (event) ->
|
||||||
|
event.preventDefault()
|
||||||
|
submit()
|
||||||
|
|
||||||
|
return {link:link}
|
||||||
|
|
||||||
|
|
||||||
module.directive("tgRegister", ["$tgAuth", "$tgConfirm", RegisterDirective])
|
module.directive("tgRegister", ["$tgAuth", "$tgConfirm", RegisterDirective])
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
div.forgot-form-container(tg-forgot-Password)
|
div.forgot-form-container(tg-forgot-Password)
|
||||||
p.forgot-text
|
p.forgot-text
|
||||||
strong Don't worry, it happens even in the best families :-) <br />
|
strong Don't worry, it happens even in the best families :-) <br />
|
||||||
span Give us your mail and we'll sent you instructions to get a new one
|
span Give us your username or email and we'll sent you instructions to get a new one
|
||||||
form{ng-submit="ctrl.submit()"}
|
|
||||||
|
form(ng-submit="ctrl.submit()")
|
||||||
fieldset
|
fieldset
|
||||||
input(type="text", placeholder="Your email")
|
input(type="text", name="username", ng-model="data.username", data-required="true",
|
||||||
|
placeholder="Username or email")
|
||||||
fieldset
|
fieldset
|
||||||
a.button.button-forgot.button-gray(href="", title="Reset Password") Reset Password
|
a.button.button-forgot.button-gray(href="", title="Reset Password") Reset Password
|
||||||
|
|
Loading…
Reference in New Issue