Mailboxer宝石,管理视图(Mailboxer Gem, Admin View)

2019-10-19 07:26发布

我使用我的应用程序的用户模型之间的对话/消息mailboxer宝石。 这是所有工作正常,由于在堆栈溢出一些很大的帮助。 现在我想建立一个部分,因此管理员可以查看所有正在发生的谈话。

我已经创建了一个会话控制器和视图,嵌套在我的管理部分。 我拉在与索引页上的所有对话:

 def index
    @admin_conversations = Conversation.all
  end

这已经列出的所有对话和链接显示每个会话,符合市场预期。

我遇到的问题,就是mailboxer创业板设置为只允许CURRENT_USER查看对话的CURRENT_USER是一个参与者。这样我就可以点击了谈话,(签的是为admin)和看到的内容,但一些(这是其他测试用户之间),我看不出即它抛出一个异常,例如:

Couldn't find Conversation with id=5 [WHERE "notifications"."type" = 'Message' AND "receipts"."receiver_id" = 35 AND "receipts"."receiver_type" = 'User']

我怎么能在我的管理控制器定义方法,以便管理员能看到的一切?

我目前使用的康康舞,并允许像这样全部3个用户角色我有(管理员,客户和供应商):

can :manage, Conversation

...所以它不是一个正常的授权问题。

这里是我的谈话控制器:

class ConversationsController < ApplicationController
  authorize_resource
  helper_method :mailbox, :conversation


  def create
    recipient_emails = conversation_params(:recipients).split(',')
    recipients = User.where(email: recipient_emails).all

    conversation = current_user.
      send_message(recipients, *conversation_params(:body, :subject)).conversation

    redirect_to :back, :notice => "Message Sent! You can view it in 'My Messages'."
  end

 def count
  current_user.mailbox.receipts.where({:is_read => false}).count(:id, :distinct => true).to_s
 end    

  def reply
    current_user.reply_to_conversation(conversation, *message_params(:body, :subject))
    redirect_to conversation
  end

  def trash
    conversation.move_to_trash(current_user)
    redirect_to :conversations
  end

  def untrash
    conversation.untrash(current_user)
    redirect_to :conversations
  end

  private


  def mailbox
    @mailbox ||= current_user.mailbox
  end

  def conversation
    @conversation ||= mailbox.conversations.find(params[:id])
  end


  def conversation_params(*keys)
    fetch_params(:conversation, *keys)
  end

  def message_params(*keys)
    fetch_params(:message, *keys)
  end

  def fetch_params(key, *subkeys)
    params[key].instance_eval do
      case subkeys.size
      when 0 then self
      when 1 then self[subkeys.first]
      else subkeys.map{|k| self[k] }
      end
    end
  end
end

答案很可能是一些非常愚蠢的,但我是新来这...

谢谢

Answer 1:

在你的谈话方式,您的通话mailbox.conversations.find(params[:id])

mailbox.conversations是什么限制你当前用户的对话。

尽量只Conversation.find(params[:id])



文章来源: Mailboxer Gem, Admin View