##// END OF EJS Templates
Un-inline statement....
Jean-Philippe Lang -
r13335:9dae5771bc8d
parent child
Show More
@@ -1,75 +1,77
1 # Redmine - project management software
1 # Redmine - project management software
2 # Copyright (C) 2006-2014 Jean-Philippe Lang
2 # Copyright (C) 2006-2014 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 class ActivitiesController < ApplicationController
18 class ActivitiesController < ApplicationController
19 menu_item :activity
19 menu_item :activity
20 before_filter :find_optional_project
20 before_filter :find_optional_project
21 accept_rss_auth :index
21 accept_rss_auth :index
22
22
23 def index
23 def index
24 @days = Setting.activity_days_default.to_i
24 @days = Setting.activity_days_default.to_i
25
25
26 if params[:from]
26 if params[:from]
27 begin; @date_to = params[:from].to_date + 1; rescue; end
27 begin; @date_to = params[:from].to_date + 1; rescue; end
28 end
28 end
29
29
30 @date_to ||= Date.today + 1
30 @date_to ||= Date.today + 1
31 @date_from = @date_to - @days
31 @date_from = @date_to - @days
32 @with_subprojects = params[:with_subprojects].nil? ? Setting.display_subprojects_issues? : (params[:with_subprojects] == '1')
32 @with_subprojects = params[:with_subprojects].nil? ? Setting.display_subprojects_issues? : (params[:with_subprojects] == '1')
33 @author = (params[:user_id].blank? ? nil : User.active.find(params[:user_id]))
33 if params[:user_id].present?
34 @author = User.active.find(params[:user_id])
35 end
34
36
35 @activity = Redmine::Activity::Fetcher.new(User.current, :project => @project,
37 @activity = Redmine::Activity::Fetcher.new(User.current, :project => @project,
36 :with_subprojects => @with_subprojects,
38 :with_subprojects => @with_subprojects,
37 :author => @author)
39 :author => @author)
38 @activity.scope_select {|t| !params["show_#{t}"].nil?}
40 @activity.scope_select {|t| !params["show_#{t}"].nil?}
39 @activity.scope = (@author.nil? ? :default : :all) if @activity.scope.empty?
41 @activity.scope = (@author.nil? ? :default : :all) if @activity.scope.empty?
40
42
41 events = @activity.events(@date_from, @date_to)
43 events = @activity.events(@date_from, @date_to)
42
44
43 if events.empty? || stale?(:etag => [@activity.scope, @date_to, @date_from, @with_subprojects, @author, events.first, events.size, User.current, current_language])
45 if events.empty? || stale?(:etag => [@activity.scope, @date_to, @date_from, @with_subprojects, @author, events.first, events.size, User.current, current_language])
44 respond_to do |format|
46 respond_to do |format|
45 format.html {
47 format.html {
46 @events_by_day = events.group_by {|event| User.current.time_to_date(event.event_datetime)}
48 @events_by_day = events.group_by {|event| User.current.time_to_date(event.event_datetime)}
47 render :layout => false if request.xhr?
49 render :layout => false if request.xhr?
48 }
50 }
49 format.atom {
51 format.atom {
50 title = l(:label_activity)
52 title = l(:label_activity)
51 if @author
53 if @author
52 title = @author.name
54 title = @author.name
53 elsif @activity.scope.size == 1
55 elsif @activity.scope.size == 1
54 title = l("label_#{@activity.scope.first.singularize}_plural")
56 title = l("label_#{@activity.scope.first.singularize}_plural")
55 end
57 end
56 render_feed(events, :title => "#{@project || Setting.app_title}: #{title}")
58 render_feed(events, :title => "#{@project || Setting.app_title}: #{title}")
57 }
59 }
58 end
60 end
59 end
61 end
60
62
61 rescue ActiveRecord::RecordNotFound
63 rescue ActiveRecord::RecordNotFound
62 render_404
64 render_404
63 end
65 end
64
66
65 private
67 private
66
68
67 # TODO: refactor, duplicated in projects_controller
69 # TODO: refactor, duplicated in projects_controller
68 def find_optional_project
70 def find_optional_project
69 return true unless params[:id]
71 return true unless params[:id]
70 @project = Project.find(params[:id])
72 @project = Project.find(params[:id])
71 authorize
73 authorize
72 rescue ActiveRecord::RecordNotFound
74 rescue ActiveRecord::RecordNotFound
73 render_404
75 render_404
74 end
76 end
75 end
77 end
General Comments 0
You need to be logged in to leave comments. Login now