Google Calendar

Fast, Lightweight and Minimalist

View the Project on GitHub northworld/google_calendar

Google Calendar

A fast lightweight and minimalist wrapper around the Google Calendar API.

Gem Version Build Status Dependency Status Code Climate Test Coverage

Install

  [sudo] gem install 'google_calendar'

Setup

Obtain a Client ID and Secret

  1. Go to the Google Developers Console.
  2. Select a project, or create a new one.
  3. In the sidebar on the left, expand APIs & auth. Next, click APIs. In the list of APIs, make sure the status is ON for the Calendar API.
  4. In the sidebar on the left, select Credentials.
  5. In either case, you end up on the Credentials page and can create your project's credentials from here.
  6. If you haven't done so already, create your OAuth 2.0 credentials by clicking Create new Client ID under the OAuth heading. Next, look for your application's client ID and client secret in the relevant table. You may also create and edit redirect URIs from this page.

Take note of the Client ID as you'll need to add it to your code later.

Find your calendar ID

  1. Visit Google Calendar in your web browser.
  2. In the calendar list on the left, click the down-arrow button next to the appropriate calendar, then select Calendar settings.
  3. In the Calendar Address section, locate the Calendar ID listed next to the XML, ICAL and HTML buttons.
  4. Copy the Calendar ID.

Usage

  require 'rubygems'
  require 'google_calendar'

  # Create an instance of the calendar.
  cal = Google::Calendar.new(:client_id     => YOUR_CLIENT_ID, 
                             :client_secret => YOUR_SECRET,
                             :calendar      => YOUR_CALENDAR_ID,
                             :redirect_url  => "urn:ietf:wg:oauth:2.0:oob" # this is what Google uses for 'applications'
                             )

  puts "Do you already have a refresh token? (y/n)"
  has_token = $stdin.gets.chomp

  if has_token.downcase != 'y'

    # A user needs to approve access in order to work with their calendars.
    puts "Visit the following web page in your browser and approve access."
    puts cal.authorize_url
    puts "\nCopy the code that Google returned and paste it here:"

    # Pass the ONE TIME USE access code here to login and get a refresh token that you can use for access from now on.
    refresh_token = cal.login_with_auth_code( $stdin.gets.chomp )

    puts "\nMake sure you SAVE YOUR REFRESH TOKEN so you don't have to prompt the user to approve access again."
    puts "your refresh token is:\n\t#{refresh_token}\n"
    puts "Press return to continue"
    $stdin.gets.chomp

  else

    puts "Enter your refresh token"
    refresh_token = $stdin.gets.chomp
    cal.login_with_refresh_token(refresh_token)

    # Note: You can also pass your refresh_token to the constructor and it will login at that time.

  end

  event = cal.create_event do |e|
    e.title = 'A Cool Event'
    e.start_time = Time.now
    e.end_time = Time.now + (60 * 60) # seconds * min
  end

  puts event

  event = cal.find_or_create_event_by_id(event.id) do |e|
    e.title = 'An Updated Cool Event'
    e.end_time = Time.now + (60 * 60 * 2) # seconds * min * hours
  end

  puts event

  # All events
  puts cal.events

  # Query events
  puts cal.find_events('your search string')

This sample code is located in readme_code.rb in the root folder.

Note: This is not a complete implementation of the calendar api, it just includes the features we needed to support our internal calendar integration.

Contributing to google_calendar

Copyright

Copyright (c) 2010-2014 Steve Zich. See LICENSE.txt for further details.