18

My question is very similar to this one: How do I access the request object or any other variable in a form's clean() method?

Except, I have the same problem with admin form. So I can't see a way to init the form myself, therefore - to pass a request to it.

Thanks beforehand.

0

3 Answers 3

51

Indeed, there is a way to solve your issue!

You will need to subclass form provided by ModelAdmin.get_form() and override it:

class BusinessDocumentCommentForm(forms.ModelForm):

    def __init__(self, *args, **kwargs):
        self.request = kwargs.pop('request', None)
        # Voila, now you can access request anywhere in your form methods by using self.request!
        super(BusinessDocumentCommentForm, self).__init__(*args, **kwargs)
        if self.request.GET.get('document_pk', False):
            #Do something
    def clean(self):
        # Do something with self.request
        # etc.    
    class Meta:
        model = BusinessDocumentComment

class BusinessDocumentCommentAdmin(admin.ModelAdmin):

    form = BusinessDocumentCommentForm     

    def get_form(self, request, obj=None, **kwargs):

        AdminForm = super(BusinessDocumentCommentAdmin, self).get_form(request, obj, **kwargs)

        class AdminFormWithRequest(AdminForm):
            def __new__(cls, *args, **kwargs):
                kwargs['request'] = request
                return AdminForm(*args, **kwargs)

        return AdminFormWithRequest
Sign up to request clarification or add additional context in comments.

7 Comments

This is a great way to solve this! However, I'm a little confused about your usage of the term 'MetaClass' here. As I see it, ModelFormMetaClass is just a superclass of your form. What am I missing here?
@mkoistinen, you are absolutely right. This thought occurred to me some time in the past, but I was too lazy to correct the answer. Since people are still using the snippet, I have responsibility to correct it. Thanks for feedback. :-)
Thanks for updating, and, I got it wrong in my comment above. Its a subclass. Oops!
This is great!. I hope Django support this requirement natively.
|
2

This solution works for me. You can use self.request anywhere in the form to use it, including def clean(self)

class MyModelAdmin(admin.ModelAdmin):
    form = MyForm

    def get_form(self, request, *args, **kwargs):
        form = super(MyModelAdmin, self).get_form(request, *args, **kwargs)
        form.request = request
        return form

Comments

1

There are a number of hooks in the ModelAdmin class to allow you to do things this - look at the code in django.contrib.admin.options.

Two methods that might help you are ModelAdmin.save_form and ModelAdmin.save_model, both of which are passed the request object. So you can override these methods in your Admin subclass and do any extra processing you need.

Edited after comment

You're quite right that this won't let you validate the form dependent on the user's privileges. Unfortunately the form instantiation is buried deep within the add_view and change_view methods of ModelAdmin.

There aren't many possibilities without duplicating a lot of existing code. You could override the *_view methods; or you could try and override the modelform_factory function to return a new class with the request object baked in already; or you could try fiddling with the form class __new__ method to do the same thing, but that's tricky because of the form metaclass.

2 Comments

Daniel, thanks for your answer! Actually, I've tried overriding these methods, berfore implementing forms... But - us I understood (from one of your answers, if I'm not mistaking) there is no way to perform validation from these methods. By "validation", I mean ability not to save some content if I don't like something and at the same time ability to give some valuable feedback. My task is - validation of admin input depending on user rights. May be I'm digging in a wrong place?
See my extended answer above.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.