2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
class InvitesController < ApplicationController
|
|
|
|
|
2021-03-03 04:45:29 -05:00
|
|
|
requires_login only: [:create, :destroy, :destroy_all, :resend_invite, :resend_all_invites, :upload_csv]
|
2018-01-31 20:26:45 -05:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
skip_before_action :check_xhr, except: [:perform_accept_invitation]
|
|
|
|
skip_before_action :preload_json, except: [:show]
|
|
|
|
skip_before_action :redirect_to_login_if_required
|
2013-06-05 14:12:37 -04:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
before_action :ensure_new_registrations_allowed, only: [:show, :perform_accept_invitation]
|
|
|
|
before_action :ensure_not_logged_in, only: [:show, :perform_accept_invitation]
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
def show
|
2017-01-24 15:15:29 -05:00
|
|
|
expires_now
|
2017-02-13 16:19:41 -05:00
|
|
|
|
|
|
|
invite = Invite.find_by(invite_key: params[:id])
|
2020-09-30 11:02:33 -04:00
|
|
|
if invite.present? && !invite.expired? && !invite.redeemed?
|
|
|
|
store_preloaded("invite_info", MultiJson.dump(
|
|
|
|
invited_by: UserNameSerializer.new(invite.invited_by, scope: guardian, root: false),
|
|
|
|
email: invite.email,
|
|
|
|
username: UserNameSuggester.suggest(invite.email),
|
2021-03-03 04:45:29 -05:00
|
|
|
is_invite_link: invite.is_invite_link?
|
|
|
|
))
|
2020-09-30 11:02:33 -04:00
|
|
|
|
|
|
|
render layout: 'application'
|
|
|
|
else
|
2021-03-03 04:45:29 -05:00
|
|
|
flash.now[:error] = if invite&.expired?
|
2020-09-30 11:02:33 -04:00
|
|
|
I18n.t('invite.expired', base_url: Discourse.base_url)
|
2021-03-03 04:45:29 -05:00
|
|
|
elsif invite&.redeemed?
|
2020-09-30 11:02:33 -04:00
|
|
|
I18n.t('invite.not_found_template', site_name: SiteSetting.title, base_url: Discourse.base_url)
|
2019-01-02 21:16:05 -05:00
|
|
|
else
|
2020-09-30 11:02:33 -04:00
|
|
|
I18n.t('invite.not_found', base_url: Discourse.base_url)
|
2019-01-02 21:16:05 -05:00
|
|
|
end
|
2021-03-03 04:45:29 -05:00
|
|
|
|
2017-02-13 16:19:41 -05:00
|
|
|
render layout: 'no_ember'
|
|
|
|
end
|
2017-01-24 15:15:29 -05:00
|
|
|
end
|
|
|
|
|
2021-03-03 04:45:29 -05:00
|
|
|
def create
|
|
|
|
if params[:email].present? && Invite.exists?(email: params[:email])
|
|
|
|
return render json: failed_json, status: 422
|
2017-01-24 15:15:29 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2021-03-03 04:45:29 -05:00
|
|
|
if params[:topic_id].present?
|
|
|
|
topic = Topic.find_by(id: params[:topic_id])
|
|
|
|
raise Discourse::InvalidParameters.new(:topic_id) if topic.blank?
|
|
|
|
guardian.ensure_can_invite_to!(topic)
|
|
|
|
end
|
2013-11-06 12:56:26 -05:00
|
|
|
|
2021-03-03 04:45:29 -05:00
|
|
|
if params[:group_ids].present? || params[:group_names].present?
|
|
|
|
groups = Group.lookup_groups(group_ids: params[:group_ids], group_names: params[:group_names])
|
|
|
|
end
|
2013-11-06 12:56:26 -05:00
|
|
|
|
2017-07-21 02:12:24 -04:00
|
|
|
guardian.ensure_can_invite_to_forum!(groups)
|
2014-07-29 13:57:08 -04:00
|
|
|
|
2015-12-14 11:02:23 -05:00
|
|
|
begin
|
2021-03-03 04:45:29 -05:00
|
|
|
invite = Invite.generate(current_user,
|
|
|
|
invite_key: params[:invite_key],
|
|
|
|
email: params[:email],
|
|
|
|
skip_email: params[:skip_email],
|
|
|
|
invited_by: current_user,
|
|
|
|
custom_message: params[:custom_message],
|
|
|
|
max_redemptions_allowed: params[:max_redemptions_allowed],
|
|
|
|
topic_id: topic&.id,
|
|
|
|
group_ids: groups&.map(&:id),
|
|
|
|
expires_at: params[:expires_at],
|
|
|
|
)
|
|
|
|
|
|
|
|
if invite.present?
|
|
|
|
render_serialized(invite, InviteSerializer, scope: guardian, root: nil, show_emails: params.has_key?(:email))
|
2015-12-14 11:02:23 -05:00
|
|
|
else
|
|
|
|
render json: failed_json, status: 422
|
|
|
|
end
|
2017-06-13 12:59:02 -04:00
|
|
|
rescue Invite::UserExists, ActiveRecord::RecordInvalid => e
|
2015-12-14 11:02:23 -05:00
|
|
|
render json: { errors: [e.message] }, status: 422
|
2013-11-06 12:56:26 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-03-03 04:45:29 -05:00
|
|
|
def update
|
|
|
|
invite = Invite.find_by(invited_by: current_user, id: params[:id])
|
|
|
|
raise Discourse::InvalidParameters.new(:id) if invite.blank?
|
2020-06-09 11:19:32 -04:00
|
|
|
|
2021-03-03 04:45:29 -05:00
|
|
|
if params[:topic_id].present?
|
|
|
|
topic = Topic.find_by(id: params[:topic_id])
|
|
|
|
raise Discourse::InvalidParameters.new(:topic_id) if topic.blank?
|
|
|
|
guardian.ensure_can_invite_to!(topic)
|
2020-06-09 11:19:32 -04:00
|
|
|
end
|
2017-07-21 02:12:24 -04:00
|
|
|
|
2021-03-03 04:45:29 -05:00
|
|
|
if params[:group_ids].present? || params[:group_names].present?
|
|
|
|
groups = Group.lookup_groups(group_ids: params[:group_ids], group_names: params[:group_names])
|
2020-07-13 08:39:36 -04:00
|
|
|
end
|
2015-08-25 21:41:52 -04:00
|
|
|
|
2021-03-03 04:45:29 -05:00
|
|
|
guardian.ensure_can_invite_to_forum!(groups)
|
|
|
|
|
|
|
|
Invite.transaction do
|
|
|
|
if params.has_key?(:topic_id)
|
|
|
|
invite.topic_invites.destroy_all
|
|
|
|
invite.topic_invites.create!(topic_id: topic.id) if topic.present?
|
2020-06-09 11:19:32 -04:00
|
|
|
end
|
2020-06-09 21:29:28 -04:00
|
|
|
|
2021-03-03 04:45:29 -05:00
|
|
|
if params.has_key?(:group_ids) || params.has_key?(:group_names)
|
|
|
|
invite.invited_groups.destroy_all
|
|
|
|
groups.each { |group| invite.invited_groups.find_or_create_by!(group_id: group.id) } if groups.present?
|
|
|
|
end
|
2020-06-09 21:29:28 -04:00
|
|
|
|
2021-03-03 04:45:29 -05:00
|
|
|
if params.has_key?(:email)
|
|
|
|
old_email = invite.email.presence
|
|
|
|
new_email = params[:email].presence
|
|
|
|
|
|
|
|
if old_email != new_email
|
|
|
|
invite.emailed_status = Invite.emailed_status_types[new_email ? :pending : :not_required]
|
2020-06-09 21:29:28 -04:00
|
|
|
end
|
2021-03-03 04:45:29 -05:00
|
|
|
|
|
|
|
invite.email = new_email
|
2020-06-09 21:29:28 -04:00
|
|
|
end
|
2015-08-25 21:41:52 -04:00
|
|
|
|
2021-03-03 04:45:29 -05:00
|
|
|
invite.update!(params.permit(:custom_message, :max_redemptions_allowed, :expires_at))
|
2020-07-13 08:39:36 -04:00
|
|
|
end
|
2021-03-03 04:45:29 -05:00
|
|
|
|
|
|
|
if invite.emailed_status == Invite.emailed_status_types[:pending]
|
|
|
|
invite.update_column(:emailed_status, Invite.emailed_status_types[:sending])
|
|
|
|
Jobs.enqueue(:invite_email, invite_id: invite.id)
|
2015-09-16 07:57:32 -04:00
|
|
|
end
|
2021-03-03 04:45:29 -05:00
|
|
|
|
|
|
|
render_serialized(invite, InviteSerializer, scope: guardian, root: nil, show_emails: params.has_key?(:email))
|
2015-08-25 21:41:52 -04:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def destroy
|
2020-06-09 11:19:32 -04:00
|
|
|
params.require(:id)
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2020-06-09 11:19:32 -04:00
|
|
|
invite = Invite.find_by(invited_by_id: current_user.id, id: params[:id])
|
|
|
|
raise Discourse::InvalidParameters.new(:id) if invite.blank?
|
2021-03-03 04:45:29 -05:00
|
|
|
|
2013-07-09 15:20:18 -04:00
|
|
|
invite.trash!(current_user)
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2020-06-09 21:25:58 -04:00
|
|
|
render json: success_json
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2021-03-03 04:45:29 -05:00
|
|
|
def perform_accept_invitation
|
|
|
|
params.require(:id)
|
|
|
|
params.permit(:email, :username, :name, :password, :timezone, user_custom_fields: {})
|
|
|
|
|
|
|
|
invite = Invite.find_by(invite_key: params[:id])
|
|
|
|
|
|
|
|
if invite.present?
|
|
|
|
begin
|
2021-03-03 03:12:30 -05:00
|
|
|
attrs = {
|
2021-03-03 04:45:29 -05:00
|
|
|
username: params[:username],
|
|
|
|
name: params[:name],
|
|
|
|
password: params[:password],
|
|
|
|
user_custom_fields: params[:user_custom_fields],
|
|
|
|
ip_address: request.remote_ip
|
2021-03-03 03:12:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
attrs[:email] =
|
|
|
|
if invite.is_invite_link?
|
|
|
|
params.require([:email])
|
|
|
|
params[:email]
|
|
|
|
else
|
|
|
|
invite.email
|
|
|
|
end
|
|
|
|
|
|
|
|
user = invite.redeem(attrs)
|
2021-03-03 04:45:29 -05:00
|
|
|
rescue ActiveRecord::RecordInvalid, ActiveRecord::RecordNotSaved => e
|
|
|
|
return render json: failed_json.merge(errors: e.record&.errors&.to_hash, message: I18n.t('invite.error_message')), status: 412
|
|
|
|
rescue Invite::UserExists => e
|
|
|
|
return render json: failed_json.merge(message: e.message), status: 412
|
|
|
|
end
|
|
|
|
|
|
|
|
if user.blank?
|
|
|
|
return render json: failed_json.merge(message: I18n.t('invite.not_found_json')), status: 404
|
|
|
|
end
|
|
|
|
|
|
|
|
log_on_user(user) if user.active?
|
|
|
|
user.update_timezone_if_missing(params[:timezone])
|
|
|
|
post_process_invite(user)
|
|
|
|
|
|
|
|
topic = invite.topics.first
|
|
|
|
response = {}
|
|
|
|
|
|
|
|
if user.present? && user.active?
|
|
|
|
response[:redirect_to] = topic.present? ? path(topic.relative_url) : path("/")
|
|
|
|
elsif user.present?
|
|
|
|
response[:message] = I18n.t('invite.confirm_email')
|
|
|
|
cookies[:destination_url] = path(topic.relative_url) if topic.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
render json: success_json.merge(response)
|
|
|
|
else
|
|
|
|
render json: failed_json.merge(message: I18n.t('invite.not_found_json')), status: 404
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy_all_expired
|
|
|
|
guardian.ensure_can_destroy_all_invites!(current_user)
|
|
|
|
|
|
|
|
Invite
|
|
|
|
.where(invited_by: current_user)
|
|
|
|
.where('expires_at < ?', Time.zone.now)
|
|
|
|
.find_each { |invite| invite.trash!(current_user) }
|
2017-06-29 10:32:07 -04:00
|
|
|
|
2020-06-09 21:25:58 -04:00
|
|
|
render json: success_json
|
2017-06-29 10:32:07 -04:00
|
|
|
end
|
|
|
|
|
2014-10-06 14:48:56 -04:00
|
|
|
def resend_invite
|
|
|
|
params.require(:email)
|
2016-06-06 15:36:59 -04:00
|
|
|
RateLimiter.new(current_user, "resend-invite-per-hour", 10, 1.hour).performed!
|
2014-10-06 14:48:56 -04:00
|
|
|
|
|
|
|
invite = Invite.find_by(invited_by_id: current_user.id, email: params[:email])
|
|
|
|
raise Discourse::InvalidParameters.new(:email) if invite.blank?
|
|
|
|
invite.resend_invite
|
2020-06-09 21:25:58 -04:00
|
|
|
render json: success_json
|
2016-06-06 15:36:59 -04:00
|
|
|
|
|
|
|
rescue RateLimiter::LimitExceeded
|
|
|
|
render_json_error(I18n.t("rate_limiter.slow_down"))
|
2014-10-06 14:48:56 -04:00
|
|
|
end
|
|
|
|
|
2016-06-02 15:09:02 -04:00
|
|
|
def resend_all_invites
|
2016-06-07 01:27:08 -04:00
|
|
|
guardian.ensure_can_resend_all_invites!(current_user)
|
2016-06-02 15:09:02 -04:00
|
|
|
|
2021-03-03 04:45:29 -05:00
|
|
|
Invite
|
|
|
|
.left_outer_joins(:invited_users)
|
|
|
|
.where(invited_by: current_user)
|
|
|
|
.where('invites.email IS NOT NULL')
|
|
|
|
.where('invited_users.user_id IS NULL')
|
|
|
|
.group('invites.id')
|
|
|
|
.find_each { |invite| invite.resend_invite }
|
|
|
|
|
2020-06-09 21:25:58 -04:00
|
|
|
render json: success_json
|
2016-06-02 15:09:02 -04:00
|
|
|
end
|
|
|
|
|
2016-12-04 11:06:35 -05:00
|
|
|
def upload_csv
|
2019-10-02 01:07:37 -04:00
|
|
|
require 'csv'
|
|
|
|
|
2014-05-27 16:14:37 -04:00
|
|
|
guardian.ensure_can_bulk_invite_to_forum!(current_user)
|
|
|
|
|
2019-06-04 10:49:46 -04:00
|
|
|
hijack do
|
|
|
|
begin
|
|
|
|
file = params[:file] || params[:files].first
|
2016-12-04 11:06:35 -05:00
|
|
|
|
2019-06-12 05:05:21 -04:00
|
|
|
count = 0
|
2019-06-04 10:49:46 -04:00
|
|
|
invites = []
|
2019-06-12 05:05:21 -04:00
|
|
|
max_bulk_invites = SiteSetting.max_bulk_invites
|
2019-06-04 10:49:46 -04:00
|
|
|
CSV.foreach(file.tempfile) do |row|
|
2019-06-12 05:05:21 -04:00
|
|
|
count += 1
|
2019-06-12 07:14:17 -04:00
|
|
|
invites.push(email: row[0], groups: row[1], topic_id: row[2]) if row[0].present?
|
2019-06-12 05:05:21 -04:00
|
|
|
break if count >= max_bulk_invites
|
2019-06-04 10:49:46 -04:00
|
|
|
end
|
2019-06-12 05:05:21 -04:00
|
|
|
|
2019-06-04 10:49:46 -04:00
|
|
|
if invites.present?
|
|
|
|
Jobs.enqueue(:bulk_invite, invites: invites, current_user_id: current_user.id)
|
2019-06-12 05:05:21 -04:00
|
|
|
if count >= max_bulk_invites
|
|
|
|
render json: failed_json.merge(errors: [I18n.t("bulk_invite.max_rows", max_bulk_invites: max_bulk_invites)]), status: 422
|
|
|
|
else
|
|
|
|
render json: success_json
|
|
|
|
end
|
2019-06-04 10:49:46 -04:00
|
|
|
else
|
|
|
|
render json: failed_json.merge(errors: [I18n.t("bulk_invite.error")]), status: 422
|
|
|
|
end
|
|
|
|
rescue
|
|
|
|
render json: failed_json.merge(errors: [I18n.t("bulk_invite.error")]), status: 422
|
2016-12-04 11:06:35 -05:00
|
|
|
end
|
2014-05-27 16:14:37 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-03-03 04:45:29 -05:00
|
|
|
private
|
2014-07-14 11:56:26 -04:00
|
|
|
|
2014-07-14 15:42:14 -04:00
|
|
|
def ensure_new_registrations_allowed
|
|
|
|
unless SiteSetting.allow_new_registrations
|
|
|
|
flash[:error] = I18n.t('login.new_registrations_disabled')
|
2015-01-15 15:56:53 -05:00
|
|
|
render layout: 'no_ember'
|
2014-07-14 15:42:14 -04:00
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
2016-02-23 08:33:12 -05:00
|
|
|
|
|
|
|
def ensure_not_logged_in
|
|
|
|
if current_user
|
2020-10-24 11:51:01 -04:00
|
|
|
flash[:error] = I18n.t("login.already_logged_in")
|
2016-02-23 08:33:12 -05:00
|
|
|
render layout: 'no_ember'
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
2017-04-15 05:18:05 -04:00
|
|
|
|
|
|
|
def post_process_invite(user)
|
|
|
|
user.enqueue_welcome_message('welcome_invite') if user.send_welcome_message
|
2018-12-10 17:24:02 -05:00
|
|
|
|
2019-05-10 08:49:12 -04:00
|
|
|
Group.refresh_automatic_groups!(:admins, :moderators, :staff) if user.staff?
|
|
|
|
|
2017-04-15 05:18:05 -04:00
|
|
|
if user.has_password?
|
2018-12-10 17:24:02 -05:00
|
|
|
send_activation_email(user) unless user.active
|
2021-02-08 05:04:33 -05:00
|
|
|
elsif !SiteSetting.enable_discourse_connect && SiteSetting.enable_local_logins
|
2017-04-18 04:55:52 -04:00
|
|
|
Jobs.enqueue(:invite_password_instructions_email, username: user.username)
|
2017-04-15 05:18:05 -04:00
|
|
|
end
|
2018-06-07 01:28:18 -04:00
|
|
|
end
|
2017-04-15 05:18:05 -04:00
|
|
|
|
2018-12-10 17:24:02 -05:00
|
|
|
def send_activation_email(user)
|
2018-12-11 19:36:13 -05:00
|
|
|
email_token = user.email_tokens.create!(email: user.email)
|
2018-12-10 17:24:02 -05:00
|
|
|
|
|
|
|
Jobs.enqueue(:critical_user_email,
|
|
|
|
type: :signup,
|
|
|
|
user_id: user.id,
|
|
|
|
email_token: email_token.token
|
|
|
|
)
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|