kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
3.2 KiB
85 lines
3.2 KiB
#-- encoding: UTF-8
|
|
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
module OpenProject
|
|
# This module provides some information about the currently used database
|
|
# adapter. It can be used to write code specific to certain database
|
|
# vendors which, while not not encouraged, is sometimes necessary due to
|
|
# syntax differences.
|
|
|
|
module Database
|
|
# This method returns a hash which maps the identifier of the supported
|
|
# adapter to a regex matching the adapter_name.
|
|
def self.supported_adapters
|
|
@adapters ||= ({
|
|
mysql: /mysql/i,
|
|
postgresql: /postgres/i
|
|
})
|
|
end
|
|
|
|
# Get the raw name of the currently used database adapter.
|
|
# This string is set by the used adapter gem.
|
|
def self.adapter_name(connection)
|
|
connection.adapter_name
|
|
end
|
|
|
|
# returns the identifier of the specified connection
|
|
# (defaults to ActiveRecord::Base.connection)
|
|
def self.name(connection = ActiveRecord::Base.connection)
|
|
supported_adapters.find(proc { [:unknown, //] }) { |_adapter, regex|
|
|
adapter_name(connection) =~ regex
|
|
}[0]
|
|
end
|
|
|
|
# Provide helper methods to quickly check the database type
|
|
# OpenProject::Database.mysql? returns true, if we have a MySQL DB
|
|
# Also allows specification of a connection e.g.
|
|
# OpenProject::Database.mysql?(my_connection)
|
|
supported_adapters.keys.each do |adapter|
|
|
(class << self; self; end).class_eval do
|
|
define_method(:"#{adapter.to_s}?") do |connection = ActiveRecord::Base.connection|
|
|
send(:name, connection) == adapter
|
|
end
|
|
end
|
|
end
|
|
|
|
# Return the version of the underlying database engine.
|
|
# Set the +raw+ argument to true to return the unmangled string
|
|
# from the database.
|
|
def self.version(raw = false)
|
|
case name
|
|
when :mysql
|
|
version = ActiveRecord::Base.connection.select_value('SELECT VERSION()')
|
|
when :postgresql
|
|
version = ActiveRecord::Base.connection.select_value('SELECT version()')
|
|
raw ? version : version.match(/\APostgreSQL (\S+)/i)[1]
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|