99 lines
3.2 KiB
Ruby
99 lines
3.2 KiB
Ruby
# -*- encoding : utf-8 -*-
|
|
class Issue < ActiveRecord::Base
|
|
STATUSES = ['open', 'closed']
|
|
|
|
belongs_to :project
|
|
belongs_to :user
|
|
belongs_to :assignee, :class_name => 'User', :foreign_key => 'assignee_id'
|
|
belongs_to :closer, :class_name => 'User', :foreign_key => 'closed_by'
|
|
|
|
has_many :comments, :as => :commentable, :dependent => :destroy
|
|
has_many :subscribes, :as => :subscribeable, :dependent => :destroy
|
|
has_many :labelings, :dependent => :destroy
|
|
has_many :labels, :through => :labelings, :uniq => true
|
|
has_one :pull_request, :dependent => :destroy
|
|
|
|
validates :title, :body, :project_id, :presence => true
|
|
|
|
after_create :set_serial_id
|
|
after_create :subscribe_users
|
|
after_update :subscribe_issue_assigned_user
|
|
|
|
attr_accessible :labelings_attributes, :title, :body, :assignee_id
|
|
accepts_nested_attributes_for :labelings, :allow_destroy => true
|
|
|
|
scope :opened, where(:status => 'open')
|
|
scope :closed, where(:status => 'closed')
|
|
|
|
scope :needed_checking, where(:issues => {:status => ['open', 'blocked', 'ready', 'already']})
|
|
scope :not_closed_or_merged, needed_checking
|
|
scope :closed_or_merged, where(:issues => {:status => ['closed', 'merged']})
|
|
# Using mb_chars for correct transform to lowercase ('Русский Текст'.downcase => "Русский Текст")
|
|
scope :search, lambda {|q| where('issues.title ILIKE ?', "%#{q.mb_chars.downcase}%") if q.present?}
|
|
scope :def_order, order('issues.serial_id desc')
|
|
scope :without_pull_requests, where('NOT EXISTS (select null from pull_requests as pr where pr.issue_id = issues.id)')
|
|
|
|
def assign_uname
|
|
assignee.uname if assignee
|
|
end
|
|
|
|
def to_param
|
|
serial_id.to_s
|
|
end
|
|
|
|
def subscribe_creator(creator_id)
|
|
if !self.subscribes.exists?(:user_id => creator_id)
|
|
self.subscribes.create(:user_id => creator_id)
|
|
end
|
|
end
|
|
|
|
def closed?
|
|
closed_by && closed_at && status == 'closed'
|
|
end
|
|
|
|
def set_close(closed_by)
|
|
self.closed_at = Time.now.utc
|
|
self.closer = closed_by
|
|
self.status = 'closed'
|
|
end
|
|
|
|
def set_open
|
|
self.closed_at = self.closed_by = nil
|
|
self.status = 'open'
|
|
end
|
|
|
|
def collect_recipient_ids
|
|
recipients = self.project.relations.by_role('admin').where(:actor_type => 'User').map { |rel| rel.read_attribute(:actor_id) }
|
|
recipients = recipients | [self.assignee_id] if self.assignee_id
|
|
recipients = recipients | [self.project.owner_id] if self.project.owner_type == 'User'
|
|
|
|
recipients
|
|
end
|
|
|
|
protected
|
|
|
|
def set_serial_id
|
|
self.serial_id = self.project.issues.count
|
|
self.save!
|
|
end
|
|
|
|
def subscribe_users
|
|
recipients = collect_recipient_ids
|
|
recipients.each do |recipient_id|
|
|
if User.find(recipient_id).notifier.new_comment && !self.subscribes.exists?(:user_id => recipient_id)
|
|
ss = self.subscribes.create(:user_id => recipient_id)
|
|
end
|
|
end
|
|
end
|
|
|
|
def subscribe_issue_assigned_user
|
|
if self.assignee_id && self.assignee_id_changed?
|
|
self.subscribes.where(:user_id => self.assignee_id_was).first.destroy unless self.assignee_id_was.blank?
|
|
if self.assignee.notifier.issue_assign && !self.subscribes.exists?(:user_id => self.assignee_id)
|
|
self.subscribes.create(:user_id => self.assignee_id)
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|