Sha256: 2c22642a18fd632655c580bd4c9af86e4693dd91861adbe885b30319cafaa758

Contents?: true

Size: 1.67 KB

Versions: 6

Compression:

Stored size: 1.67 KB

Contents

require 'emaildirect'
require 'json'

module EmailDirect
  # Represents a list and associated functionality
  class List
    class << self
      def all(options = {})
        response = EmailDirect.get '/Lists', :query => options
        Hashie::Mash.new(response)
      end

      def create(name, options = {})
        options.merge! :Name => name
        response = EmailDirect.post '/Lists', :body => options.to_json
        Hashie::Mash.new(response)
      end
    end

    attr_reader :list_id

    def initialize(list_id)
      @list_id = list_id
    end

    def details
      response = get
      Hashie::Mash.new(response)
    end

    def members
      response = get 'Members'
      Hashie::Mash.new(response)
    end

    def update(name, options)
      options.merge! :Name => name
      response = EmailDirect.put uri_for, :body => options.to_json
      Hashie::Mash.new(response)
    end

    def delete
      response = EmailDirect.delete uri_for, {}
      Hashie::Mash.new(response)
    end

    def add_emails(email_addresses)
      options = { :EmailAddresses => Array(email_addresses) }
      response = post 'AddEmails', :body => options.to_json
      Hashie::Mash.new(response)
    end

    def remove_emails(email_addresses)
      options = { :EmailAddresses => Array(email_addresses) }
      response = post 'RemoveEmails', :body => options.to_json
      Hashie::Mash.new(response)
    end

    private

    def post(action, options)
      EmailDirect.post uri_for(action), options
    end

    def get(action = nil)
      EmailDirect.get uri_for(action)
    end

    def uri_for(action = nil)
      action = "/#{action}" if action
      "/Lists/#{list_id}#{action}"
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
emaildirect-2.0.0 lib/emaildirect/list.rb
emaildirect-1.3.4 lib/emaildirect/list.rb
emaildirect-1.3.3 lib/emaildirect/list.rb
emaildirect-1.3.2 lib/emaildirect/list.rb
emaildirect-1.3.1 lib/emaildirect/list.rb
emaildirect-1.3.0 lib/emaildirect/list.rb