/lib/galaxy/datatypes/display_applications/util.py

https://bitbucket.org/galaxy/galaxy-central/ · Python · 32 lines · 23 code · 4 blank · 5 comment · 4 complexity · f989fd63ea8db96f5c4471042042a825 MD5 · raw file

  1. from Crypto.Cipher import Blowfish
  2. def encode_dataset_user( trans, dataset, user ):
  3. # encode dataset id as usual
  4. # encode user id using the dataset create time as the key
  5. dataset_hash = trans.security.encode_id( dataset.id )
  6. if user is None:
  7. user_hash = 'None'
  8. else:
  9. user_hash = str( user.id )
  10. # Pad to a multiple of 8 with leading "!"
  11. user_hash = ( "!" * ( 8 - len( user_hash ) % 8 ) ) + user_hash
  12. cipher = Blowfish.new( str( dataset.create_time ) )
  13. user_hash = cipher.encrypt( user_hash ).encode( 'hex' )
  14. return dataset_hash, user_hash
  15. def decode_dataset_user( trans, dataset_hash, user_hash ):
  16. # decode dataset id as usual
  17. # decode user id using the dataset create time as the key
  18. dataset_id = trans.security.decode_id( dataset_hash )
  19. dataset = trans.sa_session.query( trans.app.model.HistoryDatasetAssociation ).get( dataset_id )
  20. assert dataset, "Bad Dataset id provided to decode_dataset_user"
  21. if user_hash in [ None, 'None' ]:
  22. user = None
  23. else:
  24. cipher = Blowfish.new( str( dataset.create_time ) )
  25. user_id = cipher.decrypt( user_hash.decode( 'hex' ) ).lstrip( "!" )
  26. user = trans.sa_session.query( trans.app.model.User ).get( int( user_id ) )
  27. assert user, "A Bad user id was passed to decode_dataset_user"
  28. return dataset, user