journalduhacker/app/models/invitation_request.rb

34 lines
772 B
Ruby

class InvitationRequest < ActiveRecord::Base
validates :name, :presence => true
validates :email, :format => { :with => /\A[^@ ]+@[^@ ]+\.[^@ ]+\Z/ }
validates :memo, :format => { :with => /https?:\/\// }
before_validation :create_code
after_create :send_email
def self.verified_count
InvitationRequest.where(:is_verified => true).count
end
def create_code
(1...10).each do |tries|
if tries == 10
raise "too many hash collisions"
end
self.code = Utils.random_str(15)
unless InvitationRequest.exists?(:code => self.code)
break
end
end
end
def markeddown_memo
Markdowner.to_html(self.memo)
end
def send_email
InvitationRequestMailer.invitation_request(self).deliver
end
end