如何防止访问属于不同用户的记录

发布于 2024-11-29 07:37:22 字数 356 浏览 1 评论 0原文

如何防止基于会话变量访问特定的记录集?

即我有一个带有 user_id 键的项目表,如何根据 user_id 过滤对项目的访问。我不希望有人能够访问 /items/3/edit ,除非该项目有其用户 ID(基于会话变量)

更新: 我正在使用 @fl00r 建议的答案,进行一项更改,使用 find_by_id() 而不是 find(),因为它返回 nil 并且可以很好地处理:

@item = current_user.items.find_by_id([params[:id]]) || item_not_found

其中 item_not_found 在应用程序控制器中处理,只会引发路由错误。

How do I prevent accessing a specific set of records based on a session variable?

i.e. I have a table of items with a user_id key, how do I filter access to the items based on user_id. I don't want someone to be able to access /items/3/edit unless that item has their user id against it (based on session var)

update:
I am using the answer suggested by @fl00r with one change, using find_by_id() rather than find() as it returns a nil and can be handled quite nice:

@item = current_user.items.find_by_id([params[:id]]) || item_not_found

where item_not_found is handled in the application controller and just raises a routing error.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧伤还要旧人安 2024-12-06 07:37:22

通过 current_user 对象获取项目来限制访问(User 应该 :has_many => :items),

# ItemsController
def edit
  @item = current_user.items.find(params[:id])
  ...
end

其中 current_user是一种 User.find(session[:user_id])

UPD

有用的 Railscast: http://railscasts.com/episodes/178-seven-security-tips,提示#5

Restrict access by fetching items through your current_user object (User should :has_many => :items)

# ItemsController
def edit
  @item = current_user.items.find(params[:id])
  ...
end

where current_user is kind of User.find(session[:user_id])

UPD

Useful Railscast: http://railscasts.com/episodes/178-seven-security-tips, TIP #5

ˉ厌 2024-12-06 07:37:22

您可以在show/edit/update方法中检查访问权限:

def edit
  @item = Item.find(params[:id])
  restrict_access if @item.user_id != current_user.id
  ....
end

并添加restrict_access方法,例如在application_controller中

def restrict_access
  redirect_to root_path, :alert => "Access denied"
end

You can check access in show/edit/update method:

def edit
  @item = Item.find(params[:id])
  restrict_access if @item.user_id != current_user.id
  ....
end

and add restrict_access method, for example in application_controller

def restrict_access
  redirect_to root_path, :alert => "Access denied"
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文