瀏覽代碼

Return 404 for suspended pass-protected colls

Previously, any password-protected collection on a suspended account
would prompt visitors for a password, and *then* take them to the "not
found" page. This fixes that.
pull/222/head
Matt Baer 4 年之前
父節點
當前提交
6f6204a849
共有 1 個檔案被更改,包括 10 行新增0 行删除
  1. +10
    -0
      collections.go

+ 10
- 0
collections.go 查看文件

@@ -648,6 +648,16 @@ func processCollectionPermissions(app *App, cr *collectionReq, u *User, w http.R
uname = u.Username
}

// TODO: move this to all permission checks?
suspended, err := app.db.IsUserSuspended(c.OwnerID)
if err != nil {
log.Error("process protected collection permissions: %v", err)
return nil, err
}
if suspended {
return nil, ErrCollectionNotFound
}

// See if we've authorized this collection
authd := isAuthorizedForCollection(app, c.Alias, r)



Loading…
取消
儲存