Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Beaker 1.6.4 not work on Python3 #57

Closed
kwatch opened this issue Feb 15, 2014 · 2 comments
Closed

Beaker 1.6.4 not work on Python3 #57

kwatch opened this issue Feb 15, 2014 · 2 comments

Comments

@kwatch
Copy link
Contributor

kwatch commented Feb 15, 2014

Hi,
I got the following error on Python 3.2 and 3.3:

File "/opt/lang/python/3.2.2/lib/python3.2/http/cookies.py", line 486, in __setitem__
  rval, cval = self.value_encode(value)
File "/opt/lang/python/3.2.2/lib/python3.2/site-packages/Beaker-1.6.4-py3.2.egg/beaker/session.py", line 70, in value_encode
  sig = HMAC.new(self.secret, val.encode('UTF-8'), SHA1).hexdigest()
AttributeError: 'bytes' object has no attribute 'encode'

The following is a monkey patch to avoid this error,
but I'm not sure that it is correct solution.

from beaker.crypto import hmac as HMAC, hmac_sha1 as SHA1
from beaker.session import SignedCookie
def value_encode(self, val):
    #sig = HMAC.new(self.secret, val.encode('UTF-8'), SHA1).hexdigest()
    sig = HMAC.new(self.secret, val, SHA1).hexdigest()
    return str(val), ("%s%s" % (sig, val))
SignedCookie.value_encode = value_encode

And, even with monkey patching, Beaker's SessionMiddleware
doesn't save session correctly on Python3.
(Pyton 3.3.3, MacOSX)

Here is my sample code (which works very well on Python2.7!):

# -*- coding: utf-8 -*-

import sys
import waitress
from beaker.middleware import SessionMiddleware

def testapp(environ, start_response):
    session = environ.get('beaker.session')
    count = session.get('count', 0) + 1
    session['count'] = count
    session.save()
    content = "count=%s" % count
    #
    start_response('200 OK', [('Content-Type', 'text/plain')])
    return [content.encode('utf-8')]

config = {
    'session.type': 'cookie',
    'session.validate_key': 'mysecretstring',
}
app = SessionMiddleware(testapp, config=config)

## monkey patch for Python3
python3 = sys.version_info[0] == 3
if python3:
    from beaker.crypto import hmac as HMAC, hmac_sha1 as SHA1
    from beaker.session import SignedCookie
    def value_encode(self, val):
        #sig = HMAC.new(self.secret, val.encode('UTF-8'), SHA1).hexdigest()
        sig = HMAC.new(self.secret, val, SHA1).hexdigest()
        return str(val), ("%s%s" % (sig, val))
    SignedCookie.value_encode = value_encode
## ----

waitress.serve(app, port=8080)

Could you help me?

@fgblomqvist
Copy link

I also get that error, which is surprising considering that it says that Beaker should work with Python 3.2. As far as I know, the str.encode() was removed in python3 in favor of str.decode(). Why is there still legacy code left?

@amol-
Copy link
Collaborator

amol- commented Feb 25, 2015

Beaker is now natively python3 compatible and will be released as 1.7.0dev as a prerelease

See https://travis-ci.org/bbangert/beaker/builds/52155288

@amol- amol- closed this as completed Feb 25, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants