A long-lived project that still receives updates
A RubyGem that fetches Opsgenie schedules
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.0
~> 2.7
~> 12.3.3
~> 3.0
~> 0.1
~> 3.5
~> 0.14.0

Runtime

~> 0.17
 Project Readme

Build Status

Opsgenie Schedule

A simple gem that fetches the scheduled people working on a given date for any Opsgenie schedule.

Installation

Add this line to your application's Gemfile:

  gem 'opsgenie-schedule'

And then execute:

$ bundle

Or install it yourself as:

$ gem install opsgenie-schedule

Usage

Require and initialize the gem like so:

require 'opsgenie'

Opsgenie.configure(api_key: "YOUR_OPSGENIE_API_KEY")

And fetch a schedule by its name:

schedule = Opsgenie::Schedule.find_by_name("schedule_name")

Or its ID

schedule = Opsgenie::Schedule.find_by_id("some_uuid")

You can then fetch the people scheduled for today like so:

schedule.on_calls
#=> [
#     <Opsgenie::User @full_name="Someone", @id=1234, @username="someone@example.com">,
#     <Opsgenie::User @full_name="Someone Else", @id=1236, @username="somesomeone-elseone@example.com">
#]

Or a given date time like so:

date = DateTime.parse("2019-01-01T10:00:00")
schedule.on_calls(date)
#=> [
#     <Opsgenie::User @full_name="Someone", @id=1234, @username="someone@example.com">,
#     <Opsgenie::User @full_name="Someone Else", @id=1236, @username="somesomeone-elseone@example.com">
#]

You can also fetch a timeline for a schedule:

schedule.timeline

Or a specific rotation:

schedule.rotation[0].timeline

You can also specify where you want a timeline to start from:

schedule.timeline(date: Date.parse("2019-01-01"))
# => [#<Opsgenie::TimelineRotation:0x00007f9b2f974cb8
#   @id="69e7d46d-538e-4fca-95d0-5c316a54424e",
#   @name="On Call Phone",
#   @periods=
#    [#<Opsgenie::TimelinePeriod:0x00007f9b2f974c40
#      @end_date=#<DateTime: 2019-12-05T11:55:29+00:00 ((2458823j,42929s,816000000n),+0s,2299161j)>,
#      @start_date=#<DateTime: 2019-12-02T00:00:00+00:00 ((2458820j,0s,0n),+0s,2299161j)>,
#      @user=
#       #<Opsgenie::User:0x00007f9b2f329520
#        @full_name="On Call Phone",
#        @id="19e39115-07d5-4924-8295-332a66dd1569",
#        @username="systems@dxw.com">>,
#     ...]
#    ],
#    ...
#   ]
#  >

As well as the interval you want to see a timeline for:

# `interval_unit` can be one of `:days`, `:weeks` or `:months`
schedule.timeline(interval: 1, interval_unit: :months)
#=> [...]

These options also work for a rotation's timeline too:

schedule.rotation[0].timeline(
  date: Date.parse("2019-01-01"),
  interval: 1,
  interval_unit: :months
)
#=> <Opsgenie::TimelineRotation:0x00007f9b2f974cb8>

Development

After checking out the repo, run bundle install to install dependencies. Then, run rake spec to run the tests.

To install this gem onto your local machine, run bundle exec rake install.

To release a new version, update the version number in opsgenie-schedule.gemspec, commit the change and then create a git tag for that version in the format x.x.x (where x is each version number). Github Actions will then automatically push the latest version to Rubygems.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/dxw/opsgenie-schedule. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the MarketplaceOpportunityScraper project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.