31 lines
982 B
Ruby
31 lines
982 B
Ruby
class AutoCompletesController < ApplicationController
|
|
before_filter :find_project
|
|
|
|
def issues
|
|
@issues = []
|
|
q = params[:q].to_s
|
|
query = (params[:scope] == "all" && Setting.cross_project_issue_relations?) ? Issue : @project.issues
|
|
if q.match(/^\d+$/)
|
|
@issues << query.visible.find_by_id(q.to_i)
|
|
end
|
|
unless q.blank?
|
|
@issues += query.visible.find(:all,
|
|
:limit => 10,
|
|
:order => "#{Issue.table_name}.id ASC",
|
|
:conditions => ["LOWER(#{Issue.table_name}.subject) LIKE :q OR CAST(#{Issue.table_name}.id AS CHAR(13)) LIKE :q", {:q => "%#{q.downcase}%" }])
|
|
end
|
|
@issues.compact!
|
|
render :layout => false
|
|
end
|
|
|
|
private
|
|
|
|
def find_project
|
|
project_id = (params[:issue] && params[:issue][:project_id]) || params[:project_id]
|
|
@project = Project.find(project_id)
|
|
rescue ActiveRecord::RecordNotFound
|
|
render_404
|
|
end
|
|
|
|
end
|