Fix SQL condition bug in GetFeeds(..) (#2360)

tokarchuk/v1.17
Ethan Koenig 7 years ago committed by Lauris BH
parent 9413b48a0b
commit fd6e91077a
  1. 9
      models/action.go

@ -733,12 +733,13 @@ func GetFeeds(opts GetFeedsOptions) ([]*Action, error) {
cond = cond.And(builder.In("repo_id", repoIDs)) cond = cond.And(builder.In("repo_id", repoIDs))
} }
var userIDCond builder.Cond = builder.Eq{"user_id": opts.RequestedUser.ID}
if opts.Collaborate { if opts.Collaborate {
cond = builder.Eq{"user_id": opts.RequestedUser.ID}.Or( userIDCond = userIDCond.Or(builder.Expr(
builder.Expr(`repo_id IN (SELECT repo_id FROM "access" WHERE access.user_id = ?)`, opts.RequestedUser.ID)) `repo_id IN (SELECT repo_id FROM "access" WHERE access.user_id = ?)`,
} else { opts.RequestedUser.ID))
cond = builder.Eq{"user_id": opts.RequestedUser.ID}
} }
cond = cond.And(userIDCond)
if opts.OnlyPerformedBy { if opts.OnlyPerformedBy {
cond = cond.And(builder.Eq{"act_user_id": opts.RequestedUser.ID}) cond = cond.And(builder.Eq{"act_user_id": opts.RequestedUser.ID})

Loading…
Cancel
Save