class BaseCRM::DealSourcesService

Constants

OPTS_KEYS_TO_PERSIST

Public Class Methods

new(client) click to toggle source
# File lib/basecrm/services/deal_sources_service.rb, line 7
def initialize(client)
  @client = client
end

Public Instance Methods

all() click to toggle source

Retrieve all sources

get '/deal_sources'

If you want to use filtering or sorting (see where). @return [Enumerable] Paginated resource you can use to iterate over all the resources.

# File lib/basecrm/services/deal_sources_service.rb, line 17
def all
  PaginatedResource.new(self)
end
create(deal_source) click to toggle source

Create a new source

post '/deal_sources'

Creates a new source <figure class=“notice”> Source's name must be unique </figure>

@param deal_source [DealSource, Hash] Either object of the DealSource type or Hash. This object's attributes describe the object to be created. @return [DealSource] The resulting object represting created resource.

# File lib/basecrm/services/deal_sources_service.rb, line 52
def create(deal_source)
  validate_type!(deal_source)

  attributes = sanitize(deal_source)
  _, _, root = @client.post("/deal_sources", attributes)

  DealSource.new(root[:data])
end
destroy(id) click to toggle source

Delete a source

delete '/deal_sources/{id}'

Delete an existing source If the specified source does not exist, the request will return an error This operation cannot be undone

@param id [Integer] Unique identifier of a DealSource @return [Boolean] Status of the operation.

# File lib/basecrm/services/deal_sources_service.rb, line 112
def destroy(id)
  status, _, _ = @client.delete("/deal_sources/#{id}")
  status == 204
end
find(id) click to toggle source

Retrieve a single source

get '/deal_sources/{id}'

Returns a single source available to the user by the provided id If a source with the supplied unique identifier does not exist it returns an error

@param id [Integer] Unique identifier of a DealSource @return [DealSource] Searched resource object.

# File lib/basecrm/services/deal_sources_service.rb, line 71
def find(id)
  _, _, root = @client.get("/deal_sources/#{id}")

  DealSource.new(root[:data])
end
update(deal_source) click to toggle source

Update a source

put '/deal_sources/{id}'

Updates source information If the specified source does not exist, the request will return an error <figure class=“notice”> If you want to update a source, you must make sure source's name is unique </figure>

@param deal_source [DealSource, Hash] Either object of the DealSource type or Hash. This object's attributes describe the object to be updated. @return [DealSource] The resulting object represting updated resource.

# File lib/basecrm/services/deal_sources_service.rb, line 90
def update(deal_source)
  validate_type!(deal_source)
  params = extract_params!(deal_source, :id)
  id = params[:id]

  attributes = sanitize(deal_source)
  _, _, root = @client.put("/deal_sources/#{id}", attributes)

  DealSource.new(root[:data])
end
where(options = {}) click to toggle source

Retrieve all sources

get '/deal_sources'

Returns all deal sources available to the user according to the parameters provided

@param options [Hash] Search options @option options [String] :ids Comma-separated list of deal source IDs to be returned in a request. @option options [String] :name Name of the source to search for. This parameter is used in a strict sense. @option options [Integer] :page (1) Page number to start from. Page numbering starts at 1, and omitting the `page` parameter will return the first page. @option options [Integer] :per_page (25) Number of records to return per page. The default limit is 25 and the maximum number that can be returned is 100. @option options [String] :sort_by (id:asc) A field to sort by. The default ordering is ascending. If you want to change the sort order to descending, append `:desc` to the field e.g. `sort_by=name:desc`. @return [Array<DealSource>] The list of DealSources for the first page, unless otherwise specified.

# File lib/basecrm/services/deal_sources_service.rb, line 34
def where(options = {})
  _, _, root = @client.get("/deal_sources", options)

  root[:items].map{ |item| DealSource.new(item[:data]) }
end

Private Instance Methods

extract_params!(deal_source, *args) click to toggle source
# File lib/basecrm/services/deal_sources_service.rb, line 123
def extract_params!(deal_source, *args)
  params = deal_source.to_h.select{ |k, _| args.include?(k) }
  raise ArgumentError, "one of required attributes is missing. Expected: #{args.join(',')}" if params.count != args.length
  params
end
sanitize(deal_source) click to toggle source
# File lib/basecrm/services/deal_sources_service.rb, line 129
def sanitize(deal_source)
  deal_source.to_h.select { |k, _| OPTS_KEYS_TO_PERSIST.include?(k) }
end
validate_type!(deal_source) click to toggle source
# File lib/basecrm/services/deal_sources_service.rb, line 119
def validate_type!(deal_source)
  raise TypeError unless deal_source.is_a?(DealSource) || deal_source.is_a?(Hash)
end