Authorizes server to server account and returns X number of most viewed pages by path and any of these date: :today, date: :last_day, date: :last_week, num_results: 10, filter: 'my_filter'
Add this line to your application's Gemfile:
gem 'most-popular'
And then execute:
$ bundle
Or install it yourself as:
$ gem install most-popular
You will need a service account credentials from google.
Google API uses OAuth 2.0 with service accounts. Learn more about Google APIs and OAuth 2.0 here:https://developers.google.com/accounts/docs/OAuth2
Or, follow these steps.
- From the "Project Home" screen, activate access to "Google+ API”.
- From google developer console, APIs -> Enabled APIs - Must enable analytics API
- Click on "APIs&Auth" in the left column
- Click Credentials in the left column
- Under OAuth click Create New ClientID button
- Give your application a name and click "Next"
- Select "Service Account" as the "Application type"
- Select "other" under "Installed application type"
- Click "Create client ID"
- Click 'Download private key' to save the generate private key file
- ###Using Bash or Zsh Profile
This is the “bare minimum” solution. You can store the environment variable key/value pairs with the operating system directly and globally, so they are going to be available to the Rails app. In your .bashrc file or .zshrc file, set environment variables with lines like:
export KEY=value
With this, you can fire up rails console or irb and access your environment var by doing:
ENV["KEY"]
=> "value"
This is also not very ideal for creating app-specific environment variables or using different environment variables for different environments such as development and testing http://www.gotealeaf.com/blog/managing-environment-configuration-variables-in-rails
- ###Using a gem, like Dotenv
Dotenv solves the problems of setting project-specific environment vars and is super easy to get started on. Start by including the gem 'dotenv-rails', :groups => [:development, :test]
in the appropriate groups, in this case development and test. You can then put your sensitive information inside a .env file at the root of your project directory:
SERVICE_ACCOUNT_EMAIL=072731723843-htv966ia965hk61mii9hqr98edtt2lad@developer.gserviceaccount.com
PROFILE_ID=77777
FILENAME=config/environments/production/YourApp-5eee1f52d9cf.p12
SECRET=notasecret
You can call these variables anywhere in your Rails application by using: ENV["SERVICE_ACCOUNT_EMAIL"], ENV["PROFILE_ID"], ENV["FILENAME"] and ENV["SECRET"]
Support for export (for accessing these variables in the terminal) and yaml-like configs come baked in. Make sure to git-ignore your .env
files if you’re working alone or you’ll be back to square one. While working on a team, you can maintain a default .env.example
file that is checked into source control with further instructions to other developers. check out dotenv
More info on Managing Environment Configuration Variables in Rails
#app/models/concerns/most_popupar_story.rb
class MostPopularStory
def initialize
builder = MostPopular::Analytics::GoogleAnalyticsBuilder.new
builder.service_account({
service_account_email: ENV["SERVICE_ACCOUNT_EMAIL"],
profile_id: ENV["PROFILE_ID"]
})
builder.key_file({
filename: ENV["FILENAME"],
secret: ENV["SECRET"]
})
builder.application({
application_name: 'Your Application',
application_version: '1.0.0'
})
builder.api(:api_v3)
builder.filter({filter: 'topics'})
analytics = builder.build
@trending = MostPopular::Trending::TrendingStory.new(analytics)
end
def trending
@trending.trending_stories
end
end
trending_stories method can take a Hash of any of these date: :today, date: :last_day, date: :last_week, num_results: 10, filter: 'my_filter'
for example
@trending.trending_stories(date: :last_week, num_results: 3)
require 'rails_helper'
RSpec.describe MostPopularStory do
let(:trending) { MostPopularStory.new}
VCR.use_cassette('treding_story', :record => :new_episodes) do
describe '#initialize' do
it 'can be instantiated',:vcr do
expect(trending).not_to be_nil
expect(trending.class).to eq MostPopularStory
end
end
describe '#now_trending' do
it 'contains an array of trending stories', :vcr do
expect(trending.now_trending.class).to eq Array
expect(trending.now_trending.size).to eq 10
end
it 'contains expected Object', :vcr do
expect(trending.now_trending.first.class).to eq MostPopular::Trending::ViewedStory
end
end
end
end
Pull requests are welcome.
To contribute to Google Analytics Most Popular:
- Fork the repo.
- Make your changes in a topic branch.
- Send a PR.
Notes:
- Contributions without tests won't be accepted.
- Please don't update the Gem version.