Class: MMS2R::Media
- Defined in:
- lib/mms2r.rb,
lib/mms2r/media.rb,
lib/mms2r/media/sprint.rb
Defined Under Namespace
Modules: Sprint
Constant Summary collapse
- VERSION =
MMS2R library version
'3.3.1'
Instance Attribute Summary collapse
-
#carrier ⇒ Object
readonly
Carrier is the domain name of the carrier.
-
#mail ⇒ Object
readonly
Mail object that the media files were derived from.
-
#media ⇒ Object
readonly
media returns the hash of media.
-
#media_dir ⇒ Object
readonly
Base working dir where media for a unique mms message are dropped.
Class Method Summary collapse
-
.conf_dir ⇒ Object
Get the directory where conf files are stored.
-
.conf_dir=(d) ⇒ Object
Set the directory where conf files are stored.
-
.default_ext(content_type) ⇒ Object
Returns a default file extension based on a content type.
-
.domain(mail) ⇒ Object
Determine if return-path or from is going to be used to desiginate the origin carrier.
-
.initialize_config(c) ⇒ Object
Joins the generic mms2r configuration with the carrier specific configuration.
-
.safe_message_id(mid) ⇒ Object
Helper to create a safe directory path element based on the mail message id.
-
.tmp_dir ⇒ Object
Get the temporary directory where media files are written to.
-
.tmp_dir=(d) ⇒ Object
Set the temporary directory where media files are written to.
Instance Method Summary collapse
-
#add_file(type, file) ⇒ Object
Helper to add a file to the media hash.
- #aliases ⇒ Object
-
#body ⇒ Object
Convenience method that returns a string including all the text of the default text/plain file found.
-
#conf_dir ⇒ Object
convenience accessor for self.class.conf_dir.
-
#default_ext(type) ⇒ Object
convenience accessor for self.class.default_ext.
-
#default_html ⇒ Object
Returns a File with the most likely candidate that is html, or nil otherwise.
-
#default_media ⇒ Object
Returns a File with the most likely candidate for the user-submitted media.
-
#default_text ⇒ Object
Returns a File with the most likely candidate that is text, or nil otherwise.
-
#device_type? ⇒ Boolean
Best guess of the mobile device type.
-
#exif ⇒ Object
exif object on default image from exifr gem.
-
#filename?(part) ⇒ Boolean
returns a filename declared for a part, or a default if its not defined.
-
#ignore_media?(type, part) ⇒ Boolean
Helper for process template method to determine if media contained in a part should be ignored.
-
#initialize(mail, opts = {}) ⇒ Media
constructor
Initialize a new MMS2R::Media comprised of a mail.
-
#initialize_config(config) ⇒ Object
convenience accessor for self.class.initialize_confg.
-
#is_mobile? ⇒ Boolean
The source of the MMS was some sort of mobile or smart phone.
- #log(message, level = :info) ⇒ Object
-
#method_missing(method, *args, &block) ⇒ Object
Pass off everything we don’t do to the Mail object TODO: refactor to explicit addition a la blog.jayfields.com/2008/02/ruby-replace-methodmissing-with-dynamic.html.
-
#msg_tmp_dir ⇒ Object
Helper to temp_file to create a unique temporary directory that is a child of tmp_dir This version is based on the message_id of the mail.
-
#number ⇒ Object
Get the phone number associated with this MMS if it exists.
-
#process ⇒ Object
process is a template method and collects all the media in a MMS.
-
#process_media(part) ⇒ Object
Helper for process template method to decode the part based on its type and write its content to a temporary file.
-
#purge ⇒ Object
Purges the unique MMS2R::Media.media_dir directory created for this producer and all of the media that it contains.
-
#safe_message_id(message_id) ⇒ Object
convenience accessor for self.class.safe_message_id.
-
#subject ⇒ Object
Return the Subject for this message, returns “” for default carrier subject such as ‘Multimedia message’ for ATT&T carrier.
-
#temp_file(part) ⇒ Object
Helper for process template method to name a temporary filepath based on information in the part.
-
#tmp_dir ⇒ Object
convenience accessor for self.class.conf_dir.
-
#transform_text(type, text, original_encoding = 'ISO-8859-1') ⇒ Object
Helper for process_media template method to transform text.
-
#transform_text_part(part) ⇒ Object
Helper for process_media template method to transform text.
Constructor Details
#initialize(mail, opts = {}) ⇒ Media
Initialize a new MMS2R::Media comprised of a mail.
Specify options to initialize with: :logger => some_logger for logging :process => :lazy, for non-greedy processing upon initialization
#process will have to be called explicitly if the lazy process option is chosen.
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 215 216 217 218 219 |
# File 'lib/mms2r/media.rb', line 186 def initialize(mail, opts={}) @mail = mail @logger = opts[:logger] log("#{self.class} created", :info) @carrier = self.class.domain(mail) @dir_count = 0 @media_dir = File.( File.join(self.tmp_dir(), "#{self.(@mail.)}_#{UUIDTools::UUID.random_create}")) @media = {} @was_processed = false @number = nil @subject = nil @body = nil @exif = nil @default_media = nil @default_text = nil @default_html = nil f = File.(File.join(self.conf_dir(), "aliases.yml")) @aliases = YAML::load_file(f) rescue {} conf = "#{@aliases[@carrier] || @carrier}.yml" f = File.(File.join(self.conf_dir(), conf)) c = YAML::load_file(f) rescue {} @config = self.class.initialize_config(c) processor_module = MMS2R::CARRIERS[@carrier] extend processor_module if processor_module lazy = (opts[:process] == :lazy) rescue false self.process() unless lazy end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *args, &block) ⇒ Object
Pass off everything we don’t do to the Mail object TODO: refactor to explicit addition a la blog.jayfields.com/2008/02/ruby-replace-methodmissing-with-dynamic.html
112 113 114 |
# File 'lib/mms2r/media.rb', line 112 def method_missing method, *args, &block mail.send method, *args, &block end |
Instance Attribute Details
#carrier ⇒ Object (readonly)
Carrier is the domain name of the carrier. If the carrier is not known the carrier will be set to ‘mms2r.media’
132 133 134 |
# File 'lib/mms2r/media.rb', line 132 def carrier @carrier end |
#mail ⇒ Object (readonly)
Mail object that the media files were derived from.
119 120 121 |
# File 'lib/mms2r/media.rb', line 119 def mail @mail end |
#media ⇒ Object (readonly)
media returns the hash of media. The media hash is keyed by mime-type such as ‘text/plain’ and the value mapped to the key is an array of media that are of that type.
126 127 128 |
# File 'lib/mms2r/media.rb', line 126 def media @media end |
#media_dir ⇒ Object (readonly)
Base working dir where media for a unique mms message are dropped
137 138 139 |
# File 'lib/mms2r/media.rb', line 137 def media_dir @media_dir end |
Class Method Details
.conf_dir ⇒ Object
Get the directory where conf files are stored.
616 617 618 |
# File 'lib/mms2r/media.rb', line 616 def self.conf_dir @@conf_dir ||= File.(File.join(File.dirname(__FILE__), '..', '..', 'conf')) end |
.conf_dir=(d) ⇒ Object
Set the directory where conf files are stored.
623 624 625 |
# File 'lib/mms2r/media.rb', line 623 def self.conf_dir=(d) @@conf_dir=d end |
.default_ext(content_type) ⇒ Object
Returns a default file extension based on a content type
638 639 640 641 642 643 644 |
# File 'lib/mms2r/media.rb', line 638 def self.default_ext(content_type) if MMS2R::EXT[content_type] MMS2R::EXT[content_type] elsif content_type content_type.split('/').last end end |
.domain(mail) ⇒ Object
Determine if return-path or from is going to be used to desiginate the origin carrier. If the domain in the From header is listed in conf/from.yaml then that is the carrier domain. Else if there is a Return-Path header its address’s domain is the carrier doamin, else use From header’s address domain.
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 |
# File 'lib/mms2r/media.rb', line 146 def self.domain(mail) return_path = case when mail.return_path mail.return_path ? mail.return_path.split('@').last : '' else '' end from_domain = case when mail.from && mail.from.first mail.from.first.split('@').last else '' end f = File.(File.join(self.conf_dir(), "from.yml")) from = YAML::load_file(f) rescue {} ret = case when from.include?(from_domain) from_domain when return_path.present? return_path else from_domain end ret end |
.initialize_config(c) ⇒ Object
Joins the generic mms2r configuration with the carrier specific configuration.
650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 |
# File 'lib/mms2r/media.rb', line 650 def self.initialize_config(c) f = File.(File.join(self.conf_dir(), "mms2r_media.yml")) conf = YAML::load_file(f) rescue {} conf['ignore'] ||= {} unless conf['ignore'] conf['transform'] = {} unless conf['transform'] conf['number'] = [] unless conf['number'] return conf unless c kinds = ['ignore', 'transform'] kinds.each do |kind| if c[kind] c[kind].each do |type,array| conf[kind][type] = [] unless conf[kind][type] conf[kind][type] += array end end end conf['number'] = c['number'] if c['number'] conf end |
.safe_message_id(mid) ⇒ Object
Helper to create a safe directory path element based on the mail message id.
631 632 633 |
# File 'lib/mms2r/media.rb', line 631 def self.(mid) mid.nil? ? "#{Time.now.to_i}" : mid.gsub(/\$|<|>|@|\./, "") end |
.tmp_dir ⇒ Object
Get the temporary directory where media files are written to.
603 604 605 |
# File 'lib/mms2r/media.rb', line 603 def self.tmp_dir @@tmp_dir ||= File.(File.join(Dir.tmpdir, (ENV['USER'].nil? ? '':ENV['USER']), 'mms2r')) end |
.tmp_dir=(d) ⇒ Object
Set the temporary directory where media files are written to.
609 610 611 |
# File 'lib/mms2r/media.rb', line 609 def self.tmp_dir=(d) @@tmp_dir=d end |
Instance Method Details
#add_file(type, file) ⇒ Object
Helper to add a file to the media hash.
490 491 492 493 |
# File 'lib/mms2r/media.rb', line 490 def add_file(type, file) media[type] = [] unless media[type] media[type] << file end |
#aliases ⇒ Object
531 532 533 |
# File 'lib/mms2r/media.rb', line 531 def aliases @aliases end |
#body ⇒ Object
Convenience method that returns a string including all the text of the default text/plain file found. If the plain text is blank then it returns stripped down version of the title and body of default text/html. Returns empty string if no body text is found.
265 266 267 268 269 270 271 272 273 |
# File 'lib/mms2r/media.rb', line 265 def body text_file = default_text @body = text_file ? IO.readlines(text_file.path).join.strip : "" if @body.blank? && html_file = default_html html = Nokogiri::HTML(IO.read(html_file.path)) @body = (html.xpath("//head/title").map(&:text) + html.xpath("//body/*").map(&:text)).join(" ") end @body end |
#conf_dir ⇒ Object
convenience accessor for self.class.conf_dir
680 681 682 |
# File 'lib/mms2r/media.rb', line 680 def conf_dir self.class.conf_dir end |
#default_ext(type) ⇒ Object
convenience accessor for self.class.default_ext
694 695 696 |
# File 'lib/mms2r/media.rb', line 694 def default_ext(type) self.class.default_ext(type) end |
#default_html ⇒ Object
Returns a File with the most likely candidate that is html, or nil otherwise. It also adds singleton methods to the File object so it can be used in place of a CGI upload (local_path, original_filename, size, and content_type) such as in conjunction with AttachmentFu. The largest file found in terms of bytes is returned.
Returns nil if there are not any text Files found
308 309 310 |
# File 'lib/mms2r/media.rb', line 308 def default_html @default_html ||= (['text/html']) end |
#default_media ⇒ Object
Returns a File with the most likely candidate for the user-submitted media. Given that most MMS messages only have one file attached, this method will try to return that file. Singleton methods are added to the File object so it can be used in place of a CGI upload (local_path, original_filename, size, and content_type) such as in conjunction with AttachementFu. The largest file found in terms of bytes is returned.
Returns nil if there are not any video or image Files found.
284 285 286 |
# File 'lib/mms2r/media.rb', line 284 def default_media @default_media ||= (['video', 'image', 'application', 'text']) end |
#default_text ⇒ Object
Returns a File with the most likely candidate that is text, or nil otherwise. It also adds singleton methods to the File object so it can be used in place of a CGI upload (local_path, original_filename, size, and content_type) such as in conjunction with AttachmentFu. The largest file found in terms of bytes is returned.
Returns nil if there are not any text Files found
296 297 298 |
# File 'lib/mms2r/media.rb', line 296 def default_text @default_text ||= (['text/plain']) end |
#device_type? ⇒ Boolean
Best guess of the mobile device type. Simple heuristics thus far by inspecting mail headers and jpeg/tiff exif metadata. Smart phone types are :iphone :blackberry :dash :droid If the message is from a carrier known to MMS2R, and not a smart phone its type is returned as :handset Otherwise device type is :unknown
544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 |
# File 'lib/mms2r/media.rb', line 544 def device_type? file = (['image']) if file original = file.original_filename @exif = case original when /\.je?pg$/i EXIFR::JPEG.new(file) when /\.tiff?$/i EXIFR::TIFF.new(file) end if @exif models = config['device_types']['models'] rescue {} models.each do |model, regex| return model if @exif.model =~ regex end makes = config['device_types']['makes'] rescue {} makes.each do |make, regex| return make if @exif.make =~ regex end end end headers = config['device_types']['headers'] rescue {} headers.keys.each do |header| if mail.header[header.downcase] # headers[header] refers to a hash of smart phone types with regex values # that if they match, the header signals the type should be returned headers[header].each do |type, regex| return type if mail.header[header.downcase].decoded =~ regex end end end return :handset if File.exist?( File.( File.join(self.conf_dir, "#{self.aliases[self.carrier] || self.carrier}.yml") ) ) :unknown end |
#exif ⇒ Object
exif object on default image from exifr gem
588 589 590 591 |
# File 'lib/mms2r/media.rb', line 588 def exif device_type? unless @exif @exif end |
#filename?(part) ⇒ Boolean
returns a filename declared for a part, or a default if its not defined
509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 |
# File 'lib/mms2r/media.rb', line 509 def filename?(part) name = part.filename if (name.nil? || name.empty?) if part.content_id && part.content_id.strip =~ /^<(.+)>$/ name = $1 else name = "#{Time.now.to_f}.#{self.default_ext(part.part_type?)}" end end # XXX fwiw, janky look for dot extension 1 to 4 chars long name = (name =~ /\..{1,4}$/ ? name : "#{name}.#{self.default_ext(part.part_type?)}").strip # handle excessively large filenames if name.size > 255 ext = File.extname(name) base = File.basename(name, ext) name = "#{base[0, 255 - ext.size]}#{ext}" end name end |
#ignore_media?(type, part) ⇒ Boolean
Helper for process template method to determine if media contained in a part should be ignored. Producers should override this method to return true for media such as images that are advertising, carrier logos, etc. See the ignore section in the discussion of the built-in configuration.
383 384 385 386 387 388 389 390 |
# File 'lib/mms2r/media.rb', line 383 def ignore_media?(type, part) ignores = config['ignore'][type] || [] ignore = ignores.detect{ |test| filename?(part) == test} ignore ||= ignores.detect{ |test| filename?(part) =~ eval(test) if test.index('/') == 0 } ignore ||= ignores.detect{ |test| part.body.decoded.strip =~ eval(test) if test.index('/') == 0 } ignore ||= (part.body.decoded.strip.size == 0 ? true : nil) ignore.nil? ? false : true end |
#initialize_config(config) ⇒ Object
convenience accessor for self.class.initialize_confg
708 709 710 |
# File 'lib/mms2r/media.rb', line 708 def initialize_config(config) self.class.initialize_config(config) end |
#is_mobile? ⇒ Boolean
The source of the MMS was some sort of mobile or smart phone
596 597 598 |
# File 'lib/mms2r/media.rb', line 596 def is_mobile? self.device_type? != :unknown end |
#log(message, level = :info) ⇒ Object
673 674 675 |
# File 'lib/mms2r/media.rb', line 673 def log(, level = :info) @logger.send(level, ) unless @logger.nil? end |
#msg_tmp_dir ⇒ Object
Helper to temp_file to create a unique temporary directory that is a child of tmp_dir This version is based on the message_id of the mail.
499 500 501 502 503 504 |
# File 'lib/mms2r/media.rb', line 499 def msg_tmp_dir() @dir_count += 1 dir = File.(File.join(@media_dir, "#{@dir_count}")) FileUtils.mkdir_p(dir) dir end |
#number ⇒ Object
Get the phone number associated with this MMS if it exists. The value returned is simplistic, it is just the user name of the from address before the @ symbol. Validation of the number is left to you. Most carriers are using the real phone number as the username.
227 228 229 230 231 232 233 234 235 236 237 238 239 |
# File 'lib/mms2r/media.rb', line 227 def number unless @number params = config['number'] if params && params.any? && (header = mail.header[params[0]]) @number = header.to_s.gsub(eval(params[1]), params[2]) end if @number.nil? || @number.blank? @number = mail.from.first.split(/@|\//).first rescue "" end end @number end |
#process ⇒ Object
process is a template method and collects all the media in a MMS. Override helper methods to this template to clean out advertising and/or ignore media that are advertising. This method should not be overridden unless there is an extreme special case in processing the media of a MMS (like Sprint)
Helper methods for the process template:
-
ignore_media? – true if the media contained in a part should be ignored.
-
process_media – retrieves media to temporary file, returns path to file.
-
transform_text – called by process_media, strips out advertising.
-
temp_file – creates a temporary filepath based on information from the part.
Block support: Call process() with a block to automatically iterate through media. For example, to process and receive only media of video type:
mms.process do |media_type, file|
results << file if media_type =~ /video/
end
note: purge must be explicitly called to remove the media files
mms2r extracts from an mms message.
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 |
# File 'lib/mms2r/media.rb', line 335 def process() # :yields: media_type, file unless @was_processed log("#{self.class} processing", :info) parts = mail.multipart? ? mail.parts : [mail] # Double check for multipart/related, if it exists replace it with its # children parts. Do this twice as multipart/alternative can have # children and we want to fold everything down for i in 1..2 flat = [] parts.each do |p| if p.multipart? p.parts.each {|mp| flat << mp } else flat << p end end parts = flat.dup end # get to work parts.each do |p| t = p.part_type? unless ignore_media?(t,p) t,f = process_media(p) add_file(t,f) unless t.nil? || f.nil? end end @was_processed = true end # when process acts upon a block if block_given? media.each do |k, v| yield(k, v) end end end |
#process_media(part) ⇒ Object
Helper for process template method to decode the part based on its type and write its content to a temporary file. Returns path to temporary file that holds the content. Parts with a main type of text will have their contents transformed with a call to transform_text
Producers should only override this method if the parts of the MMS need special treatment besides what is expected for a normal mime part (like Sprint).
Returns a tuple of content type, file path
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 |
# File 'lib/mms2r/media.rb', line 404 def process_media(part) # Mail body auto-magically decodes quoted # printable for text/html type. file = temp_file(part) if part.part_type? =~ /^text\// || part.part_type? == 'application/smil' type, content = transform_text_part(part) mode = 'w' else if part.part_type? == 'application/octet-stream' type = type_from_filename(filename?(part)) else type = part.part_type? end content = part.body.decoded mode = 'wb' # open with binary bit for Windows for non text end return type, nil if content.nil? || content.empty? log("#{self.class} writing file #{file}", :info) File.open(file, mode){ |f| f.write(content) } return type, file end |
#purge ⇒ Object
Purges the unique MMS2R::Media.media_dir directory created for this producer and all of the media that it contains.
482 483 484 485 |
# File 'lib/mms2r/media.rb', line 482 def purge() log("#{self.class} purging #{@media_dir} and all its contents", :info) FileUtils.rm_rf(@media_dir) end |
#safe_message_id(message_id) ⇒ Object
convenience accessor for self.class.safe_message_id
701 702 703 |
# File 'lib/mms2r/media.rb', line 701 def () self.class.() end |
#subject ⇒ Object
Return the Subject for this message, returns “” for default carrier subject such as ‘Multimedia message’ for ATT&T carrier.
245 246 247 248 249 250 251 252 253 254 255 256 257 258 |
# File 'lib/mms2r/media.rb', line 245 def subject unless @subject subject = mail.subject.strip rescue "" ignores = config['ignore']['text/plain'] if ignores && ignores.detect{|s| s == subject} @subject = "" else @subject = transform_text('text/plain', subject).last end end @subject end |
#temp_file(part) ⇒ Object
Helper for process template method to name a temporary filepath based on information in the part. This version attempts to honor the name of the media as labeled in the part header and creates a unique temporary directory for writing the file so filename collision does not occur. Consumers of this method expect the directory structure to the file exists, if the method is overridden it is mandatory that this behavior is retained.
473 474 475 476 |
# File 'lib/mms2r/media.rb', line 473 def temp_file(part) file_name = filename?(part) File.(File.join(msg_tmp_dir(),File.basename(file_name))) end |
#tmp_dir ⇒ Object
convenience accessor for self.class.conf_dir
687 688 689 |
# File 'lib/mms2r/media.rb', line 687 def tmp_dir self.class.tmp_dir end |
#transform_text(type, text, original_encoding = 'ISO-8859-1') ⇒ Object
Helper for process_media template method to transform text. See the transform section in the discussion of the built-in configuration.
433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 |
# File 'lib/mms2r/media.rb', line 433 def transform_text(type, text, original_encoding = 'ISO-8859-1') return type, text if !config['transform'] || !(transforms = config['transform'][type]) #convert to UTF-8 begin c = Iconv.new('UTF-8', original_encoding ) utf_t = c.iconv(text) rescue Exception => e utf_t = text end transforms.each do |transform| next unless transform.size == 2 p = transform.first r = transform.last utf_t = utf_t.gsub(eval(p), r) rescue utf_t end return type, utf_t end |
#transform_text_part(part) ⇒ Object
Helper for process_media template method to transform text.
458 459 460 461 462 |
# File 'lib/mms2r/media.rb', line 458 def transform_text_part(part) type = part.part_type? text = part.body.decoded.strip transform_text(type, text) end |