Пример #1
0
 def make_response(self):
     res = {}
     if self._data:
         res['data'] = self._data
     if self._new_captcha:
         res['captcha'] = get_iden()
     res['errors'] = [(e[0], c.errors[e].message, e[1]) for e in self._errors]
     return {"json": res}
Пример #2
0
 def make_response(self):
     res = {}
     if self._data:
         res['data'] = self._data
     if self._new_captcha:
         res['captcha'] = get_iden()
     if self._ratelimit:
         res['ratelimit'] = self._ratelimit
     res['errors'] = [(e[0], c.errors[e].message, e[1]) for e in self._errors]
     return {"json": res}
Пример #3
0
 def make_response(self):
     res = {}
     if self._data:
         res["data"] = self._data
     if self._new_captcha:
         res["captcha"] = get_iden()
     if self._ratelimit:
         res["ratelimit"] = self._ratelimit
     res["errors"] = [(e[0], c.errors[e].message, e[1]) for e in self._errors]
     return {"json": res}
Пример #4
0
def get_captcha():
    if not c.user_is_loggedin or c.user.needs_captcha():
        return get_iden()
Пример #5
0
 def new_captcha(self):
     if not self._new_captcha:
         self.captcha(get_iden())
         self._new_captcha = True
Пример #6
0
 def new_captcha(self):
     if not self._new_captcha:
         self.captcha(get_iden())
         self._new_captcha = True
Пример #7
0
Файл: api.py Проект: cmak/reddit
 def POST_new_captcha(self, res, *a, **kw):
     res.captcha = dict(iden = get_iden(), refresh = True)
Пример #8
0
 def _chk_captcha(self, err, err_on_thing = ''):
     if self._chk_error(err, err_on_thing):
         self.captcha = {'iden' : get_iden(), 'refresh' : True, 'id': err_on_thing}
         self._focus('captcha')
         return True
     return False
Пример #9
0
 def _chk_captcha(self, err):
     if self._chk_error(err):
         self.captcha = {'iden' : get_iden(), 'refresh' : True}
         self._focus('captcha')
Пример #10
0
def get_captcha():
    if not c.user_is_loggedin or c.user.needs_captcha():
        return get_iden()