gitlab-org--gitlab-foss/app/services/base_service.rb

53 lines
826 B
Ruby
Raw Normal View History

class BaseService
include Gitlab::CurrentSettings
attr_accessor :project, :current_user, :params
def initialize(project, user, params = {})
@project, @current_user, @params = project, user, params.dup
end
2012-07-28 00:35:24 +00:00
def abilities
Ability.abilities
2012-07-28 00:35:24 +00:00
end
def can?(object, action, subject)
abilities.allowed?(object, action, subject)
end
def notification_service
NotificationService.new
end
def event_service
EventCreateService.new
end
def log_info(message)
Gitlab::AppLogger.info message
end
2014-06-17 19:20:10 +00:00
def system_hook_service
SystemHooksService.new
end
def current_application_settings
ApplicationSetting.current
end
private
def error(message)
{
message: message,
status: :error
}
end
def success
{
status: :success
}
end
end