0

投稿中に別のテーブルで使用するには、登録フォームの既存のフィールド(つまりパスワード)(新しいフィールドではない)を使用する必要があります

私のコードは以下の通りです

from django.contrib.auth.models import User 
from django.db.models.signals import post_save 

class Token(models.Model): 
  user = models.OneToOneField(User) 
  api_key=models.CharField(max_length=50) 


def create_user_token(sender, instance, created, **kwargs): 
 if created: 
   profile, created = Token.objects.get_or_create(user=instance) 

#this will definitely not work because i have no field name api_key on form 
post_save.connect(create_user_token, sender=User) 

apikeyを作成する私のロジックは以下のとおりです

 #password=posted from django-registration form as i have used django-registration 
 digest = hmac.new('Secret', password, hashlib.sha256).hexdigest() 

私はdjango登録を使用しており、ユーザーがパスワードを登録または変更するたびに api_key=digest を設定する必要があります

4

3 に答える 3

2

Django-registration には特別なuser_registeredrequest.POSTシグナルがあり、たとえばから必要なものを取得できます。

パスワードを変更するには、(django のビューに基づいて) 独自のビューを作成し、そこからシグナル (おそらく同じもの) を送信することもできます。

于 2012-05-18T05:04:29.223 に答える
1

Ilvar と Frantzdy に同意します。user_registered シグナルを使用する必要があります。以下の手順に従ってください

Forms.py

from django import forms
from registration.forms import RegistrationForm
from django.utils.translation import ugettext_lazy as _
from registration.models import RegistrationProfile

attrs_dict = { 'class': 'required' }

class RegistrationFormEx(RegistrationForm):
  cell_phone = forms.CharField(widget=forms.TextInput(attrs=attrs_dict))

models.py

import hashlib
import hmac
from django.db import models
from django.contrib.auth.models import User
from registration.signals import user_registered
from userInfo.forms import RegistrationFormEx


class ExProfile(models.Model):
   user = models.ForeignKey(User, unique=True)
   cell_phone = models.CharField(max_length=200, blank=True)
   api_key=      models.CharField(max_length=200, blank=True)

   def user_created(sender, user, request, **kwargs):
      form = RegistrationFormEx(data=request.POST)
      digest = hmac.new(str(request.POST['password1']), str(request.POST['username']), hashlib.sha256).hexdigest()
      new_user = User.objects.get(username=request.POST['username'])
      //here I have added api_key hash algo, you can change it
      new_profile = ExProfile(user=new_user,cell_phone=request.POST['cell_phone'],api_key=digest)
     new_profile.save()
     return new_user

  user_registered.connect(user_created)

urls.py

from django.conf.urls import patterns, include, url
import registration.backends.default.urls as regUrls
from registration.views import register
from userInfo.forms import  RegistrationFormEx


urlpatterns = patterns('',
url(r'^accounts/register/$', register, {'backend': 'registration.backends.default.DefaultBackend','form_class': RegistrationFormEx}, name='registration_register'),
(r'^accounts/', include('registration.backends.default.urls'))

) 

パスワードの変更を今すぐ実行できることを願っています。幸運を祈ります

于 2012-05-18T15:21:00.647 に答える
0

change_passwordビューを作成する場合は、そのキーを変更するために数行のコードを追加することをお勧めします。デモンストレーション目的:

profile = Token.objects.get(user=request.user)
#set a new api key
profile.api_key =hashlib.sha1(str(random.random()) +
                                   'app_name' +
                                 str(time.time())).hexdigest()
profile.save()

于 2012-05-18T05:09:16.750 に答える