3

我目前正在使用 Python / App Engine / SimpleAuth 为我的应用程序提供 OAuth 登录。当前的工作流程是用户使用 OAuth 登录,然后他们可以在应用程序中为自己创建一个唯一的用户名。

在创建 webapp2 用户实体后,我在创建唯一用户名时遇到问题。我看到在webapp2 模型中有一种方法可以在应用程序实体组中启用唯一用户名,但我不知道如何为自己设置它。(我正在使用SimpleAuth为其他 OAuth 提供者设置一切。)

我想检查用户提交的“用户名”是否存在,如果不存在,则将其作为属性添加到当前登录的用户。我将不胜感激任何帮助/指针!

4

1 回答 1

4

我认为您可以扩展webapp2_extras.appengine.auth.models.User和添加用户名属性,例如

from webapp2_extras.appengine.auth.models import User as Webapp2User

class User(Webapp2User):
    username = ndb.StringProperty(required=True)

然后,要创建一个 webapp2 应用程序,您需要一个配置,其中包括:

APP_CFG = {
  'webapp2_extras.auth': {
    'user_model': User,  # default is webapp2_extras.appengine.auth.models.User
    'user_attributes': ['username']  # list of User model properties
  }
}

app = webapp2.WSGIApplication(config=APP_CFG)

如上所述,使用以下代码创建新用户将确保用户名是唯一的(由 Unique 模型确保):

auth_id = 'some-auth-id'  # e.g. 'google:123456789', see simpleauth example.
ok, props = User.create_user(auth_id, unique_properties=['username'],
                                      username='some-username',
                                      ...)
if not ok:
  # props list will contain 'username', indicating that
  # another entity with the same username already exists
  ...

问题是,使用此配置,您必须username在创建期间进行设置。

如果您想让用户名可选,或者让用户稍后设置/更改它,您可能希望将上面的代码更改为如下内容:

class User(Webapp2User):
    username = ndb.StringProperty()  # note, there's no required=True

# when creating a new user:
auth_id = 'some-auth-id'  # e.g. 'google:123456789', see simpleauth example.
ok, props = User.create_user(auth_id, unique_properties=[], ...)

基本上,unique_properties将是空列表(或者您可以跳过它)。此外,您可以暂时将username属性分配给类似的东西,user.key.id()直到用户决定将他们的用户名更改为更有意义的东西。以 Google+ 个人资料链接为例:我目前是https://plus.google.com/114517983826182834234,但如果他们让我更改它,我会尝试类似https://plus.google.com/+IamNotANumberAnymore

然后,在“更改/设置用户名”表单处理程序中,您可以检查用户名是否已存在并更新用户实体(如果不存在):

def handle_change_username(self):
  user = ...  # get the user who wants to change their username
  username = self.request.get('username')
  uniq = 'User.username:%s' % username
  ok = User.unique_model.create(uniq)
  if ok:
    user.username = username
    user.put()
  else:
    # notify them that this username
    # is already taken
    ...

User.unique_model.create(uniq)Unique如果它不存在,将创建一个具有给定值的实体。在这种情况下okTrue. 否则,okFalse表示具有该值的实体(在这种情况下为唯一用户名)已经存在。

此外,您可能希望将User.unique_model.create()anduser.put()放在同一个事务中(它将是 XG,因为它们位于不同的实体组中)。

希望这可以帮助!

于 2013-08-18T14:34:12.080 回答