Add view to toggle reddit flairs

This commit is contained in:
2011-07-28 14:47:35 +01:00
parent 07198adfaa
commit 192f9d70c1
2 changed files with 21 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ urlpatterns = patterns('',
(r'^profile/change/password/$', password_change), (r'^profile/change/password/$', password_change),
(r'^profile/change/email/$', views.email_change), (r'^profile/change/email/$', views.email_change),
(r'^profile/change/primary/$', views.primarychar_change), (r'^profile/change/primary/$', views.primarychar_change),
(r'^profile/change/reddittag/$', views.toggle_reddit_tagging),
(r'^users/(?P<username>.*)/$', views.user_view), (r'^users/(?P<username>.*)/$', views.user_view),
(r'^users/$', views.user_lookup), (r'^users/$', views.user_lookup),
) )

View File

@@ -21,6 +21,8 @@ from eve_api.tasks import import_apikey, import_apikey_result, update_user_acces
from eve_proxy.models import ApiAccessLog from eve_proxy.models import ApiAccessLog
from reddit.tasks import update_user_flair
from sso.models import ServiceAccount, Service, SSOUser, ExistingUser, ServiceError from sso.models import ServiceAccount, Service, SSOUser, ExistingUser, ServiceError
from sso.forms import UserServiceAccountForm, ServiceAccountResetForm, UserLookupForm, APIPasswordForm, EmailChangeForm, PrimaryCharacterForm from sso.forms import UserServiceAccountForm, ServiceAccountResetForm, UserLookupForm, APIPasswordForm, EmailChangeForm, PrimaryCharacterForm
@@ -287,3 +289,21 @@ def primarychar_change(request):
return render_to_response('sso/primarycharchange.html', locals(), context_instance=RequestContext(request)) return render_to_response('sso/primarycharchange.html', locals(), context_instance=RequestContext(request))
@login_required
def toggle_reddit_tagging(request):
profile = request.user.get_profile()
profile.tag_reddit_accounts = not profile.tag_reddit_accounts
if profile.tag_reddit_accounts:
tag = 'Enabled'
else:
tag = 'Disabled'
messages.add_messages(request, message.INFO, "Reddit account tagging is now %s" % tag)
if profile.tag_reddit_accounts:
name = profile.primary_character.name
else:
name = ''
for acc in request.user.redditaccount_set.all():
update_user_flair.delay(acc.username, name)
return redirect('sso.views.profile')