]> git.openstreetmap.org Git - rails.git/blobdiff - script/deliver-message
Fix search
[rails.git] / script / deliver-message
index 85519b299a4d2894c990f4a65b421ba06a7a880e..e713b2cfcab93c25c567d4e78a9228a6be2dd1dd 100755 (executable)
@@ -1,32 +1,33 @@
 #!/usr/bin/env ruby
 
 require File.dirname(__FILE__) + '/../config/environment'
 #!/usr/bin/env ruby
 
 require File.dirname(__FILE__) + '/../config/environment'
-require 'tmail'
 
 exit 0 unless recipient = ARGV[0].match(/^([cm])-(\d+)-(.*)$/)
 
 if recipient[1] == "c"
   comment = DiaryComment.find(recipient[2])
   digest = comment.digest
 
 exit 0 unless recipient = ARGV[0].match(/^([cm])-(\d+)-(.*)$/)
 
 if recipient[1] == "c"
   comment = DiaryComment.find(recipient[2])
   digest = comment.digest
+  date = diary_comment.created_at
   from = comment.diary_entry.user
   to = comment.user
 else
   message = Message.find(recipient[2])
   digest = message.digest
   from = comment.diary_entry.user
   to = comment.user
 else
   message = Message.find(recipient[2])
   digest = message.digest
+  date = message.sent_on
   from = message.recipient
   to = message.sender
 end
 
 exit 0 unless recipient[3] == digest[0,6]
   from = message.recipient
   to = message.sender
 end
 
 exit 0 unless recipient[3] == digest[0,6]
+exit 0 if date < 1.month.ago
 
 
-mail = TMail::Mail.parse(STDIN.readlines.join)
+message.update_attribute(:message_read, true) if message
 
 
-message = Message.new(:sender => from, :recipient => to,
-                      :sent_on => Time.now.getutc,
-                      :title => mail.subject.sub(/\[OpenStreetMap\] */, ""),
-                      :body => mail.body)
+mail = Mail.new(STDIN.readlines.join)
+
+message = Message.from_mail(mail, from, to)
 message.save!
 
 message.save!
 
-Notifier::deliver_message_notification(message)
+Notifier.message_notification(message).deliver
 
 exit 0
 
 exit 0