2018-11-05 23:45:35 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-18 08:26:23 -04:00
|
|
|
module Gitlab
|
|
|
|
module Database
|
|
|
|
# Model that can be used for querying permissions of a SQL user.
|
|
|
|
class Grant < ActiveRecord::Base
|
2018-09-11 11:31:34 -04:00
|
|
|
include FromUnion
|
|
|
|
|
2017-08-18 08:26:23 -04:00
|
|
|
self.table_name =
|
|
|
|
if Database.postgresql?
|
|
|
|
'information_schema.role_table_grants'
|
|
|
|
else
|
2017-11-06 12:50:38 -05:00
|
|
|
'information_schema.schema_privileges'
|
2017-08-18 08:26:23 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Returns true if the current user can create and execute triggers on the
|
|
|
|
# given table.
|
|
|
|
def self.create_and_execute_trigger?(table)
|
2018-01-22 07:43:18 -05:00
|
|
|
if Database.postgresql?
|
|
|
|
# We _must not_ use quote_table_name as this will produce double
|
|
|
|
# quotes on PostgreSQL and for "has_table_privilege" we need single
|
|
|
|
# quotes.
|
|
|
|
quoted_table = connection.quote(table)
|
2017-11-06 12:50:38 -05:00
|
|
|
|
2018-01-22 07:43:18 -05:00
|
|
|
begin
|
|
|
|
from(nil)
|
|
|
|
.pluck("has_table_privilege(#{quoted_table}, 'TRIGGER')")
|
|
|
|
.first
|
|
|
|
rescue ActiveRecord::StatementInvalid
|
|
|
|
# This error is raised when using a non-existing table name. In this
|
|
|
|
# case we just want to return false as a user technically can't
|
|
|
|
# create triggers for such a table.
|
|
|
|
false
|
|
|
|
end
|
|
|
|
else
|
|
|
|
queries = [
|
|
|
|
Grant.select(1)
|
|
|
|
.from('information_schema.user_privileges')
|
|
|
|
.where("PRIVILEGE_TYPE = 'SUPER'")
|
|
|
|
.where("GRANTEE = CONCAT('\\'', REPLACE(CURRENT_USER(), '@', '\\'@\\''), '\\'')"),
|
2017-11-06 12:50:38 -05:00
|
|
|
|
2018-01-22 07:43:18 -05:00
|
|
|
Grant.select(1)
|
|
|
|
.from('information_schema.schema_privileges')
|
|
|
|
.where("PRIVILEGE_TYPE = 'TRIGGER'")
|
|
|
|
.where('TABLE_SCHEMA = ?', Gitlab::Database.database_name)
|
|
|
|
.where("GRANTEE = CONCAT('\\'', REPLACE(CURRENT_USER(), '@', '\\'@\\''), '\\'')")
|
|
|
|
]
|
2017-11-06 12:50:38 -05:00
|
|
|
|
2018-09-11 11:31:34 -04:00
|
|
|
Grant.from_union(queries, alias_as: 'privs').any?
|
2018-01-22 07:43:18 -05:00
|
|
|
end
|
2017-08-18 08:26:23 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|