使用 Graphcool 管理用户角色
Manage user roles with Graphcool
我将模板 graphcool/templates/auth/email-password 与 Graphcool 一起使用,我想添加管理用户角色的功能。
这是我的定义模式:
type User @model {
id: ID! @isUnique
createdAt: DateTime!
updatedAt: DateTime!
email: String! @isUnique
password: String!
role: UserRole!
}
enum UserRole {
EDITOR,
MODERATOR,
ADMIN
}
我已经收到查询中的角色并将其保存在本地存储中,但任何人都可以更改它影响前端 UI(如果我们添加权限,我们不应该担心服务器端)。 best/secure 管理方法是什么?
您在使用 Graphcool 框架吗?
如果需要在graphcool.yml中设置权限。我将包括以下内容:
graphcool.yml
- operation: User.create
authenticated: true
query: permissions/User.graphql:adminRole
- operation: User.read
authenticated: true
query: permissions/User.graphql:adminRole
- operation: User.update
authenticated: true
query: permissions/User.graphql:adminRole
- operation: User.delete
authenticated: true
query: permissions/User.graphql:adminRole
- operation: User.read
authenticated: true
query: permissions/User.graphql:user
fields:
- id
- name
- role
- createdAt
- updatedAt
- email
- company
- operation: User.update
authenticated: true
query: permissions/User.graphql:user
fields:
- name
- company
User.graphql
query user($node_id: ID, $user_id: ID!) {
SomeUserExists(filter: {AND: [{id: $user_id}, {id: $node_id}]})
}
query adminRole($user_id: ID!) {
SomeUserExists(filter: {id: $user_id, role: ADMIN})
}
这样用户只能更新他们的名字和公司。然后 ADMIN 用户可以对每个人进行阅读和编辑。只有 ADMIN 用户可以创建或更新新用户。
那您可能会问如何创建新用户?
我会使用 Graphcool 模板中的 FaaS 代码进行电子邮件密码身份验证:
https://github.com/graphcool/templates/tree/master/auth/email-password
signup.ts
文件告诉您新用户如何注册,然后管理员会为您创建一个新用户。在注册函数中,您可以将 UserRole 默认为任何您想要的。
https://github.com/graphcool/templates/blob/master/auth/email-password/src/signup.ts
我将模板 graphcool/templates/auth/email-password 与 Graphcool 一起使用,我想添加管理用户角色的功能。
这是我的定义模式:
type User @model {
id: ID! @isUnique
createdAt: DateTime!
updatedAt: DateTime!
email: String! @isUnique
password: String!
role: UserRole!
}
enum UserRole {
EDITOR,
MODERATOR,
ADMIN
}
我已经收到查询中的角色并将其保存在本地存储中,但任何人都可以更改它影响前端 UI(如果我们添加权限,我们不应该担心服务器端)。 best/secure 管理方法是什么?
您在使用 Graphcool 框架吗?
如果需要在graphcool.yml中设置权限。我将包括以下内容:
graphcool.yml
- operation: User.create
authenticated: true
query: permissions/User.graphql:adminRole
- operation: User.read
authenticated: true
query: permissions/User.graphql:adminRole
- operation: User.update
authenticated: true
query: permissions/User.graphql:adminRole
- operation: User.delete
authenticated: true
query: permissions/User.graphql:adminRole
- operation: User.read
authenticated: true
query: permissions/User.graphql:user
fields:
- id
- name
- role
- createdAt
- updatedAt
- email
- company
- operation: User.update
authenticated: true
query: permissions/User.graphql:user
fields:
- name
- company
User.graphql
query user($node_id: ID, $user_id: ID!) {
SomeUserExists(filter: {AND: [{id: $user_id}, {id: $node_id}]})
}
query adminRole($user_id: ID!) {
SomeUserExists(filter: {id: $user_id, role: ADMIN})
}
这样用户只能更新他们的名字和公司。然后 ADMIN 用户可以对每个人进行阅读和编辑。只有 ADMIN 用户可以创建或更新新用户。
那您可能会问如何创建新用户? 我会使用 Graphcool 模板中的 FaaS 代码进行电子邮件密码身份验证:
https://github.com/graphcool/templates/tree/master/auth/email-password
signup.ts
文件告诉您新用户如何注册,然后管理员会为您创建一个新用户。在注册函数中,您可以将 UserRole 默认为任何您想要的。
https://github.com/graphcool/templates/blob/master/auth/email-password/src/signup.ts