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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/g_ruby/analytics.rb +22 -17
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 626901939ecbb09aead104c0e92e24602433499c
4
- data.tar.gz: 9fb539d39e86b990aae5a3d48cd5e0ab1699e457
3
+ metadata.gz: 8487d1eb1e5eb3fd4a93bbe100b67e6d8d55b381
4
+ data.tar.gz: 93fc54dd2b0d6626f4fd7cd9265c3868f14b7742
5
5
  SHA512:
6
- metadata.gz: 5cf9ed69eb58c92fa821438c201cca7980726e6eb2557e52114d2a983df32324eb3d46cfe21a743a8682c565a7e58bd4bae2649c4f03a49d607e6e253a5fa08e
7
- data.tar.gz: a6bc65ab581708208cbfffd9901045e6b9ab9c66adcd42369043880206812024b471c2c2aa52c38b460b73b6de0148d05bd695ae65124eb4f3be2c7de240edaa
6
+ metadata.gz: f23cdeebff05b254d117fee1bd8e8f3c94d0cf10406b8a17862770bcefa0547bd17104764b8e1639741bafcd741972c972ef34a9337c4da738a3c69b1d222b1b
7
+ data.tar.gz: ff3cb53776fa18a1dc9f3c406c6cb988c7934275aa19fccced9fd9b7101cc6175eaa130d0f90892de96987e5a2bf4ff8b298d66efed089ebf48278e80e9992c6
@@ -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 = "https://www.googleapis.com/analytics/v3/management/accounts?access_token=#{access_token}"
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 = "https://www.googleapis.com/analytics/v3/management/accounts/#{account['id'].to_s}/webproperties?access_token=#{access_token}"
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 = "https://www.googleapis.com/analytics/v3/management/accounts/#{account['id'].to_s}/webproperties/#{webprop['id'].to_s}/profiles?access_token=#{access_token}"
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
- #def self.goals(access_token, aid, wid, pid)
55
- #url = "https://www.googleapis.com/analytics/v3/management/accounts/#{aid}/webproperties/#{wid}/profiles/#{pid}/goals?access_token=#{access_token}"
56
- #a = GRuby::Util.get_json(Nestful.get(url))
57
- #response_obj = []
58
- #if !a["items"].blank?
59
- #if !a["items"].first.blank?
60
- #a["items"].each do b
61
- #response_obj << [start_date: , end_date: ]
62
- #end
63
- #end
64
- #end
65
- #return response_obj
66
- #end
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 = "https://www.googleapis.com/analytics/v3/data/ga?access_token=#{access_token}&start-date=#{start_date}&end-date=#{end_date}&ids=ga:#{profile_id}&metrics=#{metrics}"
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?
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: g_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.10
4
+ version: 0.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pykih Software