扩展MongoEngine用户文档是不好的做法吗?

时间:2010-03-20 03:38:54

标签: python django mongodb mongoengine nosql

我正在使用MongoEngine集成MongoDB。它提供标准pymongo设置缺乏的身份验证和会话支持。

在常规django身份验证中,扩展User模型被认为是不好的做法,因为无法保证在任何地方都能正确使用它。这是mongoengine.django.auth的情况吗?

如果 被视为不良做法,那么附加单独用户个人资料的最佳方式是什么? Django具有指定AUTH_PROFILE_MODULE的机制。这也支持MongoEngine,还是我应该手动进行查找?

3 个答案:

答案 0 :(得分:4)

我们只是扩展用户类。

class User(MongoEngineUser):
    def __eq__(self, other):
        if type(other) is User:
            return other.id == self.id
        return False

    def __ne__(self, other):
        return not self.__eq__(other)

    def create_profile(self, *args, **kwargs):
        profile = Profile(user=self, *args, **kwargs)
        return profile

    def get_profile(self):
        try:
            profile = Profile.objects.get(user=self)
        except DoesNotExist:
            profile = Profile(user=self)
            profile.save()
        return profile

    def get_str_id(self):
        return str(self.id)

    @classmethod
    def create_user(cls, username, password, email=None):
        """Create (and save) a new user with the given username, password and
email address.
"""
        now = datetime.datetime.now()

        # Normalize the address by lowercasing the domain part of the email
        # address.
        # Not sure why we'r allowing null email when its not allowed in django
        if email is not None:
            try:
                email_name, domain_part = email.strip().split('@', 1)
            except ValueError:
                pass
            else:
                email = '@'.join([email_name, domain_part.lower()])

        user = User(username=username, email=email, date_joined=now)
        user.set_password(password)
        user.save()
        return user

答案 1 :(得分:2)

答案 2 :(得分:0)

在Django 1.5中,你现在可以使用一个可配置的用户对象,这是不使用单独对象的一个​​很好的理由,我认为可以放心地扩展它不再是不好的做法。用户模型,如果你在Django< 1.5但是希望在某些时候升级。在Django 1.5中,可配置的用户对象设置为:

AUTH_USER_MODEL = 'myapp.MyUser'
在您的settings.py中

。如果要更改以前的用户配置,则会有一些更改会影响集合命名等。如果您还不想升级到1.5,则可以暂时扩展User对象,然后在以后进一步更新你升级到1.5。

https://docs.djangoproject.com/en/dev/topics/auth/#auth-custom-user

N.B。我没有亲自在Django 1.5 w / MongoEngine中试过这个,但期望它应该支持它。