Sha256: f4700168e6919d6f60e5a35d76781c77d4ba14223c83b25e631567d1b47b6df0

Contents?: true

Size: 1.69 KB

Versions: 10

Compression:

Stored size: 1.69 KB

Contents

# frozen_string_literal: true
module FinApps
  module REST
    class Resources # :nodoc:
      include FinApps::Utils::ParameterFilter
      require 'erb'

      attr_reader :client

      # @param [FinApps::REST::Client] client
      # @return [FinApps::REST::Resources]
      def initialize(client)
        raise MissingArgumentsError.new 'Missing argument: client.' if client.nil?
        raise InvalidArgumentsError.new 'Invalid argument: client.' unless client.is_a?(FinApps::REST::Client)

        @client = client
      end

      def list(path=nil)
        path = end_point.to_s if path.nil?
        request_with_body(path, :get, {})
      end

      def create(params={}, path=nil)
        request_with_body(path, :post, params)
      end

      def update(params={}, path=nil)
        request_with_body(path, :put, params)
      end

      def show(id=nil, path=nil)
        request_without_body(path, :get, id)
      end

      def destroy(id=nil, path=nil)
        request_without_body(path, :delete, id)
      end

      def request_without_body(path, method, id)
        raise MissingArgumentsError.new 'Missing argument: id.' if id.nil? && path.nil?
        path = "#{end_point}/:id".sub ':id', ERB::Util.url_encode(id) if path.nil?
        request_with_body path, method, {}
      end

      def request_with_body(path, method, params)
        path = end_point if path.nil?
        logger.debug "#{self.class.name}##{__method__} => path: #{path} params: #{skip_sensitive_data(params)}"

        client.send_request path, method, params
      end

      protected

      def logger
        client.logger
      end

      def end_point
        self.class.name.split('::').last.downcase
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
finapps-2.1.4 lib/finapps/rest/resources.rb
finapps-2.1.3 lib/finapps/rest/resources.rb
finapps-2.1.2 lib/finapps/rest/resources.rb
finapps-2.1.1 lib/finapps/rest/resources.rb
finapps-2.0.30 lib/finapps/rest/resources.rb
finapps-2.0.29 lib/finapps/rest/resources.rb
finapps-2.0.28 lib/finapps/rest/resources.rb
finapps-2.0.27 lib/finapps/rest/resources.rb
finapps-2.0.26 lib/finapps/rest/resources.rb
finapps-2.0.25 lib/finapps/rest/resources.rb