Module: HTTPX::Plugins::GRPC::InstanceMethods

Defined in:
lib/httpx/plugins/grpc.rb

Instance Method Summary collapse

Instance Method Details

#build_stub(origin, service: nil, compression: false) ⇒ Object



159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# File 'lib/httpx/plugins/grpc.rb', line 159

def build_stub(origin, service: nil, compression: false)
  scheme = @options.ssl.empty? ? "http" : "https"

  origin = URI.parse("#{scheme}://#{origin}")

  session = self

  if service && service.respond_to?(:rpc_descs)
    # it's a grpc generic service
    service.rpc_descs.each do |rpc_name, rpc_desc|
      rpc_opts = {
        marshal_method: rpc_desc.marshal_method,
        unmarshal_method: rpc_desc.unmarshal_method,
      }

      input = rpc_desc.input
      input = input.type if input.respond_to?(:type)

      output = rpc_desc.output
      if output.respond_to?(:type)
        rpc_opts[:stream] = true
        output = output.type
      end

      session = session.rpc(rpc_name, input, output, **rpc_opts)
    end

    service = service.service_name
  end

  session.with(origin: origin, grpc_service: service, grpc_compression: compression)
end

#execute(rpc_method, input, deadline: DEADLINE, metadata: nil, **opts) ⇒ Object



192
193
194
195
196
197
198
199
200
# File 'lib/httpx/plugins/grpc.rb', line 192

def execute(rpc_method, input,
            deadline: DEADLINE,
            metadata: nil,
            **opts)
  grpc_request = build_grpc_request(rpc_method, input, deadline: deadline, metadata: , **opts)
  response = request(grpc_request, **opts)
  response.raise_for_status
  GRPC::Call.new(response)
end

#rpc(rpc_name, input, output, **opts) ⇒ Object

Raises:



136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
# File 'lib/httpx/plugins/grpc.rb', line 136

def rpc(rpc_name, input, output, **opts)
  rpc_name = rpc_name.to_s
  raise Error, "rpc #{rpc_name} already defined" if @options.grpc_rpcs.key?(rpc_name)

  rpc_opts = {
    deadline: @options.grpc_deadline,
  }.merge(opts)

  session_class = Class.new(self.class) do
    class_eval(<<-OUT, __FILE__, __LINE__ + 1)
      def #{rpc_name}(input, **opts)              # def grpc_action(input, **opts)
        rpc_execute("#{rpc_name}", input, **opts) #   rpc_execute("grpc_action", input, **opts)
      end                                         # end
    OUT
  end

  session_class.new(@options.merge(
                      grpc_rpcs: @options.grpc_rpcs.merge(
                        rpc_name.underscore => [rpc_name, input, output, rpc_opts]
                      ).freeze
                    ))
end

#with_channel_credentials(ca_path, key = nil, cert = nil, **ssl_opts) ⇒ Object



118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# File 'lib/httpx/plugins/grpc.rb', line 118

def with_channel_credentials(ca_path, key = nil, cert = nil, **ssl_opts)
  ssl_params = {
    **ssl_opts,
    ca_file: ca_path,
  }
  if key
    key = File.read(key) if File.file?(key)
    ssl_params[:key] = OpenSSL::PKey.read(key)
  end

  if cert
    cert = File.read(cert) if File.file?(cert)
    ssl_params[:cert] = OpenSSL::X509::Certificate.new(cert)
  end

  with(ssl: ssl_params)
end