This repository has been archived on 2021-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
greenlight/app/controllers/users_controller.rb

99 lines
2.4 KiB
Ruby
Raw Normal View History

2018-06-26 10:29:46 -04:00
# frozen_string_literal: true
2018-05-31 15:04:18 -04:00
2018-06-26 10:29:46 -04:00
class UsersController < ApplicationController
2018-06-04 15:58:59 -04:00
before_action :find_user, only: [:edit, :update]
2018-06-07 15:52:42 -04:00
before_action :ensure_unauthenticated, only: [:new, :create]
2018-05-09 16:31:52 -04:00
# POST /u
2018-05-09 16:31:52 -04:00
def create
2018-06-11 17:32:08 -04:00
# Verify that GreenLight is configured to allow user signup.
return unless Rails.configuration.allow_user_signup
2018-06-08 14:44:08 -04:00
@user = User.new(user_params)
@user.provider = "greenlight"
2018-05-31 15:04:18 -04:00
2018-06-08 14:44:08 -04:00
if @user.save
2018-06-26 10:29:46 -04:00
login(@user)
2018-05-09 16:31:52 -04:00
else
2018-06-04 15:58:59 -04:00
# Handle error on user creation.
2018-06-08 14:44:08 -04:00
render :new
2018-05-09 16:31:52 -04:00
end
end
2018-06-07 15:52:42 -04:00
# GET /signup
2018-06-11 17:32:08 -04:00
def new
if Rails.configuration.allow_user_signup
@user = User.new
else
redirect_to root_path
end
2018-06-07 15:52:42 -04:00
end
# GET /u/:user_uid/edit
2018-06-04 15:58:59 -04:00
def edit
if current_user
redirect_to current_user.room unless @user == current_user
else
redirect_to root_path
end
2018-05-25 11:55:48 -04:00
end
2018-06-25 15:51:23 -04:00
# PATCH /u/:user_uid/edit
2018-06-04 15:58:59 -04:00
def update
if params[:setting] == "password"
# Update the users password.
errors = {}
2018-06-12 17:28:02 -04:00
2018-06-15 14:41:07 -04:00
if @user.authenticate(user_params[:password])
# Verify that the new passwords match.
if user_params[:new_password] == user_params[:password_confirmation]
@user.password = user_params[:new_password]
else
# New passwords don't match.
errors[:password_confirmation] = "doesn't match"
2018-06-15 14:41:07 -04:00
end
2018-06-04 15:58:59 -04:00
else
2018-06-15 14:41:07 -04:00
# Original password is incorrect, can't update.
errors[:password] = "is incorrect"
2018-06-04 15:58:59 -04:00
end
if errors.empty? && @user.save
# Notify the use that their account has been updated.
redirect_to edit_user_path(@user), notice: "Information successfully updated."
else
# Append custom errors.
2018-06-26 10:29:46 -04:00
errors.each { |k, v| @user.errors.add(k, v) }
render :edit
end
2018-06-26 10:29:46 -04:00
elsif @user.update_attributes(user_params)
redirect_to edit_user_path(@user), notice: "Information successfully updated."
2018-06-04 15:58:59 -04:00
else
2018-06-26 10:29:46 -04:00
render :edit
2018-06-04 15:58:59 -04:00
end
end
# GET /u/terms
def terms
redirect_to root_path unless current_user
if params[:accept] == "true"
current_user.update_attribute(accepted_terms: true)
redirect_to current_user.main_room
end
end
2018-06-26 10:29:46 -04:00
2018-05-09 16:31:52 -04:00
private
2018-06-04 15:58:59 -04:00
def find_user
2018-06-25 15:51:23 -04:00
@user = User.find_by!(uid: params[:user_uid])
2018-06-04 15:58:59 -04:00
end
2018-06-07 15:52:42 -04:00
def ensure_unauthenticated
redirect_to current_user.main_room if current_user
end
2018-05-09 16:31:52 -04:00
def user_params
2018-06-12 17:28:02 -04:00
params.require(:user).permit(:name, :email, :image, :password, :password_confirmation, :new_password, :provider)
2018-05-09 16:31:52 -04:00
end
2018-05-25 11:55:48 -04:00
end