| 1 | from plone.app.discussion.browser.captcha import CaptchaExtender |
|---|
| 2 | from quintagroup.z3cform.captcha.widget import CaptchaWidgetFactory |
|---|
| 3 | from plone.app.discussion import vocabularies |
|---|
| 4 | from zope.schema.vocabulary import SimpleVocabulary, SimpleTerm |
|---|
| 5 | from quintagroup.plonecaptchas.interfaces import IQGDiscussionCaptchas |
|---|
| 6 | from quintagroup.plonecaptchas.interfaces import ICaptchaProvider |
|---|
| 7 | from zope.interface import Interface |
|---|
| 8 | from zope.component import adapts, getUtilitiesFor, queryUtility |
|---|
| 9 | from plone.app.discussion.browser.comments import CommentForm |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | class CaptchaProvider(object): |
|---|
| 13 | |
|---|
| 14 | def __init__(self): |
|---|
| 15 | self.widget_factory = CaptchaWidgetFactory |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | class CaptchaExtender(CaptchaExtender): |
|---|
| 19 | adapts(Interface, IQGDiscussionCaptchas, CommentForm) |
|---|
| 20 | |
|---|
| 21 | def update(self): |
|---|
| 22 | super(CaptchaExtender, self).update() |
|---|
| 23 | if self.isAnon: |
|---|
| 24 | captcha_provider = queryUtility(ICaptchaProvider, |
|---|
| 25 | name=self.captcha) |
|---|
| 26 | if captcha_provider: |
|---|
| 27 | self.form.fields['captcha'].widgetFactory = \ |
|---|
| 28 | captcha_provider.widget_factory |
|---|
| 29 | self.form.fields['captcha'].mode = None |
|---|
| 30 | |
|---|
| 31 | |
|---|
| 32 | def captcha_vocabulary(context): |
|---|
| 33 | """ Extend captcha vocabulary with quintagroup.plonecaptchas""" |
|---|
| 34 | terms = vocabularies.captcha_vocabulary(context)._terms |
|---|
| 35 | captchas = set((t.value for t in terms)) |
|---|
| 36 | |
|---|
| 37 | providers = getUtilitiesFor(ICaptchaProvider) |
|---|
| 38 | for name, util in providers: |
|---|
| 39 | if name and name not in captchas: |
|---|
| 40 | terms.append(SimpleTerm(value=name, |
|---|
| 41 | token=name, |
|---|
| 42 | title=name.capitalize())) |
|---|
| 43 | return SimpleVocabulary(terms) |
|---|