bigcommerce/gruf

View on GitHub
lib/gruf/controllers/base.rb

Summary

Maintainability
A
25 mins
Test Coverage
A
100%
# frozen_string_literal: true

# Copyright (c) 2017-present, BigCommerce Pty. Ltd. All rights reserved
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
# documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
# persons to whom the Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
# Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
module Gruf
  module Controllers
    ##
    # Base controller object for Gruf gRPC requests
    #
    class Base
      include Gruf::Errors::Helpers

      # @!attribute [r] request
      #   @return [Gruf::Controller::Request] The incoming request
      attr_reader :request
      # @!attribute [r] error
      #   @return [Gruf::Error] The current error on the controller
      attr_reader :error

      class << self
        # @!attribute [r] bound_service
        #   @return [GRPC::GenericService] bound_service The bound gRPC service class
        attr_reader :bound_service
      end

      ##
      # Initialize the controller within the given request context
      #
      # @param [Symbol] method_key The gRPC method that this controller relates to
      # @param [GRPC::GenericService] service The gRPC service stub for this controller
      # @param [GRPC::RpcDesc] rpc_desc The RPC descriptor for this service method
      # @param [GRPC::ActiveCall] active_call The gRPC ActiveCall object
      # @param [Google::Protobuf::MessageExts] message The incoming protobuf request message
      #
      def initialize(method_key:, service:, rpc_desc:, active_call:, message:)
        @request = Request.new(
          method_key: method_key,
          service: service,
          rpc_desc: rpc_desc,
          active_call: active_call,
          message: message
        )
        @error = Gruf::Error.new
        @interceptors = Gruf.interceptors.prepare(@request, @error)
      end

      ##
      # Bind the controller to the given service and add it to the service registry
      #
      # @param [GRPC::GenericService] service The name of the service to bind this controller to
      #
      def self.bind(service)
        service_class = service.name.constantize
        ::Gruf.logger.debug "[gruf] Binding #{service_class} to #{name}"
        ::Gruf.services << service_class
        # rubocop:disable ThreadSafety/InstanceVariableInClassMethod
        @bound_service = service_class
        # rubocop:enable ThreadSafety/InstanceVariableInClassMethod
        ServiceBinder.bind!(service: service_class, controller: self)
      end

      ##
      # Call a method on this controller.
      # Override this in a subclass to modify the behavior around processing a method
      #
      # @param [Symbol] method_key The name of the gRPC service method being called as a Symbol
      # @param [block] &block The passed block for executing the method
      #
      def process_action(method_key, &block)
        send(method_key, &block)
      end

      ##
      # Call a method on this controller
      #
      # @param [Symbol] method_key The name of the gRPC service method being called as a Symbol
      # @param [block] &block The passed block for executing the method
      #
      def call(method_key, &block)
        Interceptors::Context.new(@interceptors).intercept! do
          process_action(method_key, &block)
        end
      rescue GRPC::BadStatus
        raise # passthrough, to be caught by Gruf::Interceptors::Timer
      rescue GRPC::Core::CallError, StandardError => e # CallError is not a StandardError
        set_debug_info(e.message, e.backtrace) if Gruf.backtrace_on_error
        error_message = Gruf.use_exception_message ? e.message : Gruf.internal_error_message
        fail!(:internal, :unknown, error_message)
      end
    end
  end
end