Skip to content
Snippets Groups Projects
Commit 95b7c84f authored by DJ Mountney's avatar DJ Mountney
Browse files

Seperate proxy object from deprecations

parent af78d445
No related branches found
No related tags found
No related merge requests found
require 'chef/mixin/deprecation'
require_relative 'object_proxy'
require_relative 'helpers/logging_helper'
module Gitlab
......@@ -113,7 +112,7 @@
end
# Inspired by DeprecatedInstanceVariable in https://github.com/chef/chef/blob/master/lib/chef/mixin/deprecation.rb
class NodeAttribute < ::Chef::Mixin::Deprecation::DeprecatedObjectProxyBase
class NodeAttribute < ObjectProxy
def self.log_deprecations?
@log_deprecations || false
end
......@@ -128,5 +127,5 @@
@new_var_name = new_var_name
end
def method_missing(method_name, *args, &block)
def method_missing(method_name, *args, &block) # rubocop:disable Style/MissingRespondToMissing
deprecated_msg(caller[0..2]) if NodeAttribute.log_deprecations?
......@@ -132,23 +131,5 @@
deprecated_msg(caller[0..2]) if NodeAttribute.log_deprecations?
current_target = target
(current_target.respond_to?(method_name, true) && current_target.send(method_name, *args, &block)) || super
end
def respond_to_missing?(method_name, include_private = false)
target.send(:respond_to_missing?, method_name, include_private) || super
end
[:nil?, :inspect].each do |method_name|
define_method(method_name) do |*args, &block|
target.send(method_name, *args, &block)
end
end
def target
# Support for defered procs/lambdas
return @target.call if @target.respond_to?(:call)
@target
super
end
private
......
#
# Copyright:: Copyright (c) 2019 GitLab Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
require 'chef/mixin/deprecation'
module Gitlab
# Inspired by DeprecatedInstanceVariable in https://github.com/chef/chef/blob/master/lib/chef/mixin/deprecation.rb
class ObjectProxy < ::Chef::Mixin::Deprecation::DeprecatedObjectProxyBase
def initialize(target)
@target = target
end
def method_missing(method_name, *args, &block)
current_target = target
(current_target.respond_to?(method_name, true) && current_target.send(method_name, *args, &block)) || super
end
def respond_to_missing?(method_name, include_private = false)
target.send(:respond_to_missing?, method_name, include_private) || super
end
[:nil?, :inspect].each do |method_name|
define_method(method_name) do |*args, &block|
target.send(method_name, *args, &block)
end
end
def target
# Support for defered procs/lambdas
return @target.call if @target.respond_to?(:call)
@target
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment