Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The main purpose of a model is to contain business logic, so I want most of my code inside django model in the form of methods. For example I want to write a method named get_tasks_by_user() inside task model. So that I can access it as

Tasks.get_tasks_by_user(user_id)

Following is my model code:

class Tasks(models.Model):
    slug=models.URLField()
    user=models.ForeignKey(User)
    title=models.CharField(max_length=100)
    objects=SearchManager()
    def __unicode__(self):
        return self.title
    days_passed = property(getDaysPassed)
    def get_tasks_by_user(self,userid):
        return self.filters(user_id=userid)

But this doesn't seems to work, I have used it in view as:

    tasks = Tasks.objects.get_tasks_by_user(user_id)

But it gives following error:

'SearchManager' object has no attribute 'get_tasks_by_user'

If I remove objects=SearchManager, then just name of manager in error will change so I think that is not issue. Seems like I am doing some very basic level mistake, please tell what I am doing wrong and how can I do what I am trying to do. I know I can do same thing via :Tasks.objects.filters(user_id=userid) but I want to keep all such logic in model. So please tell what is the correct way to do so.

Thanks

share|improve this question

2 Answers

up vote 1 down vote accepted

An easy way to do this is by using classmethod decorator to make it a class method. Inside class Tasks:

@classmethod
def get_tasks_by_user(cls, userid):
    return cls.objects.filters(user_id=userid)

This way you can simply call:

tasks = Tasks.get_tasks_by_user(user_id)

Alternatively, you can use managers per Tom's answer.

To decided on which one to choose in your specific case, you can refer James Bennett's (the release manager of Django) blog post on when to use managers/classmethod.

share|improve this answer
A classmethod is a class method and not a static method which is completely different in python – rantanplan Oct 28 '12 at 0:11
@rantanplan that's a typo, corrected. – Kay Zhu Oct 28 '12 at 0:13
Reverted my -1. – rantanplan Oct 28 '12 at 0:14
@rantanplan :) thanks! – Kay Zhu Oct 28 '12 at 0:14

Any methods on a model class will only be available to instances of that model, i.e. individual objects.

For your get_tasks_by_user function to be available as you want it (on the collection), it needs to be implemented on the model manager.

class TaskManager(models.Manager):
    def get_tasks_by_user(self, user_id):
        return super(TaskManager, self).get_query_set().filter(user=user_id)

class Task(models.Model):
    # ...
    objects = TaskManager()
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.