Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Project creation auth for user without Admin rights Fixes #6187 #6593

Open
wants to merge 11 commits into
base: master
Choose a base branch
from

Conversation

giliam
Copy link

@giliam giliam commented Jul 24, 2017

Hello!
A new feature so that a user with a new special perms who isn’t site administrator can create a project and edit it (issue #6187)
I changed the API to use the administration page for projects. Now the project list either display all projects for Administrator users or only administrated projects for normal users.
I am new to pootle so I guess this code review will take some time.
Thank you in advance for your help and comments!
Gilïam

P.S.: Sorry, I didn't have a lot of time these last weeks.

@ldidry
Copy link

ldidry commented Jul 25, 2017

It seems to be a very good job 👍

Small bug: the "My projects" link, when clicking on my avatar (on a non-admin user) isn't displayed when being on a project's page (https://exemple.org/projects/project_name/). I didn't verified that it's displayed on all other places you can go.

@giliam
Copy link
Author

giliam commented Jul 26, 2017

Thank you Ididry!

I couldn't reproduce this bug. You are logged as non-admin user (who has the right to create project?) and you go to some project page (is it a project created by this user or by another user?). You click on the right top menu and the "My projects" link is not displayed. Is it displayed anywhere else?

Thanks again :)

@ldidry
Copy link

ldidry commented Jul 26, 2017

How to reproduce on my test installation:

  • log in with a non-admin user, with the right to create projects
  • created a project (or already have one created)
  • go to my project (from "My projects" link or from the drop-downs on top of the page): no "My projects" link displayed
  • go to a project that doesn't belong to me: "My projects" link is displayed in the top right drop-down or anywhere else

@giliam
Copy link
Author

giliam commented Jul 28, 2017

I think I understand the problem. It already exists a permission called add_project in the database which is specific to the folder pootle_project. The permission I added has to be in the root directory as it is a permission global to the whole site, just as administrate or review (other permissions visible in the permissions admin panel).
When in a specific folder, you are in the directory pootle_project and thus, the permissions don't seem to have add_project global permission I added.

I see three ways of getting out of this:

  1. Either I change my permission's name (but I don't know if it will work) to create_project for example, and the conflict will maybe not happen
  2. Either I create some specific function for the template to check if the user has the permission requested using the root directory
  3. Either I delete the specific permission which is not used.

I would probably try the first possibility but maybe it is not the best one. Any pootle expert advice?

By the way, I will probably add another small commit for the Travis checks. I hope it doesn't disturb the pull request.

@phlax
Copy link
Member

phlax commented Jul 28, 2017

hi @giliam i havent had chance to check out the PR properly yet.

We are just about to get a stable release (finally!) - hopefully this should be out in the next week. Once thats done I would be up for assisting with landing this and addressing any issues that come up re permissions etc.

From an architectural point of view, the problem i see is that for each project it currently creates a directory in the language directories, so we need to work out the best way to structure personal projects, and how we can integrate that to pootle's namespace.

…ect".

This will avoid conflicts with existing permission "add_project" automatically
added by Django with Project model.
@giliam
Copy link
Author

giliam commented Jul 31, 2017

Hi @phlax!
Thank you for your comment and I hope the release is going well :)
I just fixed the issue given by @ldidry by renaming add_project to create_project (to have a clean database) and by using a specific tag to check for the permission. I also fixed the issues given by travis tests (but I still don't know how to fix the code coverage patch test).
I will still be available for further questions/work on this pr, specially on this question of architecture.

@ldidry
Copy link

ldidry commented Jan 16, 2018

@phlax Any news?

@comradekingu comradekingu changed the title Project creation auth for user without Admin rights Project creation auth for user without Admin rights Fixes #6187 Apr 16, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants