public
Description: Extract user media from MMS (and not carrier cruft)
Homepage: http://mms2r.rubyforge.org/
Clone URL: git://github.com/monde/mms2r.git
mms2r / README.txt
100644 214 lines (164 sloc) 7.087 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
= mms2r
 
  http://mms2r.rubyforge.org/
  by Mike Mondragon
  http://rubyforge.org/tracker/?group_id=3065
  http://github.com/monde/mms2r/tree/master
  http://peepcode.com/products/mms2r-pdf
 
== DESCRIPTION
 
MMS2R is a library that decodes the parts of an MMS message to disk while
stripping out advertising injected by the mobile carriers. MMS messages are
multipart email and the carriers often inject branding into these messages. Use
MMS2R if you want to get at the real user generated content from a MMS without
having to deal with the cruft from the carriers.
 
If MMS2R is not aware of a particular carrier no extra processing is done to the
MMS other than decoding and consolidating its media.
 
Contact the author to add additional carriers to be processed by the library.
Suggestions and patches appreciated and welcomed!
 
Corpus of carriers currently processed by MMS2R:
 
* 1nbox/Idea: 1nbox.net
* 3 Ireland: mms.3ireland.ie
* Alltel: mms.alltel.com
* AT&T/Cingular/Legacy: mms.att.net, txt.att.net, mmode.com, mms.mycingular.com,
  cingularme.com, mobile.mycingular.com pics.cingularme.com
* Bell Canada: txt.bell.ca
* Bell South / Suncom: bellsouth.net
* Cricket Wireless: mms.mycricket.com
* Dobson/Cellular One: mms.dobson.net
* Helio: mms.myhelio.com
* Hutchison 3G UK Ltd: mms.three.co.uk
* INDOSAT M2: mobile.indosat.net.id
* LUXGSM S.A.: mms.luxgsm.lu
* Maroc Telecom / mms.mobileiam.ma
* MTM South Africa: mms.mtn.co.za
* NetCom (Norway): mms.netcom.no
* Nextel: messaging.nextel.com
* O2 Germany: mms.o2online.de
* O2 UK: mediamessaging.o2.co.uk
* Orange & Regional Oranges: orangemms.net, mmsemail.orange.pl, orange.fr
* PLSPICTURES.COM mms hosting: waw.plspictures.com
* PXT New Zealand: pxt.vodafone.net.nz
* Rogers of Canada: rci.rogers.com
* SaskTel: sms.sasktel.com
* Sprint: pm.sprint.com, messaging.sprintpcs.com, sprintpcs.com
* T-Mobile: tmomail.net, mmsreply.t-mobile.co.uk, tmo.blackberry.net
* TELUS Corporation (Canada): mms.telusmobility.com, msg.telus.com
* UAE MMS: mms.ae
* Unicel: unicel.com, info2go.com
  (note: mobile number is tucked away in a text/plain part for unicel.com)
* Verizon: vzwpix.com, vtext.com
* Virgin Mobile: vmpix.com
* Virgin Mobile of Canada: vmobile.ca
* Vodacom: mms.vodacom4me.co.za
 
== FEATURES
 
* #default_media and #default_text methods return a File that can be used in
  attachment_fu
* #process supports blocks to for enumerating over the content of the MMS
* #process can be made lazy when :process => :lazy is passed to new
* logging is enabled when :logger => your_logger is passed to new
 
== BOOKS
 
MMS2R, Making email useful
http://peepcode.com/products/mms2r-pdf
 
== SYNOPSIS
 
  require 'rubygems'
  require 'mms2r'
 
  # required for the example
  require 'tmail'
  require 'fileutils'
 
  mail = MMS2R.parse mail
  # mail = MMS2R.parse File.read('some_saved_mail.file')
 
  puts "mail has default carrier subject" if mail.subject.empty?
 
  # access the sender's phone number
  puts "mail was from phone #{mail.number}"
 
  # most mail are either image or video, default_media will return the largest
  # (non-advertising) video or image found
  file = mail.default_media
  puts "mail had a media: #{file.inspect}" unless file.nil?
 
  # finds the largest (non-advertising) text found
  file = mail.default_text
  puts "mail had some text: #{file.inspect}" unless file.nil?
 
  # mail.media is a hash that is indexed by mime-type.
  # The mime-type key returns an array of filepaths
  # to media that were extract from the mail and
  # are of that type
  mail.media['image/jpeg'].each {|f| puts "#{f}"}
  mail.media['text/plain'].each {|f| puts "#{f}"}
 
  # print the text (assumes mail had text)
  text = IO.readlines(mail.media['text/plain'].first).join
  puts text
 
  # save the image (assumes mail had a jpeg)
  FileUtils.cp mail.media['image/jpeg'].first, '/some/where/useful', :verbose => true
 
  puts "does the mail have quicktime video? #{!mail.media['video/quicktime'].nil?}"
 
  puts "plus run anything that TMail provides, e.g. #{mail.to.inspect}"
 
  # check if the mail is from a mobile phone
  puts "mail is from a mobile phone #{mail.is_mobile?}"
 
  # inspect default media's exif data if exifr gem is installed and default
  # media is a jpeg or tiff
  puts "mail is from a mobile phone #{mail.is_mobile?}"
  puts "mail's default media's exif data is:"
  puts mms.exif.inspect
 
  # Block support, process and receive all media types of video.
  mail.process do |media_type, files|
    # assumes a Clip model that is an AttachmentFu
    Clip.create(:uploaded_data => files.first, :title => "From phone") if media_type =~ /video/
  end
 
  # Another AttachmentFu example, Picture model is an AttachmentFu
  picture = Picture.new
  picture.title = mail.subject
  picture.uploaded_data = mail.default_media
  picture.save!
 
  #remove all the media that was put to temporary disk
  mail.purge
 
== REQUIREMENTS
 
* Hpricot
* TMail
 
== OPTIONAL
 
* exifr - install exifr for exif access on default jpeg or tiff media, and
          smart phone detection
 
== INSTALL
 
conventional
* sudo gem install mms2r
 
github
* sudo gem sources -a http://gems.github.com
* sudo gem install monde-mms2r
 
== SOURCE
 
git clone git://github.com/monde/mms2r.git
svn co svn://rubyforge.org/var/svn/mms2r/trunk mms2r
 
== AUTHORS
 
Copyright (c) 2007-2008 by Mike Mondragon (blog[http://blog.mondragon.cc/])
 
MMS2R's Flickr page[http://www.flickr.com/photos/8627919@N05/]
 
== CONTRIBUTORS
 
* Luke Francl (blog[http://railspikes.com/])
* Will Jessup (blog[http://www.willjessup.com/])
* Shane Vitarana (blog[http://www.shanesbrain.net/])
* Layton Wedgeworth (http://www.beenup2.com/)
* Jason Haruska (blog[http://software.haruska.com/])
* Dave Myron (company[http://contentfree.com/])
* Vijay Yellapragada
* Jesse Dp
* David Alm
* Jeremy Wilkins
* Matt Conway
* Kai Kai
* Michael DelGaudio
* Sai Emrys (blog[http://saizai.com])
* Brendan Lim (github profile[http://github.com/brendanlim])
 
== LICENSE
 
(The MIT License)
 
Copyright (c) 2007, 2008 Mike Mondragon (mikemondragon@gmail.com).
All rights reserved.
 
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
 
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
 
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.