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

user group restriction #110

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
*.pyc
settings_local.py
django_mass_edit.egg-info
db.sqlite3
.idea
.coverage
.tox
15 changes: 14 additions & 1 deletion README.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ See [Django Docs on the subject](https://docs.djangoproject.com/en/dev/ref/contr

### Enable Mass Edit for specific models

By default, all models registered in the admin will get `Mass Edit` action.
By default, all models registered in the admin will get `Mass Edit` action, for all site users.

If you wish to disable this, add this to settings file:

Expand All @@ -72,6 +72,19 @@ class MyModelAdmin(MassEditMixin, admin.ModelAdmin):
...
```

### Restrict Mass actions enabled users

You can restrict Mass edit action to those users belonging to a specified group name.

``` python
MASSEDIT = {
'ADD_ACTION_GLOBALLY': False,
'MASS_USERS_GROUP': 'somegroup'
PetrDlouhy marked this conversation as resolved.
Show resolved Hide resolved
}
```

Note that user user restriction has effect only in conjunction with 'ADD_ACTION_GLOBALLY' variable set to false.

### Session-based URLs

Django-mass-edit will keep IDs for selected objects in URL, e.g:
Expand Down
6 changes: 5 additions & 1 deletion mass_demo/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
]


ALLOWED_HOSTS = []
ALLOWED_HOSTS = ['*']


# Application definition
Expand Down Expand Up @@ -102,3 +102,7 @@
# https://docs.djangoproject.com/en/1.7/howto/static-files/

STATIC_URL = '/static/'

MASSEDIT = {
'ADD_ACTION_GLOBALLY': False,
}
38 changes: 24 additions & 14 deletions massadmin/massadmin.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,21 @@ def get_mass_change_redirect_url(model_meta, pk_list, session):
mass_change_selected.short_description = _('Mass Edit')


def get_changelist_url(model, admin_name='admin'):
opts = model._meta
return reverse("{}:{}_{}_changelist".format(
admin_name, opts.app_label, opts.model_name))


def mass_change_view(request, app_name, model_name, object_ids, admin_site=None):
if object_ids.startswith("session-"):
object_ids = request.session.get(object_ids)
model = get_model(app_name, model_name)
ma = MassAdmin(model, admin_site or admin.site)
return ma.mass_change_view(request, object_ids)
if request.user.has_perm('massadmin.can_mass_edit'):
ma = MassAdmin(model, admin_site or admin.site)
return ma.mass_change_view(request, object_ids)
else:
return HttpResponseRedirect(get_changelist_url(model))


mass_change_view = staff_member_required(mass_change_view)
Expand Down Expand Up @@ -354,14 +363,6 @@ def mass_change_view(
except Exception:
pass

# Buggy! Use at your own risk
# inline_admin_formsets = []
# for inline, formset in zip(self.inline_instances, formsets):
# fieldsets = list(inline.get_fieldsets(request, obj))
# inline_admin_formset = helpers.InlineAdminFormSet(inline, formset, fieldsets)
# inline_admin_formsets.append(inline_admin_formset)
# media = media + inline_admin_formset.media

context = {
'title': _('Change %s') % force_str(opts.verbose_name),
'adminform': adminForm,
Expand All @@ -387,7 +388,16 @@ def mass_change_view(
obj=obj)


class MassEditMixin:
actions = (
mass_change_selected,
)
class MassEditMixin(object):

def get_actions(self, request):
actions = super().get_actions(request)

if request.user.has_perm("massadmin.can_mass_edit"):
actions[mass_change_selected.__name__] = (
mass_change_selected,
mass_change_selected.__name__,
mass_change_selected.short_description
)

return actions
14 changes: 14 additions & 0 deletions massadmin/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from django.db import models


class RightsSupport(models.Model):

class Meta:

managed = False

default_permissions = ()

permissions = (
('can_mass_edit', 'Can perform mass editing'),
)
Empty file modified massadmin/settings.py
100644 → 100755
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Generated by Django 4.1 on 2022-08-09 09:20

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('tests', '0002_auto_20211217_0041'),
]

operations = [
migrations.CreateModel(
name='FieldsetsAdminModel',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('first_name', models.CharField(max_length=32)),
('middle_name', models.CharField(max_length=32)),
('last_name', models.CharField(max_length=32)),
],
),
migrations.AlterField(
model_name='customadminmodel',
name='id',
field=models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
),
migrations.AlterField(
model_name='customadminmodel2',
name='id',
field=models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
),
migrations.AlterField(
model_name='inheritedadminmodel',
name='id',
field=models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
),
]