Sha256: 34d6e9fffd6693ac9fa05d46807fe3113685136cdc3e41e672f0099bcbbfadd4

Contents?: true

Size: 1.34 KB

Versions: 5

Compression:

Stored size: 1.34 KB

Contents

module PortaText
  module Command
    module Api
      # The variables endpoint.
      # https://github.com/PortaText/docs/wiki/REST-API#api_variables
      #
      # Author::    Marcelo Gornstein (mailto:marcelog@portatext.com)
      # Copyright:: Copyright (c) 2015 PortaText
      # License::   Apache-2.0
      class Variables < Base
        def for_contact(number)
          set :number, number
        end

        def name(name)
          set :name, name
        end

        def set_to(name, value)
          self.name name
          set :value, value
        end

        def csv(file)
          set :file, file
        end

        def save_to(file)
          set :accept_file, file
        end

        # rubocop:disable Style/AccessorMethodName
        def set_all(variables)
          variables = variables.reduce([]) do |acc, v|
            acc << { key: v[0], value: v[1] }
          end
          set :variables, variables
        end
        # rubocop:enable Style/AccessorMethodName

        def endpoint(_method)
          return 'contacts/variables' if @args[:number].nil?
          number = @args[:number]
          @args.delete :number
          return "contacts/#{number}/variables" if @args[:name].nil?
          name = @args[:name]
          @args.delete :name
          "contacts/#{number}/variables/#{name}"
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
portatext-1.1.11 lib/portatext/command/api/variables.rb
portatext-1.1.10 lib/portatext/command/api/variables.rb
portatext-1.1.9 lib/portatext/command/api/variables.rb
portatext-1.1.8 lib/portatext/command/api/variables.rb
portatext-1.1.7 lib/portatext/command/api/variables.rb