No commit activity in last 3 years
No release in over 3 years
Helpers for developing a Cangaroo (Wombat replacement) endpoint
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.12
~> 5.0
~> 10.0

Runtime

 Project Readme

CangarooEndpointBase

Simple gem with a application helper to easily build wombat/cangaroo endpoints for system integrations.

  • Easily extract polling ranges (after, and time range) from params
  • Throw errors to Rollbar
  • Protect endpoint via HTTP basic auth
  • Reset logging context before processing action

Installation

Add this line to your application's Gemfile:

gem 'cangaroo_endpoint_base'

In your .env:

export ENDPOINT_BASIC_AUTH_TOKEN=123123

This token will be used as the password for HTTP Basic authentication against this endpoint.

Usage

# application_controller.rb
class ApplicationController < ActionController::API
  include CangarooEndpointBase::ApplicationControllerHelper
end

# gift_cards_controller.rb
class GiftCardsController < ApplicationController
  def index
    updated_after, updated_before = poll_timestamps_from_params

    gift_card_poll_manager = GiftCardPollManager.new
    gift_card_poll_manager.poll(GiftCard, last_poll: updated_after, updated_before: updated_before)

    render json: { gift_cards: gift_card_poll_manager.updated_gift_cards }
  end
end

# rails_helper.rb
require 'cangaroo_endpoint_base/spec/spec_helper'

# controllers/customers_spec.rb
RSpec.describe CustomersController, type: :controller do
  before { setup_http_basic_auth }

  it '#show' do
    process :show, method: :get, params: { id: shopify_customer_id }

    expect(parsed_response['id']).to_not be_nil
  end
end

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/cangaroo_endpoint_base.