2012-04-05 22:19:47 +02:00
|
|
|
require_dependency "login_system"
|
|
|
|
require_dependency "tracks/source_view"
|
|
|
|
|
2009-02-05 21:55:33 +01:00
|
|
|
class ApplicationController < ActionController::Base
|
2013-05-27 12:44:31 +02:00
|
|
|
# Prevent CSRF attacks by raising an exception.
|
|
|
|
# For APIs, you may want to use :null_session instead.
|
|
|
|
protect_from_forgery with: :exception
|
2012-04-05 22:19:47 +02:00
|
|
|
|
|
|
|
include LoginSystem
|
2013-03-12 18:30:38 +02:00
|
|
|
helper_method :current_user, :prefs, :format_date
|
2012-04-05 22:19:47 +02:00
|
|
|
|
2012-09-02 14:19:42 +02:00
|
|
|
layout proc{ |controller| controller.mobile? ? "mobile" : "application" }
|
2012-04-05 22:19:47 +02:00
|
|
|
# exempt_from_layout /\.js\.erb$/
|
|
|
|
|
2018-09-22 12:55:27 -05:00
|
|
|
before_action :set_session_expiration
|
|
|
|
before_action :set_time_zone
|
|
|
|
before_action :set_zindex_counter
|
|
|
|
before_action :set_locale
|
|
|
|
append_before_action :set_group_view_by
|
|
|
|
prepend_before_action :login_required
|
|
|
|
prepend_before_action :enable_mobile_content_negotiation
|
2015-08-19 14:27:26 +02:00
|
|
|
|
2012-04-05 22:19:47 +02:00
|
|
|
def set_locale
|
|
|
|
locale = params[:locale] # specifying a locale in the request takes precedence
|
|
|
|
locale = locale || prefs.locale unless current_user.nil? # otherwise, the locale of the currently logged in user takes over
|
|
|
|
locale = locale || request.env['HTTP_ACCEPT_LANGUAGE'].scan(/^[a-z]{2}/).first if request.env['HTTP_ACCEPT_LANGUAGE']
|
2013-05-07 09:29:47 +02:00
|
|
|
|
|
|
|
if locale && I18n::available_locales.map(&:to_s).include?(locale.to_s)
|
|
|
|
I18n.locale = locale
|
|
|
|
else
|
|
|
|
I18n.locale = I18n.default_locale
|
|
|
|
end
|
2012-04-05 22:19:47 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_session_expiration
|
|
|
|
# http://wiki.rubyonrails.com/rails/show/HowtoChangeSessionOptions
|
2013-09-13 16:01:54 +03:00
|
|
|
# If the method is called by the feed controller (which we don't have
|
|
|
|
# under session control) or if we checked the box to keep logged in on
|
|
|
|
# login don't set the session expiry time.
|
|
|
|
return if session.nil? || self.controller_name == 'feed' || session['noexpiry'] == "on"
|
|
|
|
|
|
|
|
# Get expiry time (allow ten seconds window for the case where we have
|
|
|
|
# none)
|
|
|
|
expiry_time = session['expiry_time'] || Time.now + 10
|
|
|
|
if expiry_time < Time.now
|
|
|
|
# Too late, matey... bang goes your session!
|
|
|
|
reset_session
|
|
|
|
else
|
|
|
|
# Okay, you get another hour
|
|
|
|
session['expiry_time'] = Time.now + (60*60)
|
2012-04-05 22:19:47 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def render_failure message, status = 404
|
2018-09-22 13:03:35 -05:00
|
|
|
render :body => message, :status => status
|
2012-04-05 22:19:47 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
# Returns a count of next actions in the given context or project The result
|
|
|
|
# is count and a string descriptor, correctly pluralised if there are no
|
|
|
|
# actions or multiple actions
|
|
|
|
#
|
2012-05-01 09:39:53 +02:00
|
|
|
def count_undone_todos_phrase(todos_parent)
|
2012-04-05 22:19:47 +02:00
|
|
|
count = count_undone_todos(todos_parent)
|
|
|
|
deferred_count = count_deferred_todos(todos_parent)
|
|
|
|
if count == 0 && deferred_count > 0
|
2012-05-01 09:39:53 +02:00
|
|
|
word = "#{I18n.t('common.deferred')} #{I18n.t('common.actions_midsentence', :count => deferred_count)}"
|
|
|
|
return "#{deferred_count.to_s} #{word}".html_safe
|
2012-04-05 22:19:47 +02:00
|
|
|
else
|
2012-05-01 09:39:53 +02:00
|
|
|
word = I18n.t('common.actions_midsentence', :count => count)
|
2012-05-12 14:48:56 +02:00
|
|
|
return "#{count} #{word}".html_safe
|
2012-04-05 22:19:47 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def count_undone_todos(todos_parent)
|
|
|
|
if todos_parent.nil?
|
|
|
|
count = 0
|
|
|
|
elsif (todos_parent.is_a?(Project) && todos_parent.hidden?)
|
2016-01-24 00:52:23 +01:00
|
|
|
count = @project_hidden_todo_counts[todos_parent.id]
|
|
|
|
elsif (todos_parent.is_a?(Context) && todos_parent.hidden?)
|
|
|
|
count = @context_hidden_todo_counts[todos_parent.id]
|
2012-04-05 22:19:47 +02:00
|
|
|
else
|
|
|
|
count = eval "@#{todos_parent.class.to_s.downcase}_not_done_counts[#{todos_parent.id}]"
|
|
|
|
end
|
|
|
|
count || 0
|
|
|
|
end
|
|
|
|
|
|
|
|
def count_deferred_todos(todos_parent)
|
2012-06-29 16:48:30 +02:00
|
|
|
return todos_parent.nil? ? 0 : eval("@#{todos_parent.class.to_s.downcase}_deferred_counts[#{todos_parent.id}]") || 0
|
2012-04-05 22:19:47 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
# Convert a date object to the format specified in the user's preferences in
|
|
|
|
# config/settings.yml
|
|
|
|
#
|
|
|
|
def format_date(date)
|
2014-07-17 13:56:08 +02:00
|
|
|
return prefs.format_date(date)
|
2012-04-05 22:19:47 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def for_autocomplete(coll, substr)
|
|
|
|
if substr # protect agains empty request
|
|
|
|
filtered = coll.find_all{|item| item.name.downcase.include? substr.downcase}
|
|
|
|
json_elems = Array[*filtered.map{ |e| {:id => e.id.to_s, :value => e.name} }].to_json
|
|
|
|
return json_elems
|
|
|
|
else
|
|
|
|
return ""
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def format_dependencies_as_json_for_auto_complete(entries)
|
|
|
|
json_elems = Array[*entries.map{ |e| {:value => e.id.to_s, :label => e.specification} }].to_json
|
|
|
|
return json_elems
|
|
|
|
end
|
|
|
|
|
|
|
|
# Here's the concept behind this "mobile content negotiation" hack: In
|
|
|
|
# addition to the main, AJAXy Web UI, Tracks has a lightweight low-feature
|
2012-07-13 20:55:40 -05:00
|
|
|
# 'mobile' version designed to be suitable for use from a phone or PDA. It
|
|
|
|
# makes some sense that the pages of that mobile version are simply alternate
|
2012-04-05 22:19:47 +02:00
|
|
|
# representations of the same Todo resources. The implementation goal was to
|
|
|
|
# treat mobile as another format and be able to use respond_to to render both
|
|
|
|
# versions. Unfortunately, I ran into a lot of trouble simply registering a
|
|
|
|
# new mime type 'text/html' with format :m because :html already is linked to
|
|
|
|
# that mime type and the new registration was forcing all html requests to be
|
2018-09-22 12:55:27 -05:00
|
|
|
# rendered in the mobile view. The before_action and after_filter hackery
|
2012-04-05 22:19:47 +02:00
|
|
|
# below accomplishs that implementation goal by using a 'fake' mime type
|
|
|
|
# during the processing and then setting it to 'text/html' in an
|
|
|
|
# 'after_filter' -LKM 2007-04-01
|
|
|
|
def mobile?
|
|
|
|
return params[:format] == 'm'
|
|
|
|
end
|
|
|
|
|
|
|
|
def enable_mobile_content_negotiation
|
|
|
|
if mobile?
|
|
|
|
request.format = :m
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def handle_unverified_request
|
|
|
|
unless request.format=="application/xml"
|
|
|
|
super # handle xml http auth via our own login code
|
|
|
|
end
|
|
|
|
end
|
2013-09-13 16:01:54 +03:00
|
|
|
|
2012-05-01 15:45:58 +02:00
|
|
|
def sanitize(arg)
|
|
|
|
ActionController::Base.helpers.sanitize(arg)
|
|
|
|
end
|
2012-04-05 22:19:47 +02:00
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def admin_login_required
|
2013-02-25 10:21:04 +01:00
|
|
|
unless User.find(session['user_id']).is_admin
|
2018-09-22 13:03:35 -05:00
|
|
|
render :body => t('errors.user_unauthorized'), :status => 401
|
2012-04-05 22:19:47 +02:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def redirect_back_or_home
|
|
|
|
respond_to do |format|
|
2012-04-20 14:38:00 +02:00
|
|
|
format.html { redirect_back_or_default root_url }
|
2012-04-05 22:19:47 +02:00
|
|
|
format.m { redirect_back_or_default mobile_url }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def boolean_param(param_name)
|
|
|
|
return false if param_name.blank?
|
|
|
|
s = params[param_name]
|
|
|
|
return false if s.blank? || s == false || s =~ /^false$/i
|
|
|
|
return true if s == true || s =~ /^true$/i
|
|
|
|
raise ArgumentError.new("invalid value for Boolean: \"#{s}\"")
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.openid_enabled?
|
|
|
|
Tracks::Config.openid_enabled?
|
|
|
|
end
|
|
|
|
|
|
|
|
def openid_enabled?
|
|
|
|
self.class.openid_enabled?
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.cas_enabled?
|
|
|
|
Tracks::Config.cas_enabled?
|
|
|
|
end
|
|
|
|
|
|
|
|
def cas_enabled?
|
|
|
|
self.class.cas_enabled?
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.prefered_auth?
|
|
|
|
Tracks::Config.prefered_auth?
|
|
|
|
end
|
|
|
|
|
|
|
|
def prefered_auth?
|
|
|
|
self.class.prefered_auth?
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def parse_date_per_user_prefs( s )
|
|
|
|
prefs.parse_date(s)
|
|
|
|
end
|
|
|
|
|
|
|
|
def init_data_for_sidebar
|
2014-09-14 21:47:14 -05:00
|
|
|
@sidebar = Sidebar.new(current_user)
|
2012-04-05 22:19:47 +02:00
|
|
|
|
|
|
|
init_not_done_counts
|
|
|
|
if prefs.show_hidden_projects_in_sidebar
|
2016-01-24 00:52:23 +01:00
|
|
|
init_hidden_todo_counts(['project'])
|
|
|
|
end
|
|
|
|
if prefs.show_hidden_contexts_in_sidebar
|
|
|
|
init_hidden_todo_counts(['context'])
|
2012-04-05 22:19:47 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def init_not_done_counts(parents = ['project','context'])
|
|
|
|
parents.each do |parent|
|
2012-10-04 10:20:26 -04:00
|
|
|
eval("@#{parent}_not_done_counts ||= current_user.todos.active.count_by_group('#{parent}_id')")
|
|
|
|
eval("@#{parent}_deferred_counts ||= current_user.todos.deferred.count_by_group('#{parent}_id')")
|
2012-04-05 22:19:47 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-01-24 00:52:23 +01:00
|
|
|
def init_hidden_todo_counts(parents = ['project', 'context'])
|
2012-04-05 22:19:47 +02:00
|
|
|
parents.each do |parent|
|
2016-01-24 00:52:23 +01:00
|
|
|
eval("@#{parent}_hidden_todo_counts ||= current_user.todos.active_or_hidden.count_by_group('#{parent}_id')")
|
2012-04-05 22:19:47 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Set the contents of the flash message from a controller Usage: notify
|
|
|
|
# :warning, "This is the message" Sets the flash of type 'warning' to "This is
|
|
|
|
# the message"
|
|
|
|
def notify(type, message)
|
|
|
|
flash[type] = message
|
|
|
|
logger.error("ERROR: #{message}") if type == :error
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_time_zone
|
|
|
|
Time.zone = current_user.prefs.time_zone if logged_in?
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_zindex_counter
|
|
|
|
# this counter can be used to handle the IE z-index bug
|
|
|
|
@z_index_counter = 500
|
|
|
|
end
|
|
|
|
|
2013-04-30 22:52:22 -05:00
|
|
|
def todo_xml_params
|
2013-04-30 22:50:32 -05:00
|
|
|
if params[:limit_fields] == 'index'
|
|
|
|
return [:only => [:id, :created_at, :updated_at, :completed_at] ]
|
|
|
|
else
|
|
|
|
return [:except => :user_id, :include => [:tags, :predecessors, :successors] ]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-05-11 10:38:34 +02:00
|
|
|
def all_done_todos_for(object)
|
|
|
|
object_name = object.class.name.downcase # context or project
|
2014-01-09 11:18:33 +01:00
|
|
|
@source_view = "all_done"
|
2013-05-11 10:38:34 +02:00
|
|
|
@page_title = t("#{object_name.pluralize}.all_completed_tasks_title", "#{object_name}_name".to_sym => object.name)
|
|
|
|
|
2013-09-13 16:44:59 +02:00
|
|
|
@done = object.todos.completed.reorder('completed_at DESC').includes(Todo::DEFAULT_INCLUDES).
|
|
|
|
paginate(:page => params[:page], :per_page => 20)
|
2013-05-11 10:38:34 +02:00
|
|
|
@count = @done.size
|
|
|
|
render :template => 'todos/all_done'
|
|
|
|
end
|
|
|
|
|
|
|
|
def done_todos_for(object)
|
|
|
|
object_name = object.class.name.downcase # context or project
|
2014-08-14 21:05:05 -05:00
|
|
|
@source_view = "done"
|
2013-05-11 10:38:34 +02:00
|
|
|
eval("@#{object_name} = object")
|
|
|
|
@page_title = t("#{object_name.pluralize}.completed_tasks_title", "#{object_name}_name".to_sym => object.name)
|
|
|
|
|
2014-01-09 11:18:33 +01:00
|
|
|
@done_today, @done_rest_of_week, @done_rest_of_month = DoneTodos.done_todos_for_container(object.todos)
|
2013-05-11 10:38:34 +02:00
|
|
|
@count = @done_today.size + @done_rest_of_week.size + @done_rest_of_month.size
|
|
|
|
|
|
|
|
render :template => 'todos/done'
|
|
|
|
end
|
|
|
|
|
2013-06-11 11:12:21 +02:00
|
|
|
def set_group_view_by
|
|
|
|
@group_view_by = params['_group_view_by'] || cookies['group_view_by'] || 'context'
|
|
|
|
end
|
|
|
|
|
2009-02-05 21:55:33 +01:00
|
|
|
end
|