这个方法有什么问题吗? (我需要一些很棒的 Ruby 程序员)

发布于 2024-08-21 00:04:05 字数 1434 浏览 7 评论 0原文

在子域范围内使用restfulauthentication方法忽略角色要求

我创建了一个网站,该网站利用子域并搜索用户是否位于:subdomain.domain.comdomain.com 。如果用户位于 subdomain.domain.com 中,则显示 /views/layouts/application.html.erb;如果用户位于 domain.com 中,则显示 /views/layouts/promo_site.html。 erb 出现。为了实现这一目标,我密切关注 Robby on Rails 方向。

两种布局都使用相同的控制器。此外,我将 rolerequirement 与 Restfulauthentication 一起使用,以便我创建的两个视图都能发挥作用搜索您的范围(url.com 或 subdomain.url.com)的方法

我已经隔离了以下问题:

  1. 控制器内的方法导致失败。 “NoMethodError Controller: undefined method `require_role'”
  2. 如果控制器位于正确的范围内,则 url.com 的 before_filter :check_if_role_is_required 方法可以正常工作。如果它位于 subdomain.url.com 范围内,则 check_if_role_is_required 方法会生成 NoMethodError。

以下代码是 check_if_role_is_required 方法

def check_if_role_is_required 
require_role ["alt", "student worker"], :except => [:list, :show, :index, :create] unless promo_site?
end

*注意,当 require_role ["alt", "studentworker"], : except =>; 时,上面的代码会失败。 [:list, :show, :index, :create] 已启动,此代码在 check_if_role_is_required 方法之外工作正常,因此这可能是一个简单的 ruby​​ 错误。

我怎样才能重写这个方法来发挥作用?

谢谢!

Ignoring rolerequirement with restfulauthentication method in a subdomain scope

I have created a site which utilizes subdomains and searches whether or not the user is at: subdomain.domain.com or domain.com. If the user is in subdomain.domain.com, /views/layouts/application.html.erb appears, if the user is in domain.com /views/layouts/promo_site.html.erb appears. To accomplish this I closely followed Robby on Rails directions.

Both layouts utilize the same controller. In addition I use rolerequirement with restfulauthentication, for both of my views to function I've created methods which search your scope (url.com or subdomain.url.com)

I've isolated the following problem:

  1. Method within the Controller is causing fail. "NoMethodError Controller: undefined method `require_role'"
  2. If the controller is in the correct scope, url.com the before_filter :check_if_role_is_required method works fine. If it is in the subdomain.url.com scope, the check_if_role_is_required method produces a NoMethodError.

The following code is the check_if_role_is_required method:

def check_if_role_is_required 
require_role ["alt", "student worker"], :except => [:list, :show, :index, :create] unless promo_site?
end

*note the above code fails when require_role ["alt", "student worker"], :except => [:list, :show, :index, :create] is initiated, this code works fine outside of the check_if_role_is_required method, so this is probably a simple ruby error.

How can I rewrite this method to function?

Thanks!

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

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

发布评论

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

评论(1

归属感 2024-08-28 00:04:05

该方法本身看起来还不错。

由于您在访问 subdomain.url.com 时收到错误,而不是在 url.com 上时收到错误,因此您的问题不在于方法定义,而在于处理“子域更改”的代码。这是您应该检查的代码;当您访问 subdomain.url.com 时,您似乎“不包括”rolerequirement。

The method itself looks ok.

Since you are getting the error when you are on subdomain.url.com, but not when you are on url.com, your problem isn't on the method definition, but on the code that handles "subdomain changing". That is the code you should check; it looks as if you are "not including" rolerequirement when you are on subdomain.url.com.

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