Mercurial > zeropaste
view app/models/paste.rb @ 370:5a4d31e97937
Remove extra file extensions.
author | edogawaconan <me@myconan.net> |
---|---|
date | Tue, 14 Apr 2015 00:22:07 +0900 |
parents | 96631607785f |
children | 6e3e1e7b0212 |
line wrap: on
line source
class Paste < ActiveRecord::Base attr_accessor :is_private before_validation :paste_limit before_validation :convert_newlines before_validation :set_paste_hash before_validation :set_paste_key before_validation :set_paste_secret validates :paste, :paste_hash, :key, :ip, :presence => true validates :paste, :length => { :maximum => 1_000_000 } def to_param path end def self.safe_find(raw_id) id, secret = raw_id.to_s.split("-") return unless id.to_i.to_s == id begin where(:secret => secret).find(id) rescue ActiveRecord::RecordNotFound nil end end def paste_gzip=(paste) self.paste = ActiveSupport::Gzip.decompress paste end def paste_gzip_base64=(paste) self.paste_gzip = Base64.decode64(paste) end def safe_destroy(param_key) if key == param_key destroy else errors.add(:key, "is invalid") false end end def path [id, secret.presence].compact.join("-") end def set_paste_hash self.paste_hash = Digest::SHA512.hexdigest("#{paste}\n") end def set_paste_key self.key ||= SecureRandom.hex(4) end def set_paste_secret self.secret = SecureRandom.hex(4) if is_private? end def is_private? is_private == "1" end def convert_newlines self.paste = paste.to_s.gsub("\r\n", "\n").gsub("\r", "\n") end def paste_limit ip_post_recent_count = self.class.where(:ip => ip).where("created_at > ?", Time.now - 1.hour).count errors.add :base, :limit if ip_post_recent_count > 100 end def self.fix_all stats = Hash.new(0) all.each do |p| p.save stats[:count] += 1 stats[:private] += 1 if p.secret end stats end end