Sha256: c2bb72365b6f802cf1364af074ddff35bfe18bde82c0aefaec723638442d054f

Contents?: true

Size: 1.02 KB

Versions: 36

Compression:

Stored size: 1.02 KB

Contents

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

        def csv(file)
          set :file, file
        end

        def save_to(file)
          set :accept_file, file
        end

        def page(page)
          set :page, page
        end

        def endpoint(_method)
          return 'blacklist/contacts' unless @args[:accept_file].nil?
          return 'blacklist/contacts' unless @args[:file].nil?
          page = @args[:page]
          @args.delete :page
          page ||= 1
          return "blacklist?page=#{page}" if @args[:number].nil?
          number = @args[:number]
          @args.delete :number
          "blacklist/#{number}"
        end
      end
    end
  end
end

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
portatext-1.6.1 lib/portatext/command/api/blacklist.rb
portatext-1.6.0 lib/portatext/command/api/blacklist.rb
portatext-1.5.23 lib/portatext/command/api/blacklist.rb
portatext-1.5.22 lib/portatext/command/api/blacklist.rb
portatext-1.5.21 lib/portatext/command/api/blacklist.rb
portatext-1.5.20 lib/portatext/command/api/blacklist.rb
portatext-1.5.19 lib/portatext/command/api/blacklist.rb
portatext-1.5.18 lib/portatext/command/api/blacklist.rb
portatext-1.5.17 lib/portatext/command/api/blacklist.rb
portatext-1.5.16 lib/portatext/command/api/blacklist.rb
portatext-1.5.15 lib/portatext/command/api/blacklist.rb
portatext-1.5.14 lib/portatext/command/api/blacklist.rb
portatext-1.5.13 lib/portatext/command/api/blacklist.rb
portatext-1.5.12 lib/portatext/command/api/blacklist.rb
portatext-1.5.11 lib/portatext/command/api/blacklist.rb
portatext-1.5.10 lib/portatext/command/api/blacklist.rb
portatext-1.5.9 lib/portatext/command/api/blacklist.rb
portatext-1.5.8 lib/portatext/command/api/blacklist.rb
portatext-1.5.7 lib/portatext/command/api/blacklist.rb
portatext-1.5.6 lib/portatext/command/api/blacklist.rb