\$\begingroup\$
\$\endgroup\$
How can I DRY these scopes?
scope :reputed, -> {
joins{reputations.outer}.
where{['coalesce(rs_reputations.value, 0) > ? OR purchases.force_active = ?', LOWEST_VOTE, true]}
}
scope :reputed_or_mine, ->(user) {
joins{reputations.outer}.
where{['coalesce(rs_reputations.value, 0) > ? OR purchases.force_active = ? OR purchases.user_id = ?', LOWEST_VOTE, true, user.id]}
}
Jamal
35.2k13 gold badges134 silver badges238 bronze badges
1 Answer 1
\$\begingroup\$
\$\endgroup\$
4
'coalesce(rs_reputations.value, 0) > ? OR purchases.force_active = true OR (? AND purchases.user_id = ?)',
LOWEST_VOTE,
!user.id.nil?,
(if user.id.nil? then -1 else user.id end)
This is semantically equivalent to both, but the AND in the third clause prevents it from having an effect when there is no user.id.
answered Sep 18, 2012 at 4:59
-
\$\begingroup\$ @ck3g, can you be more specific about the errors? \$\endgroup\$Mike Samuel– Mike Samuel2012年09月24日 17:30:34 +00:00Commented Sep 24, 2012 at 17:30
-
\$\begingroup\$ Sure.
user.id
will throw errorUndefined method id for NilClass
orcalled id for nil...
if user will not passed. Your solution is based on this. \$\endgroup\$ck3g– ck3g2012年09月24日 23:21:25 +00:00Commented Sep 24, 2012 at 23:21 -
\$\begingroup\$ @ck3g, Understood. In that case, I'd declare the
user
argument with a default value that has an id ofnil
. \$\endgroup\$Mike Samuel– Mike Samuel2012年09月25日 01:04:18 +00:00Commented Sep 25, 2012 at 1:04 -
\$\begingroup\$ with OR in there, you don't get much other options. I don't support collecting in several steps and merging afterwards, because that's what a relational database is usually the best at. So I'm upvoting this solution. \$\endgroup\$Simon B.– Simon B.2013年06月21日 06:59:11 +00:00Commented Jun 21, 2013 at 6:59
lang-rb