PageRenderTime 47ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/boto-2.5.2/boto/services/message.py

#
Python | 58 lines | 34 code | 4 blank | 20 comment | 6 complexity | 7710019fbd4545ccf454a1e1ef4d5044 MD5 | raw file
  1. # Copyright (c) 2006,2007 Mitch Garnaat http://garnaat.org/
  2. #
  3. # Permission is hereby granted, free of charge, to any person obtaining a
  4. # copy of this software and associated documentation files (the
  5. # "Software"), to deal in the Software without restriction, including
  6. # without limitation the rights to use, copy, modify, merge, publish, dis-
  7. # tribute, sublicense, and/or sell copies of the Software, and to permit
  8. # persons to whom the Software is furnished to do so, subject to the fol-
  9. # lowing conditions:
  10. #
  11. # The above copyright notice and this permission notice shall be included
  12. # in all copies or substantial portions of the Software.
  13. #
  14. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  15. # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
  16. # ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
  17. # SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  18. # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  20. # IN THE SOFTWARE.
  21. from boto.sqs.message import MHMessage
  22. from boto.utils import get_ts
  23. from socket import gethostname
  24. import os, mimetypes, time
  25. class ServiceMessage(MHMessage):
  26. def for_key(self, key, params=None, bucket_name=None):
  27. if params:
  28. self.update(params)
  29. if key.path:
  30. t = os.path.split(key.path)
  31. self['OriginalLocation'] = t[0]
  32. self['OriginalFileName'] = t[1]
  33. mime_type = mimetypes.guess_type(t[1])[0]
  34. if mime_type == None:
  35. mime_type = 'application/octet-stream'
  36. self['Content-Type'] = mime_type
  37. s = os.stat(key.path)
  38. t = time.gmtime(s[7])
  39. self['FileAccessedDate'] = get_ts(t)
  40. t = time.gmtime(s[8])
  41. self['FileModifiedDate'] = get_ts(t)
  42. t = time.gmtime(s[9])
  43. self['FileCreateDate'] = get_ts(t)
  44. else:
  45. self['OriginalFileName'] = key.name
  46. self['OriginalLocation'] = key.bucket.name
  47. self['ContentType'] = key.content_type
  48. self['Host'] = gethostname()
  49. if bucket_name:
  50. self['Bucket'] = bucket_name
  51. else:
  52. self['Bucket'] = key.bucket.name
  53. self['InputKey'] = key.name
  54. self['Size'] = key.size