Blame view

lib/syspro/api_operations/query.rb 962 Bytes
dc8aa5b6   Joe Weakley   Rubocop corrections
1
2
  # frozen_string_literal: true
  
96149efa   Isaac Lewis   working query browse
3
4
5
6
  module Syspro
    module ApiOperations
      module Query
        module ClassMethods
96149efa   Isaac Lewis   working query browse
7
          def browse(params)
dc8aa5b6   Joe Weakley   Rubocop corrections
8
            request(:get, '/Query/Browse', params)
96149efa   Isaac Lewis   working query browse
9
10
          end
  
0f29247c   Isaac Lewis   add comfch and co...
11
          def fetch(params)
dc8aa5b6   Joe Weakley   Rubocop corrections
12
            request(:get, '/Query/Fetch', params)
96149efa   Isaac Lewis   working query browse
13
14
          end
  
0f29247c   Isaac Lewis   add comfch and co...
15
          def query(params)
dc8aa5b6   Joe Weakley   Rubocop corrections
16
            request(:get, '/Query/Query', params)
96149efa   Isaac Lewis   working query browse
17
18
          end
  
dc8aa5b6   Joe Weakley   Rubocop corrections
19
          def find; end
96149efa   Isaac Lewis   working query browse
20
21
22
23
24
25
  
          private
  
          def warn_on_opts_in_params(params)
            Util::OPTS_USER_SPECIFIED.each do |opt|
              if params.key?(opt)
dc8aa5b6   Joe Weakley   Rubocop corrections
26
                warn("WARNING: #{opt} should be in opts instead of params.")
96149efa   Isaac Lewis   working query browse
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
              end
            end
          end
        end # ClassMethods
  
        def self.included(base)
          base.extend(ClassMethods)
        end
  
        protected
  
        def request(method, url, params = {}, opts = {})
          opts = @opts.merge(Util.normalize_opts(opts))
          Request.request(method, url, params, opts)
        end
      end
    end
  end