gitlab-org--gitlab-foss/app/controllers/invites_controller.rb

81 lines
1.9 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2015-04-10 13:22:31 +00:00
class InvitesController < ApplicationController
before_action :member
skip_before_action :authenticate_user!, only: :decline
2015-04-10 13:22:31 +00:00
respond_to :html
def show
end
def accept
if member.accept_invite!(current_user)
label, path = source_info(member.source)
redirect_to path, notice: _("You have been granted %{member_human_access} access to %{label}.") % { member_human_access: member.human_access, label: label }
2015-04-10 13:22:31 +00:00
else
redirect_back_or_default(options: { alert: _("The invitation could not be accepted.") })
2015-04-10 13:22:31 +00:00
end
end
2015-04-10 14:37:02 +00:00
def decline
if member.decline_invite!
label, _ = source_info(member.source)
2015-04-10 14:37:02 +00:00
path =
2015-04-10 14:37:02 +00:00
if current_user
2015-09-08 16:14:02 +00:00
dashboard_projects_path
2015-04-10 14:37:02 +00:00
else
new_user_session_path
end
redirect_to path, notice: _("You have declined the invitation to join %{label}.") % { label: label }
2015-04-10 14:37:02 +00:00
else
redirect_back_or_default(options: { alert: _("The invitation could not be declined.") })
2015-04-10 14:37:02 +00:00
end
end
2015-04-10 13:22:31 +00:00
private
def member
return @member if defined?(@member)
2015-04-10 13:22:31 +00:00
@token = params[:id]
@member = Member.find_by_invite_token(@token)
2017-02-21 22:31:14 +00:00
return render_404 unless @member
2015-04-14 13:16:00 +00:00
@member
2015-04-10 13:22:31 +00:00
end
def authenticate_user!
return if current_user
notice = ["To accept this invitation, sign in"]
notice << "or create an account" if Gitlab::CurrentSettings.allow_signup?
notice = notice.join(' ') + "."
2015-04-10 13:22:31 +00:00
store_location_for :user, request.fullpath
redirect_to new_user_session_path, notice: notice
end
def source_info(source)
case source
when Project
project = member.source
label = "project #{project.full_name}"
path = project_path(project)
when Group
group = member.source
label = "group #{group.name}"
path = group_path(group)
else
label = "who knows what"
2015-09-08 16:14:02 +00:00
path = dashboard_projects_path
end
[label, path]
end
2015-04-10 13:22:31 +00:00
end