2013-12-06 10:05:34 -05:00
|
|
|
require 'gon'
|
2015-08-04 18:21:12 -04:00
|
|
|
require 'fogbugz'
|
2013-12-06 10:05:34 -05:00
|
|
|
|
2013-08-21 05:33:12 -04:00
|
|
|
class ApplicationController < ActionController::Base
|
2015-01-08 12:53:35 -05:00
|
|
|
include Gitlab::CurrentSettings
|
2016-04-14 08:28:46 -04:00
|
|
|
include Gitlab::GonHelper
|
2015-09-09 08:37:34 -04:00
|
|
|
include GitlabRoutingHelper
|
|
|
|
include PageLayoutHelper
|
2015-01-08 12:53:35 -05:00
|
|
|
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :authenticate_user_from_token!
|
|
|
|
before_action :authenticate_user!
|
2015-11-11 23:25:31 -05:00
|
|
|
before_action :validate_user_service_ticket!
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :reject_blocked!
|
|
|
|
before_action :check_password_expiration
|
2015-12-24 15:58:46 -05:00
|
|
|
before_action :check_2fa_requirement
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :ldap_security_check
|
2016-04-14 13:56:30 -04:00
|
|
|
before_action :sentry_context
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :default_headers
|
|
|
|
before_action :add_gon_variables
|
|
|
|
before_action :configure_permitted_parameters, if: :devise_controller?
|
|
|
|
before_action :require_email, unless: :devise_controller?
|
2012-06-24 03:01:42 -04:00
|
|
|
|
2014-10-06 09:18:25 -04:00
|
|
|
protect_from_forgery with: :exception
|
2012-06-24 03:01:42 -04:00
|
|
|
|
2015-01-08 12:53:35 -05:00
|
|
|
helper_method :abilities, :can?, :current_application_settings
|
2015-08-04 18:21:12 -04:00
|
|
|
helper_method :import_sources_enabled?, :github_import_enabled?, :github_import_configured?, :gitlab_import_enabled?, :gitlab_import_configured?, :bitbucket_import_enabled?, :bitbucket_import_configured?, :gitorious_import_enabled?, :google_code_import_enabled?, :fogbugz_import_enabled?, :git_import_enabled?
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2012-05-31 16:36:52 -04:00
|
|
|
rescue_from Encoding::CompatibilityError do |exception|
|
2012-11-06 15:15:25 -05:00
|
|
|
log_exception(exception)
|
2012-09-26 16:24:52 -04:00
|
|
|
render "errors/encoding", layout: "errors", status: 500
|
2012-05-31 16:36:52 -04:00
|
|
|
end
|
|
|
|
|
2012-02-22 00:14:54 -05:00
|
|
|
rescue_from ActiveRecord::RecordNotFound do |exception|
|
2012-11-06 15:15:25 -05:00
|
|
|
log_exception(exception)
|
2015-10-09 13:07:29 -04:00
|
|
|
render_404
|
2011-10-09 17:15:28 -04:00
|
|
|
end
|
|
|
|
|
2015-10-20 03:28:28 -04:00
|
|
|
def redirect_back_or_default(default: root_path, options: {})
|
|
|
|
redirect_to request.referer.present? ? :back : default, options
|
|
|
|
end
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
protected
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2016-04-14 13:56:30 -04:00
|
|
|
def sentry_context
|
|
|
|
if Rails.env.production? && current_application_settings.sentry_enabled
|
|
|
|
if current_user
|
|
|
|
Raven.user_context(
|
|
|
|
id: current_user.id,
|
|
|
|
email: current_user.email,
|
|
|
|
username: current_user.username,
|
|
|
|
)
|
|
|
|
end
|
2016-04-09 19:32:22 -04:00
|
|
|
|
|
|
|
Raven.tags_context(program: sentry_program_context)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def sentry_program_context
|
|
|
|
if Sidekiq.server?
|
|
|
|
'sidekiq'
|
|
|
|
else
|
|
|
|
'rails'
|
2016-01-20 10:15:19 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-07-09 08:42:25 -04:00
|
|
|
# From https://github.com/plataformatec/devise/wiki/How-To:-Simple-Token-Authentication-Example
|
2014-07-10 07:10:37 -04:00
|
|
|
# https://gist.github.com/josevalim/fb706b1e933ef01e4fb6
|
2014-07-09 08:42:25 -04:00
|
|
|
def authenticate_user_from_token!
|
2014-07-10 07:10:37 -04:00
|
|
|
user_token = if params[:authenticity_token].presence
|
|
|
|
params[:authenticity_token].presence
|
|
|
|
elsif params[:private_token].presence
|
|
|
|
params[:private_token].presence
|
2016-01-20 15:00:28 -05:00
|
|
|
elsif request.headers['PRIVATE-TOKEN'].present?
|
|
|
|
request.headers['PRIVATE-TOKEN']
|
2014-07-10 07:10:37 -04:00
|
|
|
end
|
2014-07-09 08:42:25 -04:00
|
|
|
user = user_token && User.find_by_authentication_token(user_token.to_s)
|
|
|
|
|
|
|
|
if user
|
|
|
|
# Notice we are passing store false, so the user is not
|
|
|
|
# actually stored in the session and a token is needed
|
|
|
|
# for every request. If you want the token to work as a
|
|
|
|
# sign in token, you can simply remove store: false.
|
|
|
|
sign_in user, store: false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-01-16 21:12:15 -05:00
|
|
|
def authenticate_user!(*args)
|
2015-10-28 12:39:22 -04:00
|
|
|
if redirect_to_home_page_url?
|
|
|
|
redirect_to current_application_settings.home_page_url and return
|
2015-01-16 19:01:15 -05:00
|
|
|
end
|
|
|
|
|
2015-01-16 21:12:15 -05:00
|
|
|
super(*args)
|
2015-01-16 19:01:15 -05:00
|
|
|
end
|
|
|
|
|
2012-11-06 15:15:25 -05:00
|
|
|
def log_exception(exception)
|
|
|
|
application_trace = ActionDispatch::ExceptionWrapper.new(env, exception).application_trace
|
|
|
|
application_trace.map!{ |t| " #{t}\n" }
|
|
|
|
logger.error "\n#{exception.class.name} (#{exception.message}):\n#{application_trace.join}"
|
|
|
|
end
|
|
|
|
|
2012-04-16 16:33:03 -04:00
|
|
|
def reject_blocked!
|
2013-03-04 09:52:30 -05:00
|
|
|
if current_user && current_user.blocked?
|
2012-06-01 09:56:28 -04:00
|
|
|
sign_out current_user
|
2013-05-28 13:48:51 -04:00
|
|
|
flash[:alert] = "Your account is blocked. Retry when an admin has unblocked it."
|
2012-04-16 16:33:03 -04:00
|
|
|
redirect_to new_user_session_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-09-25 18:07:40 -04:00
|
|
|
def after_sign_in_path_for(resource)
|
2013-03-04 09:52:30 -05:00
|
|
|
if resource.is_a?(User) && resource.respond_to?(:blocked?) && resource.blocked?
|
2012-04-13 01:12:34 -04:00
|
|
|
sign_out resource
|
2013-05-28 13:48:51 -04:00
|
|
|
flash[:alert] = "Your account is blocked. Retry when an admin has unblocked it."
|
2012-04-13 01:12:34 -04:00
|
|
|
new_user_session_path
|
|
|
|
else
|
2014-07-11 06:24:11 -04:00
|
|
|
stored_location_for(:redirect) || stored_location_for(resource) || root_path
|
2012-04-13 01:12:34 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-04-18 06:06:50 -04:00
|
|
|
def after_sign_out_path_for(resource)
|
2016-04-30 11:38:39 -04:00
|
|
|
current_application_settings.after_sign_out_path.presence || new_user_session_path
|
2015-04-18 06:06:50 -04:00
|
|
|
end
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def abilities
|
2014-10-19 04:50:23 -04:00
|
|
|
Ability.abilities
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def can?(object, action, subject)
|
|
|
|
abilities.allowed?(object, action, subject)
|
|
|
|
end
|
|
|
|
|
2011-10-17 06:39:03 -04:00
|
|
|
def access_denied!
|
2012-09-26 16:24:52 -04:00
|
|
|
render "errors/access_denied", layout: "errors", status: 404
|
2012-02-22 00:14:54 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def git_not_found!
|
2016-02-15 16:38:27 -05:00
|
|
|
render "errors/git_not_found.html", layout: "errors", status: 404
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2014-02-07 11:59:55 -05:00
|
|
|
def render_403
|
|
|
|
head :forbidden
|
2011-10-14 11:08:25 -04:00
|
|
|
end
|
2011-10-15 11:51:58 -04:00
|
|
|
|
2014-02-07 11:59:55 -05:00
|
|
|
def render_404
|
|
|
|
render file: Rails.root.join("public", "404"), layout: false, status: "404"
|
2012-12-04 22:14:05 -05:00
|
|
|
end
|
|
|
|
|
2011-11-20 15:32:12 -05:00
|
|
|
def no_cache_headers
|
|
|
|
response.headers["Cache-Control"] = "no-cache, no-store, max-age=0, must-revalidate"
|
|
|
|
response.headers["Pragma"] = "no-cache"
|
|
|
|
response.headers["Expires"] = "Fri, 01 Jan 1990 00:00:00 GMT"
|
|
|
|
end
|
2012-01-27 18:49:14 -05:00
|
|
|
|
2013-02-02 13:32:13 -05:00
|
|
|
def default_headers
|
|
|
|
headers['X-Frame-Options'] = 'DENY'
|
|
|
|
headers['X-XSS-Protection'] = '1; mode=block'
|
2013-12-27 06:38:29 -05:00
|
|
|
headers['X-UA-Compatible'] = 'IE=edge'
|
2013-12-30 03:41:05 -05:00
|
|
|
headers['X-Content-Type-Options'] = 'nosniff'
|
2015-07-13 00:37:10 -04:00
|
|
|
# Enabling HSTS for non-standard ports would send clients to the wrong port
|
|
|
|
if Gitlab.config.gitlab.https and Gitlab.config.gitlab.port == 443
|
|
|
|
headers['Strict-Transport-Security'] = 'max-age=31536000'
|
|
|
|
end
|
2013-02-02 13:32:13 -05:00
|
|
|
end
|
2013-02-19 07:37:43 -05:00
|
|
|
|
2015-11-11 23:25:31 -05:00
|
|
|
def validate_user_service_ticket!
|
|
|
|
return unless signed_in? && session[:service_tickets]
|
|
|
|
|
|
|
|
valid = session[:service_tickets].all? do |provider, ticket|
|
|
|
|
Gitlab::OAuth::Session.valid?(provider, ticket)
|
|
|
|
end
|
|
|
|
|
|
|
|
unless valid
|
|
|
|
session[:service_tickets] = nil
|
|
|
|
sign_out current_user
|
|
|
|
redirect_to new_user_session_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-06-13 12:53:04 -04:00
|
|
|
def check_password_expiration
|
2016-05-10 22:58:06 -04:00
|
|
|
if current_user && current_user.password_expires_at && current_user.password_expires_at < Time.now && !current_user.ldap_user?
|
2013-06-13 12:53:04 -04:00
|
|
|
redirect_to new_profile_password_path and return
|
|
|
|
end
|
|
|
|
end
|
2013-08-26 09:30:03 -04:00
|
|
|
|
2015-12-24 15:58:46 -05:00
|
|
|
def check_2fa_requirement
|
2016-06-06 00:38:42 -04:00
|
|
|
if two_factor_authentication_required? && current_user && !current_user.two_factor_enabled? && !skip_two_factor?
|
|
|
|
redirect_to profile_two_factor_auth_path
|
2015-12-18 15:29:13 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-03-10 11:10:23 -04:00
|
|
|
def ldap_security_check
|
2014-03-11 04:24:07 -04:00
|
|
|
if current_user && current_user.requires_ldap_check?
|
2016-03-10 06:37:14 -05:00
|
|
|
return unless current_user.try_obtain_ldap_lease
|
2016-03-09 13:11:24 -05:00
|
|
|
|
2014-07-30 03:50:50 -04:00
|
|
|
unless Gitlab::LDAP::Access.allowed?(current_user)
|
|
|
|
sign_out current_user
|
|
|
|
flash[:alert] = "Access denied for your LDAP account."
|
|
|
|
redirect_to new_user_session_path
|
2014-03-10 11:10:23 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-08-26 09:30:03 -04:00
|
|
|
def event_filter
|
|
|
|
filters = cookies['event_filter'].split(',') if cookies['event_filter'].present?
|
|
|
|
@event_filter ||= EventFilter.new(filters)
|
|
|
|
end
|
2013-11-28 04:38:20 -05:00
|
|
|
|
2014-03-14 03:57:39 -04:00
|
|
|
def gitlab_ldap_access(&block)
|
|
|
|
Gitlab::LDAP::Access.open { |access| block.call(access) }
|
2014-03-10 11:10:23 -04:00
|
|
|
end
|
|
|
|
|
2013-11-28 04:38:20 -05:00
|
|
|
# JSON for infinite scroll via Pager object
|
|
|
|
def pager_json(partial, count)
|
|
|
|
html = render_to_string(
|
|
|
|
partial,
|
|
|
|
layout: false,
|
|
|
|
formats: [:html]
|
|
|
|
)
|
|
|
|
|
|
|
|
render json: {
|
|
|
|
html: html,
|
|
|
|
count: count
|
|
|
|
}
|
|
|
|
end
|
2013-11-29 08:05:32 -05:00
|
|
|
|
2016-02-03 18:21:14 -05:00
|
|
|
def view_to_html_string(partial, locals = {})
|
2013-11-29 08:05:32 -05:00
|
|
|
render_to_string(
|
2016-02-03 18:21:14 -05:00
|
|
|
partial,
|
2016-02-03 16:33:01 -05:00
|
|
|
locals: locals,
|
2013-11-29 08:05:32 -05:00
|
|
|
layout: false,
|
|
|
|
formats: [:html]
|
|
|
|
)
|
|
|
|
end
|
2013-12-10 06:35:10 -05:00
|
|
|
|
|
|
|
def configure_permitted_parameters
|
2016-05-19 14:52:08 -04:00
|
|
|
devise_parameter_sanitizer.permit(:sign_in, keys: [:username, :email, :password, :login, :remember_me, :otp_attempt])
|
2013-12-10 06:35:10 -05:00
|
|
|
end
|
2014-02-26 07:06:31 -05:00
|
|
|
|
|
|
|
def hexdigest(string)
|
|
|
|
Digest::SHA1.hexdigest string
|
|
|
|
end
|
2014-04-07 07:09:29 -04:00
|
|
|
|
|
|
|
def require_email
|
|
|
|
if current_user && current_user.temp_oauth_email?
|
|
|
|
redirect_to profile_path, notice: 'Please complete your profile with email address' and return
|
|
|
|
end
|
|
|
|
end
|
2014-12-23 11:49:39 -05:00
|
|
|
|
2014-12-24 04:04:33 -05:00
|
|
|
def set_filters_params
|
2016-01-20 17:29:53 -05:00
|
|
|
set_default_sort
|
|
|
|
|
2014-12-23 11:49:39 -05:00
|
|
|
params[:scope] = 'all' if params[:scope].blank?
|
|
|
|
params[:state] = 'opened' if params[:state].blank?
|
|
|
|
|
2015-07-08 18:17:13 -04:00
|
|
|
@sort = params[:sort]
|
2014-12-24 04:04:33 -05:00
|
|
|
@filter_params = params.dup
|
2014-12-23 11:49:39 -05:00
|
|
|
|
|
|
|
if @project
|
2014-12-24 04:04:33 -05:00
|
|
|
@filter_params[:project_id] = @project.id
|
2014-12-23 11:49:39 -05:00
|
|
|
elsif @group
|
2014-12-24 04:04:33 -05:00
|
|
|
@filter_params[:group_id] = @group.id
|
2014-12-23 11:49:39 -05:00
|
|
|
else
|
2014-12-24 05:56:03 -05:00
|
|
|
# TODO: this filter ignore issues/mr created in public or
|
|
|
|
# internal repos where you are not a member. Enable this filter
|
|
|
|
# or improve current implementation to filter only issues you
|
|
|
|
# created or assigned or mentioned
|
2016-05-31 18:33:46 -04:00
|
|
|
# @filter_params[:authorized_only] = true
|
2014-12-23 11:49:39 -05:00
|
|
|
end
|
2014-12-24 04:04:33 -05:00
|
|
|
|
|
|
|
@filter_params
|
2014-12-23 11:49:39 -05:00
|
|
|
end
|
|
|
|
|
2014-12-24 04:04:33 -05:00
|
|
|
def get_issues_collection
|
|
|
|
set_filters_params
|
2015-05-25 07:36:28 -04:00
|
|
|
@issuable_finder = IssuesFinder.new(current_user, @filter_params)
|
|
|
|
@issuable_finder.execute
|
2014-12-24 04:04:33 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def get_merge_requests_collection
|
|
|
|
set_filters_params
|
2015-05-25 07:36:28 -04:00
|
|
|
@issuable_finder = MergeRequestsFinder.new(current_user, @filter_params)
|
|
|
|
@issuable_finder.execute
|
2014-12-24 04:04:33 -05:00
|
|
|
end
|
2015-02-17 16:52:32 -05:00
|
|
|
|
2015-08-14 09:56:33 -04:00
|
|
|
def import_sources_enabled?
|
|
|
|
!current_application_settings.import_sources.empty?
|
|
|
|
end
|
|
|
|
|
2015-02-17 16:52:32 -05:00
|
|
|
def github_import_enabled?
|
2015-08-14 09:56:33 -04:00
|
|
|
current_application_settings.import_sources.include?('github')
|
|
|
|
end
|
|
|
|
|
|
|
|
def github_import_configured?
|
2015-07-02 10:33:38 -04:00
|
|
|
Gitlab::OAuth::Provider.enabled?(:github)
|
2015-02-17 16:52:32 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def gitlab_import_enabled?
|
2015-08-14 09:56:33 -04:00
|
|
|
request.host != 'gitlab.com' && current_application_settings.import_sources.include?('gitlab')
|
|
|
|
end
|
|
|
|
|
|
|
|
def gitlab_import_configured?
|
2015-07-02 10:33:38 -04:00
|
|
|
Gitlab::OAuth::Provider.enabled?(:gitlab)
|
2015-02-17 16:52:32 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def bitbucket_import_enabled?
|
2015-08-14 09:56:33 -04:00
|
|
|
current_application_settings.import_sources.include?('bitbucket')
|
|
|
|
end
|
|
|
|
|
|
|
|
def bitbucket_import_configured?
|
2015-07-02 10:33:38 -04:00
|
|
|
Gitlab::OAuth::Provider.enabled?(:bitbucket) && Gitlab::BitbucketImport.public_key.present?
|
2015-02-17 16:52:32 -05:00
|
|
|
end
|
2015-08-14 09:56:33 -04:00
|
|
|
|
|
|
|
def gitorious_import_enabled?
|
|
|
|
current_application_settings.import_sources.include?('gitorious')
|
|
|
|
end
|
|
|
|
|
|
|
|
def google_code_import_enabled?
|
|
|
|
current_application_settings.import_sources.include?('google_code')
|
|
|
|
end
|
|
|
|
|
2015-08-04 18:21:12 -04:00
|
|
|
def fogbugz_import_enabled?
|
|
|
|
current_application_settings.import_sources.include?('fogbugz')
|
|
|
|
end
|
|
|
|
|
2015-08-14 09:56:33 -04:00
|
|
|
def git_import_enabled?
|
|
|
|
current_application_settings.import_sources.include?('git')
|
|
|
|
end
|
2015-10-28 12:39:22 -04:00
|
|
|
|
2015-12-18 15:29:13 -05:00
|
|
|
def two_factor_authentication_required?
|
|
|
|
current_application_settings.require_two_factor_authentication
|
|
|
|
end
|
|
|
|
|
2015-12-23 21:02:52 -05:00
|
|
|
def two_factor_grace_period
|
|
|
|
current_application_settings.two_factor_grace_period
|
|
|
|
end
|
|
|
|
|
2015-12-23 23:04:41 -05:00
|
|
|
def two_factor_grace_period_expired?
|
|
|
|
date = current_user.otp_grace_period_started_at
|
2015-12-23 21:02:52 -05:00
|
|
|
date && (date + two_factor_grace_period.hours) < Time.current
|
|
|
|
end
|
|
|
|
|
|
|
|
def skip_two_factor?
|
|
|
|
session[:skip_tfa] && session[:skip_tfa] > Time.current
|
|
|
|
end
|
|
|
|
|
2016-06-06 00:44:51 -04:00
|
|
|
def browser_supports_u2f?
|
|
|
|
browser.chrome? && browser.version.to_i >= 41 && !browser.device.mobile?
|
|
|
|
end
|
|
|
|
|
2015-10-28 12:39:22 -04:00
|
|
|
def redirect_to_home_page_url?
|
|
|
|
# If user is not signed-in and tries to access root_path - redirect him to landing page
|
|
|
|
# Don't redirect to the default URL to prevent endless redirections
|
|
|
|
return false unless current_application_settings.home_page_url.present?
|
|
|
|
|
|
|
|
home_page_url = current_application_settings.home_page_url.chomp('/')
|
|
|
|
root_urls = [Gitlab.config.gitlab['url'].chomp('/'), root_url.chomp('/')]
|
|
|
|
|
|
|
|
return false if root_urls.include?(home_page_url)
|
|
|
|
|
|
|
|
current_user.nil? && root_path == request.path
|
|
|
|
end
|
2016-01-20 17:29:53 -05:00
|
|
|
|
2016-06-06 00:44:51 -04:00
|
|
|
# U2F (universal 2nd factor) devices need a unique identifier for the application
|
|
|
|
# to perform authentication.
|
|
|
|
# https://developers.yubico.com/U2F/App_ID.html
|
|
|
|
def u2f_app_id
|
|
|
|
request.base_url
|
|
|
|
end
|
|
|
|
|
2016-01-20 17:29:53 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def set_default_sort
|
2016-01-22 18:43:21 -05:00
|
|
|
key = if is_a_listing_page_for?('issues') || is_a_listing_page_for?('merge_requests')
|
|
|
|
'issuable_sort'
|
2016-01-22 17:00:35 -05:00
|
|
|
end
|
2016-01-21 12:54:10 -05:00
|
|
|
|
2016-01-22 17:00:35 -05:00
|
|
|
cookies[key] = params[:sort] if key && params[:sort].present?
|
|
|
|
params[:sort] = cookies[key] if key
|
|
|
|
params[:sort] ||= 'id_desc'
|
|
|
|
end
|
|
|
|
|
|
|
|
def is_a_listing_page_for?(page_type)
|
|
|
|
controller_name, action_name = params.values_at(:controller, :action)
|
2016-01-21 12:54:10 -05:00
|
|
|
|
2016-01-22 17:00:35 -05:00
|
|
|
(controller_name == "projects/#{page_type}" && action_name == 'index') ||
|
|
|
|
(controller_name == 'groups' && action_name == page_type) ||
|
|
|
|
(controller_name == 'dashboard' && action_name == page_type)
|
2016-01-20 17:29:53 -05:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|