summaryrefslogtreecommitdiff
path: root/users/app/assets/javascripts/users.js.coffee
blob: 160a7f0dd44aeab04e48e65e2d85a67c0451f7f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Place all the behaviors and hooks related to the matching controller here.
# All this logic will automatically be available in application.js.
# You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/
#

validate_password = (event) ->

  password = $('#srp_password').val()
  confirmation = $('#srp_password_confirmation').val()
  login = $('#srp_username').val()

  if password != confirmation
    alert "Password and Confirmation do not match!"
    $('#srp_password').focus()
    return false
  if password == login
    alert "Password and Login may not match!"
    $('#srp_password').focus()
    return false
  if password.length < 8
    alert "Password needs to be at least 8 characters long!"
    $('#srp_password').focus()
    return false
  
  return true
  

insert_verifier = (event) ->
  # TODO: verify password confimation
  srp = new SRP
  salt = srp.session.getSalt()
  $('#srp_salt').val(salt)
  $('#srp_password_verifier').val(srp.session.getV().toString(16))
  # clear the password so we do not submit it
  $('#srp_password').val('cleared out - use verifier instead')
  $('#srp_password_confirmation').val('using srp - store verifier')

$(document).ready ->
  $('#new_user').submit validate_password
  $('#new_user').submit insert_verifier