g_ruby 0.0.10 → 0.0.11
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.
- checksums.yaml +4 -4
- data/lib/g_ruby/analytics.rb +22 -17
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8487d1eb1e5eb3fd4a93bbe100b67e6d8d55b381
|
4
|
+
data.tar.gz: 93fc54dd2b0d6626f4fd7cd9265c3868f14b7742
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f23cdeebff05b254d117fee1bd8e8f3c94d0cf10406b8a17862770bcefa0547bd17104764b8e1639741bafcd741972c972ef34a9337c4da738a3c69b1d222b1b
|
7
|
+
data.tar.gz: ff3cb53776fa18a1dc9f3c406c6cb988c7934275aa19fccced9fd9b7101cc6175eaa130d0f90892de96987e5a2bf4ff8b298d66efed089ebf48278e80e9992c6
|
data/lib/g_ruby/analytics.rb
CHANGED
@@ -2,11 +2,13 @@ class GRuby::Analytics
|
|
2
2
|
|
3
3
|
require 'g_ruby/util'
|
4
4
|
|
5
|
+
BASE_URL = "https://www.googleapis.com/analytics/v3"
|
6
|
+
|
5
7
|
#---------------------------------------------------------------------------------------------------
|
6
8
|
|
7
9
|
#GRuby::Analytics.accounts(access_token, pid)
|
8
10
|
def self.accounts(access_token, pid)
|
9
|
-
url = "
|
11
|
+
url = "#{BASE_URL}/management/accounts?access_token=#{access_token}"
|
10
12
|
a = GRuby::Util.get_json(Nestful.get(url))
|
11
13
|
response_obj = []
|
12
14
|
if !a.blank?
|
@@ -14,14 +16,14 @@ class GRuby::Analytics
|
|
14
16
|
if !a["items"].first.blank?
|
15
17
|
a["items"].each do |account|
|
16
18
|
if !account["id"].blank?
|
17
|
-
url_w = "
|
19
|
+
url_w = "#{BASE_URL}/management/accounts/#{account['id'].to_s}/webproperties?access_token=#{access_token}"
|
18
20
|
w = GRuby::Util.get_json(Nestful.get(url_w))
|
19
21
|
if !w.blank?
|
20
22
|
if !w["items"].blank?
|
21
23
|
if !w["items"].first.blank?
|
22
24
|
w["items"].each do |webprop|
|
23
25
|
if !webprop["id"].blank?
|
24
|
-
url_p = "
|
26
|
+
url_p = "#{BASE_URL}/management/accounts/#{account['id'].to_s}/webproperties/#{webprop['id'].to_s}/profiles?access_token=#{access_token}"
|
25
27
|
p = GRuby::Util.get_json(Nestful.get(url_p))
|
26
28
|
if !p.blank?
|
27
29
|
if !p["items"].blank?
|
@@ -51,26 +53,29 @@ class GRuby::Analytics
|
|
51
53
|
|
52
54
|
#---------------------------------------------------------------------------------------------------
|
53
55
|
|
54
|
-
#
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
56
|
+
#GRuby::Analytics.goals(ak.app_password, ak.ga_account_id, ak.ga_webproperty_id, ak.entity_name, start_date, end_date)
|
57
|
+
def self.goals(access_token, aid, wid, pid, start_date, end_date)
|
58
|
+
url = "#{BASE_URL}/management/accounts/#{aid}/webproperties/#{wid}/profiles/#{pid}/goals?access_token=#{access_token}"
|
59
|
+
a = GRuby::Util.get_json(Nestful.get(url))
|
60
|
+
response_obj = []
|
61
|
+
if !a["items"].blank?
|
62
|
+
if !a["items"].first.blank?
|
63
|
+
a["items"].each do |b|
|
64
|
+
metrics = "ga:goal#{b['id']}Completions,ga:goal#{b['id']}ConversionRate,ga:goal#{b['id']}AbandonRate"
|
65
|
+
goals_response = GRuby::Analytics.get(access_token, start_date, end_date, pid, metrics)
|
66
|
+
response_obj << [b["id"], b["name"], b["value"], b["active"], b["created"], b["updated"], goals_response["ga:goal#{b['id']}Completions"], goals_response["ga:goal#{b['id']}ConversionRate"], goals_response["ga:goal#{b['id']}AbandonRate"]]
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
return response_obj
|
71
|
+
end
|
67
72
|
|
68
73
|
#---------------------------------------------------------------------------------------------------
|
69
74
|
|
70
75
|
#GRuby::Analytics.get(access_token, start_date, end_date, profile_id, metrics, dimensions, sort, max_results)
|
71
76
|
def self.get(access_token, start_date, end_date, profile_id, metrics, dimensions=nil, sort=nil, limit=nil)
|
72
77
|
#begin
|
73
|
-
url = "
|
78
|
+
url = "#{BASE_URL}/data/ga?access_token=#{access_token}&start-date=#{start_date}&end-date=#{end_date}&ids=ga:#{profile_id}&metrics=#{metrics}"
|
74
79
|
url = url + "&dimensions=#{dimensions}" if !dimensions.blank?
|
75
80
|
url = url + "&sort=#{sort}" if !sort.blank?
|
76
81
|
url = url + "&max-results=#{limit}" if !limit.blank?
|