To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / 90 / 909b4c2f7af619477e53217e316d2fc57f7fba01.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (6.03 KB)

1 1296:038ba2d95de8 Chris
# encoding: utf-8
2
#
3
# Redmine - project management software
4
# Copyright (C) 2006-2012  Jean-Philippe Lang
5
#
6
# This program is free software; you can redistribute it and/or
7
# modify it under the terms of the GNU General Public License
8
# as published by the Free Software Foundation; either version 2
9
# of the License, or (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful,
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
# GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19
20
module QueriesHelper
21
  def filters_options_for_select(query)
22
    options_for_select(filters_options(query))
23
  end
24
25
  def filters_options(query)
26
    options = [[]]
27
    sorted_options = query.available_filters.sort do |a, b|
28
      ord = 0
29
      if !(a[1][:order] == 20 && b[1][:order] == 20)
30
        ord = a[1][:order] <=> b[1][:order]
31
      else
32
        cn = (CustomField::CUSTOM_FIELDS_NAMES.index(a[1][:field].class.name) <=>
33
                CustomField::CUSTOM_FIELDS_NAMES.index(b[1][:field].class.name))
34
        if cn != 0
35
          ord = cn
36
        else
37
          f = (a[1][:field] <=> b[1][:field])
38
          if f != 0
39
            ord = f
40
          else
41
            # assigned_to or author
42
            ord = (a[0] <=> b[0])
43
          end
44
        end
45
      end
46
      ord
47
    end
48
    options += sorted_options.map do |field, field_options|
49
      [field_options[:name], field]
50
    end
51
  end
52
53
  def available_block_columns_tags(query)
54
    tags = ''.html_safe
55
    query.available_block_columns.each do |column|
56
      tags << content_tag('label', check_box_tag('c[]', column.name.to_s, query.has_column?(column)) + " #{column.caption}", :class => 'inline')
57
    end
58
    tags
59
  end
60
61
  def column_header(column)
62
    column.sortable ? sort_header_tag(column.name.to_s, :caption => column.caption,
63
                                                        :default_order => column.default_order) :
64
                      content_tag('th', h(column.caption))
65
  end
66
67
  def column_content(column, issue)
68
    value = column.value(issue)
69
    if value.is_a?(Array)
70
      value.collect {|v| column_value(column, issue, v)}.compact.join(', ').html_safe
71
    else
72
      column_value(column, issue, value)
73
    end
74
  end
75
76
  def column_value(column, issue, value)
77
    case value.class.name
78
    when 'String'
79
      if column.name == :subject
80
        link_to(h(value), :controller => 'issues', :action => 'show', :id => issue)
81
      elsif column.name == :description
82
        issue.description? ? content_tag('div', textilizable(issue, :description), :class => "wiki") : ''
83
      else
84
        h(value)
85
      end
86
    when 'Time'
87
      format_time(value)
88
    when 'Date'
89
      format_date(value)
90
    when 'Fixnum', 'Float'
91
      if column.name == :done_ratio
92
        progress_bar(value, :width => '80px')
93
      elsif  column.name == :spent_hours
94
        sprintf "%.2f", value
95
      else
96
        h(value.to_s)
97
      end
98
    when 'User'
99
      link_to_user value
100
    when 'Project'
101
      link_to_project value
102
    when 'Version'
103
      link_to(h(value), :controller => 'versions', :action => 'show', :id => value)
104
    when 'TrueClass'
105
      l(:general_text_Yes)
106
    when 'FalseClass'
107
      l(:general_text_No)
108
    when 'Issue'
109
      link_to_issue(value, :subject => false)
110
    when 'IssueRelation'
111
      other = value.other_issue(issue)
112
      content_tag('span',
113
        (l(value.label_for(issue)) + " " + link_to_issue(other, :subject => false, :tracker => false)).html_safe,
114
        :class => value.css_classes_for(issue))
115
    else
116
      h(value)
117
    end
118
  end
119
120
  # Retrieve query from session or build a new query
121
  def retrieve_query
122
    if !params[:query_id].blank?
123
      cond = "project_id IS NULL"
124
      cond << " OR project_id = #{@project.id}" if @project
125
      @query = Query.find(params[:query_id], :conditions => cond)
126
      raise ::Unauthorized unless @query.visible?
127
      @query.project = @project
128
      session[:query] = {:id => @query.id, :project_id => @query.project_id}
129
      sort_clear
130
    elsif api_request? || params[:set_filter] || session[:query].nil? || session[:query][:project_id] != (@project ? @project.id : nil)
131
      # Give it a name, required to be valid
132
      @query = Query.new(:name => "_")
133
      @query.project = @project
134
      build_query_from_params
135
      session[:query] = {:project_id => @query.project_id, :filters => @query.filters, :group_by => @query.group_by, :column_names => @query.column_names}
136
    else
137
      # retrieve from session
138
      @query = Query.find_by_id(session[:query][:id]) if session[:query][:id]
139
      @query ||= Query.new(:name => "_", :filters => session[:query][:filters], :group_by => session[:query][:group_by], :column_names => session[:query][:column_names])
140
      @query.project = @project
141
    end
142
  end
143
144
  def retrieve_query_from_session
145
    if session[:query]
146
      if session[:query][:id]
147
        @query = Query.find_by_id(session[:query][:id])
148
        return unless @query
149
      else
150
        @query = Query.new(:name => "_", :filters => session[:query][:filters], :group_by => session[:query][:group_by], :column_names => session[:query][:column_names])
151
      end
152
      if session[:query].has_key?(:project_id)
153
        @query.project_id = session[:query][:project_id]
154
      else
155
        @query.project = @project
156
      end
157
      @query
158
    end
159
  end
160
161
  def build_query_from_params
162
    if params[:fields] || params[:f]
163
      @query.filters = {}
164
      @query.add_filters(params[:fields] || params[:f], params[:operators] || params[:op], params[:values] || params[:v])
165
    else
166
      @query.available_filters.keys.each do |field|
167
        @query.add_short_filter(field, params[field]) if params[field]
168
      end
169
    end
170
    @query.group_by = params[:group_by] || (params[:query] && params[:query][:group_by])
171
    @query.column_names = params[:c] || (params[:query] && params[:query][:column_names])
172
  end
173
end