jonuts-garb 0.2.3 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +18 -7
- data/Rakefile +1 -1
- data/lib/extensions/array.rb +16 -0
- data/lib/extensions/string.rb +5 -1
- data/lib/extensions/symbol.rb +3 -1
- data/lib/garb/account.rb +15 -0
- data/lib/garb/data_request.rb +2 -1
- data/lib/garb/profile.rb +13 -8
- data/lib/garb/version.rb +2 -2
- data/lib/garb.rb +2 -1
- data/test/unit/account_test.rb +38 -0
- data/test/unit/profile_test.rb +8 -0
- data/test/unit/string_test.rb +4 -0
- metadata +9 -6
- data/lib/extensions/happymapper.rb +0 -67
data/README.md
CHANGED
@@ -5,12 +5,14 @@ garb
|
|
5
5
|
|
6
6
|
http://github.com/vigetlabs/garb
|
7
7
|
|
8
|
-
Changes
|
9
|
-
|
8
|
+
Important Changes
|
9
|
+
=================
|
10
|
+
|
11
|
+
Version 0.2.4 requires happymapper from rubygems, version 0.2.5. Be sure to update.
|
10
12
|
|
11
13
|
Version 0.2.0 makes major changes (compared to 0.1.0) to the way garb is used to build reports.
|
12
|
-
There is now both a module that gets included for generating defined classes
|
13
|
-
|
14
|
+
There is now both a module that gets included for generating defined classes,
|
15
|
+
as well as, slight changes to the way that the Report class can be used.
|
14
16
|
|
15
17
|
Description
|
16
18
|
-----------
|
@@ -27,9 +29,15 @@ Login
|
|
27
29
|
|
28
30
|
> Garb::Session.login(username, password)
|
29
31
|
|
32
|
+
Accounts
|
33
|
+
--------
|
34
|
+
> Garb::Account.all
|
35
|
+
|
30
36
|
Profiles
|
31
37
|
--------
|
32
38
|
|
39
|
+
> Garb::Account.first.profiles
|
40
|
+
|
33
41
|
> Garb::Profile.all
|
34
42
|
> profile = Garb::Profile.all.first
|
35
43
|
|
@@ -141,7 +149,7 @@ SSL
|
|
141
149
|
Next, be sure to download http://curl.haxx.se/ca/cacert.pem into your application somewhere.
|
142
150
|
Then, define a constant CA_CERT_FILE and point to that file.
|
143
151
|
|
144
|
-
For whatever reason, simply
|
152
|
+
For whatever reason, simply creating a new certificate store and setting the defaults would
|
145
153
|
not validate the google ssl certificate as authentic.
|
146
154
|
|
147
155
|
TODOS
|
@@ -156,12 +164,15 @@ TODOS
|
|
156
164
|
Requirements
|
157
165
|
------------
|
158
166
|
|
159
|
-
libxml
|
160
|
-
happymapper
|
167
|
+
happymapper >= 0.2.5 (should also install libxml)
|
161
168
|
|
162
169
|
Install
|
163
170
|
-------
|
164
171
|
|
172
|
+
sudo gem install garb
|
173
|
+
|
174
|
+
OR
|
175
|
+
|
165
176
|
sudo gem install vigetlabs-garb -s http://gems.github.com
|
166
177
|
|
167
178
|
License
|
data/Rakefile
CHANGED
@@ -17,7 +17,7 @@ spec = Gem::Specification.new do |s|
|
|
17
17
|
s.files = %w(README.md Rakefile) + Dir.glob("lib/**/*")
|
18
18
|
s.test_files = Dir.glob("test/**/*")
|
19
19
|
|
20
|
-
s.add_dependency("
|
20
|
+
s.add_dependency("happymapper", [">= 0.2.5"])
|
21
21
|
end
|
22
22
|
|
23
23
|
Rake::GemPackageTask.new(spec) do |pkg|
|
data/lib/extensions/string.rb
CHANGED
data/lib/extensions/symbol.rb
CHANGED
@@ -15,6 +15,8 @@ class Symbol
|
|
15
15
|
def desc
|
16
16
|
Operator.new(self, '-', true)
|
17
17
|
end
|
18
|
+
# aliasing this, as it interferes with DataMapper's Symbol#desc
|
19
|
+
alias :dsc :desc
|
18
20
|
|
19
21
|
operator :eql => '==',
|
20
22
|
:not_eql => '!=',
|
@@ -33,4 +35,4 @@ class Symbol
|
|
33
35
|
def to_ga
|
34
36
|
"ga:#{self.to_s.lower_camelized}"
|
35
37
|
end
|
36
|
-
end
|
38
|
+
end
|
data/lib/garb/account.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
module Garb
|
2
|
+
class Account
|
3
|
+
attr_reader :id, :name, :profiles
|
4
|
+
|
5
|
+
def initialize(profiles)
|
6
|
+
@id = profiles.first.account_id
|
7
|
+
@name = profiles.first.account_name
|
8
|
+
@profiles = profiles
|
9
|
+
end
|
10
|
+
|
11
|
+
def self.all
|
12
|
+
Profile.all.group_by{|p| p.account_id}.map{|profiles| new(profiles)}
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
data/lib/garb/data_request.rb
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
module Garb
|
2
2
|
class DataRequest
|
3
|
+
class HTTPRequestError < StandardError;end
|
3
4
|
|
4
5
|
def initialize(base_url, parameters={})
|
5
6
|
@base_url = base_url
|
@@ -20,7 +21,7 @@ module Garb
|
|
20
21
|
http.use_ssl = true
|
21
22
|
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
|
22
23
|
response = http.get("#{uri.path}#{query_string}", 'Authorization' => "GoogleLogin auth=#{Session.auth_token(email)}")
|
23
|
-
raise response.body.inspect unless response.is_a?(Net::HTTPOK)
|
24
|
+
raise HTTPRequestError, response.body.inspect unless response.is_a?(Net::HTTPOK)
|
24
25
|
response
|
25
26
|
end
|
26
27
|
|
data/lib/garb/profile.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
module Garb
|
2
2
|
class Profile
|
3
3
|
|
4
|
-
attr_reader :table_id, :title, :account_name, :email
|
4
|
+
attr_reader :table_id, :title, :account_name, :account_id, :email
|
5
5
|
|
6
6
|
class Property
|
7
7
|
include HappyMapper
|
@@ -11,18 +11,20 @@ module Garb
|
|
11
11
|
|
12
12
|
attribute :name, String
|
13
13
|
attribute :value, String
|
14
|
+
|
15
|
+
def instance_name
|
16
|
+
name.from_ga.underscored
|
17
|
+
end
|
14
18
|
end
|
15
19
|
|
16
20
|
class Entry
|
17
21
|
include HappyMapper
|
18
22
|
|
19
23
|
tag 'entry'
|
20
|
-
|
21
|
-
element :id, Integer
|
24
|
+
|
22
25
|
element :title, String
|
23
26
|
element :tableId, String, :namespace => 'dxp'
|
24
|
-
|
25
|
-
# has_one :table_id, TableId
|
27
|
+
|
26
28
|
has_many :properties, Property
|
27
29
|
end
|
28
30
|
|
@@ -30,18 +32,21 @@ module Garb
|
|
30
32
|
@email = Session.email(email)
|
31
33
|
@title = entry.title
|
32
34
|
@table_id = entry.tableId
|
33
|
-
|
35
|
+
|
36
|
+
entry.properties.each do |p|
|
37
|
+
instance_variable_set :"@#{p.instance_name}", p.value
|
38
|
+
end
|
34
39
|
end
|
35
40
|
|
36
41
|
def id
|
37
|
-
@table_id.
|
42
|
+
@table_id.from_ga
|
38
43
|
end
|
39
44
|
|
40
45
|
def self.all(email=nil)
|
41
46
|
email = Session.email(email)
|
42
47
|
url = "https://www.google.com/analytics/feeds/accounts/#{email}"
|
43
48
|
response = DataRequest.new(url).send_request(email)
|
44
|
-
Entry.parse(response.body).map {|
|
49
|
+
Entry.parse(response.body).map {|entry| new(entry, email)}
|
45
50
|
end
|
46
51
|
end
|
47
52
|
end
|
data/lib/garb/version.rb
CHANGED
data/lib/garb.rb
CHANGED
@@ -12,6 +12,7 @@ require 'garb/authentication_request'
|
|
12
12
|
require 'garb/data_request'
|
13
13
|
require 'garb/session'
|
14
14
|
require 'garb/profile'
|
15
|
+
require 'garb/account'
|
15
16
|
require 'garb/report_parameter'
|
16
17
|
require 'garb/report_response'
|
17
18
|
require 'garb/resource'
|
@@ -20,7 +21,7 @@ require 'garb/report'
|
|
20
21
|
require 'extensions/string'
|
21
22
|
require 'extensions/operator'
|
22
23
|
require 'extensions/symbol'
|
23
|
-
require 'extensions/
|
24
|
+
require 'extensions/array'
|
24
25
|
|
25
26
|
module Garb
|
26
27
|
# :stopdoc:
|
@@ -0,0 +1,38 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), '..', '/test_helper')
|
2
|
+
|
3
|
+
module Garb
|
4
|
+
class AccountTest < Test::Unit::TestCase
|
5
|
+
context "The Account class" do
|
6
|
+
should "have an array of accounts with all profiles" do
|
7
|
+
p1 = stub(:account_id => '1111', :account_name => 'Blog 1')
|
8
|
+
p2 = stub(:account_id => '1112', :account_name => 'Blog 2')
|
9
|
+
Profile.stubs(:all).returns([p1,p2,p1,p2])
|
10
|
+
Account.expects(:new).with([p1,p1]).returns('account1')
|
11
|
+
Account.expects(:new).with([p2,p2]).returns('account2')
|
12
|
+
assert_equal ['account1','account2'], Account.all
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
context "An instance of the Account class" do
|
17
|
+
context "when creating a new account from an array of profiles" do
|
18
|
+
setup do
|
19
|
+
profile = stub(:account_id => '1111', :account_name => 'Blog 1')
|
20
|
+
@profiles = [profile,profile]
|
21
|
+
@account = Account.new(@profiles)
|
22
|
+
end
|
23
|
+
|
24
|
+
should "take the account id from the first profile" do
|
25
|
+
assert_equal @profiles.first.account_id, @account.id
|
26
|
+
end
|
27
|
+
|
28
|
+
should "take the account name from the first profile" do
|
29
|
+
assert_equal @profiles.first.account_name, @account.name
|
30
|
+
end
|
31
|
+
|
32
|
+
should "store the array of profiles" do
|
33
|
+
assert_equal @profiles, @account.profiles
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
data/test/unit/profile_test.rb
CHANGED
@@ -52,6 +52,14 @@ module Garb
|
|
52
52
|
should "have a value for :id" do
|
53
53
|
assert_equal '12345', @profile.id
|
54
54
|
end
|
55
|
+
|
56
|
+
should "have a value for :account_id" do
|
57
|
+
assert_equal '1111', @profile.account_id
|
58
|
+
end
|
59
|
+
|
60
|
+
should "have a value for :account_name" do
|
61
|
+
assert_equal 'Blog Beta', @profile.account_name
|
62
|
+
end
|
55
63
|
|
56
64
|
end
|
57
65
|
|
data/test/unit/string_test.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jonuts-garb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tony Pitale
|
@@ -11,18 +11,18 @@ autorequire:
|
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
13
|
|
14
|
-
date: 2009-
|
14
|
+
date: 2009-06-19 00:00:00 -07:00
|
15
15
|
default_executable:
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
|
-
name:
|
18
|
+
name: happymapper
|
19
19
|
type: :runtime
|
20
20
|
version_requirement:
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
22
22
|
requirements:
|
23
23
|
- - ">="
|
24
24
|
- !ruby/object:Gem::Version
|
25
|
-
version: 0.2.
|
25
|
+
version: 0.2.5
|
26
26
|
version:
|
27
27
|
description:
|
28
28
|
email: tony.pitale@viget.com
|
@@ -36,11 +36,12 @@ files:
|
|
36
36
|
- README.md
|
37
37
|
- Rakefile
|
38
38
|
- lib/extensions
|
39
|
-
- lib/extensions/
|
39
|
+
- lib/extensions/array.rb
|
40
40
|
- lib/extensions/operator.rb
|
41
41
|
- lib/extensions/string.rb
|
42
42
|
- lib/extensions/symbol.rb
|
43
43
|
- lib/garb
|
44
|
+
- lib/garb/account.rb
|
44
45
|
- lib/garb/authentication_request.rb
|
45
46
|
- lib/garb/data_request.rb
|
46
47
|
- lib/garb/oauth_session.rb
|
@@ -58,6 +59,7 @@ files:
|
|
58
59
|
- test/fixtures/report_feed.xml
|
59
60
|
- test/test_helper.rb
|
60
61
|
- test/unit
|
62
|
+
- test/unit/account_test.rb
|
61
63
|
- test/unit/authentication_request_test.rb
|
62
64
|
- test/unit/data_request_test.rb
|
63
65
|
- test/unit/garb_test.rb
|
@@ -95,7 +97,7 @@ requirements: []
|
|
95
97
|
rubyforge_project:
|
96
98
|
rubygems_version: 1.2.0
|
97
99
|
signing_key:
|
98
|
-
specification_version:
|
100
|
+
specification_version: 3
|
99
101
|
summary: Google Analytics API Ruby Wrapper
|
100
102
|
test_files:
|
101
103
|
- test/fixtures
|
@@ -104,6 +106,7 @@ test_files:
|
|
104
106
|
- test/fixtures/report_feed.xml
|
105
107
|
- test/test_helper.rb
|
106
108
|
- test/unit
|
109
|
+
- test/unit/account_test.rb
|
107
110
|
- test/unit/authentication_request_test.rb
|
108
111
|
- test/unit/data_request_test.rb
|
109
112
|
- test/unit/garb_test.rb
|
@@ -1,67 +0,0 @@
|
|
1
|
-
require 'libxml'
|
2
|
-
|
3
|
-
module HappyMapper
|
4
|
-
|
5
|
-
module ClassMethods
|
6
|
-
include LibXML
|
7
|
-
|
8
|
-
def parse(xml, options = {})
|
9
|
-
# locally scoped copy of namespace for this parse run
|
10
|
-
namespace = @namespace
|
11
|
-
|
12
|
-
if xml.is_a?(XML::Node)
|
13
|
-
node = xml
|
14
|
-
else
|
15
|
-
if xml.is_a?(XML::Document)
|
16
|
-
node = xml.root
|
17
|
-
else
|
18
|
-
node = XML::Parser.string(xml).parse.root
|
19
|
-
end
|
20
|
-
|
21
|
-
root = node.name == tag_name
|
22
|
-
end
|
23
|
-
|
24
|
-
# This is the entry point into the parsing pipeline, so the default
|
25
|
-
# namespace prefix registered here will propagate down
|
26
|
-
namespaces = node.namespaces
|
27
|
-
if namespaces && namespaces.default
|
28
|
-
already_assigned = namespaces.definitions.detect do |defn|
|
29
|
-
namespaces.default && namespaces.default.href == defn.href && defn.prefix
|
30
|
-
end
|
31
|
-
namespaces.default_prefix = DEFAULT_NS unless already_assigned
|
32
|
-
namespace ||= DEFAULT_NS
|
33
|
-
end
|
34
|
-
|
35
|
-
xpath = root ? '/' : './/'
|
36
|
-
xpath += "#{namespace}:" if namespace
|
37
|
-
xpath += tag_name
|
38
|
-
# puts "parse: #{xpath}"
|
39
|
-
|
40
|
-
nodes = node.find(xpath)
|
41
|
-
collection = nodes.collect do |n|
|
42
|
-
obj = new
|
43
|
-
|
44
|
-
attributes.each do |attr|
|
45
|
-
obj.send("#{attr.method_name}=",
|
46
|
-
attr.from_xml_node(n, namespace))
|
47
|
-
end
|
48
|
-
|
49
|
-
elements.each do |elem|
|
50
|
-
obj.send("#{elem.method_name}=",
|
51
|
-
elem.from_xml_node(n, namespace))
|
52
|
-
end
|
53
|
-
|
54
|
-
obj
|
55
|
-
end
|
56
|
-
|
57
|
-
# per http://libxml.rubyforge.org/rdoc/classes/LibXML/XML/Document.html#M000354
|
58
|
-
nodes = nil
|
59
|
-
|
60
|
-
if options[:single] || root
|
61
|
-
collection.first
|
62
|
-
else
|
63
|
-
collection
|
64
|
-
end
|
65
|
-
end
|
66
|
-
end
|
67
|
-
end
|