discourse/app/models/draft_sequence.rb

44 lines
1.2 KiB
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
class DraftSequence < ActiveRecord::Base
def self.next!(user,key)
user_id = user
user_id = user.id unless user.class == Fixnum
return 0 if user_id == Discourse::SYSTEM_USER_ID
h = { user_id: user_id, draft_key: key }
c = DraftSequence.find_by(h)
2013-02-05 14:16:51 -05:00
c ||= DraftSequence.new(h)
c.sequence ||= 0
c.sequence += 1
2013-02-07 10:45:24 -05:00
c.save
exec_sql("DELETE FROM drafts WHERE user_id = :user_id AND draft_key = :draft_key AND sequence < :sequence", draft_key: key, user_id: user_id, sequence: c.sequence)
2013-02-05 14:16:51 -05:00
c.sequence
end
def self.current(user, key)
return nil unless user
user_id = user
user_id = user.id unless user.class == Fixnum
# perf critical path
r = exec_sql('select sequence from draft_sequences where user_id = ? and draft_key = ?', user_id, key).values
r.length.zero? ? 0 : r[0][0].to_i
2013-02-05 14:16:51 -05:00
end
end
# == Schema Information
#
# Table name: draft_sequences
#
# id :integer not null, primary key
# user_id :integer not null
# draft_key :string(255) not null
# sequence :integer not null
#
# Indexes
#
# index_draft_sequences_on_user_id_and_draft_key (user_id,draft_key) UNIQUE
#