PostgreSQL / PostGraphile行权限不起作用

问题描述 投票:1回答:1

我正在尝试使用PostGraphile(以前称为PostGraphQL)设置GraphQL服务器,但我无法获得行权限,这意味着我不断获取权限被拒绝的消息,尽管它应该有效。这是我的架构:

create function app.current_user() returns app.profile as $$
  select *
  from app.profile
  where id = current_setting('jwt.claims.person_id')::integer
$$ language sql stable;

comment on function app.current_user() is 'Gets the person who was identified by our JWT.';

grant select (name,about,created_at,updated_at) on table app.profile to app_user;
grant update (name,about) on table app.profile to app_user;
alter table app.profile enable row level security;


create policy select_profile on app.profile for select to app_user
  using (id = current_setting('jwt.claims.person_id')::integer);

create policy update_profile on app.profile for update to app_user
  using (id = current_setting('jwt.claims.person_id')::integer);

就我在调试输出中看到的而言,一切都按预期工作。我可以进行身份​​验证,获取JWT令牌,当JWT令牌无效时,它会在正确的错误消息中抱怨,所以它不是任何一个。

我做错了什么,或者我如何更仔细地调试发生的事情?

我正在使用PostGraphile v4和PostgreSQL 10.4

postgresql permissions postgraphql
1个回答
2
投票

自己发现了这个问题。事实证明,您必须对id赋予权限,即使您没有选择它,也只能在WHERE部分中使用它。

所以在上面的例子中,将其修改为:

将表app.profile上的select(id,name,about,created_at,updated_at)授予app_user;

那它应该工作。

© www.soinside.com 2019 - 2024. All rights reserved.