Class: Caboose::RegisterController

Inherits:
ApplicationController show all
Defined in:
app/controllers/caboose/register_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#add_ga_event, #admin_add, #admin_bulk_add, #admin_bulk_delete, #admin_bulk_update, #admin_delete, #admin_edit, #admin_index, #admin_json, #admin_json_single, #admin_update, #before_action, #before_before_action, #hashify_query_string, #init_cart, #logged_in?, #logged_in_user, #login_user, #logout_user, #parse_url_params, #reject_param, #under_construction_or_forwarding_domain?, #user_is_allowed, #user_is_allowed_to, #validate_cookie, #validate_token, #var, #verify_logged_in

Instance Method Details

#indexObject



6
7
8
9
10
11
12
# File 'app/controllers/caboose/register_controller.rb', line 6

def index
  @return_url = params[:return_url].nil? ? "/" : params[:return_url];
  @modal = params[:modal].nil? ? false : params[:modal]
  redirect_to @return_url and return if logged_in?
  @page.title = "Create an Account" if @page
  render :layout => "caboose/application"
end

#registerObject



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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'app/controllers/caboose/register_controller.rb', line 15

def register
  resp = StdClass.new('error' => '', 'redirect' => '')
  return_url = params[:return_url].nil? ? "/" : params[:return_url];
  if logged_in?
    resp.error = "Already logged in"
  elsif !@site.allow_self_registration
    resp.error = "This site doesn't allow self registration."
  else
    first_name  = params[:first_name]
    last_name   = params[:last_name]
    email       = params[:email]
    phone       = params[:phone]
    pass1       = params[:pass1]
    pass2       = params[:pass2]          
    if first_name.blank?                          then resp.error = "Your first name is required."
    elsif last_name.blank?                         then resp.error = "Your last name is required."
    elsif !(email.strip.downcase).match(URI::MailTo::EMAIL_REGEXP).present? then resp.error = "Email address is invalid."
    elsif email.blank?                             then resp.error = "Your email address is required."
    elsif User.where(:site_id => @site.id, :email => email.strip.downcase).exists? then resp.error = "A user with that email address already exists."
   #     elsif phone.nil? || phone.strip.length < 10                                    then resp.error = "Your phone number is required. Please include your area code."
    elsif pass1.blank? || pass1.strip.length < 8                                     then resp.error = "Your password must be at least 8 characters."
    elsif pass2.blank? || pass1 != pass2                                             then resp.error = "Your passwords don't match."
    else
      
      u = Caboose::User.new
      u.site_id       = @site.id
      u.first_name    = first_name
      u.last_name     = last_name
      u.email         = email.strip.downcase
      u.phone         = phone
      u.password      = Digest::SHA1.hexdigest(Caboose::salt + pass1)
      u.date_created  = DateTime.now          
      u.save
      
      # Go ahead and log the user in
      u = Caboose::User.find(u.id)
      (u, true)          
      
      resp.redirect = return_url

    end
  end
  render json: resp
end