class ChatChannelsController < ApplicationController before_action :authenticate_user!, only: [:moderate] after_action :verify_authorized def index if params[:state] == "unopened" authorize ChatChannel render_unopened_json_response elsif params[:state] == "pending" authorize ChatChannel render_pending_json_response else skip_authorization render_channels_html end end def show set_channel end def create authorize ChatChannel @chat_channel = ChatChannelCreationService.new(current_user, params[:chat_channel]).create if @chat_channel.valid? render json: { status: "success", chat_channel: @chat_channel.to_json(only: %i[channel_name slug]) }, status: :ok else render json: { errors: @chat_channel.errors.full_messages } end end def update set_channel ChatChannelUpdateService.new(@chat_channel, chat_channel_params).update if @chat_channel.valid? render json: { status: "success", chat_channel: @chat_channel.to_json(only: %i[channel_name slug]) }, status: :ok else render json: { errors: @chat_channel.errors.full_messages } end end def open set_channel membership = @chat_channel.chat_channel_memberships.where(user_id: current_user.id).first membership.update(last_opened_at: 1.second.from_now, has_unopened_messages: false) @chat_channel.index! membership.index! render json: { status: "success", channel: params[:id] }, status: :ok end def moderate set_channel command = chat_channel_params[:command].split case command[0] when "/ban" banned_user = User.find_by(username: command[1]) if banned_user banned_user.add_role :banned banned_user.messages.each(&:destroy!) Pusher.trigger(@chat_channel.pusher_channels, "user-banned", { userId: banned_user.id }.to_json) render json: { status: "success", message: "banned!" }, status: :ok else render json: { status: "error", message: "username not found" }, status: :bad_request end when "/unban" banned_user = User.find_by(username: command[1]) if banned_user banned_user.remove_role :banned render json: { status: "success", message: "unbanned!" }, status: :ok else render json: { status: "error", message: "username not found" }, status: :bad_request end when "/clearchannel" @chat_channel.clear_channel render json: { status: "success", message: "cleared!" }, status: :ok else render json: { status: "error", message: "invalid command" }, status: :bad_request end end def create_chat chat_recipient = User.find(params[:user_id]) valid_listing = ClassifiedListing.where(user_id: params[:user_id], contact_via_connect: true).limit(1) authorize ChatChannel if chat_recipient.inbox_type == "open" || valid_listing.length == 1 chat = ChatChannel.create_with_users([current_user, chat_recipient], "direct") message_markdown = params[:message] message = Message.new( chat_channel: chat, message_markdown: message_markdown, user: current_user, ) chat.messages.append(message) render json: { status: "success", message: "chat channel created!" }, status: :ok else render json: { status: "error", message: "not allowed!" }, status: :bad_request end end def block_chat chat_channel = ChatChannel.find(params[:chat_id]) authorize chat_channel chat_channel.status = "blocked" chat_channel.save chat_channel.chat_channel_memberships.map(&:remove_from_index!) render json: { status: "success", message: "chat channel blocked" }, status: :ok end private def set_channel @chat_channel = ChatChannel.find_by(id: params[:id]) || not_found authorize @chat_channel end def chat_channel_params params.require(:chat_channel).permit(policy(ChatChannel).permitted_attributes) end def render_unopened_json_response @chat_channels_memberships = if current_user current_user. chat_channel_memberships.includes(:chat_channel). where("has_unopened_messages = ? OR status = ?", true, "pending"). where(show_global_badge_notification: true). order("chat_channel_memberships.updated_at DESC") else [] end render "index.json" end def render_pending_json_response @chat_channels_memberships = if current_user current_user. chat_channel_memberships.includes(:chat_channel). where(status: "pending"). order("chat_channel_memberships.updated_at DESC") else [] end render "index.json" end def render_channels_html return unless current_user if params[:slug] slug = if params[:slug]&.start_with?("@") [current_user.username, params[:slug].delete("@")].sort.join("/") else params[:slug] end @active_channel = ChatChannel.find_by(slug: slug) @active_channel.current_user = current_user if @active_channel end # @github_token = generate_github_token Not yet fully baked, not needed. generate_algolia_search_key end def generate_algolia_search_key current_user_id = current_user.id params = { filters: "viewable_by:#{current_user_id} AND status: active" } @secured_algolia_key = Algolia.generate_secured_api_key( ApplicationConfig["ALGOLIASEARCH_SEARCH_ONLY_KEY"], params ) end def generate_github_token Rails.cache.fetch("user-github-token-#{current_user.id}", expires_in: 48.hours) do Identity.where(user_id: current_user.id, provider: "github").first&.token end end end