RFC: Role changes
まだ誰も着手していません。
評価
- 難易度
- 5/5
- 見積もり時間
- 1週間以上
- 初心者へのやさしさ
- 20/100
- issue の種類
- 機能追加
- 明瞭さ
- 説明が足りない
- 活発さ
- 停滞
- 技術スタック
- elixir
- 領域
- api, authorization, backend
調査の方向性
まず、ProjectUser の作成、更新、削除に関する既存のポリシーと API アクションを読み、それらを提示されているロールルールと比較します。ロールと組織所有者モデルの不整合を解消し、UI の構築に着手する前に合意した方針を文書化できれば完了です。作成ルールに関する別のバグは issue #1233 が扱います。
索引モデルが issue の本文から書いたものです。
説明
Right now, we have policies and actions in place on our API which would allow promoting and demoting project members by other project members.
We do not, however, have any UI to perform those actions, other than the basic approval of a pending membership.
I would love to be able to spec all this out, but really, I'm unsure in how this works, even with existing policies, due to some inconsistencies I'm seeing.
We need to resolve these inconsistencies before we can build a UI to support the feature properly.
A user is a member of a project if there exists a ProjectUser record linking the two.
Membership level is determined via a role field which can be one of ~w(pending contributor admin owner)
Depending on the role of the user performing the action, and the role change on the user the action is being performed on, we have the following rules
Create
- a user can create their own
ProjectUserrecord - no role level check happens here, so this is definitely a bug. Basically, accessing the API directly, any user can make themselves owner, collaborator, admin or pending member of a project
To fix this, we should enforce the following create rule
- a user can create their own
ProjectUserrecord, provided the role is"pending". This basically means they are allowed to apply for project memberships
Created issue #1233 for this
Update
- a user who is not a member of the project cannot update anyone's project membership
- a user who is a
"pending"member of the project cannot update anyone's project membership - an
"admin"can update only"pending"memberships of a project - an
"owner"can do anything other than demoting another"owner"
The result of this is that admins can approve or reject pending, project memberships, while owners can do that and also promote contributors to admins, as well as admins to owners. I'm unsure about this last part, but my guess is, that way a project might have multiple owners at some point.
Overall, other than "owners"promoting others to "owners", this seems right to me and I'm not seeing problems directly. There is a problem which I will get to, however.
Delete
- any user can delete their own project membership
- an
ownercan delete any project membership, even other owners - an
admincan delete apendingmember, or acontributor
The result of this is that any user, even an owner, can leave a project.
Owners can also cast out other owners.
Both of the above are potentially dangerous, but I'm not sure if there is any other way to deal with it.
Admins can cast out pending users (effectively rejecting their application) as well as collaborators.
Again, generally, these seem mostly ok to me. No outright bugs, but I'm unsure if those are the policies we want.
Other issues
The real issue is that, while an organization owner can create a project (or will be able to, once we deal with that milestone), there is currently no ProjectUser record being created to indicate that the organization owner is also the project owner.
I'm not even sure there ought to be. As I said above, we have some problematic cases when dealing with multiple owners, so maybe we should consider renaming our roles and simply update our policies so that the organization owner is considered a sort of superuser for each project within that organization.
We could rename owner to something else and modify our policy so organization owners have authority over this newly named role, but other members with the same role do not.
We could also cast out the owner role completely and just have pending members, contributors and admins, with the organization owner having the final authority over all other members.
It would simplify things a good deal and we can build off of it once people use the app and we get data/feedback to figure out if anything else is needed.
@joshsmith, what do you think?
- 主要言語
- Elixir
- スター
- 234
- フォーク
- 82
- PR マージ指標
- 30日以内にマージされた PR はありません
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
code-corps/code-corps-api のほかの issue
-
難易度 5/5 1週間以上 初心者へのやさしさ 15/100
code-corps/code-corps-api#1385 ·
-
難易度 3/5 1〜2日 初心者へのやさしさ 25/100
code-corps/code-corps-api#1384 ·
-
難易度 4/5 3〜5日 初心者へのやさしさ 35/100
code-corps/code-corps-api#1383 · コメント 2 件 ·
-
難易度 3/5 1〜2日 初心者へのやさしさ 35/100
code-corps/code-corps-api#1382 · コメント 2 件 ·
-
Difficulty: Medium Skill: Elixir Time: 4 hours
code-corps/code-corps-api#1372 · コメント 3 件 · 担当者 1 名 ·
code-corps/code-corps-api の issue をすべて見る
似ている issue
-
bug
難易度 2/5 1〜3時間 初心者へのやさしさ 65/100
-
難易度 2/5 1〜3時間 初心者へのやさしさ 75/100
agentjido/jido_harness#80 ·
-
難易度 2/5 1〜3時間 初心者へのやさしさ 70/100
sevenseacat/cinder#235 ·
-
bug
難易度 2/5 1〜3時間 初心者へのやさしさ 85/100
-
難易度 2/5 1〜3時間 初心者へのやさしさ 84/100
phoenixframework/phoenix#6847 ·