# frozen_string_literal: true # BigBlueButton open source conferencing system - http://www.bigbluebutton.org/. # # Copyright (c) 2018 BigBlueButton Inc. and by respective authors (see below). # # This program is free software; you can redistribute it and/or modify it under the # terms of the GNU Lesser General Public License as published by the Free Software # Foundation; either version 3.0 of the License, or (at your option) any later # version. # # BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License along # with BigBlueButton; if not, see . class RoomsController < ApplicationController include Pagy::Backend include Recorder include Joiner before_action :validate_accepted_terms, unless: -> { !Rails.configuration.terms } before_action :validate_verified_email, except: [:show, :join], unless: -> { !Rails.configuration.enable_email_verification } before_action :find_room, except: [:create, :join_specific_room] before_action :verify_room_ownership_or_admin, only: [:start, :update_settings, :destroy] before_action :verify_room_owner_verified, only: [:show, :join], unless: -> { !Rails.configuration.enable_email_verification } before_action :verify_room_owner_valid, only: [:show, :join] before_action :verify_user_not_admin, only: [:show] # POST / def create # Return to root if user is not signed in return redirect_to root_path unless current_user # Check if the user has not exceeded the room limit return redirect_to current_user.main_room, flash: { alert: I18n.t("room.room_limit") } if room_limit_exceeded # Create room @room = Room.new(name: room_params[:name], access_code: room_params[:access_code]) @room.owner = current_user @room.room_settings = create_room_settings_string(room_params) # Save the room and redirect if it fails return redirect_to current_user.main_room, flash: { alert: I18n.t("room.create_room_error") } unless @room.save logger.info "Support: #{current_user.email} has created a new room #{@room.uid}." # Redirect to room is auto join was not turned on return redirect_to @room, flash: { success: I18n.t("room.create_room_success") } unless room_params[:auto_join] == "1" # Start the room if auto join was turned on start end # GET /:room_uid def show @anyone_can_start = JSON.parse(@room[:room_settings])["anyoneCanStart"] @room_running = room_running?(@room.bbb_id) # If its the current user's room if current_user && @room.owned_by?(current_user) if current_user.highest_priority_role.get_permission("can_create_rooms") # User is allowed to have rooms @search, @order_column, @order_direction, recs = recordings(@room.bbb_id, params.permit(:search, :column, :direction), true) @pagy, @recordings = pagy_array(recs) else # Render view for users that cant create rooms @recent_rooms = Room.where(id: cookies.encrypted["#{current_user.uid}_recently_joined_rooms"]) render :cant_create_rooms end else return redirect_to root_path, flash: { alert: I18n.t("room.invalid_provider") } if incorrect_user_domain show_user_join end end # POST /:room_uid def join return redirect_to root_path, flash: { alert: I18n.t("administrator.site_settings.authentication.user-info") } if auth_required unless @room.owned_by?(current_user) # Don't allow users to join unless they have a valid access code or the room doesn't have an access code if @room.access_code && !@room.access_code.empty? && @room.access_code != session[:access_code] return redirect_to room_path(room_uid: params[:room_uid]), flash: { alert: I18n.t("room.access_code_required") } end # Assign join name if passed. if params[@room.invite_path] @join_name = params[@room.invite_path][:join_name] elsif !params[:join_name] # Join name not passed. return redirect_to root_path end end # create or update cookie with join name cookies.encrypted[:greenlight_name] = @join_name unless cookies.encrypted[:greenlight_name] == @join_name save_recent_rooms logger.info "Support: #{current_user.present? ? current_user.email : @join_name} is joining room #{@room.uid}" join_room(default_meeting_options) end # DELETE /:room_uid def destroy begin # Don't delete the users home room. raise I18n.t("room.delete.home_room") if @room == @room.owner.main_room @room.destroy rescue => e flash[:alert] = I18n.t("room.delete.fail", error: e) else flash[:success] = I18n.t("room.delete.success") end redirect_back fallback_location: current_user.main_room end # POST /room/join def join_specific_room room_uid = params[:join_room][:url].split('/').last begin @room = Room.find_by!(uid: room_uid) rescue ActiveRecord::RecordNotFound return redirect_to current_user.main_room, alert: I18n.t("room.no_room.invalid_room_uid") end redirect_to room_path(@room) end # POST /:room_uid/start def start logger.info "Support: #{current_user.email} is starting room #{@room.uid}" # Join the user in and start the meeting. opts = default_meeting_options opts[:user_is_moderator] = true # Include the user's choices for the room settings room_settings = JSON.parse(@room[:room_settings]) opts[:mute_on_start] = room_settings["muteOnStart"] opts[:require_moderator_approval] = room_settings["requireModeratorApproval"] begin redirect_to join_path(@room, current_user.name, opts, current_user.uid) rescue BigBlueButton::BigBlueButtonException => e logger.error("Support: #{@room.uid} start failed: #{e}") redirect_to room_path, alert: I18n.t(e.key.to_s.underscore, default: I18n.t("bigbluebutton_exception")) end # Notify users that the room has started. # Delay 5 seconds to allow for server start, although the request will retry until it succeeds. NotifyUserWaitingJob.set(wait: 5.seconds).perform_later(@room) end # POST /:room_uid/update_settings def update_settings begin options = params[:room].nil? ? params : params[:room] raise "Room name can't be blank" if options[:name].blank? raise "Unauthorized Request" if @room == current_user.main_room # Update the rooms values room_settings_string = create_room_settings_string(options) @room.update_attributes( name: options[:name], room_settings: room_settings_string, access_code: options[:access_code] ) flash[:success] = I18n.t("room.update_settings_success") rescue => e logger.error "Support: Error in updating room settings: #{e}" flash[:alert] = I18n.t("room.update_settings_error") end redirect_back fallback_location: room_path(@room) end # GET /:room_uid/logout def logout logger.info "Support: #{current_user.present? ? current_user.email : 'Guest'} has left room #{@room.uid}" # Redirect the correct page. redirect_to @room end # POST /:room_uid/login def login session[:access_code] = room_params[:access_code] flash[:alert] = I18n.t("room.access_code_required") if session[:access_code] != @room.access_code redirect_to room_path(@room.uid) end private def create_room_settings_string(options) room_settings = { "muteOnStart": options[:mute_on_join] == "1", "requireModeratorApproval": options[:require_moderator_approval] == "1", "anyoneCanStart": options[:anyone_can_start] == "1", "joinModerator": options[:all_join_moderator] == "1", } room_settings.to_json end def room_params params.require(:room).permit(:name, :auto_join, :mute_on_join, :access_code, :require_moderator_approval, :anyone_can_start, :all_join_moderator) end # Find the room from the uid. def find_room @room = Room.find_by!(uid: params[:room_uid]) end # Ensure the user either owns the room or is an admin of the room owner def verify_room_ownership_or_admin return redirect_to root_path if !@room.owned_by?(current_user) && !current_user&.admin_of?(@room.owner) end def validate_accepted_terms redirect_to terms_path if current_user && !current_user&.accepted_terms end def validate_verified_email redirect_to account_activation_path(current_user) if current_user && !current_user&.activated? end def verify_room_owner_verified redirect_to root_path, alert: t("room.unavailable") unless @room.owner.activated? end # Check to make sure the room owner is not pending or banned def verify_room_owner_valid redirect_to root_path, alert: t("room.owner_banned") if @room.owner.has_role?(:pending) || @room.owner.has_role?(:denied) end def verify_user_not_admin redirect_to admins_path if current_user&.has_role?(:super_admin) end def auth_required @settings.get_value("Room Authentication") == "true" && current_user.nil? end def room_limit_exceeded limit = @settings.get_value("Room Limit").to_i # Does not apply to admin or users that aren't signed in # 15+ option is used as unlimited return false if current_user&.has_role?(:admin) || limit == 15 current_user.rooms.length >= limit end helper_method :room_limit_exceeded end