Rails 模型验证使用 Unless



>我有以下模型,订阅类

create_table "subscriptions", force: true do |t|
    t.integer  "user_id"
    t.integer  "course_id"
    t.datetime "date_subscription_start"
    t.datetime "date_subscription_end"
    t.string   "subscription_type"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

我想这样做,以便用户能够再次订阅同一类,如果他们出于某种原因想要重新参加它。我的逻辑是,只有在新创建时类/用户组合的date_subscription_end日期已经过去时,才能注册课程。如果在创建时存在具有相同user_id和course_id的订阅,并且将来的日期subscription_end,则应拒绝该订阅,因为这意味着用户仍在参加该课程。

所以像这样:

validates :user_id,
  uniqueness: {
    scope: :course_id,
    message: "User is already subscribed to this course"
  },
  unless: Proc.new { |a|
   Subscription.where(user_id: a.user_id, course_id: a.course_id) &&
     Subscription.where('date_subscription_end < ?', Time.now)
  }

基本上,rails 必须遍历订阅表,找到所有具有相同主键的订阅并检查它们的date_subscription_end属性。我觉得我很接近,但缺少一些基本的东西。

谢谢!珍

编辑:由于某种原因,帖子顶部的"你好!"问候语被删除

首先,Proc 看起来不正确,据我所知,只要用户订阅并且某些用户(不一定是a.user_id)订阅了任何课程(不一定是a.course_id),Proc 就会返回一个真实值

其次,除非需要是 if 并且是用于唯一性验证的选项哈希的一部分。

所以下面的代码应该可以工作:

validates :user_id,
  uniqueness: {
    scope: :course_id,
    message: "User is already subscribed to this course",
    if: Proc.new { |a|
      Subscription.where(user_id: a.usr_id, course_id: a.course_id)
        .where('date_subscription_end >= ?', Time.now).exists?
    }
  }

这样,您只需访问数据库一次,并且代码不需要像运行.where(…)那样实例化所有匹配的订阅

更新:

date_subscription_end的条件应该是:'date_subscription_end >= ?', Time.now

相关内容

  • 没有找到相关文章

最新更新